diff --git a/grammar.js b/grammar.js index 33ae72b4..858528a8 100644 --- a/grammar.js +++ b/grammar.js @@ -1031,12 +1031,12 @@ module.exports = grammar({ field('name', $._type_identifier), ), - range_expression: $ => prec.left(PREC.range, choice( - seq($._expression, choice('..', '...', '..='), $._expression), - seq($._expression, '..'), - seq('..', $._expression), - '..', - )), + range_expression: $ => choice( + prec.left(PREC.range, seq($._expression, choice('..', '...', '..='), $._expression)), + prec.left(PREC.range, seq($._expression, '..')), + prec.right(PREC.range + 1, seq('..', $._expression)), + prec.left(PREC.range, '..'), + ), unary_expression: $ => prec(PREC.unary, seq( choice('-', '*', '!'), diff --git a/src/grammar.json b/src/grammar.json index f345735b..6a02c55a 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -5768,12 +5768,12 @@ ] }, "range_expression": { - "type": "PREC_LEFT", - "value": 1, - "content": { - "type": "CHOICE", - "members": [ - { + "type": "CHOICE", + "members": [ + { + "type": "PREC_LEFT", + "value": 1, + "content": { "type": "SEQ", "members": [ { @@ -5802,8 +5802,12 @@ "name": "_expression" } ] - }, - { + } + }, + { + "type": "PREC_LEFT", + "value": 1, + "content": { "type": "SEQ", "members": [ { @@ -5815,8 +5819,12 @@ "value": ".." } ] - }, - { + } + }, + { + "type": "PREC_RIGHT", + "value": 2, + "content": { "type": "SEQ", "members": [ { @@ -5828,13 +5836,17 @@ "name": "_expression" } ] - }, - { + } + }, + { + "type": "PREC_LEFT", + "value": 1, + "content": { "type": "STRING", "value": ".." } - ] - } + } + ] }, "unary_expression": { "type": "PREC", @@ -9743,6 +9755,5 @@ "_literal_pattern", "_declaration_statement", "_pattern" - ], - "reserved": {} -} \ No newline at end of file + ] +} diff --git a/src/node-types.json b/src/node-types.json index 2a72d8c1..d42c1423 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -918,7 +918,6 @@ { "type": "block_comment", "named": true, - "extra": true, "fields": { "doc": { "multiple": false, @@ -2702,7 +2701,6 @@ { "type": "line_comment", "named": true, - "extra": true, "fields": { "doc": { "multiple": false, diff --git a/src/parser.c b/src/parser.c index 533552b4..2bbd0193 100644 --- a/src/parser.c +++ b/src/parser.c @@ -1,23 +1,19 @@ -/* Automatically @generated by tree-sitter v0.25.10 */ - #include "tree_sitter/parser.h" #if defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic ignored "-Wmissing-field-initializers" #endif -#define LANGUAGE_VERSION 15 -#define STATE_COUNT 3825 -#define LARGE_STATE_COUNT 1064 +#define LANGUAGE_VERSION 14 +#define STATE_COUNT 3817 +#define LARGE_STATE_COUNT 1056 #define SYMBOL_COUNT 351 #define ALIAS_COUNT 4 #define TOKEN_COUNT 157 #define EXTERNAL_TOKEN_COUNT 10 #define FIELD_COUNT 31 #define MAX_ALIAS_SEQUENCE_LENGTH 10 -#define MAX_RESERVED_WORD_SET_SIZE 0 #define PRODUCTION_ID_COUNT 295 -#define SUPERTYPE_COUNT 5 enum ts_symbol_identifiers { sym_identifier = 1, @@ -2589,7 +2585,7 @@ static const char * const ts_field_names[] = { [field_value] = "value", }; -static const TSMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { +static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [2] = {.index = 0, .length = 1}, [3] = {.index = 1, .length = 1}, [4] = {.index = 2, .length = 1}, @@ -4048,47 +4044,47 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [36] = 36, [37] = 37, [38] = 38, - [39] = 37, + [39] = 39, [40] = 40, - [41] = 40, - [42] = 42, - [43] = 35, - [44] = 35, - [45] = 36, - [46] = 42, - [47] = 38, + [41] = 37, + [42] = 35, + [43] = 39, + [44] = 37, + [45] = 37, + [46] = 38, + [47] = 36, [48] = 40, - [49] = 37, - [50] = 40, - [51] = 35, - [52] = 37, - [53] = 42, - [54] = 42, + [49] = 35, + [50] = 35, + [51] = 36, + [52] = 39, + [53] = 37, + [54] = 36, [55] = 37, [56] = 37, [57] = 40, [58] = 37, - [59] = 40, - [60] = 36, - [61] = 40, + [59] = 38, + [60] = 39, + [61] = 38, [62] = 40, - [63] = 38, - [64] = 37, - [65] = 38, - [66] = 36, + [63] = 63, + [64] = 64, + [65] = 65, + [66] = 66, [67] = 67, - [68] = 68, + [68] = 65, [69] = 69, - [70] = 68, + [70] = 70, [71] = 69, - [72] = 72, - [73] = 73, - [74] = 74, + [72] = 66, + [73] = 67, + [74] = 70, [75] = 75, - [76] = 75, - [77] = 72, - [78] = 73, - [79] = 74, + [76] = 76, + [77] = 64, + [78] = 78, + [79] = 79, [80] = 80, [81] = 81, [82] = 82, @@ -4098,94 +4094,94 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [86] = 86, [87] = 87, [88] = 88, - [89] = 89, - [90] = 90, + [89] = 81, + [90] = 82, [91] = 91, [92] = 92, - [93] = 93, + [93] = 80, [94] = 94, - [95] = 94, - [96] = 86, - [97] = 87, - [98] = 84, + [95] = 92, + [96] = 80, + [97] = 97, + [98] = 98, [99] = 84, - [100] = 100, - [101] = 85, - [102] = 88, - [103] = 89, - [104] = 90, - [105] = 94, - [106] = 86, - [107] = 87, - [108] = 100, - [109] = 100, - [110] = 85, - [111] = 100, - [112] = 91, - [113] = 94, - [114] = 86, - [115] = 87, - [116] = 84, - [117] = 100, - [118] = 85, + [100] = 94, + [101] = 92, + [102] = 80, + [103] = 94, + [104] = 84, + [105] = 98, + [106] = 84, + [107] = 97, + [108] = 94, + [109] = 92, + [110] = 80, + [111] = 85, + [112] = 97, + [113] = 98, + [114] = 84, + [115] = 94, + [116] = 92, + [117] = 80, + [118] = 94, [119] = 92, - [120] = 94, - [121] = 86, - [122] = 94, - [123] = 86, + [120] = 86, + [121] = 97, + [122] = 98, + [123] = 84, [124] = 87, - [125] = 87, - [126] = 100, - [127] = 85, - [128] = 93, - [129] = 129, - [130] = 85, + [125] = 98, + [126] = 88, + [127] = 97, + [128] = 98, + [129] = 97, + [130] = 130, [131] = 131, - [132] = 84, - [133] = 84, - [134] = 134, - [135] = 135, - [136] = 136, - [137] = 137, - [138] = 136, - [139] = 135, - [140] = 134, - [141] = 137, + [132] = 132, + [133] = 133, + [134] = 130, + [135] = 131, + [136] = 133, + [137] = 132, + [138] = 138, + [139] = 139, + [140] = 140, + [141] = 138, [142] = 142, [143] = 143, [144] = 144, - [145] = 145, + [145] = 139, [146] = 146, - [147] = 142, - [148] = 148, + [147] = 147, + [148] = 144, [149] = 149, [150] = 150, [151] = 151, - [152] = 150, - [153] = 153, - [154] = 154, - [155] = 155, - [156] = 154, - [157] = 144, - [158] = 146, - [159] = 149, - [160] = 151, + [152] = 140, + [153] = 143, + [154] = 149, + [155] = 146, + [156] = 147, + [157] = 157, + [158] = 150, + [159] = 159, + [160] = 160, [161] = 161, - [162] = 155, - [163] = 143, - [164] = 164, - [165] = 165, - [166] = 165, - [167] = 143, - [168] = 148, - [169] = 165, - [170] = 143, - [171] = 148, - [172] = 165, - [173] = 148, + [162] = 161, + [163] = 159, + [164] = 139, + [165] = 161, + [166] = 159, + [167] = 139, + [168] = 161, + [169] = 159, + [170] = 170, + [171] = 171, + [172] = 172, + [173] = 173, [174] = 174, [175] = 175, - [176] = 176, + [176] = 157, [177] = 177, [178] = 178, [179] = 179, @@ -4202,13 +4198,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [190] = 190, [191] = 191, [192] = 192, - [193] = 161, + [193] = 193, [194] = 194, [195] = 195, [196] = 196, - [197] = 197, - [198] = 187, - [199] = 196, + [197] = 195, + [198] = 190, + [199] = 199, [200] = 200, [201] = 201, [202] = 202, @@ -4217,65 +4213,65 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [205] = 205, [206] = 206, [207] = 207, - [208] = 208, + [208] = 207, [209] = 209, - [210] = 209, - [211] = 211, - [212] = 207, + [210] = 210, + [211] = 202, + [212] = 200, [213] = 213, - [214] = 213, + [214] = 214, [215] = 215, - [216] = 216, + [216] = 201, [217] = 217, [218] = 218, - [219] = 219, - [220] = 209, - [221] = 218, - [222] = 219, - [223] = 223, - [224] = 211, - [225] = 223, - [226] = 188, - [227] = 191, - [228] = 209, - [229] = 211, - [230] = 211, - [231] = 192, - [232] = 176, - [233] = 203, - [234] = 213, - [235] = 174, - [236] = 219, - [237] = 237, - [238] = 238, - [239] = 213, - [240] = 215, + [219] = 217, + [220] = 210, + [221] = 194, + [222] = 209, + [223] = 215, + [224] = 210, + [225] = 207, + [226] = 209, + [227] = 207, + [228] = 170, + [229] = 171, + [230] = 200, + [231] = 178, + [232] = 217, + [233] = 217, + [234] = 185, + [235] = 235, + [236] = 200, + [237] = 207, + [238] = 209, + [239] = 217, + [240] = 202, [241] = 241, - [242] = 209, - [243] = 211, - [244] = 238, - [245] = 216, - [246] = 246, - [247] = 237, - [248] = 219, - [249] = 207, - [250] = 216, - [251] = 219, - [252] = 217, - [253] = 213, + [242] = 214, + [243] = 200, + [244] = 244, + [245] = 209, + [246] = 235, + [247] = 206, + [248] = 203, + [249] = 196, + [250] = 250, + [251] = 251, + [252] = 250, + [253] = 251, [254] = 254, - [255] = 255, - [256] = 256, + [255] = 250, + [256] = 254, [257] = 254, - [258] = 255, - [259] = 256, - [260] = 255, - [261] = 261, - [262] = 256, - [263] = 254, - [264] = 254, - [265] = 261, - [266] = 261, + [258] = 254, + [259] = 259, + [260] = 259, + [261] = 259, + [262] = 251, + [263] = 263, + [264] = 264, + [265] = 265, + [266] = 266, [267] = 267, [268] = 268, [269] = 269, @@ -4290,118 +4286,118 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [278] = 278, [279] = 279, [280] = 280, - [281] = 281, - [282] = 282, - [283] = 283, - [284] = 284, - [285] = 285, - [286] = 268, + [281] = 264, + [282] = 265, + [283] = 266, + [284] = 267, + [285] = 268, + [286] = 286, [287] = 269, - [288] = 288, - [289] = 270, + [288] = 270, + [289] = 289, [290] = 290, - [291] = 271, + [291] = 291, [292] = 292, [293] = 293, [294] = 294, [295] = 295, [296] = 296, - [297] = 270, - [298] = 298, - [299] = 270, - [300] = 270, - [301] = 270, + [297] = 297, + [298] = 296, + [299] = 299, + [300] = 300, + [301] = 301, [302] = 302, [303] = 303, [304] = 304, - [305] = 302, - [306] = 306, - [307] = 307, - [308] = 308, - [309] = 309, + [305] = 263, + [306] = 275, + [307] = 276, + [308] = 277, + [309] = 278, [310] = 310, - [311] = 277, - [312] = 278, - [313] = 279, - [314] = 280, - [315] = 281, - [316] = 282, - [317] = 283, + [311] = 279, + [312] = 280, + [313] = 264, + [314] = 314, + [315] = 315, + [316] = 316, + [317] = 317, [318] = 318, [319] = 319, - [320] = 320, + [320] = 310, [321] = 321, [322] = 322, - [323] = 267, - [324] = 324, - [325] = 319, - [326] = 285, - [327] = 327, - [328] = 328, - [329] = 329, - [330] = 284, - [331] = 302, - [332] = 285, - [333] = 268, - [334] = 269, + [323] = 323, + [324] = 280, + [325] = 265, + [326] = 296, + [327] = 296, + [328] = 266, + [329] = 267, + [330] = 268, + [331] = 273, + [332] = 269, + [333] = 273, + [334] = 310, [335] = 275, - [336] = 302, - [337] = 270, - [338] = 275, - [339] = 277, - [340] = 319, - [341] = 278, - [342] = 279, - [343] = 280, - [344] = 281, - [345] = 282, - [346] = 283, - [347] = 284, - [348] = 285, - [349] = 268, - [350] = 269, + [336] = 276, + [337] = 277, + [338] = 278, + [339] = 279, + [340] = 280, + [341] = 264, + [342] = 265, + [343] = 266, + [344] = 267, + [345] = 268, + [346] = 346, + [347] = 269, + [348] = 270, + [349] = 349, + [350] = 346, [351] = 351, - [352] = 270, - [353] = 271, + [352] = 352, + [353] = 353, [354] = 354, - [355] = 351, - [356] = 356, - [357] = 357, - [358] = 358, - [359] = 359, - [360] = 271, - [361] = 275, - [362] = 359, - [363] = 310, - [364] = 356, - [365] = 272, - [366] = 295, - [367] = 277, - [368] = 318, - [369] = 324, - [370] = 354, - [371] = 273, - [372] = 276, - [373] = 292, - [374] = 296, - [375] = 306, - [376] = 308, - [377] = 309, - [378] = 278, - [379] = 327, - [380] = 279, - [381] = 359, - [382] = 280, - [383] = 272, - [384] = 281, - [385] = 324, - [386] = 296, - [387] = 282, - [388] = 359, - [389] = 283, - [390] = 272, - [391] = 284, - [392] = 296, + [355] = 270, + [356] = 273, + [357] = 354, + [358] = 351, + [359] = 271, + [360] = 294, + [361] = 314, + [362] = 319, + [363] = 349, + [364] = 272, + [365] = 286, + [366] = 291, + [367] = 295, + [368] = 301, + [369] = 303, + [370] = 304, + [371] = 318, + [372] = 322, + [373] = 354, + [374] = 275, + [375] = 271, + [376] = 276, + [377] = 319, + [378] = 295, + [379] = 277, + [380] = 354, + [381] = 278, + [382] = 271, + [383] = 279, + [384] = 295, + [385] = 385, + [386] = 386, + [387] = 387, + [388] = 388, + [389] = 389, + [390] = 390, + [391] = 391, + [392] = 218, [393] = 393, [394] = 394, [395] = 395, @@ -4420,98 +4416,98 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [408] = 408, [409] = 409, [410] = 410, - [411] = 411, + [411] = 391, [412] = 412, - [413] = 208, + [413] = 244, [414] = 414, [415] = 415, [416] = 416, - [417] = 417, + [417] = 391, [418] = 418, [419] = 419, - [420] = 206, + [420] = 406, [421] = 421, [422] = 422, - [423] = 423, - [424] = 418, - [425] = 418, - [426] = 426, + [423] = 422, + [424] = 424, + [425] = 425, + [426] = 425, [427] = 427, - [428] = 410, - [429] = 429, - [430] = 430, - [431] = 431, - [432] = 431, - [433] = 430, - [434] = 431, + [428] = 427, + [429] = 422, + [430] = 425, + [431] = 424, + [432] = 432, + [433] = 432, + [434] = 434, [435] = 435, [436] = 436, - [437] = 436, - [438] = 435, - [439] = 430, - [440] = 440, - [441] = 440, - [442] = 442, - [443] = 443, - [444] = 444, - [445] = 445, - [446] = 445, - [447] = 447, - [448] = 447, - [449] = 444, - [450] = 445, - [451] = 444, - [452] = 444, - [453] = 447, - [454] = 445, - [455] = 447, - [456] = 456, - [457] = 457, - [458] = 457, - [459] = 457, - [460] = 457, - [461] = 461, - [462] = 461, - [463] = 290, - [464] = 461, - [465] = 461, - [466] = 466, - [467] = 466, - [468] = 466, - [469] = 395, - [470] = 396, - [471] = 398, - [472] = 394, - [473] = 397, - [474] = 466, - [475] = 409, - [476] = 476, - [477] = 402, - [478] = 422, - [479] = 479, - [480] = 427, - [481] = 411, - [482] = 421, - [483] = 406, - [484] = 399, - [485] = 400, + [437] = 437, + [438] = 436, + [439] = 439, + [440] = 439, + [441] = 437, + [442] = 439, + [443] = 437, + [444] = 437, + [445] = 439, + [446] = 436, + [447] = 436, + [448] = 448, + [449] = 448, + [450] = 448, + [451] = 448, + [452] = 452, + [453] = 453, + [454] = 453, + [455] = 453, + [456] = 453, + [457] = 290, + [458] = 458, + [459] = 388, + [460] = 458, + [461] = 387, + [462] = 390, + [463] = 458, + [464] = 389, + [465] = 386, + [466] = 458, + [467] = 467, + [468] = 399, + [469] = 403, + [470] = 401, + [471] = 408, + [472] = 415, + [473] = 473, + [474] = 474, + [475] = 394, + [476] = 412, + [477] = 467, + [478] = 404, + [479] = 407, + [480] = 393, + [481] = 397, + [482] = 405, + [483] = 414, + [484] = 416, + [485] = 410, [486] = 486, - [487] = 423, - [488] = 407, - [489] = 489, - [490] = 404, - [491] = 426, - [492] = 408, - [493] = 415, - [494] = 414, - [495] = 476, - [496] = 405, - [497] = 416, - [498] = 401, + [487] = 402, + [488] = 409, + [489] = 396, + [490] = 400, + [491] = 491, + [492] = 491, + [493] = 493, + [494] = 493, + [495] = 495, + [496] = 496, + [497] = 497, + [498] = 498, [499] = 499, [500] = 500, - [501] = 500, - [502] = 499, + [501] = 501, + [502] = 502, [503] = 503, [504] = 504, [505] = 505, @@ -4663,9 +4659,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [651] = 651, [652] = 652, [653] = 653, - [654] = 654, + [654] = 388, [655] = 655, - [656] = 395, + [656] = 656, [657] = 657, [658] = 658, [659] = 659, @@ -4674,18 +4670,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [662] = 662, [663] = 663, [664] = 664, - [665] = 665, + [665] = 390, [666] = 666, - [667] = 397, - [668] = 668, + [667] = 667, + [668] = 386, [669] = 669, [670] = 670, - [671] = 398, - [672] = 672, - [673] = 673, + [671] = 671, + [672] = 387, + [673] = 389, [674] = 674, - [675] = 394, - [676] = 396, + [675] = 675, + [676] = 676, [677] = 677, [678] = 678, [679] = 679, @@ -4694,7 +4690,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [682] = 682, [683] = 683, [684] = 684, - [685] = 685, + [685] = 614, [686] = 686, [687] = 687, [688] = 688, @@ -4703,7 +4699,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [691] = 691, [692] = 692, [693] = 693, - [694] = 615, + [694] = 694, [695] = 695, [696] = 696, [697] = 697, @@ -4728,8 +4724,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [716] = 716, [717] = 717, [718] = 718, - [719] = 719, - [720] = 701, + [719] = 694, + [720] = 720, [721] = 721, [722] = 722, [723] = 723, @@ -4800,103 +4796,103 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [788] = 788, [789] = 789, [790] = 790, - [791] = 791, + [791] = 788, [792] = 792, [793] = 793, [794] = 794, - [795] = 795, - [796] = 796, + [795] = 790, + [796] = 789, [797] = 797, [798] = 798, [799] = 799, - [800] = 797, + [800] = 800, [801] = 801, - [802] = 798, + [802] = 802, [803] = 803, - [804] = 799, + [804] = 801, [805] = 805, - [806] = 806, - [807] = 807, + [806] = 797, + [807] = 805, [808] = 808, - [809] = 809, - [810] = 810, - [811] = 809, - [812] = 810, + [809] = 799, + [810] = 798, + [811] = 808, + [812] = 812, [813] = 813, [814] = 814, - [815] = 807, - [816] = 808, - [817] = 805, - [818] = 806, + [815] = 815, + [816] = 816, + [817] = 817, + [818] = 818, [819] = 819, [820] = 820, [821] = 821, - [822] = 821, + [822] = 813, [823] = 823, [824] = 824, - [825] = 825, + [825] = 815, [826] = 826, - [827] = 827, - [828] = 828, + [827] = 816, + [828] = 814, [829] = 829, - [830] = 826, - [831] = 831, + [830] = 818, + [831] = 826, [832] = 832, [833] = 833, - [834] = 821, - [835] = 827, - [836] = 828, - [837] = 837, - [838] = 838, - [839] = 829, + [834] = 834, + [835] = 833, + [836] = 829, + [837] = 821, + [838] = 824, + [839] = 819, [840] = 840, - [841] = 824, - [842] = 833, - [843] = 840, - [844] = 844, - [845] = 832, - [846] = 837, - [847] = 847, - [848] = 848, - [849] = 844, - [850] = 848, - [851] = 821, - [852] = 848, - [853] = 848, + [841] = 814, + [842] = 816, + [843] = 814, + [844] = 816, + [845] = 834, + [846] = 846, + [847] = 846, + [848] = 846, + [849] = 849, + [850] = 846, + [851] = 846, + [852] = 852, + [853] = 853, [854] = 854, - [855] = 854, - [856] = 856, - [857] = 854, - [858] = 854, - [859] = 854, - [860] = 860, - [861] = 861, - [862] = 861, - [863] = 863, - [864] = 864, - [865] = 865, + [855] = 855, + [856] = 854, + [857] = 857, + [858] = 858, + [859] = 859, + [860] = 858, + [861] = 859, + [862] = 862, + [863] = 859, + [864] = 854, + [865] = 862, [866] = 866, - [867] = 861, - [868] = 864, + [867] = 867, + [868] = 858, [869] = 869, - [870] = 870, - [871] = 871, - [872] = 864, - [873] = 865, - [874] = 871, - [875] = 871, - [876] = 876, - [877] = 863, + [870] = 857, + [871] = 852, + [872] = 859, + [873] = 862, + [874] = 874, + [875] = 854, + [876] = 854, + [877] = 859, [878] = 878, - [879] = 860, - [880] = 863, - [881] = 861, - [882] = 863, - [883] = 861, + [879] = 879, + [880] = 880, + [881] = 881, + [882] = 882, + [883] = 883, [884] = 884, - [885] = 863, + [885] = 885, [886] = 886, - [887] = 887, + [887] = 885, [888] = 888, [889] = 889, [890] = 890, @@ -4906,16 +4902,16 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [894] = 894, [895] = 895, [896] = 896, - [897] = 887, + [897] = 897, [898] = 898, [899] = 899, [900] = 900, [901] = 901, - [902] = 886, + [902] = 902, [903] = 903, [904] = 904, [905] = 905, - [906] = 906, + [906] = 883, [907] = 907, [908] = 908, [909] = 909, @@ -4923,526 +4919,526 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [911] = 911, [912] = 912, [913] = 913, - [914] = 914, + [914] = 879, [915] = 915, [916] = 916, [917] = 917, [918] = 918, [919] = 919, [920] = 920, - [921] = 921, + [921] = 904, [922] = 922, [923] = 923, - [924] = 924, - [925] = 917, - [926] = 926, + [924] = 894, + [925] = 880, + [926] = 885, [927] = 927, [928] = 928, [929] = 929, - [930] = 907, - [931] = 931, + [930] = 930, + [931] = 904, [932] = 932, - [933] = 933, + [933] = 905, [934] = 934, [935] = 935, [936] = 936, - [937] = 937, - [938] = 938, + [937] = 894, + [938] = 900, [939] = 939, - [940] = 917, - [941] = 941, - [942] = 918, + [940] = 940, + [941] = 895, + [942] = 942, [943] = 943, - [944] = 894, - [945] = 945, - [946] = 946, - [947] = 895, - [948] = 887, - [949] = 886, - [950] = 906, - [951] = 951, - [952] = 903, - [953] = 953, - [954] = 954, - [955] = 918, - [956] = 935, - [957] = 957, - [958] = 936, - [959] = 943, - [960] = 907, - [961] = 923, - [962] = 921, - [963] = 929, - [964] = 907, - [965] = 905, - [966] = 931, - [967] = 967, - [968] = 922, - [969] = 907, - [970] = 970, - [971] = 971, - [972] = 972, - [973] = 919, - [974] = 927, - [975] = 933, - [976] = 953, - [977] = 931, - [978] = 978, - [979] = 896, - [980] = 898, - [981] = 920, - [982] = 982, - [983] = 935, - [984] = 936, - [985] = 894, - [986] = 943, - [987] = 895, - [988] = 922, - [989] = 887, - [990] = 886, - [991] = 906, - [992] = 932, + [944] = 899, + [945] = 879, + [946] = 919, + [947] = 947, + [948] = 915, + [949] = 919, + [950] = 880, + [951] = 920, + [952] = 894, + [953] = 916, + [954] = 880, + [955] = 955, + [956] = 956, + [957] = 901, + [958] = 883, + [959] = 885, + [960] = 960, + [961] = 913, + [962] = 880, + [963] = 927, + [964] = 884, + [965] = 965, + [966] = 923, + [967] = 878, + [968] = 965, + [969] = 969, + [970] = 932, + [971] = 898, + [972] = 902, + [973] = 973, + [974] = 974, + [975] = 905, + [976] = 895, + [977] = 977, + [978] = 899, + [979] = 910, + [980] = 879, + [981] = 915, + [982] = 919, + [983] = 896, + [984] = 882, + [985] = 886, + [986] = 890, + [987] = 911, + [988] = 929, + [989] = 989, + [990] = 990, + [991] = 934, + [992] = 956, [993] = 993, - [994] = 888, - [995] = 889, - [996] = 904, - [997] = 928, - [998] = 998, - [999] = 998, + [994] = 892, + [995] = 897, + [996] = 969, + [997] = 973, + [998] = 974, + [999] = 969, [1000] = 1000, - [1001] = 926, - [1002] = 1002, - [1003] = 893, - [1004] = 901, - [1005] = 935, - [1006] = 936, - [1007] = 943, + [1001] = 947, + [1002] = 955, + [1003] = 913, + [1004] = 909, + [1005] = 912, + [1006] = 1006, + [1007] = 990, [1008] = 1008, [1009] = 1009, - [1010] = 911, - [1011] = 913, - [1012] = 1012, - [1013] = 899, - [1014] = 900, - [1015] = 1015, - [1016] = 934, - [1017] = 938, - [1018] = 951, - [1019] = 957, - [1020] = 970, - [1021] = 1021, - [1022] = 891, - [1023] = 892, - [1024] = 920, - [1025] = 945, - [1026] = 946, - [1027] = 954, - [1028] = 894, - [1029] = 967, - [1030] = 982, - [1031] = 1008, - [1032] = 1002, - [1033] = 924, - [1034] = 1034, - [1035] = 920, - [1036] = 923, - [1037] = 993, - [1038] = 978, - [1039] = 895, - [1040] = 922, - [1041] = 887, - [1042] = 1021, - [1043] = 929, - [1044] = 906, - [1045] = 971, - [1046] = 1046, - [1047] = 1000, - [1048] = 1048, - [1049] = 1009, - [1050] = 917, - [1051] = 919, - [1052] = 918, - [1053] = 931, - [1054] = 929, - [1055] = 894, - [1056] = 972, - [1057] = 929, + [1010] = 1010, + [1011] = 1011, + [1012] = 881, + [1013] = 888, + [1014] = 889, + [1015] = 973, + [1016] = 913, + [1017] = 969, + [1018] = 973, + [1019] = 942, + [1020] = 943, + [1021] = 960, + [1022] = 974, + [1023] = 977, + [1024] = 1006, + [1025] = 1025, + [1026] = 974, + [1027] = 917, + [1028] = 1025, + [1029] = 1029, + [1030] = 1008, + [1031] = 920, + [1032] = 1009, + [1033] = 895, + [1034] = 1010, + [1035] = 1000, + [1036] = 1011, + [1037] = 989, + [1038] = 1038, + [1039] = 899, + [1040] = 910, + [1041] = 993, + [1042] = 879, + [1043] = 915, + [1044] = 904, + [1045] = 905, + [1046] = 895, + [1047] = 1047, + [1048] = 910, + [1049] = 894, + [1050] = 1050, + [1051] = 517, + [1052] = 1052, + [1053] = 1053, + [1054] = 1054, + [1055] = 1055, + [1056] = 517, + [1057] = 1057, [1058] = 1058, - [1059] = 518, + [1059] = 1059, [1060] = 1060, - [1061] = 1061, - [1062] = 1062, - [1063] = 1063, - [1064] = 518, - [1065] = 1065, - [1066] = 1066, - [1067] = 1067, + [1061] = 386, + [1062] = 398, + [1063] = 390, + [1064] = 218, + [1065] = 387, + [1066] = 389, + [1067] = 244, [1068] = 1068, - [1069] = 395, - [1070] = 1070, + [1069] = 388, + [1070] = 418, [1071] = 1071, [1072] = 1072, - [1073] = 412, - [1074] = 398, - [1075] = 394, - [1076] = 208, - [1077] = 1077, - [1078] = 396, - [1079] = 417, + [1073] = 1073, + [1074] = 1074, + [1075] = 616, + [1076] = 681, + [1077] = 558, + [1078] = 1078, + [1079] = 1079, [1080] = 1080, - [1081] = 397, - [1082] = 206, - [1083] = 1083, - [1084] = 559, + [1081] = 519, + [1082] = 747, + [1083] = 1050, + [1084] = 1084, [1085] = 1085, - [1086] = 1058, - [1087] = 682, + [1086] = 1086, + [1087] = 1087, [1088] = 1088, [1089] = 1089, - [1090] = 748, - [1091] = 617, - [1092] = 520, + [1090] = 1090, + [1091] = 1091, + [1092] = 1092, [1093] = 1093, [1094] = 1094, [1095] = 1095, [1096] = 1096, [1097] = 1097, [1098] = 1098, - [1099] = 1099, + [1099] = 667, [1100] = 1100, - [1101] = 1101, - [1102] = 1102, - [1103] = 1103, - [1104] = 1104, - [1105] = 1105, - [1106] = 1106, - [1107] = 674, - [1108] = 1108, - [1109] = 645, - [1110] = 648, - [1111] = 649, - [1112] = 650, - [1113] = 653, - [1114] = 654, - [1115] = 655, - [1116] = 663, - [1117] = 673, - [1118] = 678, - [1119] = 679, - [1120] = 681, - [1121] = 703, - [1122] = 704, - [1123] = 719, - [1124] = 725, - [1125] = 604, - [1126] = 605, - [1127] = 606, - [1128] = 607, - [1129] = 608, - [1130] = 609, - [1131] = 610, - [1132] = 611, - [1133] = 612, - [1134] = 613, - [1135] = 618, - [1136] = 619, - [1137] = 620, - [1138] = 621, - [1139] = 622, - [1140] = 623, - [1141] = 624, - [1142] = 625, - [1143] = 626, - [1144] = 627, - [1145] = 628, - [1146] = 629, - [1147] = 630, - [1148] = 631, - [1149] = 632, - [1150] = 633, - [1151] = 635, - [1152] = 637, - [1153] = 638, - [1154] = 639, - [1155] = 640, - [1156] = 641, - [1157] = 642, - [1158] = 643, - [1159] = 646, - [1160] = 647, - [1161] = 651, - [1162] = 652, - [1163] = 657, - [1164] = 658, - [1165] = 659, - [1166] = 660, - [1167] = 661, - [1168] = 662, - [1169] = 664, - [1170] = 665, - [1171] = 666, - [1172] = 668, - [1173] = 669, - [1174] = 670, - [1175] = 672, - [1176] = 677, - [1177] = 680, - [1178] = 683, - [1179] = 684, - [1180] = 685, - [1181] = 686, - [1182] = 687, - [1183] = 688, - [1184] = 689, - [1185] = 690, - [1186] = 691, - [1187] = 692, - [1188] = 693, - [1189] = 695, - [1190] = 696, - [1191] = 697, - [1192] = 698, - [1193] = 699, - [1194] = 700, - [1195] = 702, - [1196] = 705, - [1197] = 706, - [1198] = 707, - [1199] = 708, - [1200] = 709, - [1201] = 710, - [1202] = 711, - [1203] = 712, - [1204] = 713, - [1205] = 714, - [1206] = 715, - [1207] = 716, - [1208] = 721, - [1209] = 722, - [1210] = 726, - [1211] = 727, - [1212] = 728, - [1213] = 729, - [1214] = 730, - [1215] = 731, - [1216] = 732, - [1217] = 733, - [1218] = 734, - [1219] = 735, - [1220] = 736, - [1221] = 737, - [1222] = 738, - [1223] = 739, - [1224] = 740, - [1225] = 741, - [1226] = 742, - [1227] = 743, - [1228] = 744, - [1229] = 745, - [1230] = 747, - [1231] = 749, - [1232] = 750, - [1233] = 751, - [1234] = 752, - [1235] = 753, - [1236] = 754, - [1237] = 755, - [1238] = 756, - [1239] = 757, - [1240] = 758, - [1241] = 759, - [1242] = 760, - [1243] = 761, - [1244] = 762, - [1245] = 763, - [1246] = 764, - [1247] = 765, - [1248] = 766, - [1249] = 767, - [1250] = 768, - [1251] = 769, - [1252] = 770, - [1253] = 771, - [1254] = 772, - [1255] = 773, - [1256] = 774, - [1257] = 775, - [1258] = 776, - [1259] = 777, - [1260] = 778, - [1261] = 779, - [1262] = 780, - [1263] = 781, - [1264] = 782, - [1265] = 783, - [1266] = 784, - [1267] = 785, - [1268] = 786, - [1269] = 504, - [1270] = 505, - [1271] = 506, - [1272] = 507, - [1273] = 508, - [1274] = 509, - [1275] = 510, - [1276] = 511, - [1277] = 512, - [1278] = 513, - [1279] = 514, - [1280] = 515, - [1281] = 516, - [1282] = 517, - [1283] = 519, - [1284] = 521, - [1285] = 522, - [1286] = 523, - [1287] = 524, - [1288] = 525, - [1289] = 526, - [1290] = 527, - [1291] = 528, - [1292] = 529, - [1293] = 530, - [1294] = 531, - [1295] = 532, - [1296] = 533, - [1297] = 534, - [1298] = 787, - [1299] = 536, - [1300] = 537, - [1301] = 538, - [1302] = 539, - [1303] = 540, - [1304] = 541, - [1305] = 542, - [1306] = 543, - [1307] = 544, - [1308] = 545, - [1309] = 546, - [1310] = 547, - [1311] = 548, - [1312] = 549, - [1313] = 550, - [1314] = 551, - [1315] = 503, - [1316] = 552, - [1317] = 553, - [1318] = 554, - [1319] = 555, - [1320] = 556, - [1321] = 557, - [1322] = 558, - [1323] = 560, - [1324] = 561, - [1325] = 562, - [1326] = 563, - [1327] = 564, - [1328] = 565, - [1329] = 566, - [1330] = 567, - [1331] = 568, - [1332] = 569, - [1333] = 570, - [1334] = 571, - [1335] = 572, - [1336] = 573, - [1337] = 574, - [1338] = 575, - [1339] = 576, - [1340] = 577, - [1341] = 578, - [1342] = 579, - [1343] = 580, - [1344] = 581, - [1345] = 582, - [1346] = 583, - [1347] = 584, - [1348] = 585, - [1349] = 586, - [1350] = 587, - [1351] = 588, - [1352] = 589, - [1353] = 590, - [1354] = 591, - [1355] = 592, - [1356] = 593, - [1357] = 594, - [1358] = 595, - [1359] = 596, - [1360] = 597, - [1361] = 598, - [1362] = 599, - [1363] = 600, - [1364] = 601, - [1365] = 602, - [1366] = 603, + [1101] = 644, + [1102] = 647, + [1103] = 648, + [1104] = 649, + [1105] = 652, + [1106] = 653, + [1107] = 655, + [1108] = 662, + [1109] = 674, + [1110] = 677, + [1111] = 678, + [1112] = 680, + [1113] = 703, + [1114] = 718, + [1115] = 723, + [1116] = 724, + [1117] = 603, + [1118] = 604, + [1119] = 605, + [1120] = 606, + [1121] = 607, + [1122] = 608, + [1123] = 609, + [1124] = 610, + [1125] = 611, + [1126] = 612, + [1127] = 617, + [1128] = 618, + [1129] = 619, + [1130] = 620, + [1131] = 621, + [1132] = 622, + [1133] = 623, + [1134] = 624, + [1135] = 625, + [1136] = 626, + [1137] = 627, + [1138] = 628, + [1139] = 629, + [1140] = 630, + [1141] = 631, + [1142] = 632, + [1143] = 634, + [1144] = 636, + [1145] = 637, + [1146] = 638, + [1147] = 639, + [1148] = 640, + [1149] = 641, + [1150] = 642, + [1151] = 645, + [1152] = 646, + [1153] = 650, + [1154] = 651, + [1155] = 656, + [1156] = 657, + [1157] = 658, + [1158] = 659, + [1159] = 660, + [1160] = 661, + [1161] = 663, + [1162] = 664, + [1163] = 666, + [1164] = 669, + [1165] = 670, + [1166] = 671, + [1167] = 675, + [1168] = 676, + [1169] = 679, + [1170] = 682, + [1171] = 683, + [1172] = 684, + [1173] = 686, + [1174] = 687, + [1175] = 688, + [1176] = 689, + [1177] = 690, + [1178] = 691, + [1179] = 692, + [1180] = 693, + [1181] = 695, + [1182] = 696, + [1183] = 697, + [1184] = 698, + [1185] = 699, + [1186] = 700, + [1187] = 701, + [1188] = 704, + [1189] = 705, + [1190] = 706, + [1191] = 707, + [1192] = 708, + [1193] = 709, + [1194] = 710, + [1195] = 711, + [1196] = 712, + [1197] = 713, + [1198] = 714, + [1199] = 715, + [1200] = 720, + [1201] = 721, + [1202] = 725, + [1203] = 726, + [1204] = 727, + [1205] = 728, + [1206] = 729, + [1207] = 730, + [1208] = 731, + [1209] = 732, + [1210] = 733, + [1211] = 734, + [1212] = 735, + [1213] = 736, + [1214] = 737, + [1215] = 738, + [1216] = 739, + [1217] = 740, + [1218] = 741, + [1219] = 742, + [1220] = 743, + [1221] = 744, + [1222] = 746, + [1223] = 748, + [1224] = 749, + [1225] = 750, + [1226] = 751, + [1227] = 752, + [1228] = 753, + [1229] = 754, + [1230] = 755, + [1231] = 756, + [1232] = 757, + [1233] = 758, + [1234] = 759, + [1235] = 760, + [1236] = 761, + [1237] = 762, + [1238] = 763, + [1239] = 764, + [1240] = 765, + [1241] = 766, + [1242] = 767, + [1243] = 768, + [1244] = 769, + [1245] = 770, + [1246] = 771, + [1247] = 772, + [1248] = 773, + [1249] = 774, + [1250] = 775, + [1251] = 776, + [1252] = 777, + [1253] = 778, + [1254] = 496, + [1255] = 497, + [1256] = 498, + [1257] = 499, + [1258] = 500, + [1259] = 501, + [1260] = 502, + [1261] = 503, + [1262] = 504, + [1263] = 505, + [1264] = 506, + [1265] = 507, + [1266] = 508, + [1267] = 509, + [1268] = 510, + [1269] = 511, + [1270] = 512, + [1271] = 513, + [1272] = 514, + [1273] = 515, + [1274] = 516, + [1275] = 518, + [1276] = 520, + [1277] = 521, + [1278] = 522, + [1279] = 523, + [1280] = 524, + [1281] = 525, + [1282] = 779, + [1283] = 527, + [1284] = 528, + [1285] = 529, + [1286] = 530, + [1287] = 531, + [1288] = 532, + [1289] = 533, + [1290] = 534, + [1291] = 535, + [1292] = 536, + [1293] = 537, + [1294] = 538, + [1295] = 539, + [1296] = 540, + [1297] = 541, + [1298] = 542, + [1299] = 543, + [1300] = 544, + [1301] = 495, + [1302] = 545, + [1303] = 546, + [1304] = 547, + [1305] = 548, + [1306] = 549, + [1307] = 550, + [1308] = 551, + [1309] = 552, + [1310] = 553, + [1311] = 554, + [1312] = 555, + [1313] = 556, + [1314] = 557, + [1315] = 559, + [1316] = 560, + [1317] = 561, + [1318] = 562, + [1319] = 563, + [1320] = 564, + [1321] = 565, + [1322] = 566, + [1323] = 567, + [1324] = 568, + [1325] = 569, + [1326] = 570, + [1327] = 571, + [1328] = 572, + [1329] = 573, + [1330] = 574, + [1331] = 575, + [1332] = 576, + [1333] = 577, + [1334] = 578, + [1335] = 579, + [1336] = 580, + [1337] = 581, + [1338] = 582, + [1339] = 583, + [1340] = 584, + [1341] = 585, + [1342] = 586, + [1343] = 587, + [1344] = 588, + [1345] = 589, + [1346] = 590, + [1347] = 591, + [1348] = 592, + [1349] = 593, + [1350] = 594, + [1351] = 595, + [1352] = 596, + [1353] = 597, + [1354] = 598, + [1355] = 599, + [1356] = 600, + [1357] = 601, + [1358] = 602, + [1359] = 1359, + [1360] = 517, + [1361] = 1361, + [1362] = 1362, + [1363] = 650, + [1364] = 517, + [1365] = 517, + [1366] = 1100, [1367] = 1367, - [1368] = 518, + [1368] = 1368, [1369] = 1369, [1370] = 1370, - [1371] = 651, - [1372] = 518, - [1373] = 518, + [1371] = 1100, + [1372] = 1372, + [1373] = 1373, [1374] = 1374, - [1375] = 1108, - [1376] = 1376, - [1377] = 1377, - [1378] = 1378, - [1379] = 1379, - [1380] = 1108, - [1381] = 1381, + [1375] = 1375, + [1376] = 1100, + [1377] = 526, + [1378] = 1052, + [1379] = 1059, + [1380] = 613, + [1381] = 633, [1382] = 1382, - [1383] = 1108, - [1384] = 535, - [1385] = 1385, - [1386] = 1060, - [1387] = 1067, - [1388] = 614, - [1389] = 634, + [1383] = 1058, + [1384] = 1060, + [1385] = 702, + [1386] = 1386, + [1387] = 290, + [1388] = 1388, + [1389] = 1073, [1390] = 1390, - [1391] = 1066, - [1392] = 1068, - [1393] = 724, + [1391] = 1391, + [1392] = 1392, + [1393] = 1393, [1394] = 1394, [1395] = 1395, [1396] = 1396, [1397] = 1397, [1398] = 1398, - [1399] = 1399, + [1399] = 1073, [1400] = 1400, [1401] = 1401, [1402] = 1402, [1403] = 1403, [1404] = 1404, - [1405] = 1405, + [1405] = 1057, [1406] = 1406, - [1407] = 1072, + [1407] = 1407, [1408] = 1408, [1409] = 1409, [1410] = 1410, [1411] = 1411, [1412] = 1412, [1413] = 1413, - [1414] = 1072, + [1414] = 1414, [1415] = 1415, [1416] = 1416, [1417] = 1417, [1418] = 1418, [1419] = 1419, [1420] = 1420, - [1421] = 1421, + [1421] = 432, [1422] = 1422, - [1423] = 440, + [1423] = 1423, [1424] = 1424, [1425] = 1425, [1426] = 1426, - [1427] = 290, + [1427] = 1427, [1428] = 1428, [1429] = 1429, - [1430] = 1430, - [1431] = 1431, + [1430] = 387, + [1431] = 394, [1432] = 1432, - [1433] = 1065, + [1433] = 218, [1434] = 1434, [1435] = 1435, [1436] = 1436, @@ -5451,45 +5447,45 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1439] = 1439, [1440] = 1440, [1441] = 1441, - [1442] = 188, - [1443] = 206, + [1442] = 1442, + [1443] = 1443, [1444] = 1444, - [1445] = 406, - [1446] = 426, - [1447] = 401, - [1448] = 407, - [1449] = 1449, - [1450] = 1450, - [1451] = 1451, - [1452] = 405, - [1453] = 404, + [1445] = 397, + [1446] = 398, + [1447] = 244, + [1448] = 1448, + [1449] = 403, + [1450] = 418, + [1451] = 400, + [1452] = 399, + [1453] = 1453, [1454] = 1454, - [1455] = 1455, + [1455] = 402, [1456] = 1456, [1457] = 1457, [1458] = 1458, - [1459] = 1072, + [1459] = 401, [1460] = 1460, - [1461] = 1461, + [1461] = 412, [1462] = 1462, [1463] = 1463, - [1464] = 1464, + [1464] = 1073, [1465] = 1465, - [1466] = 192, + [1466] = 1466, [1467] = 1467, [1468] = 1468, [1469] = 1469, [1470] = 1470, - [1471] = 1471, + [1471] = 170, [1472] = 1472, [1473] = 1473, - [1474] = 191, - [1475] = 417, - [1476] = 398, + [1474] = 1474, + [1475] = 1475, + [1476] = 1476, [1477] = 1477, [1478] = 1478, - [1479] = 1479, - [1480] = 400, + [1479] = 196, + [1480] = 1480, [1481] = 1481, [1482] = 1482, [1483] = 1483, @@ -5497,19 +5493,19 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1485] = 1485, [1486] = 1486, [1487] = 1487, - [1488] = 1488, - [1489] = 174, + [1488] = 178, + [1489] = 1489, [1490] = 1490, - [1491] = 422, - [1492] = 1492, + [1491] = 1491, + [1492] = 415, [1493] = 1493, [1494] = 1494, - [1495] = 1495, + [1495] = 416, [1496] = 1496, - [1497] = 427, + [1497] = 1497, [1498] = 1498, - [1499] = 1499, - [1500] = 416, + [1499] = 386, + [1500] = 1500, [1501] = 1501, [1502] = 1502, [1503] = 1503, @@ -5517,10 +5513,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1505] = 1505, [1506] = 1506, [1507] = 1507, - [1508] = 1508, - [1509] = 402, - [1510] = 409, - [1511] = 203, + [1508] = 171, + [1509] = 1509, + [1510] = 1510, + [1511] = 1511, [1512] = 1512, [1513] = 1513, [1514] = 1514, @@ -5529,707 +5525,707 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1517] = 1517, [1518] = 1518, [1519] = 1519, - [1520] = 208, + [1520] = 1520, [1521] = 1521, - [1522] = 1522, + [1522] = 194, [1523] = 1523, - [1524] = 1524, - [1525] = 396, - [1526] = 395, + [1524] = 388, + [1525] = 1525, + [1526] = 408, [1527] = 1527, [1528] = 1528, - [1529] = 412, - [1530] = 1530, - [1531] = 1531, - [1532] = 408, - [1533] = 411, - [1534] = 399, + [1529] = 1529, + [1530] = 405, + [1531] = 404, + [1532] = 407, + [1533] = 409, + [1534] = 410, [1535] = 414, - [1536] = 415, - [1537] = 421, + [1536] = 393, + [1537] = 389, [1538] = 1538, - [1539] = 1539, + [1539] = 396, [1540] = 1540, - [1541] = 1541, + [1541] = 390, [1542] = 1542, - [1543] = 397, + [1543] = 1543, [1544] = 1544, - [1545] = 394, - [1546] = 423, + [1545] = 1545, + [1546] = 1546, [1547] = 1547, [1548] = 1548, [1549] = 1549, [1550] = 1550, [1551] = 1551, - [1552] = 1552, + [1552] = 1073, [1553] = 1553, - [1554] = 1554, + [1554] = 1073, [1555] = 1555, [1556] = 1556, - [1557] = 1557, + [1557] = 1551, [1558] = 1558, [1559] = 1559, [1560] = 1560, [1561] = 1561, - [1562] = 1562, - [1563] = 1563, + [1562] = 1553, + [1563] = 1560, [1564] = 1564, [1565] = 1565, - [1566] = 1072, + [1566] = 1566, [1567] = 1567, - [1568] = 1561, - [1569] = 1072, - [1570] = 1562, - [1571] = 1559, + [1568] = 1568, + [1569] = 1569, + [1570] = 1570, + [1571] = 1571, [1572] = 1572, - [1573] = 1080, + [1573] = 1068, [1574] = 1574, [1575] = 1575, - [1576] = 1576, - [1577] = 1577, - [1578] = 1578, + [1576] = 1367, + [1577] = 1072, + [1578] = 1375, [1579] = 1579, [1580] = 1580, [1581] = 1581, [1582] = 1582, [1583] = 1583, - [1584] = 1584, + [1584] = 1074, [1585] = 1585, [1586] = 1586, - [1587] = 1070, - [1588] = 1374, - [1589] = 1385, - [1590] = 1590, - [1591] = 1591, - [1592] = 1592, + [1587] = 1587, + [1588] = 1588, + [1589] = 1375, + [1590] = 1375, + [1591] = 1367, + [1592] = 1367, [1593] = 1593, - [1594] = 1594, - [1595] = 1595, - [1596] = 1071, - [1597] = 1597, - [1598] = 1088, - [1599] = 1374, - [1600] = 1385, - [1601] = 1374, - [1602] = 1385, - [1603] = 1603, - [1604] = 1096, - [1605] = 1405, - [1606] = 1603, - [1607] = 1402, - [1608] = 1418, - [1609] = 1098, - [1610] = 1094, - [1611] = 1425, - [1612] = 1102, - [1613] = 1522, - [1614] = 1524, - [1615] = 1106, - [1616] = 1425, + [1594] = 1079, + [1595] = 1418, + [1596] = 1520, + [1597] = 1397, + [1598] = 1089, + [1599] = 1418, + [1600] = 1086, + [1601] = 1095, + [1602] = 1091, + [1603] = 1097, + [1604] = 1604, + [1605] = 1518, + [1606] = 1520, + [1607] = 1604, + [1608] = 1419, + [1609] = 1096, + [1610] = 1419, + [1611] = 1087, + [1612] = 1397, + [1613] = 1518, + [1614] = 1094, + [1615] = 1402, + [1616] = 1604, [1617] = 1402, - [1618] = 1603, - [1619] = 1101, - [1620] = 1522, - [1621] = 1104, - [1622] = 1524, - [1623] = 1405, - [1624] = 1603, - [1625] = 1093, - [1626] = 1418, - [1627] = 1627, - [1628] = 1493, - [1629] = 1627, - [1630] = 1379, - [1631] = 1505, + [1618] = 1604, + [1619] = 290, + [1620] = 1372, + [1621] = 1411, + [1622] = 1502, + [1623] = 1623, + [1624] = 1396, + [1625] = 1502, + [1626] = 1626, + [1627] = 1395, + [1628] = 1407, + [1629] = 1629, + [1630] = 1382, + [1631] = 1558, [1632] = 1632, - [1633] = 1493, - [1634] = 1399, - [1635] = 1367, - [1636] = 1636, - [1637] = 1558, - [1638] = 1632, - [1639] = 1557, - [1640] = 1401, - [1641] = 1400, - [1642] = 1522, - [1643] = 1643, - [1644] = 1524, - [1645] = 1416, - [1646] = 1627, - [1647] = 1419, - [1648] = 1400, - [1649] = 1643, - [1650] = 290, - [1651] = 1651, - [1652] = 1377, - [1653] = 1632, - [1654] = 1390, - [1655] = 1505, - [1656] = 1627, - [1657] = 1636, - [1658] = 1632, - [1659] = 1403, - [1660] = 1558, - [1661] = 1574, - [1662] = 1395, - [1663] = 1396, - [1664] = 1398, - [1665] = 1586, - [1666] = 1411, + [1633] = 1629, + [1634] = 1626, + [1635] = 1623, + [1636] = 1623, + [1637] = 1550, + [1638] = 1490, + [1639] = 1626, + [1640] = 1640, + [1641] = 1417, + [1642] = 1369, + [1643] = 1359, + [1644] = 1395, + [1645] = 1626, + [1646] = 1490, + [1647] = 1632, + [1648] = 1518, + [1649] = 1623, + [1650] = 1520, + [1651] = 1579, + [1652] = 1574, + [1653] = 1391, + [1654] = 1570, + [1655] = 1410, + [1656] = 1586, + [1657] = 1413, + [1658] = 1588, + [1659] = 1582, + [1660] = 1660, + [1661] = 1572, + [1662] = 1558, + [1663] = 1580, + [1664] = 387, + [1665] = 1422, + [1666] = 389, [1667] = 1667, - [1668] = 1575, - [1669] = 1584, - [1670] = 1670, - [1671] = 1557, - [1672] = 1412, - [1673] = 1409, - [1674] = 1424, - [1675] = 395, - [1676] = 1592, - [1677] = 1413, - [1678] = 1417, - [1679] = 397, - [1680] = 1667, - [1681] = 1404, - [1682] = 1426, - [1683] = 1577, - [1684] = 1434, - [1685] = 1394, - [1686] = 1582, - [1687] = 1410, - [1688] = 1688, - [1689] = 398, - [1690] = 1591, - [1691] = 1578, - [1692] = 1572, - [1693] = 394, - [1694] = 1579, - [1695] = 1415, - [1696] = 1696, - [1697] = 1585, - [1698] = 1670, - [1699] = 1576, - [1700] = 1581, - [1701] = 1590, - [1702] = 1406, - [1703] = 1594, - [1704] = 1704, - [1705] = 1429, - [1706] = 1595, - [1707] = 1707, - [1708] = 396, - [1709] = 1432, - [1710] = 1580, - [1711] = 1593, - [1712] = 1408, - [1713] = 1420, - [1714] = 1714, - [1715] = 1421, - [1716] = 1422, - [1717] = 1428, - [1718] = 1430, - [1719] = 1707, - [1720] = 1431, - [1721] = 1583, - [1722] = 1460, + [1668] = 1550, + [1669] = 1420, + [1670] = 1426, + [1671] = 1425, + [1672] = 1423, + [1673] = 1406, + [1674] = 388, + [1675] = 1675, + [1676] = 1412, + [1677] = 1424, + [1678] = 1660, + [1679] = 1567, + [1680] = 1583, + [1681] = 1414, + [1682] = 390, + [1683] = 1683, + [1684] = 1568, + [1685] = 1415, + [1686] = 1686, + [1687] = 1585, + [1688] = 1416, + [1689] = 386, + [1690] = 1667, + [1691] = 1569, + [1692] = 1564, + [1693] = 1388, + [1694] = 1694, + [1695] = 1393, + [1696] = 1565, + [1697] = 1394, + [1698] = 1571, + [1699] = 1404, + [1700] = 1400, + [1701] = 1401, + [1702] = 1403, + [1703] = 1386, + [1704] = 1575, + [1705] = 1587, + [1706] = 1566, + [1707] = 1581, + [1708] = 1408, + [1709] = 1390, + [1710] = 1710, + [1711] = 1409, + [1712] = 1683, + [1713] = 1398, + [1714] = 1504, + [1715] = 1715, + [1716] = 432, + [1717] = 404, + [1718] = 1718, + [1719] = 409, + [1720] = 410, + [1721] = 414, + [1722] = 393, [1723] = 1723, - [1724] = 408, - [1725] = 1725, - [1726] = 399, - [1727] = 414, - [1728] = 415, - [1729] = 421, - [1730] = 1730, - [1731] = 1490, - [1732] = 1585, - [1733] = 1551, - [1734] = 1734, - [1735] = 427, - [1736] = 1592, - [1737] = 1591, - [1738] = 416, - [1739] = 400, - [1740] = 402, - [1741] = 1578, - [1742] = 1579, - [1743] = 1580, - [1744] = 1581, - [1745] = 1575, - [1746] = 1574, - [1747] = 1577, - [1748] = 1582, - [1749] = 1583, - [1750] = 1584, - [1751] = 1572, - [1752] = 1492, - [1753] = 1496, - [1754] = 1593, - [1755] = 406, - [1756] = 407, - [1757] = 409, - [1758] = 1527, - [1759] = 1456, - [1760] = 1540, - [1761] = 426, - [1762] = 401, - [1763] = 404, - [1764] = 1586, - [1765] = 423, - [1766] = 405, - [1767] = 422, - [1768] = 188, - [1769] = 1769, - [1770] = 191, - [1771] = 411, - [1772] = 192, - [1773] = 1528, - [1774] = 1585, - [1775] = 203, - [1776] = 1592, - [1777] = 417, - [1778] = 174, - [1779] = 412, - [1780] = 1461, - [1781] = 1593, - [1782] = 1530, - [1783] = 1586, - [1784] = 208, - [1785] = 206, - [1786] = 1786, - [1787] = 1787, + [1724] = 1475, + [1725] = 1477, + [1726] = 1478, + [1727] = 1505, + [1728] = 1728, + [1729] = 1571, + [1730] = 1443, + [1731] = 408, + [1732] = 1564, + [1733] = 1585, + [1734] = 416, + [1735] = 396, + [1736] = 397, + [1737] = 1737, + [1738] = 1582, + [1739] = 1580, + [1740] = 1583, + [1741] = 1579, + [1742] = 1587, + [1743] = 1565, + [1744] = 1566, + [1745] = 1567, + [1746] = 1568, + [1747] = 1569, + [1748] = 1570, + [1749] = 1517, + [1750] = 1519, + [1751] = 1483, + [1752] = 1575, + [1753] = 403, + [1754] = 402, + [1755] = 1485, + [1756] = 405, + [1757] = 1547, + [1758] = 1460, + [1759] = 400, + [1760] = 399, + [1761] = 412, + [1762] = 1572, + [1763] = 394, + [1764] = 401, + [1765] = 415, + [1766] = 194, + [1767] = 196, + [1768] = 407, + [1769] = 170, + [1770] = 1571, + [1771] = 171, + [1772] = 1772, + [1773] = 1564, + [1774] = 418, + [1775] = 178, + [1776] = 398, + [1777] = 1575, + [1778] = 1572, + [1779] = 1486, + [1780] = 1527, + [1781] = 1510, + [1782] = 1529, + [1783] = 218, + [1784] = 244, + [1785] = 1514, + [1786] = 1496, + [1787] = 1516, [1788] = 1788, [1789] = 1789, - [1790] = 1494, + [1790] = 1772, [1791] = 1791, [1792] = 1792, - [1793] = 1769, - [1794] = 1495, - [1795] = 1730, - [1796] = 1585, + [1793] = 1793, + [1794] = 1466, + [1795] = 1538, + [1796] = 1728, [1797] = 1797, - [1798] = 1555, + [1798] = 1491, [1799] = 1799, - [1800] = 1800, + [1800] = 1571, [1801] = 1801, [1802] = 1802, - [1803] = 1502, - [1804] = 1549, + [1803] = 1497, + [1804] = 1804, [1805] = 1805, - [1806] = 1465, - [1807] = 1550, - [1808] = 1065, - [1809] = 1809, - [1810] = 1499, - [1811] = 1788, - [1812] = 1515, - [1813] = 1797, - [1814] = 1444, + [1806] = 1428, + [1807] = 1807, + [1808] = 1808, + [1809] = 1500, + [1810] = 1792, + [1811] = 1801, + [1812] = 1057, + [1813] = 1494, + [1814] = 1814, [1815] = 1815, [1816] = 1816, - [1817] = 1468, - [1818] = 1485, - [1819] = 1819, - [1820] = 1820, + [1817] = 1817, + [1818] = 1427, + [1819] = 1493, + [1820] = 1802, [1821] = 1821, - [1822] = 1469, - [1823] = 1449, - [1824] = 1800, - [1825] = 1504, - [1826] = 1769, - [1827] = 1592, - [1828] = 1591, - [1829] = 1576, - [1830] = 1590, - [1831] = 1730, - [1832] = 1594, - [1833] = 1595, - [1834] = 1799, - [1835] = 1820, - [1836] = 1836, + [1822] = 1521, + [1823] = 1772, + [1824] = 1470, + [1825] = 1581, + [1826] = 1574, + [1827] = 1728, + [1828] = 1586, + [1829] = 1588, + [1830] = 1799, + [1831] = 1564, + [1832] = 1585, + [1833] = 1473, + [1834] = 1792, + [1835] = 1474, + [1836] = 1817, [1837] = 1837, - [1838] = 1521, - [1839] = 1498, - [1840] = 1464, - [1841] = 1788, - [1842] = 1578, - [1843] = 1579, - [1844] = 1580, - [1845] = 1816, - [1846] = 440, - [1847] = 1575, - [1848] = 1574, - [1849] = 1577, - [1850] = 1582, - [1851] = 1583, - [1852] = 1769, - [1853] = 1815, - [1854] = 1730, - [1855] = 1799, - [1856] = 1584, - [1857] = 1572, - [1858] = 1450, - [1859] = 1451, - [1860] = 1788, - [1861] = 1487, - [1862] = 1816, - [1863] = 1488, - [1864] = 1819, - [1865] = 1769, - [1866] = 1799, + [1838] = 1513, + [1839] = 1839, + [1840] = 1815, + [1841] = 1540, + [1842] = 1448, + [1843] = 1458, + [1844] = 1772, + [1845] = 1728, + [1846] = 1799, + [1847] = 1582, + [1848] = 1580, + [1849] = 1583, + [1850] = 1579, + [1851] = 1587, + [1852] = 1565, + [1853] = 1566, + [1854] = 1814, + [1855] = 1567, + [1856] = 1792, + [1857] = 1568, + [1858] = 1569, + [1859] = 1815, + [1860] = 1570, + [1861] = 1772, + [1862] = 1799, + [1863] = 1507, + [1864] = 1512, + [1865] = 1792, + [1866] = 1815, [1867] = 1805, - [1868] = 1788, - [1869] = 1816, - [1870] = 1556, - [1871] = 1769, - [1872] = 1799, - [1873] = 1508, - [1874] = 1503, - [1875] = 1788, - [1876] = 1816, - [1877] = 1769, - [1878] = 1799, - [1879] = 1788, - [1880] = 1501, - [1881] = 1816, - [1882] = 1809, - [1883] = 1593, - [1884] = 1884, - [1885] = 1513, - [1886] = 1517, - [1887] = 1816, - [1888] = 1523, - [1889] = 1470, - [1890] = 1531, - [1891] = 1791, - [1892] = 1514, - [1893] = 1542, - [1894] = 1507, - [1895] = 1472, - [1896] = 1516, - [1897] = 1454, - [1898] = 1547, - [1899] = 1457, - [1900] = 1548, - [1901] = 1462, - [1902] = 1463, - [1903] = 1473, - [1904] = 1471, - [1905] = 1799, - [1906] = 1552, - [1907] = 1478, - [1908] = 1486, - [1909] = 1441, - [1910] = 1576, - [1911] = 1519, - [1912] = 1590, - [1913] = 1884, - [1914] = 1455, - [1915] = 1586, - [1916] = 1916, - [1917] = 1594, - [1918] = 1595, - [1919] = 1553, - [1920] = 1467, - [1921] = 1554, - [1922] = 1477, - [1923] = 1479, - [1924] = 1924, - [1925] = 1436, - [1926] = 1482, - [1927] = 1437, - [1928] = 1506, - [1929] = 1438, - [1930] = 1435, - [1931] = 1512, - [1932] = 1439, - [1933] = 1440, - [1934] = 1518, + [1868] = 1772, + [1869] = 1799, + [1870] = 1792, + [1871] = 1815, + [1872] = 1772, + [1873] = 1799, + [1874] = 1792, + [1875] = 1523, + [1876] = 1815, + [1877] = 1463, + [1878] = 1528, + [1879] = 1879, + [1880] = 1575, + [1881] = 1808, + [1882] = 1797, + [1883] = 1543, + [1884] = 1454, + [1885] = 1429, + [1886] = 1489, + [1887] = 1432, + [1888] = 1465, + [1889] = 1456, + [1890] = 1498, + [1891] = 1462, + [1892] = 1434, + [1893] = 1467, + [1894] = 1468, + [1895] = 1437, + [1896] = 1476, + [1897] = 1799, + [1898] = 1481, + [1899] = 1548, + [1900] = 1815, + [1901] = 1444, + [1902] = 1469, + [1903] = 1581, + [1904] = 1574, + [1905] = 1457, + [1906] = 1906, + [1907] = 1572, + [1908] = 1586, + [1909] = 1879, + [1910] = 1588, + [1911] = 1525, + [1912] = 1472, + [1913] = 1435, + [1914] = 1436, + [1915] = 1480, + [1916] = 1482, + [1917] = 1917, + [1918] = 1484, + [1919] = 1438, + [1920] = 1439, + [1921] = 1440, + [1922] = 1441, + [1923] = 1503, + [1924] = 1453, + [1925] = 1506, + [1926] = 1509, + [1927] = 1442, + [1928] = 1515, + [1929] = 1542, + [1930] = 1487, + [1931] = 1816, + [1932] = 1544, + [1933] = 1545, + [1934] = 1546, [1935] = 1935, - [1936] = 1544, - [1937] = 1481, - [1938] = 1538, - [1939] = 1539, - [1940] = 1541, - [1941] = 1483, - [1942] = 1484, - [1943] = 1792, + [1936] = 1511, + [1937] = 1501, + [1938] = 1789, + [1939] = 1939, + [1940] = 1940, + [1941] = 1939, + [1942] = 1942, + [1943] = 1943, [1944] = 1944, - [1945] = 1458, - [1946] = 1581, + [1945] = 1945, + [1946] = 1946, [1947] = 1947, - [1948] = 1948, + [1948] = 1942, [1949] = 1949, [1950] = 1950, - [1951] = 1947, - [1952] = 1952, + [1951] = 1951, + [1952] = 1807, [1953] = 1953, [1954] = 1954, - [1955] = 1955, - [1956] = 1956, - [1957] = 1949, + [1955] = 1949, + [1956] = 1944, + [1957] = 1957, [1958] = 1958, [1959] = 1959, - [1960] = 1960, + [1960] = 1939, [1961] = 1961, - [1962] = 1958, - [1963] = 1963, - [1964] = 1837, - [1965] = 1954, + [1962] = 1945, + [1963] = 1958, + [1964] = 1839, + [1965] = 1965, [1966] = 1966, - [1967] = 1967, - [1968] = 1968, - [1969] = 1959, - [1970] = 1970, - [1971] = 1955, - [1972] = 1972, - [1973] = 1967, - [1974] = 1950, - [1975] = 1948, - [1976] = 1956, - [1977] = 1935, - [1978] = 1978, - [1979] = 1961, - [1980] = 1801, - [1981] = 1968, - [1982] = 1947, + [1967] = 1935, + [1968] = 1954, + [1969] = 1940, + [1970] = 1959, + [1971] = 1971, + [1972] = 1947, + [1973] = 1973, + [1974] = 1943, + [1975] = 1971, + [1976] = 1965, + [1977] = 1973, + [1978] = 1950, + [1979] = 1979, + [1980] = 1980, + [1981] = 1981, + [1982] = 1982, [1983] = 1983, [1984] = 1983, - [1985] = 1978, - [1986] = 1970, - [1987] = 1987, - [1988] = 1988, - [1989] = 1989, - [1990] = 1990, - [1991] = 1990, - [1992] = 1992, - [1993] = 1990, - [1994] = 1992, - [1995] = 1992, - [1996] = 1992, - [1997] = 1992, - [1998] = 1992, - [1999] = 1999, - [2000] = 1999, - [2001] = 174, - [2002] = 192, - [2003] = 2003, - [2004] = 1101, - [2005] = 1106, - [2006] = 1102, - [2007] = 1104, - [2008] = 1104, - [2009] = 1106, - [2010] = 1419, - [2011] = 1401, - [2012] = 1416, - [2013] = 1399, - [2014] = 1070, - [2015] = 1102, - [2016] = 1071, - [2017] = 1080, - [2018] = 1101, - [2019] = 1377, - [2020] = 1390, - [2021] = 1379, - [2022] = 1367, - [2023] = 2023, - [2024] = 1088, - [2025] = 1429, - [2026] = 1431, - [2027] = 1098, - [2028] = 2028, - [2029] = 1430, - [2030] = 2030, - [2031] = 1093, - [2032] = 1094, - [2033] = 1428, + [1985] = 1982, + [1986] = 1982, + [1987] = 1983, + [1988] = 1982, + [1989] = 1982, + [1990] = 1982, + [1991] = 1991, + [1992] = 1991, + [1993] = 178, + [1994] = 170, + [1995] = 1995, + [1996] = 1095, + [1997] = 1087, + [1998] = 1094, + [1999] = 1096, + [2000] = 1094, + [2001] = 1095, + [2002] = 1396, + [2003] = 1417, + [2004] = 1096, + [2005] = 1074, + [2006] = 1072, + [2007] = 1087, + [2008] = 1407, + [2009] = 1068, + [2010] = 1411, + [2011] = 1359, + [2012] = 2012, + [2013] = 1369, + [2014] = 1372, + [2015] = 1393, + [2016] = 1382, + [2017] = 1079, + [2018] = 1086, + [2019] = 2019, + [2020] = 2020, + [2021] = 2021, + [2022] = 1425, + [2023] = 1406, + [2024] = 1422, + [2025] = 2021, + [2026] = 1091, + [2027] = 1097, + [2028] = 1089, + [2029] = 244, + [2030] = 1390, + [2031] = 1408, + [2032] = 2032, + [2033] = 2019, [2034] = 2034, - [2035] = 2030, - [2036] = 1096, - [2037] = 2037, - [2038] = 1421, - [2039] = 1567, - [2040] = 208, - [2041] = 1403, - [2042] = 1413, - [2043] = 2037, - [2044] = 1432, - [2045] = 206, - [2046] = 417, - [2047] = 2047, - [2048] = 1417, - [2049] = 412, - [2050] = 2037, - [2051] = 1422, - [2052] = 1426, - [2053] = 2053, - [2054] = 1404, - [2055] = 2028, - [2056] = 1411, - [2057] = 1420, - [2058] = 1406, - [2059] = 1487, - [2060] = 1564, - [2061] = 2061, - [2062] = 2062, - [2063] = 2028, - [2064] = 1436, - [2065] = 1563, - [2066] = 1556, - [2067] = 1547, - [2068] = 1554, - [2069] = 1441, - [2070] = 1531, - [2071] = 1439, - [2072] = 1548, - [2073] = 1550, - [2074] = 1485, - [2075] = 1523, - [2076] = 1440, - [2077] = 1527, - [2078] = 1488, - [2079] = 1530, - [2080] = 1456, - [2081] = 1492, - [2082] = 1538, - [2083] = 1539, - [2084] = 1528, - [2085] = 1541, - [2086] = 1496, - [2087] = 1553, - [2088] = 1438, - [2089] = 1499, - [2090] = 1552, - [2091] = 1503, - [2092] = 1551, - [2093] = 1549, - [2094] = 1437, - [2095] = 1560, - [2096] = 1542, - [2097] = 2097, - [2098] = 1415, - [2099] = 1434, - [2100] = 1394, - [2101] = 1395, - [2102] = 1396, - [2103] = 1398, - [2104] = 191, - [2105] = 1408, - [2106] = 203, - [2107] = 2107, - [2108] = 1102, - [2109] = 2109, + [2035] = 1416, + [2036] = 2032, + [2037] = 1420, + [2038] = 1409, + [2039] = 1414, + [2040] = 2040, + [2041] = 398, + [2042] = 1388, + [2043] = 418, + [2044] = 1398, + [2045] = 2032, + [2046] = 1555, + [2047] = 1412, + [2048] = 1394, + [2049] = 218, + [2050] = 1415, + [2051] = 1548, + [2052] = 1545, + [2053] = 1494, + [2054] = 1500, + [2055] = 1559, + [2056] = 1561, + [2057] = 1546, + [2058] = 1527, + [2059] = 1444, + [2060] = 1438, + [2061] = 1523, + [2062] = 1439, + [2063] = 2019, + [2064] = 1543, + [2065] = 1547, + [2066] = 1521, + [2067] = 1544, + [2068] = 1529, + [2069] = 1440, + [2070] = 1549, + [2071] = 1428, + [2072] = 2072, + [2073] = 1443, + [2074] = 1528, + [2075] = 1429, + [2076] = 1432, + [2077] = 1507, + [2078] = 1435, + [2079] = 1512, + [2080] = 1441, + [2081] = 1517, + [2082] = 1434, + [2083] = 1519, + [2084] = 1442, + [2085] = 1437, + [2086] = 1460, + [2087] = 1436, + [2088] = 2088, + [2089] = 1410, + [2090] = 2090, + [2091] = 196, + [2092] = 2092, + [2093] = 171, + [2094] = 1424, + [2095] = 1391, + [2096] = 1413, + [2097] = 1400, + [2098] = 1401, + [2099] = 1403, + [2100] = 2100, + [2101] = 1096, + [2102] = 2102, + [2103] = 1087, + [2104] = 2104, + [2105] = 1087, + [2106] = 1094, + [2107] = 1995, + [2108] = 1087, + [2109] = 1095, [2110] = 2110, - [2111] = 2111, - [2112] = 1101, - [2113] = 1102, - [2114] = 1101, - [2115] = 1101, - [2116] = 2116, - [2117] = 1106, + [2111] = 1096, + [2112] = 1096, + [2113] = 1094, + [2114] = 2114, + [2115] = 1095, + [2116] = 1094, + [2117] = 1095, [2118] = 2118, - [2119] = 1104, - [2120] = 1104, - [2121] = 1102, - [2122] = 1106, - [2123] = 2003, - [2124] = 1106, - [2125] = 1104, - [2126] = 2126, - [2127] = 2126, + [2119] = 2119, + [2120] = 2120, + [2121] = 2119, + [2122] = 2120, + [2123] = 2118, + [2124] = 2124, + [2125] = 2125, + [2126] = 1072, + [2127] = 388, [2128] = 2128, [2129] = 2129, - [2130] = 2128, - [2131] = 2129, + [2130] = 2130, + [2131] = 2131, [2132] = 2132, [2133] = 2133, [2134] = 2134, [2135] = 2135, - [2136] = 398, + [2136] = 2136, [2137] = 2137, [2138] = 2138, - [2139] = 2139, - [2140] = 2139, - [2141] = 1070, - [2142] = 2142, - [2143] = 1106, + [2139] = 386, + [2140] = 1087, + [2141] = 2141, + [2142] = 390, + [2143] = 2143, [2144] = 2144, [2145] = 2145, - [2146] = 1101, - [2147] = 2147, - [2148] = 2148, + [2146] = 2146, + [2147] = 387, + [2148] = 2130, [2149] = 2149, - [2150] = 1102, - [2151] = 1104, - [2152] = 394, - [2153] = 1080, - [2154] = 2154, - [2155] = 2155, - [2156] = 2156, - [2157] = 395, - [2158] = 2158, - [2159] = 2034, - [2160] = 396, - [2161] = 2138, - [2162] = 2162, - [2163] = 2163, + [2150] = 2020, + [2151] = 1068, + [2152] = 2152, + [2153] = 2153, + [2154] = 389, + [2155] = 1074, + [2156] = 2153, + [2157] = 2131, + [2158] = 2149, + [2159] = 2152, + [2160] = 2129, + [2161] = 2161, + [2162] = 2135, + [2163] = 2128, [2164] = 2164, [2165] = 2165, [2166] = 2166, - [2167] = 2165, - [2168] = 2168, - [2169] = 1071, - [2170] = 2156, - [2171] = 2155, - [2172] = 2172, + [2167] = 2167, + [2168] = 1094, + [2169] = 1095, + [2170] = 1096, + [2171] = 2171, + [2172] = 407, [2173] = 2173, [2174] = 2174, - [2175] = 2135, + [2175] = 2175, [2176] = 2176, - [2177] = 2134, - [2178] = 397, - [2179] = 2172, + [2177] = 2177, + [2178] = 2173, + [2179] = 2179, [2180] = 2180, [2181] = 2181, [2182] = 2182, [2183] = 2183, [2184] = 2184, - [2185] = 2185, - [2186] = 2183, - [2187] = 2034, - [2188] = 2188, + [2185] = 2182, + [2186] = 2177, + [2187] = 2182, + [2188] = 2182, [2189] = 2189, [2190] = 2190, [2191] = 2191, [2192] = 2192, - [2193] = 2193, + [2193] = 2034, [2194] = 2194, [2195] = 2195, - [2196] = 2195, + [2196] = 2196, [2197] = 2197, [2198] = 2198, - [2199] = 2195, - [2200] = 2047, - [2201] = 1088, + [2199] = 2199, + [2200] = 2200, + [2201] = 2201, [2202] = 2202, - [2203] = 2203, + [2203] = 2020, [2204] = 2204, [2205] = 2205, [2206] = 2206, [2207] = 2207, - [2208] = 2208, - [2209] = 2209, + [2208] = 2020, + [2209] = 1079, [2210] = 2210, - [2211] = 2034, + [2211] = 2211, [2212] = 2212, [2213] = 2213, [2214] = 2214, [2215] = 2215, - [2216] = 2195, - [2217] = 2217, - [2218] = 411, - [2219] = 2195, - [2220] = 2220, + [2216] = 2216, + [2217] = 2176, + [2218] = 2218, + [2219] = 2174, + [2220] = 2182, [2221] = 2221, [2222] = 2222, [2223] = 2223, @@ -6237,66 +6233,66 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2225] = 2225, [2226] = 2226, [2227] = 2227, - [2228] = 2228, - [2229] = 2223, + [2228] = 2034, + [2229] = 2229, [2230] = 2230, [2231] = 2231, - [2232] = 2208, - [2233] = 2213, - [2234] = 2234, - [2235] = 1094, - [2236] = 2047, - [2237] = 1377, - [2238] = 2238, + [2232] = 2232, + [2233] = 2232, + [2234] = 2230, + [2235] = 2235, + [2236] = 2236, + [2237] = 2237, + [2238] = 1086, [2239] = 2239, - [2240] = 2240, - [2241] = 2241, - [2242] = 2242, - [2243] = 2239, + [2240] = 1369, + [2241] = 2020, + [2242] = 2236, + [2243] = 2243, [2244] = 2244, [2245] = 2245, [2246] = 2246, - [2247] = 2246, - [2248] = 2047, - [2249] = 2249, + [2247] = 2239, + [2248] = 2245, + [2249] = 1089, [2250] = 2250, [2251] = 2251, [2252] = 2252, [2253] = 2253, - [2254] = 2239, + [2254] = 2227, [2255] = 2255, - [2256] = 2238, - [2257] = 2252, - [2258] = 2258, - [2259] = 2255, + [2256] = 2256, + [2257] = 2237, + [2258] = 1097, + [2259] = 2259, [2260] = 2260, - [2261] = 2261, - [2262] = 2034, - [2263] = 1096, - [2264] = 2241, - [2265] = 2242, - [2266] = 2249, - [2267] = 2267, - [2268] = 1098, - [2269] = 1367, - [2270] = 2240, - [2271] = 1379, + [2261] = 1091, + [2262] = 2232, + [2263] = 2253, + [2264] = 2231, + [2265] = 1372, + [2266] = 2244, + [2267] = 2259, + [2268] = 2255, + [2269] = 2252, + [2270] = 2243, + [2271] = 2255, [2272] = 2272, - [2273] = 2260, - [2274] = 2251, - [2275] = 2261, - [2276] = 2250, - [2277] = 2267, - [2278] = 1093, - [2279] = 2279, - [2280] = 1390, - [2281] = 2258, + [2273] = 2273, + [2274] = 1382, + [2275] = 1359, + [2276] = 2256, + [2277] = 2277, + [2278] = 2246, + [2279] = 2034, + [2280] = 2280, + [2281] = 2281, [2282] = 2282, - [2283] = 2240, + [2283] = 2283, [2284] = 2284, [2285] = 2285, [2286] = 2286, - [2287] = 2253, + [2287] = 2287, [2288] = 2288, [2289] = 2289, [2290] = 2290, @@ -6308,50 +6304,50 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2296] = 2296, [2297] = 2297, [2298] = 2298, - [2299] = 2299, - [2300] = 2300, + [2299] = 2288, + [2300] = 2296, [2301] = 2301, - [2302] = 2302, - [2303] = 2303, + [2302] = 2285, + [2303] = 2287, [2304] = 2304, [2305] = 2305, - [2306] = 2304, - [2307] = 2307, - [2308] = 2296, + [2306] = 2306, + [2307] = 2305, + [2308] = 2308, [2309] = 2309, - [2310] = 2293, - [2311] = 2301, - [2312] = 2312, - [2313] = 2312, - [2314] = 2314, - [2315] = 2315, - [2316] = 2316, - [2317] = 2317, - [2318] = 2292, - [2319] = 2294, - [2320] = 2314, - [2321] = 2298, - [2322] = 2305, - [2323] = 2302, - [2324] = 2303, + [2310] = 2304, + [2311] = 2284, + [2312] = 2286, + [2313] = 2290, + [2314] = 2306, + [2315] = 2297, + [2316] = 2294, + [2317] = 2295, + [2318] = 2318, + [2319] = 2034, + [2320] = 2308, + [2321] = 2321, + [2322] = 2281, + [2323] = 2321, + [2324] = 2324, [2325] = 2325, - [2326] = 2315, - [2327] = 2047, - [2328] = 2328, - [2329] = 2328, - [2330] = 2289, - [2331] = 2331, - [2332] = 2332, + [2326] = 2326, + [2327] = 2327, + [2328] = 2301, + [2329] = 2329, + [2330] = 2309, + [2331] = 2298, + [2332] = 2293, [2333] = 2333, [2334] = 2334, - [2335] = 2309, + [2335] = 2335, [2336] = 2336, - [2337] = 2316, - [2338] = 2307, - [2339] = 2317, - [2340] = 2295, + [2337] = 2337, + [2338] = 2338, + [2339] = 2090, + [2340] = 2340, [2341] = 2341, - [2342] = 2097, + [2342] = 2342, [2343] = 2343, [2344] = 2344, [2345] = 2345, @@ -6360,78 +6356,78 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2348] = 2348, [2349] = 2349, [2350] = 2350, - [2351] = 2351, + [2351] = 2346, [2352] = 2352, - [2353] = 2341, + [2353] = 2353, [2354] = 2354, [2355] = 2355, - [2356] = 2356, - [2357] = 2357, + [2356] = 2342, + [2357] = 2345, [2358] = 2358, - [2359] = 2359, - [2360] = 2360, - [2361] = 2355, + [2359] = 2352, + [2360] = 2355, + [2361] = 2361, [2362] = 2362, - [2363] = 2363, - [2364] = 2355, - [2365] = 2351, + [2363] = 2334, + [2364] = 2335, + [2365] = 2358, [2366] = 2366, [2367] = 2367, - [2368] = 2352, - [2369] = 2369, - [2370] = 2370, - [2371] = 2371, - [2372] = 2355, - [2373] = 2347, - [2374] = 2348, - [2375] = 2350, - [2376] = 2371, - [2377] = 2377, - [2378] = 2378, - [2379] = 2379, - [2380] = 2380, - [2381] = 2359, - [2382] = 2360, - [2383] = 2363, - [2384] = 2370, - [2385] = 2366, - [2386] = 2367, - [2387] = 2387, - [2388] = 2388, + [2368] = 2368, + [2369] = 2362, + [2370] = 2361, + [2371] = 2346, + [2372] = 2346, + [2373] = 2366, + [2374] = 2374, + [2375] = 2375, + [2376] = 2367, + [2377] = 2346, + [2378] = 2340, + [2379] = 2341, + [2380] = 2343, + [2381] = 2344, + [2382] = 2349, + [2383] = 2350, + [2384] = 2353, + [2385] = 2354, + [2386] = 2386, + [2387] = 2374, + [2388] = 2375, [2389] = 2389, - [2390] = 2349, - [2391] = 2354, - [2392] = 2345, - [2393] = 2346, - [2394] = 2394, + [2390] = 2390, + [2391] = 2391, + [2392] = 2392, + [2393] = 2375, + [2394] = 2337, [2395] = 2395, - [2396] = 2357, - [2397] = 2367, - [2398] = 2343, + [2396] = 2396, + [2397] = 2397, + [2398] = 2398, [2399] = 2399, - [2400] = 2394, - [2401] = 2362, - [2402] = 2344, + [2400] = 2400, + [2401] = 2401, + [2402] = 2402, [2403] = 2403, - [2404] = 2355, + [2404] = 2404, [2405] = 2405, [2406] = 2406, - [2407] = 2107, - [2408] = 191, + [2407] = 2407, + [2408] = 2408, [2409] = 2409, - [2410] = 192, - [2411] = 203, - [2412] = 174, + [2410] = 2410, + [2411] = 2411, + [2412] = 2411, [2413] = 2413, [2414] = 2414, [2415] = 2415, [2416] = 2416, - [2417] = 2417, - [2418] = 2418, - [2419] = 2419, - [2420] = 2406, + [2417] = 2398, + [2418] = 2410, + [2419] = 2397, + [2420] = 2420, [2421] = 2421, - [2422] = 2409, + [2422] = 2422, [2423] = 2423, [2424] = 2424, [2425] = 2425, @@ -6441,527 +6437,527 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2429] = 2429, [2430] = 2430, [2431] = 2431, - [2432] = 1415, + [2432] = 2432, [2433] = 2433, [2434] = 2434, - [2435] = 2431, + [2435] = 2435, [2436] = 2436, [2437] = 2437, - [2438] = 2434, - [2439] = 2431, - [2440] = 2440, - [2441] = 2116, - [2442] = 2433, - [2443] = 2443, - [2444] = 2437, - [2445] = 2436, - [2446] = 2446, - [2447] = 2110, - [2448] = 2431, - [2449] = 2449, - [2450] = 2431, - [2451] = 1395, - [2452] = 2452, - [2453] = 1396, - [2454] = 1398, - [2455] = 2455, - [2456] = 2456, - [2457] = 1434, - [2458] = 1408, - [2459] = 2459, - [2460] = 2423, - [2461] = 2461, - [2462] = 2424, - [2463] = 2414, - [2464] = 2415, - [2465] = 1394, - [2466] = 2449, - [2467] = 2426, - [2468] = 2430, - [2469] = 2443, - [2470] = 2470, - [2471] = 2452, - [2472] = 2472, - [2473] = 2456, - [2474] = 2474, - [2475] = 2475, - [2476] = 2433, - [2477] = 2433, - [2478] = 2449, - [2479] = 2436, - [2480] = 2405, - [2481] = 2429, - [2482] = 2482, + [2438] = 2422, + [2439] = 2421, + [2440] = 2405, + [2441] = 2429, + [2442] = 2442, + [2443] = 2406, + [2444] = 2444, + [2445] = 2411, + [2446] = 1424, + [2447] = 2414, + [2448] = 2444, + [2449] = 2400, + [2450] = 2411, + [2451] = 2414, + [2452] = 2444, + [2453] = 2453, + [2454] = 2424, + [2455] = 2425, + [2456] = 2444, + [2457] = 2457, + [2458] = 2453, + [2459] = 2444, + [2460] = 1400, + [2461] = 1401, + [2462] = 2407, + [2463] = 1403, + [2464] = 2464, + [2465] = 2465, + [2466] = 1391, + [2467] = 196, + [2468] = 170, + [2469] = 171, + [2470] = 2432, + [2471] = 2433, + [2472] = 178, + [2473] = 2092, + [2474] = 2426, + [2475] = 2427, + [2476] = 1413, + [2477] = 2453, + [2478] = 2102, + [2479] = 2408, + [2480] = 2409, + [2481] = 2404, + [2482] = 2420, [2483] = 2483, - [2484] = 2475, - [2485] = 2427, - [2486] = 2486, - [2487] = 2446, - [2488] = 2474, - [2489] = 2416, - [2490] = 2417, - [2491] = 2418, - [2492] = 2419, - [2493] = 2431, - [2494] = 2436, - [2495] = 2474, - [2496] = 2440, - [2497] = 2497, - [2498] = 2498, - [2499] = 2499, - [2500] = 2500, - [2501] = 2483, - [2502] = 2500, - [2503] = 2472, + [2484] = 2484, + [2485] = 2457, + [2486] = 1410, + [2487] = 2434, + [2488] = 2435, + [2489] = 2436, + [2490] = 2437, + [2491] = 2414, + [2492] = 2422, + [2493] = 2444, + [2494] = 2415, + [2495] = 2430, + [2496] = 2401, + [2497] = 2402, + [2498] = 2428, + [2499] = 2465, + [2500] = 2416, + [2501] = 2399, + [2502] = 2100, + [2503] = 2503, [2504] = 2504, - [2505] = 2459, - [2506] = 2425, - [2507] = 2499, - [2508] = 2504, - [2509] = 2413, - [2510] = 2428, + [2505] = 2124, + [2506] = 2506, + [2507] = 2507, + [2508] = 2508, + [2509] = 2504, + [2510] = 2506, [2511] = 2511, - [2512] = 1065, + [2512] = 2512, [2513] = 2513, [2514] = 2514, - [2515] = 2515, + [2515] = 2512, [2516] = 2516, - [2517] = 2517, - [2518] = 2517, + [2517] = 1407, + [2518] = 2518, [2519] = 2519, - [2520] = 2520, - [2521] = 2521, + [2520] = 2513, + [2521] = 2514, [2522] = 2522, - [2523] = 2523, + [2523] = 2518, [2524] = 2524, [2525] = 2525, - [2526] = 2133, - [2527] = 2132, - [2528] = 2528, - [2529] = 1399, - [2530] = 2519, - [2531] = 2513, - [2532] = 2528, + [2526] = 2526, + [2527] = 2508, + [2528] = 1093, + [2529] = 2519, + [2530] = 2530, + [2531] = 2531, + [2532] = 2504, [2533] = 2533, - [2534] = 2534, - [2535] = 2535, + [2534] = 2504, + [2535] = 2508, [2536] = 2536, - [2537] = 2537, - [2538] = 1401, - [2539] = 2533, - [2540] = 2540, - [2541] = 1416, - [2542] = 1419, - [2543] = 2511, - [2544] = 2544, - [2545] = 2545, + [2537] = 1417, + [2538] = 1411, + [2539] = 1396, + [2540] = 2526, + [2541] = 2541, + [2542] = 2542, + [2543] = 2543, + [2544] = 2518, + [2545] = 2541, [2546] = 2546, [2547] = 2547, - [2548] = 2534, - [2549] = 2549, + [2548] = 2548, + [2549] = 2546, [2550] = 2550, [2551] = 2551, [2552] = 2552, [2553] = 2553, [2554] = 2554, - [2555] = 2514, - [2556] = 2556, - [2557] = 1097, - [2558] = 2516, + [2555] = 2555, + [2556] = 2516, + [2557] = 2557, + [2558] = 2558, [2559] = 2559, [2560] = 2560, [2561] = 2561, [2562] = 2562, - [2563] = 2562, + [2563] = 2563, [2564] = 2564, [2565] = 2565, [2566] = 2566, - [2567] = 2567, - [2568] = 2567, - [2569] = 2517, - [2570] = 2519, - [2571] = 2564, - [2572] = 2519, + [2567] = 2548, + [2568] = 1090, + [2569] = 2569, + [2570] = 2551, + [2571] = 2571, + [2572] = 1098, [2573] = 2573, [2574] = 2574, - [2575] = 2513, - [2576] = 2559, + [2575] = 2575, + [2576] = 2576, [2577] = 2577, - [2578] = 2578, - [2579] = 2560, - [2580] = 2517, + [2578] = 2506, + [2579] = 2514, + [2580] = 2580, [2581] = 2581, - [2582] = 2533, - [2583] = 1103, - [2584] = 2584, + [2582] = 2582, + [2583] = 2571, + [2584] = 2548, [2585] = 2585, - [2586] = 2586, + [2586] = 2525, [2587] = 2587, - [2588] = 2547, + [2588] = 2553, [2589] = 2589, - [2590] = 2590, - [2591] = 2567, - [2592] = 2520, - [2593] = 2566, - [2594] = 2550, + [2590] = 2581, + [2591] = 2591, + [2592] = 2592, + [2593] = 2503, + [2594] = 2558, [2595] = 2595, - [2596] = 2596, - [2597] = 1099, - [2598] = 2598, - [2599] = 2549, + [2596] = 2557, + [2597] = 2597, + [2598] = 1085, + [2599] = 2552, [2600] = 2600, - [2601] = 2601, - [2602] = 2602, + [2601] = 2543, + [2602] = 2125, [2603] = 2603, [2604] = 2604, - [2605] = 2605, - [2606] = 2606, - [2607] = 2577, - [2608] = 2522, - [2609] = 2609, - [2610] = 2567, - [2611] = 2611, - [2612] = 2553, - [2613] = 1100, - [2614] = 2544, - [2615] = 2578, - [2616] = 2561, - [2617] = 2523, - [2618] = 2556, - [2619] = 2559, - [2620] = 2577, + [2605] = 2516, + [2606] = 2548, + [2607] = 2562, + [2608] = 1057, + [2609] = 2518, + [2610] = 2563, + [2611] = 2569, + [2612] = 2587, + [2613] = 2613, + [2614] = 2614, + [2615] = 2615, + [2616] = 2138, + [2617] = 2136, + [2618] = 2132, + [2619] = 2143, + [2620] = 2620, [2621] = 2621, [2622] = 2622, [2623] = 2623, [2624] = 2624, - [2625] = 2163, + [2625] = 2625, [2626] = 2626, - [2627] = 2627, + [2627] = 2613, [2628] = 2628, - [2629] = 2629, + [2629] = 2614, [2630] = 2630, - [2631] = 2142, + [2631] = 2631, [2632] = 2632, - [2633] = 2154, - [2634] = 181, + [2633] = 2289, + [2634] = 2634, [2635] = 2635, [2636] = 2636, - [2637] = 2637, - [2638] = 2637, - [2639] = 2621, + [2637] = 2634, + [2638] = 2638, + [2639] = 2639, [2640] = 2640, - [2641] = 2162, + [2641] = 2641, [2642] = 2642, [2643] = 2643, [2644] = 2644, [2645] = 2645, - [2646] = 2646, - [2647] = 2635, + [2646] = 2620, + [2647] = 2631, [2648] = 2648, [2649] = 2649, [2650] = 2650, [2651] = 2651, - [2652] = 2652, + [2652] = 2635, [2653] = 2653, [2654] = 2654, [2655] = 2655, [2656] = 2656, [2657] = 2657, [2658] = 2658, - [2659] = 2630, + [2659] = 2659, [2660] = 2660, - [2661] = 2646, - [2662] = 2627, - [2663] = 2663, - [2664] = 2636, - [2665] = 2665, + [2661] = 2661, + [2662] = 2660, + [2663] = 2636, + [2664] = 2664, + [2665] = 2615, [2666] = 2666, [2667] = 2667, - [2668] = 2623, + [2668] = 189, [2669] = 2669, - [2670] = 2645, - [2671] = 2621, - [2672] = 2672, + [2670] = 2670, + [2671] = 2669, + [2672] = 2670, [2673] = 2673, [2674] = 2674, [2675] = 2675, [2676] = 2676, - [2677] = 2677, - [2678] = 2174, - [2679] = 2679, - [2680] = 2626, + [2677] = 2161, + [2678] = 2164, + [2679] = 2165, + [2680] = 2680, [2681] = 2681, - [2682] = 2673, - [2683] = 2672, - [2684] = 2674, - [2685] = 2677, - [2686] = 2623, - [2687] = 2687, - [2688] = 2688, - [2689] = 2689, - [2690] = 2637, - [2691] = 2621, - [2692] = 2640, - [2693] = 2693, - [2694] = 2642, - [2695] = 2643, - [2696] = 2627, - [2697] = 2697, - [2698] = 2650, - [2699] = 2651, - [2700] = 2652, - [2701] = 2654, - [2702] = 2655, - [2703] = 2656, - [2704] = 2630, - [2705] = 2660, - [2706] = 2663, - [2707] = 2666, - [2708] = 2629, - [2709] = 2658, - [2710] = 2623, - [2711] = 2642, - [2712] = 2643, - [2713] = 2676, - [2714] = 2637, + [2682] = 2167, + [2683] = 2683, + [2684] = 2684, + [2685] = 2685, + [2686] = 2686, + [2687] = 2658, + [2688] = 2676, + [2689] = 2669, + [2690] = 2670, + [2691] = 2691, + [2692] = 2141, + [2693] = 2144, + [2694] = 2145, + [2695] = 2171, + [2696] = 2696, + [2697] = 2661, + [2698] = 2632, + [2699] = 2649, + [2700] = 2700, + [2701] = 2701, + [2702] = 2702, + [2703] = 2621, + [2704] = 2656, + [2705] = 2659, + [2706] = 2696, + [2707] = 2673, + [2708] = 2691, + [2709] = 2709, + [2710] = 2710, + [2711] = 2711, + [2712] = 2712, + [2713] = 2713, + [2714] = 2714, [2715] = 2715, - [2716] = 2673, - [2717] = 2626, - [2718] = 2640, - [2719] = 2672, - [2720] = 2720, - [2721] = 2640, - [2722] = 2722, - [2723] = 2642, - [2724] = 2643, - [2725] = 2725, - [2726] = 2650, - [2727] = 2655, - [2728] = 2656, - [2729] = 2630, - [2730] = 2660, - [2731] = 2663, - [2732] = 2666, - [2733] = 2733, - [2734] = 2642, - [2735] = 2735, - [2736] = 2640, - [2737] = 2643, - [2738] = 2655, + [2716] = 2716, + [2717] = 2717, + [2718] = 2683, + [2719] = 2709, + [2720] = 2684, + [2721] = 2650, + [2722] = 2648, + [2723] = 2723, + [2724] = 2710, + [2725] = 2623, + [2726] = 2624, + [2727] = 2625, + [2728] = 2728, + [2729] = 2628, + [2730] = 2614, + [2731] = 2632, + [2732] = 2623, + [2733] = 2674, + [2734] = 2634, + [2735] = 2635, + [2736] = 2636, + [2737] = 2651, + [2738] = 2639, [2739] = 2640, - [2740] = 2663, - [2741] = 2666, - [2742] = 2687, - [2743] = 2688, - [2744] = 2644, - [2745] = 2663, - [2746] = 2663, - [2747] = 2666, - [2748] = 2650, - [2749] = 2622, - [2750] = 2629, + [2740] = 2641, + [2741] = 2642, + [2742] = 2644, + [2743] = 2649, + [2744] = 2650, + [2745] = 2651, + [2746] = 2644, + [2747] = 2747, + [2748] = 2653, + [2749] = 2654, + [2750] = 2655, [2751] = 2751, - [2752] = 2752, - [2753] = 2753, - [2754] = 2754, - [2755] = 2755, - [2756] = 2752, + [2752] = 2615, + [2753] = 2675, + [2754] = 2691, + [2755] = 2624, + [2756] = 2756, [2757] = 2757, - [2758] = 2758, - [2759] = 2757, - [2760] = 2648, + [2758] = 2700, + [2759] = 2701, + [2760] = 2702, [2761] = 2761, - [2762] = 2164, - [2763] = 2763, - [2764] = 2635, - [2765] = 2765, - [2766] = 2766, - [2767] = 2767, - [2768] = 2166, - [2769] = 2665, - [2770] = 2770, - [2771] = 2650, - [2772] = 2772, - [2773] = 2666, - [2774] = 2651, - [2775] = 2652, - [2776] = 2772, - [2777] = 2144, - [2778] = 2649, - [2779] = 2779, - [2780] = 2780, - [2781] = 2628, - [2782] = 2782, - [2783] = 2654, - [2784] = 2655, - [2785] = 2656, - [2786] = 2786, - [2787] = 2667, + [2762] = 2711, + [2763] = 2712, + [2764] = 2623, + [2765] = 2624, + [2766] = 2625, + [2767] = 2613, + [2768] = 2628, + [2769] = 2769, + [2770] = 2634, + [2771] = 2635, + [2772] = 2636, + [2773] = 2773, + [2774] = 2639, + [2775] = 2640, + [2776] = 2641, + [2777] = 2649, + [2778] = 2650, + [2779] = 2653, + [2780] = 2655, + [2781] = 2781, + [2782] = 2615, + [2783] = 2691, + [2784] = 2784, + [2785] = 2625, + [2786] = 2613, + [2787] = 2675, [2788] = 2788, - [2789] = 2687, - [2790] = 2657, - [2791] = 2651, - [2792] = 2658, - [2793] = 2688, - [2794] = 2644, - [2795] = 2674, + [2789] = 2634, + [2790] = 2640, + [2791] = 2641, + [2792] = 2649, + [2793] = 2650, + [2794] = 2653, + [2795] = 2655, [2796] = 2796, - [2797] = 2797, - [2798] = 2626, - [2799] = 2799, - [2800] = 2755, - [2801] = 2801, - [2802] = 2677, - [2803] = 2803, - [2804] = 2669, - [2805] = 2145, - [2806] = 2806, + [2797] = 2625, + [2798] = 2640, + [2799] = 2653, + [2800] = 2655, + [2801] = 2625, + [2802] = 2711, + [2803] = 2712, + [2804] = 2653, + [2805] = 2655, + [2806] = 2653, [2807] = 2807, - [2808] = 2693, - [2809] = 2697, - [2810] = 2722, - [2811] = 2763, + [2808] = 2628, + [2809] = 2630, + [2810] = 2810, + [2811] = 2643, [2812] = 2812, - [2813] = 2630, - [2814] = 2660, + [2813] = 2747, + [2814] = 2807, [2815] = 2815, - [2816] = 2646, - [2817] = 2786, - [2818] = 2788, - [2819] = 2733, - [2820] = 2803, - [2821] = 2806, - [2822] = 2654, - [2823] = 2735, + [2816] = 2816, + [2817] = 2654, + [2818] = 2810, + [2819] = 2812, + [2820] = 2655, + [2821] = 2821, + [2822] = 2822, + [2823] = 2823, [2824] = 2824, - [2825] = 2815, - [2826] = 2799, - [2827] = 2827, - [2828] = 2652, - [2829] = 2635, - [2830] = 2635, - [2831] = 2831, - [2832] = 2832, - [2833] = 2663, - [2834] = 2752, - [2835] = 2168, - [2836] = 2665, - [2837] = 2763, - [2838] = 2655, - [2839] = 2666, - [2840] = 2753, - [2841] = 2656, - [2842] = 2842, - [2843] = 2843, - [2844] = 2844, - [2845] = 2752, - [2846] = 2780, - [2847] = 2763, + [2825] = 2825, + [2826] = 2826, + [2827] = 2700, + [2828] = 2680, + [2829] = 2829, + [2830] = 2830, + [2831] = 2622, + [2832] = 2626, + [2833] = 2833, + [2834] = 2823, + [2835] = 2825, + [2836] = 2836, + [2837] = 2816, + [2838] = 2701, + [2839] = 2686, + [2840] = 2632, + [2841] = 2714, + [2842] = 2632, + [2843] = 2639, + [2844] = 2702, + [2845] = 2630, + [2846] = 2846, + [2847] = 2807, [2848] = 2848, - [2849] = 2657, - [2850] = 2850, - [2851] = 2851, - [2852] = 2842, - [2853] = 2844, + [2849] = 2640, + [2850] = 2630, + [2851] = 2807, + [2852] = 2641, + [2853] = 2853, [2854] = 2854, - [2855] = 2752, - [2856] = 2850, - [2857] = 2824, - [2858] = 2858, - [2859] = 2851, - [2860] = 2860, - [2861] = 2827, - [2862] = 2148, - [2863] = 2863, - [2864] = 2149, - [2865] = 2660, - [2866] = 2797, - [2867] = 2770, - [2868] = 2848, - [2869] = 2858, + [2855] = 2642, + [2856] = 2657, + [2857] = 2685, + [2858] = 2715, + [2859] = 2716, + [2860] = 2757, + [2861] = 2630, + [2862] = 2613, + [2863] = 2854, + [2864] = 2821, + [2865] = 2717, + [2866] = 2667, + [2867] = 2628, + [2868] = 2826, + [2869] = 2681, [2870] = 2870, - [2871] = 2871, - [2872] = 2854, - [2873] = 180, + [2871] = 2654, + [2872] = 188, + [2873] = 2873, [2874] = 2874, - [2875] = 2860, - [2876] = 2758, - [2877] = 2665, + [2875] = 2875, + [2876] = 2874, + [2877] = 2877, [2878] = 2878, - [2879] = 2632, - [2880] = 2863, - [2881] = 2297, + [2879] = 2879, + [2880] = 2880, + [2881] = 2881, [2882] = 2882, [2883] = 2883, - [2884] = 188, - [2885] = 2885, - [2886] = 2886, + [2884] = 2884, + [2885] = 2199, + [2886] = 2212, [2887] = 2887, [2888] = 2888, - [2889] = 2225, + [2889] = 2889, [2890] = 2890, [2891] = 2891, - [2892] = 2212, - [2893] = 2893, + [2892] = 2892, + [2893] = 2175, [2894] = 2894, [2895] = 2895, [2896] = 2896, - [2897] = 2204, + [2897] = 2897, [2898] = 2898, [2899] = 2899, [2900] = 2900, - [2901] = 2193, + [2901] = 2901, [2902] = 2902, - [2903] = 2209, - [2904] = 2904, - [2905] = 2905, - [2906] = 2906, - [2907] = 2907, + [2903] = 2192, + [2904] = 2901, + [2905] = 2201, + [2906] = 2211, + [2907] = 2214, [2908] = 2908, [2909] = 2909, [2910] = 2910, - [2911] = 2911, + [2911] = 2226, [2912] = 2912, [2913] = 2913, [2914] = 2914, [2915] = 2915, [2916] = 2916, - [2917] = 2917, + [2917] = 2189, [2918] = 2918, [2919] = 2919, - [2920] = 2920, - [2921] = 2921, - [2922] = 2912, + [2920] = 2194, + [2921] = 2195, + [2922] = 2922, [2923] = 2923, [2924] = 2924, [2925] = 2925, - [2926] = 2222, + [2926] = 2926, [2927] = 2927, [2928] = 2928, - [2929] = 2189, - [2930] = 2190, - [2931] = 2191, + [2929] = 2929, + [2930] = 2896, + [2931] = 2931, [2932] = 2932, [2933] = 2933, [2934] = 2934, [2935] = 2935, [2936] = 2936, [2937] = 2937, - [2938] = 2895, - [2939] = 2899, + [2938] = 2938, + [2939] = 2939, [2940] = 2940, - [2941] = 2906, - [2942] = 2182, + [2941] = 2941, + [2942] = 2942, [2943] = 2943, - [2944] = 2924, + [2944] = 2944, [2945] = 2945, - [2946] = 2940, + [2946] = 2946, [2947] = 2947, [2948] = 2948, [2949] = 2949, [2950] = 2950, - [2951] = 2951, - [2952] = 2952, + [2951] = 2939, + [2952] = 2875, [2953] = 2953, [2954] = 2954, [2955] = 2955, @@ -6969,240 +6965,240 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2957] = 2957, [2958] = 2958, [2959] = 2959, - [2960] = 2947, + [2960] = 2960, [2961] = 2961, [2962] = 2962, - [2963] = 2948, - [2964] = 2964, - [2965] = 2882, - [2966] = 2920, - [2967] = 2967, + [2963] = 2963, + [2964] = 2179, + [2965] = 2965, + [2966] = 2966, + [2967] = 2940, [2968] = 2968, - [2969] = 2964, - [2970] = 2885, + [2969] = 2969, + [2970] = 2950, [2971] = 2971, [2972] = 2972, - [2973] = 2973, + [2973] = 2882, [2974] = 2974, - [2975] = 2975, - [2976] = 2910, + [2975] = 2935, + [2976] = 2976, [2977] = 2977, [2978] = 2978, - [2979] = 2979, - [2980] = 2980, + [2979] = 2946, + [2980] = 2954, [2981] = 2981, - [2982] = 2982, + [2982] = 2968, [2983] = 2983, [2984] = 2984, [2985] = 2985, - [2986] = 2950, - [2987] = 2951, + [2986] = 2986, + [2987] = 2900, [2988] = 2988, - [2989] = 2989, + [2989] = 2941, [2990] = 2990, [2991] = 2991, [2992] = 2992, - [2993] = 2993, - [2994] = 2908, - [2995] = 2918, - [2996] = 2933, - [2997] = 2943, - [2998] = 2972, - [2999] = 2923, + [2993] = 2215, + [2994] = 2990, + [2995] = 2976, + [2996] = 2992, + [2997] = 2997, + [2998] = 2998, + [2999] = 2971, [3000] = 3000, - [3001] = 3001, - [3002] = 3002, - [3003] = 3003, - [3004] = 3004, - [3005] = 2967, - [3006] = 2230, - [3007] = 2205, - [3008] = 2990, - [3009] = 3009, - [3010] = 2206, - [3011] = 3011, - [3012] = 2231, - [3013] = 3013, - [3014] = 3014, - [3015] = 2886, - [3016] = 411, + [3001] = 2895, + [3002] = 2196, + [3003] = 3000, + [3004] = 407, + [3005] = 3005, + [3006] = 3006, + [3007] = 2992, + [3008] = 2928, + [3009] = 2910, + [3010] = 2877, + [3011] = 2877, + [3012] = 2969, + [3013] = 2879, + [3014] = 2942, + [3015] = 2880, + [3016] = 2881, [3017] = 3017, - [3018] = 3018, - [3019] = 3019, - [3020] = 2188, - [3021] = 2954, - [3022] = 3019, - [3023] = 2228, - [3024] = 3013, - [3025] = 2955, - [3026] = 2888, - [3027] = 3027, - [3028] = 3028, - [3029] = 2991, - [3030] = 3030, - [3031] = 2888, - [3032] = 2956, - [3033] = 2891, - [3034] = 2893, - [3035] = 2894, - [3036] = 3036, - [3037] = 2217, - [3038] = 2227, - [3039] = 2184, - [3040] = 2935, - [3041] = 2936, - [3042] = 2194, - [3043] = 2198, - [3044] = 2202, - [3045] = 2924, - [3046] = 2925, - [3047] = 2940, - [3048] = 2947, - [3049] = 2948, - [3050] = 2971, - [3051] = 2971, - [3052] = 2974, - [3053] = 3053, - [3054] = 3054, - [3055] = 2915, - [3056] = 3056, - [3057] = 3057, - [3058] = 3019, - [3059] = 3059, - [3060] = 3027, - [3061] = 2215, + [3018] = 2912, + [3019] = 2913, + [3020] = 3020, + [3021] = 2922, + [3022] = 3022, + [3023] = 2923, + [3024] = 3024, + [3025] = 2924, + [3026] = 2925, + [3027] = 2183, + [3028] = 2191, + [3029] = 2945, + [3030] = 2936, + [3031] = 2949, + [3032] = 3032, + [3033] = 2200, + [3034] = 2204, + [3035] = 2225, + [3036] = 2180, + [3037] = 2937, + [3038] = 3038, + [3039] = 3039, + [3040] = 2992, + [3041] = 3041, + [3042] = 2945, + [3043] = 3043, + [3044] = 3005, + [3045] = 2184, + [3046] = 3046, + [3047] = 3047, + [3048] = 2190, + [3049] = 3049, + [3050] = 3050, + [3051] = 3051, + [3052] = 3000, + [3053] = 2912, + [3054] = 2913, + [3055] = 3055, + [3056] = 2945, + [3057] = 2912, + [3058] = 2879, + [3059] = 2913, + [3060] = 3060, + [3061] = 3061, [3062] = 3062, - [3063] = 2957, - [3064] = 2891, + [3063] = 3005, + [3064] = 2897, [3065] = 3065, - [3066] = 2935, - [3067] = 2936, + [3066] = 3066, + [3067] = 3005, [3068] = 3068, - [3069] = 2971, - [3070] = 3070, + [3069] = 3069, + [3070] = 2915, [3071] = 3071, [3072] = 3072, - [3073] = 3019, - [3074] = 3027, - [3075] = 3075, - [3076] = 3076, + [3073] = 194, + [3074] = 3074, + [3075] = 2949, + [3076] = 2998, [3077] = 3077, [3078] = 3078, - [3079] = 2958, - [3080] = 3000, - [3081] = 2974, + [3079] = 3079, + [3080] = 3080, + [3081] = 3081, [3082] = 3082, - [3083] = 3083, - [3084] = 3084, + [3083] = 2880, + [3084] = 2881, [3085] = 3085, - [3086] = 3001, - [3087] = 3087, - [3088] = 3011, - [3089] = 2893, - [3090] = 2894, - [3091] = 3091, - [3092] = 2959, - [3093] = 3019, - [3094] = 2911, - [3095] = 3095, - [3096] = 3096, - [3097] = 2977, - [3098] = 3082, - [3099] = 3099, - [3100] = 3057, - [3101] = 3101, + [3086] = 3086, + [3087] = 2218, + [3088] = 3088, + [3089] = 2899, + [3090] = 3090, + [3091] = 2983, + [3092] = 3017, + [3093] = 2953, + [3094] = 2944, + [3095] = 2991, + [3096] = 2916, + [3097] = 2918, + [3098] = 2931, + [3099] = 2962, + [3100] = 2992, + [3101] = 2919, [3102] = 3102, - [3103] = 3014, + [3103] = 3103, [3104] = 3104, - [3105] = 2978, - [3106] = 2979, + [3105] = 2955, + [3106] = 2956, [3107] = 3107, - [3108] = 3108, - [3109] = 3075, - [3110] = 2181, - [3111] = 2220, - [3112] = 2185, - [3113] = 2214, - [3114] = 2221, - [3115] = 2192, - [3116] = 2896, - [3117] = 2989, - [3118] = 2981, - [3119] = 3119, - [3120] = 2982, - [3121] = 3030, - [3122] = 3122, - [3123] = 3123, - [3124] = 3013, - [3125] = 2898, - [3126] = 3126, - [3127] = 2983, - [3128] = 3128, + [3108] = 2197, + [3109] = 2205, + [3110] = 3110, + [3111] = 2213, + [3112] = 3024, + [3113] = 2207, + [3114] = 2181, + [3115] = 2224, + [3116] = 2884, + [3117] = 2957, + [3118] = 3118, + [3119] = 2922, + [3120] = 2958, + [3121] = 3121, + [3122] = 2202, + [3123] = 2891, + [3124] = 2923, + [3125] = 2198, + [3126] = 2887, + [3127] = 2959, + [3128] = 2932, [3129] = 3129, [3130] = 3130, - [3131] = 3027, + [3131] = 3131, [3132] = 3132, [3133] = 3133, - [3134] = 3101, + [3134] = 3134, [3135] = 3135, [3136] = 3136, [3137] = 3137, - [3138] = 2917, - [3139] = 3139, + [3138] = 3138, + [3139] = 3062, [3140] = 3140, - [3141] = 2984, - [3142] = 3057, - [3143] = 3143, + [3141] = 2960, + [3142] = 3142, + [3143] = 3136, [3144] = 3144, - [3145] = 2932, - [3146] = 2962, - [3147] = 2988, - [3148] = 3148, - [3149] = 2980, - [3150] = 3102, - [3151] = 3151, - [3152] = 2203, - [3153] = 2226, - [3154] = 2180, - [3155] = 2234, - [3156] = 3036, + [3145] = 2902, + [3146] = 2924, + [3147] = 3147, + [3148] = 2925, + [3149] = 2972, + [3150] = 2899, + [3151] = 2222, + [3152] = 2223, + [3153] = 2221, + [3154] = 2210, + [3155] = 3155, + [3156] = 3156, [3157] = 3157, - [3158] = 3158, - [3159] = 3159, + [3158] = 3038, + [3159] = 3032, [3160] = 3160, - [3161] = 3161, - [3162] = 2904, - [3163] = 3163, - [3164] = 2905, - [3165] = 2953, + [3161] = 2898, + [3162] = 3162, + [3163] = 2888, + [3164] = 3164, + [3165] = 2889, [3166] = 3166, [3167] = 3167, - [3168] = 2907, - [3169] = 2961, + [3168] = 2890, + [3169] = 2933, [3170] = 3170, - [3171] = 3171, - [3172] = 3172, + [3171] = 3043, + [3172] = 2938, [3173] = 3173, - [3174] = 3174, - [3175] = 3175, - [3176] = 3176, - [3177] = 2935, - [3178] = 3167, - [3179] = 2207, - [3180] = 3076, - [3181] = 2210, - [3182] = 3018, - [3183] = 3099, - [3184] = 2936, - [3185] = 3148, - [3186] = 3119, - [3187] = 3161, + [3174] = 3166, + [3175] = 3079, + [3176] = 3121, + [3177] = 2878, + [3178] = 3178, + [3179] = 3140, + [3180] = 3167, + [3181] = 2934, + [3182] = 2894, + [3183] = 2883, + [3184] = 2927, + [3185] = 3185, + [3186] = 3186, + [3187] = 3187, [3188] = 3188, - [3189] = 3163, - [3190] = 3129, - [3191] = 3173, + [3189] = 3189, + [3190] = 3190, + [3191] = 1519, [3192] = 3192, - [3193] = 2937, + [3193] = 3193, [3194] = 3194, [3195] = 3195, [3196] = 3196, @@ -7214,21 +7210,21 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3202] = 3202, [3203] = 3203, [3204] = 3204, - [3205] = 3205, + [3205] = 3194, [3206] = 3206, [3207] = 3207, - [3208] = 3208, + [3208] = 3195, [3209] = 3209, - [3210] = 3210, - [3211] = 3198, + [3210] = 3196, + [3211] = 3211, [3212] = 3212, - [3213] = 3213, - [3214] = 3196, + [3213] = 3197, + [3214] = 3214, [3215] = 3215, [3216] = 3216, [3217] = 3217, [3218] = 3218, - [3219] = 3219, + [3219] = 3190, [3220] = 3220, [3221] = 3221, [3222] = 3222, @@ -7236,735 +7232,599 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3224] = 3224, [3225] = 3225, [3226] = 3226, - [3227] = 3201, + [3227] = 3227, [3228] = 3228, - [3229] = 3222, + [3229] = 3229, [3230] = 3230, [3231] = 3231, [3232] = 3232, [3233] = 3233, - [3234] = 3234, + [3234] = 3199, [3235] = 3235, - [3236] = 3236, + [3236] = 3209, [3237] = 3237, [3238] = 3238, - [3239] = 3239, + [3239] = 3199, [3240] = 3240, - [3241] = 3241, - [3242] = 3204, - [3243] = 3243, + [3241] = 3228, + [3242] = 3242, + [3243] = 3199, [3244] = 3244, - [3245] = 3245, + [3245] = 3244, [3246] = 3246, - [3247] = 3247, - [3248] = 3244, - [3249] = 3249, - [3250] = 3250, - [3251] = 3251, - [3252] = 3252, - [3253] = 3253, - [3254] = 3196, - [3255] = 1492, - [3256] = 1496, - [3257] = 3201, - [3258] = 3258, - [3259] = 3204, - [3260] = 3205, - [3261] = 3206, + [3247] = 3190, + [3248] = 3248, + [3249] = 3201, + [3250] = 3195, + [3251] = 3199, + [3252] = 3201, + [3253] = 3202, + [3254] = 3254, + [3255] = 3202, + [3256] = 3231, + [3257] = 3195, + [3258] = 3211, + [3259] = 3259, + [3260] = 3260, + [3261] = 3214, [3262] = 3262, - [3263] = 1456, - [3264] = 3205, - [3265] = 3216, - [3266] = 3233, - [3267] = 3204, + [3263] = 1460, + [3264] = 3264, + [3265] = 3265, + [3266] = 3266, + [3267] = 3267, [3268] = 3268, - [3269] = 3202, + [3269] = 3269, [3270] = 3270, - [3271] = 3271, - [3272] = 3250, - [3273] = 3273, - [3274] = 3210, - [3275] = 3275, - [3276] = 3276, - [3277] = 3244, - [3278] = 3253, - [3279] = 3279, + [3271] = 3228, + [3272] = 3272, + [3273] = 3199, + [3274] = 3204, + [3275] = 3201, + [3276] = 3202, + [3277] = 3193, + [3278] = 3244, + [3279] = 3206, [3280] = 3280, - [3281] = 3250, - [3282] = 3197, - [3283] = 3196, + [3281] = 3204, + [3282] = 3282, + [3283] = 3283, [3284] = 3284, - [3285] = 1551, - [3286] = 3204, + [3285] = 3285, + [3286] = 3286, [3287] = 3287, - [3288] = 3205, - [3289] = 3206, - [3290] = 3290, - [3291] = 3291, - [3292] = 3292, - [3293] = 3216, - [3294] = 3294, - [3295] = 3295, + [3288] = 3288, + [3289] = 3289, + [3290] = 3228, + [3291] = 3201, + [3292] = 3199, + [3293] = 3201, + [3294] = 3202, + [3295] = 3198, [3296] = 3296, [3297] = 3297, - [3298] = 3298, - [3299] = 3235, - [3300] = 3250, - [3301] = 3122, - [3302] = 3128, - [3303] = 3204, - [3304] = 3205, - [3305] = 3206, - [3306] = 3306, - [3307] = 3307, - [3308] = 3250, - [3309] = 3250, - [3310] = 3204, - [3311] = 3205, - [3312] = 3206, - [3313] = 3196, - [3314] = 3314, - [3315] = 3315, - [3316] = 3316, - [3317] = 3206, - [3318] = 3250, - [3319] = 3204, - [3320] = 3205, - [3321] = 3206, - [3322] = 3250, - [3323] = 3205, - [3324] = 3206, - [3325] = 3250, - [3326] = 3205, - [3327] = 3206, - [3328] = 3250, - [3329] = 3205, - [3330] = 3206, - [3331] = 3250, - [3332] = 3205, - [3333] = 3206, - [3334] = 3224, - [3335] = 3335, + [3298] = 3199, + [3299] = 3299, + [3300] = 3233, + [3301] = 3301, + [3302] = 3302, + [3303] = 3224, + [3304] = 3228, + [3305] = 3228, + [3306] = 3188, + [3307] = 3199, + [3308] = 3201, + [3309] = 3202, + [3310] = 3235, + [3311] = 1547, + [3312] = 3228, + [3313] = 3199, + [3314] = 3201, + [3315] = 3202, + [3316] = 3228, + [3317] = 3201, + [3318] = 3202, + [3319] = 3228, + [3320] = 3201, + [3321] = 3202, + [3322] = 3228, + [3323] = 3201, + [3324] = 3202, + [3325] = 3228, + [3326] = 3201, + [3327] = 3202, + [3328] = 3285, + [3329] = 3329, + [3330] = 3330, + [3331] = 3331, + [3332] = 3209, + [3333] = 3218, + [3334] = 3334, + [3335] = 3187, [3336] = 3336, - [3337] = 3212, + [3337] = 3265, [3338] = 3338, [3339] = 3339, - [3340] = 1527, + [3340] = 3340, [3341] = 3341, - [3342] = 3342, - [3343] = 3275, - [3344] = 1420, - [3345] = 1421, - [3346] = 3335, - [3347] = 3200, + [3342] = 3336, + [3343] = 3225, + [3344] = 3232, + [3345] = 1414, + [3346] = 1415, + [3347] = 3347, [3348] = 3348, - [3349] = 3201, + [3349] = 3206, [3350] = 3350, - [3351] = 3202, - [3352] = 3352, - [3353] = 3247, - [3354] = 3354, - [3355] = 3199, - [3356] = 3280, - [3357] = 3268, - [3358] = 3358, + [3351] = 3351, + [3352] = 3190, + [3353] = 3353, + [3354] = 3266, + [3355] = 3355, + [3356] = 3222, + [3357] = 3196, + [3358] = 3211, [3359] = 3359, - [3360] = 3221, + [3360] = 3217, [3361] = 3361, - [3362] = 3195, - [3363] = 3363, + [3362] = 3230, + [3363] = 3237, [3364] = 3364, - [3365] = 3275, + [3365] = 3211, [3366] = 3366, - [3367] = 3367, - [3368] = 3363, - [3369] = 3213, - [3370] = 3237, + [3367] = 3259, + [3368] = 3202, + [3369] = 3369, + [3370] = 3260, [3371] = 3371, [3372] = 3372, - [3373] = 3373, - [3374] = 3220, - [3375] = 3204, - [3376] = 3225, - [3377] = 3314, - [3378] = 3236, - [3379] = 3239, - [3380] = 3241, - [3381] = 3290, - [3382] = 3205, - [3383] = 3206, - [3384] = 3245, - [3385] = 3366, - [3386] = 3386, - [3387] = 3292, + [3373] = 3189, + [3374] = 3374, + [3375] = 3375, + [3376] = 3376, + [3377] = 3348, + [3378] = 3371, + [3379] = 3287, + [3380] = 3380, + [3381] = 3381, + [3382] = 3192, + [3383] = 3383, + [3384] = 3334, + [3385] = 3341, + [3386] = 3364, + [3387] = 3366, [3388] = 3388, - [3389] = 3210, - [3390] = 3336, - [3391] = 3354, - [3392] = 3372, - [3393] = 3373, + [3389] = 3381, + [3390] = 3212, + [3391] = 3207, + [3392] = 3209, + [3393] = 3393, [3394] = 3394, - [3395] = 3395, - [3396] = 3212, - [3397] = 3230, - [3398] = 3217, + [3395] = 3199, + [3396] = 3396, + [3397] = 3288, + [3398] = 3398, [3399] = 3399, [3400] = 3400, - [3401] = 3401, - [3402] = 3401, - [3403] = 3216, - [3404] = 3404, - [3405] = 3386, - [3406] = 3406, - [3407] = 3407, - [3408] = 3352, - [3409] = 3409, + [3401] = 3372, + [3402] = 3402, + [3403] = 3268, + [3404] = 3351, + [3405] = 3270, + [3406] = 3242, + [3407] = 3340, + [3408] = 1414, + [3409] = 1415, [3410] = 3410, - [3411] = 3216, - [3412] = 3338, - [3413] = 3273, - [3414] = 3367, - [3415] = 3415, - [3416] = 3416, + [3411] = 3347, + [3412] = 3412, + [3413] = 3199, + [3414] = 3414, + [3415] = 3222, + [3416] = 3246, [3417] = 3417, - [3418] = 3219, - [3419] = 3341, - [3420] = 3207, - [3421] = 3421, - [3422] = 1420, - [3423] = 1421, - [3424] = 3342, - [3425] = 3335, - [3426] = 3246, - [3427] = 3221, - [3428] = 3204, - [3429] = 3228, - [3430] = 3217, - [3431] = 3406, - [3432] = 3270, - [3433] = 3433, - [3434] = 3341, - [3435] = 3245, - [3436] = 3335, - [3437] = 3437, + [3418] = 3418, + [3419] = 3235, + [3420] = 3338, + [3421] = 3203, + [3422] = 3209, + [3423] = 3340, + [3424] = 3081, + [3425] = 3347, + [3426] = 3102, + [3427] = 3280, + [3428] = 3410, + [3429] = 3211, + [3430] = 3340, + [3431] = 3347, + [3432] = 3432, + [3433] = 3218, + [3434] = 3282, + [3435] = 3226, + [3436] = 3229, + [3437] = 3238, [3438] = 3438, - [3439] = 3409, - [3440] = 3440, - [3441] = 3404, - [3442] = 3341, - [3443] = 3335, - [3444] = 3361, - [3445] = 3287, - [3446] = 3244, - [3447] = 3447, - [3448] = 3275, - [3449] = 3364, - [3450] = 3348, - [3451] = 3451, - [3452] = 3358, - [3453] = 3221, - [3454] = 3210, - [3455] = 3455, + [3439] = 3232, + [3440] = 3329, + [3441] = 3269, + [3442] = 3442, + [3443] = 3443, + [3444] = 3444, + [3445] = 3398, + [3446] = 3222, + [3447] = 3204, + [3448] = 3289, + [3449] = 3449, + [3450] = 3272, + [3451] = 3359, + [3452] = 3212, + [3453] = 3228, + [3454] = 3347, + [3455] = 3412, [3456] = 3456, - [3457] = 3204, - [3458] = 3231, - [3459] = 3447, - [3460] = 3200, - [3461] = 3451, - [3462] = 3243, - [3463] = 3240, - [3464] = 3464, - [3465] = 3226, - [3466] = 3224, - [3467] = 3438, - [3468] = 3268, - [3469] = 3284, - [3470] = 3250, - [3471] = 3407, - [3472] = 3204, - [3473] = 3275, - [3474] = 3252, - [3475] = 3410, - [3476] = 3361, - [3477] = 3348, - [3478] = 3252, - [3479] = 3348, - [3480] = 3252, - [3481] = 3341, - [3482] = 3197, - [3483] = 3209, - [3484] = 3197, - [3485] = 3485, - [3486] = 3456, - [3487] = 3262, - [3488] = 3212, - [3489] = 3447, - [3490] = 3271, - [3491] = 3294, - [3492] = 3359, - [3493] = 3297, - [3494] = 3224, - [3495] = 3314, + [3457] = 3232, + [3458] = 3353, + [3459] = 3369, + [3460] = 3438, + [3461] = 3376, + [3462] = 3462, + [3463] = 3188, + [3464] = 3200, + [3465] = 3465, + [3466] = 3194, + [3467] = 3444, + [3468] = 3227, + [3469] = 3443, + [3470] = 1517, + [3471] = 3282, + [3472] = 3269, + [3473] = 3200, + [3474] = 3269, + [3475] = 3200, + [3476] = 3289, + [3477] = 3188, + [3478] = 3339, + [3479] = 3216, + [3480] = 3340, + [3481] = 3206, + [3482] = 1443, + [3483] = 3272, + [3484] = 3400, + [3485] = 3218, + [3486] = 3190, + [3487] = 3232, + [3488] = 3449, + [3489] = 3402, + [3490] = 3456, + [3491] = 3491, + [3492] = 3491, + [3493] = 3493, + [3494] = 3494, + [3495] = 3495, [3496] = 3496, - [3497] = 3244, - [3498] = 3455, + [3497] = 3497, + [3498] = 3498, [3499] = 3499, [3500] = 3500, [3501] = 3501, [3502] = 3502, - [3503] = 177, - [3504] = 3504, + [3503] = 3503, + [3504] = 3501, [3505] = 3505, - [3506] = 3500, + [3506] = 3506, [3507] = 3507, - [3508] = 3508, + [3508] = 3503, [3509] = 3509, - [3510] = 3510, + [3510] = 3506, [3511] = 3511, [3512] = 3512, - [3513] = 3513, + [3513] = 186, [3514] = 3514, - [3515] = 3500, + [3515] = 3515, [3516] = 3516, [3517] = 3517, [3518] = 3518, [3519] = 3519, - [3520] = 3517, - [3521] = 3508, - [3522] = 3522, + [3520] = 3520, + [3521] = 3521, + [3522] = 3499, [3523] = 3523, [3524] = 3524, - [3525] = 3525, + [3525] = 3502, [3526] = 3526, [3527] = 3527, [3528] = 3528, [3529] = 3529, - [3530] = 3505, + [3530] = 3530, [3531] = 3531, [3532] = 3532, - [3533] = 3531, - [3534] = 3534, - [3535] = 3516, - [3536] = 3536, + [3533] = 3533, + [3534] = 3518, + [3535] = 3535, + [3536] = 3511, [3537] = 3537, [3538] = 3538, [3539] = 3539, - [3540] = 3536, - [3541] = 3541, + [3540] = 3540, + [3541] = 3540, [3542] = 3542, - [3543] = 3543, - [3544] = 3505, + [3543] = 3520, + [3544] = 3544, [3545] = 3545, - [3546] = 3546, - [3547] = 3517, - [3548] = 3539, - [3549] = 3525, + [3546] = 3503, + [3547] = 3547, + [3548] = 3548, + [3549] = 3549, [3550] = 3550, [3551] = 3551, [3552] = 3552, [3553] = 3553, [3554] = 3554, [3555] = 3555, - [3556] = 3526, - [3557] = 3557, + [3556] = 3556, + [3557] = 3540, [3558] = 3558, [3559] = 3559, [3560] = 3560, [3561] = 3561, [3562] = 3562, - [3563] = 3541, - [3564] = 3504, - [3565] = 3565, - [3566] = 3566, - [3567] = 3567, - [3568] = 3568, - [3569] = 3569, - [3570] = 3570, - [3571] = 3513, + [3563] = 3563, + [3564] = 3564, + [3565] = 3516, + [3566] = 3507, + [3567] = 3517, + [3568] = 3550, + [3569] = 3521, + [3570] = 3520, + [3571] = 3571, [3572] = 3572, [3573] = 3573, [3574] = 3574, [3575] = 3575, - [3576] = 3504, - [3577] = 3504, + [3576] = 3520, + [3577] = 3535, [3578] = 3578, [3579] = 3579, [3580] = 3580, [3581] = 3581, [3582] = 3582, - [3583] = 3543, - [3584] = 3537, - [3585] = 3585, + [3583] = 3583, + [3584] = 3584, + [3585] = 3498, [3586] = 3586, - [3587] = 3580, + [3587] = 3587, [3588] = 3588, - [3589] = 3509, + [3589] = 3589, [3590] = 3590, - [3591] = 3529, + [3591] = 3551, [3592] = 3592, - [3593] = 3536, + [3593] = 3542, [3594] = 3594, [3595] = 3595, [3596] = 3596, [3597] = 3597, - [3598] = 3598, - [3599] = 3578, - [3600] = 3579, + [3598] = 3533, + [3599] = 3552, + [3600] = 3600, [3601] = 3601, - [3602] = 3581, - [3603] = 3536, - [3604] = 3604, + [3602] = 3602, + [3603] = 3603, + [3604] = 3500, [3605] = 3605, - [3606] = 3606, + [3606] = 3584, [3607] = 3607, - [3608] = 3555, + [3608] = 3561, [3609] = 3609, - [3610] = 3610, - [3611] = 3611, + [3610] = 3600, + [3611] = 3556, [3612] = 3612, [3613] = 3613, [3614] = 3614, [3615] = 3615, - [3616] = 3578, - [3617] = 3553, - [3618] = 3566, - [3619] = 3554, - [3620] = 3518, - [3621] = 3621, - [3622] = 3527, - [3623] = 3623, - [3624] = 3514, + [3616] = 3616, + [3617] = 3617, + [3618] = 3618, + [3619] = 3520, + [3620] = 3526, + [3621] = 3588, + [3622] = 3622, + [3623] = 3509, + [3624] = 3613, [3625] = 3625, [3626] = 3626, - [3627] = 3625, - [3628] = 3601, - [3629] = 3629, - [3630] = 3630, - [3631] = 3596, - [3632] = 3502, + [3627] = 3516, + [3628] = 3628, + [3629] = 3616, + [3630] = 3527, + [3631] = 3631, + [3632] = 3529, [3633] = 3633, - [3634] = 3551, - [3635] = 3635, + [3634] = 3634, + [3635] = 3517, [3636] = 3636, - [3637] = 3504, + [3637] = 3637, [3638] = 3638, - [3639] = 3639, - [3640] = 3539, + [3639] = 3605, + [3640] = 3505, [3641] = 3641, - [3642] = 3642, - [3643] = 3604, - [3644] = 3644, - [3645] = 3536, - [3646] = 3633, - [3647] = 3565, - [3648] = 3598, - [3649] = 3606, + [3642] = 3581, + [3643] = 3501, + [3644] = 3505, + [3645] = 3506, + [3646] = 3646, + [3647] = 3509, + [3648] = 3648, + [3649] = 3520, [3650] = 3650, - [3651] = 3651, - [3652] = 3652, - [3653] = 3513, - [3654] = 3514, - [3655] = 3500, - [3656] = 3656, - [3657] = 3518, + [3651] = 3495, + [3652] = 3625, + [3653] = 3518, + [3654] = 3530, + [3655] = 3655, + [3656] = 3616, + [3657] = 3657, [3658] = 3658, - [3659] = 3659, + [3659] = 3622, [3660] = 3660, - [3661] = 3644, - [3662] = 3629, - [3663] = 3605, + [3661] = 3553, + [3662] = 3626, + [3663] = 3663, [3664] = 3664, - [3665] = 3625, - [3666] = 3666, - [3667] = 3667, - [3668] = 3659, - [3669] = 3502, - [3670] = 3536, - [3671] = 3541, - [3672] = 3636, - [3673] = 3673, + [3665] = 3665, + [3666] = 3631, + [3667] = 3587, + [3668] = 3601, + [3669] = 3540, + [3670] = 3505, + [3671] = 3509, + [3672] = 3614, + [3673] = 3524, [3674] = 3674, [3675] = 3675, - [3676] = 3676, - [3677] = 3677, - [3678] = 3541, - [3679] = 3513, - [3680] = 3514, - [3681] = 3518, - [3682] = 3534, - [3683] = 3683, - [3684] = 3684, - [3685] = 3575, - [3686] = 3625, - [3687] = 3636, - [3688] = 3688, - [3689] = 3633, - [3690] = 3625, - [3691] = 3691, - [3692] = 3518, - [3693] = 3625, - [3694] = 3636, - [3695] = 3633, - [3696] = 3696, - [3697] = 3518, - [3698] = 3636, - [3699] = 3633, - [3700] = 3518, - [3701] = 3636, - [3702] = 3636, - [3703] = 3636, - [3704] = 3636, - [3705] = 3636, - [3706] = 3706, - [3707] = 3614, - [3708] = 3586, - [3709] = 3568, - [3710] = 3710, - [3711] = 3610, - [3712] = 3612, - [3713] = 3611, - [3714] = 3613, - [3715] = 3715, + [3676] = 3616, + [3677] = 3626, + [3678] = 3616, + [3679] = 3636, + [3680] = 3680, + [3681] = 3664, + [3682] = 3509, + [3683] = 3616, + [3684] = 3626, + [3685] = 3636, + [3686] = 3634, + [3687] = 3509, + [3688] = 3626, + [3689] = 3636, + [3690] = 3509, + [3691] = 3626, + [3692] = 3626, + [3693] = 3626, + [3694] = 3626, + [3695] = 3626, + [3696] = 3571, + [3697] = 3697, + [3698] = 3698, + [3699] = 3657, + [3700] = 3545, + [3701] = 3675, + [3702] = 3702, + [3703] = 3703, + [3704] = 3704, + [3705] = 3705, + [3706] = 3562, + [3707] = 3638, + [3708] = 3515, + [3709] = 3709, + [3710] = 3547, + [3711] = 3600, + [3712] = 3712, + [3713] = 3609, + [3714] = 3612, + [3715] = 3594, [3716] = 3716, - [3717] = 3717, - [3718] = 3595, - [3719] = 3621, - [3720] = 3641, - [3721] = 3677, - [3722] = 3594, - [3723] = 3667, - [3724] = 3504, - [3725] = 3674, - [3726] = 3726, - [3727] = 3635, - [3728] = 3673, - [3729] = 3726, - [3730] = 3524, - [3731] = 3552, - [3732] = 3732, - [3733] = 3733, - [3734] = 3734, + [3717] = 3592, + [3718] = 3530, + [3719] = 3719, + [3720] = 3512, + [3721] = 3588, + [3722] = 3530, + [3723] = 3622, + [3724] = 3579, + [3725] = 3617, + [3726] = 3501, + [3727] = 3702, + [3728] = 3537, + [3729] = 3595, + [3730] = 3586, + [3731] = 3636, + [3732] = 3556, + [3733] = 3574, + [3734] = 3615, [3735] = 3735, - [3736] = 3519, - [3737] = 3737, - [3738] = 3596, - [3739] = 3542, - [3740] = 3502, - [3741] = 3741, - [3742] = 3582, - [3743] = 3666, + [3736] = 3626, + [3737] = 3648, + [3738] = 3703, + [3739] = 3716, + [3740] = 3712, + [3741] = 3498, + [3742] = 3641, + [3743] = 3521, [3744] = 3744, [3745] = 3745, - [3746] = 3604, - [3747] = 3585, - [3748] = 3741, - [3749] = 3638, - [3750] = 3636, - [3751] = 3501, - [3752] = 3752, - [3753] = 3592, - [3754] = 3754, - [3755] = 3664, - [3756] = 3756, - [3757] = 3572, - [3758] = 3528, - [3759] = 3675, - [3760] = 3642, - [3761] = 3761, - [3762] = 3636, - [3763] = 179, - [3764] = 3764, - [3765] = 3509, - [3766] = 3642, - [3767] = 3767, - [3768] = 3744, - [3769] = 3523, - [3770] = 3650, - [3771] = 3610, - [3772] = 3612, - [3773] = 3595, - [3774] = 3621, - [3775] = 3644, - [3776] = 3537, - [3777] = 3610, - [3778] = 3621, + [3746] = 3746, + [3747] = 3747, + [3748] = 3493, + [3749] = 3749, + [3750] = 3556, + [3751] = 3529, + [3752] = 3540, + [3753] = 3634, + [3754] = 3495, + [3755] = 3755, + [3756] = 3636, + [3757] = 3540, + [3758] = 3637, + [3759] = 3539, + [3760] = 3719, + [3761] = 3675, + [3762] = 3702, + [3763] = 3515, + [3764] = 3709, + [3765] = 3496, + [3766] = 3766, + [3767] = 3675, + [3768] = 3709, + [3769] = 187, + [3770] = 3622, + [3771] = 3709, + [3772] = 3709, + [3773] = 3709, + [3774] = 3774, + [3775] = 3519, + [3776] = 3709, + [3777] = 3495, + [3778] = 3514, [3779] = 3779, - [3780] = 3633, - [3781] = 3621, - [3782] = 3621, - [3783] = 3621, - [3784] = 3501, - [3785] = 3683, - [3786] = 3509, - [3787] = 3604, - [3788] = 3499, + [3780] = 3596, + [3781] = 3531, + [3782] = 3590, + [3783] = 3646, + [3784] = 3735, + [3785] = 3650, + [3786] = 3580, + [3787] = 3626, + [3788] = 3749, [3789] = 3789, - [3790] = 3790, - [3791] = 3501, - [3792] = 3652, - [3793] = 3793, - [3794] = 3522, - [3795] = 3550, - [3796] = 3573, - [3797] = 3630, - [3798] = 3592, - [3799] = 3691, - [3800] = 3688, - [3801] = 3706, - [3802] = 3537, - [3803] = 3734, - [3804] = 3606, - [3805] = 3561, - [3806] = 3623, - [3807] = 3609, - [3808] = 3570, - [3809] = 3717, - [3810] = 3588, - [3811] = 3737, - [3812] = 3710, - [3813] = 3696, - [3814] = 3752, - [3815] = 3644, + [3790] = 3744, + [3791] = 3605, + [3792] = 3628, + [3793] = 3633, + [3794] = 3600, + [3795] = 3563, + [3796] = 3582, + [3797] = 3528, + [3798] = 3798, + [3799] = 3603, + [3800] = 3800, + [3801] = 3575, + [3802] = 3674, + [3803] = 3803, + [3804] = 3521, + [3805] = 3805, + [3806] = 3634, + [3807] = 3704, + [3808] = 3506, + [3809] = 3636, + [3810] = 3810, + [3811] = 3811, + [3812] = 3812, + [3813] = 3813, + [3814] = 3814, + [3815] = 3815, [3816] = 3816, - [3817] = 3633, - [3818] = 3818, - [3819] = 3819, - [3820] = 3820, - [3821] = 3821, - [3822] = 3822, - [3823] = 3823, - [3824] = 3824, -}; - -static const TSSymbol ts_supertype_symbols[SUPERTYPE_COUNT] = { - sym__expression, - sym__literal, - sym__literal_pattern, - sym__pattern, - sym__type, -}; - -static const TSMapSlice ts_supertype_map_slices[] = { - [sym__expression] = {.index = 0, .length = 40}, - [sym__literal] = {.index = 40, .length = 6}, - [sym__literal_pattern] = {.index = 46, .length = 7}, - [sym__pattern] = {.index = 53, .length = 18}, - [sym__type] = {.index = 71, .length = 33}, -}; - -static const TSSymbol ts_supertype_map_entries[] = { - [0] = - sym__literal, - sym_array_expression, - sym_assignment_expression, - sym_async_block, - sym_await_expression, - sym_binary_expression, - sym_block, - sym_break_expression, - sym_call_expression, - sym_closure_expression, - sym_compound_assignment_expr, - sym_const_block, - sym_continue_expression, - sym_field_expression, - sym_for_expression, - sym_gen_block, - sym_generic_function, - sym_identifier, - sym_if_expression, - sym_index_expression, - sym_loop_expression, - sym_macro_invocation, - sym_match_expression, - sym_metavariable, - sym_parenthesized_expression, - sym_range_expression, - sym_reference_expression, - sym_return_expression, - sym_scoped_identifier, - sym_self, - sym_struct_expression, - sym_try_block, - sym_try_expression, - sym_tuple_expression, - sym_type_cast_expression, - sym_unary_expression, - sym_unit_expression, - sym_unsafe_block, - sym_while_expression, - sym_yield_expression, - [40] = - sym_boolean_literal, - sym_char_literal, - sym_float_literal, - sym_integer_literal, - sym_raw_string_literal, - sym_string_literal, - [46] = - sym_boolean_literal, - sym_char_literal, - sym_float_literal, - sym_integer_literal, - sym_negative_literal, - sym_raw_string_literal, - sym_string_literal, - [53] = - anon_sym__, - sym__literal_pattern, - sym_captured_pattern, - sym_const_block, - sym_generic_pattern, - sym_identifier, - sym_macro_invocation, - sym_mut_pattern, - sym_or_pattern, - sym_range_pattern, - sym_ref_pattern, - sym_reference_pattern, - sym_remaining_field_pattern, - sym_scoped_identifier, - sym_slice_pattern, - sym_struct_pattern, - sym_tuple_pattern, - sym_tuple_struct_pattern, - [71] = - alias_sym_type_identifier, - anon_sym_bool, - anon_sym_char, - anon_sym_f32, - anon_sym_f64, - anon_sym_i128, - anon_sym_i16, - anon_sym_i32, - anon_sym_i64, - anon_sym_i8, - anon_sym_isize, - anon_sym_str, - anon_sym_u128, - anon_sym_u16, - anon_sym_u32, - anon_sym_u64, - anon_sym_u8, - anon_sym_usize, - sym_abstract_type, - sym_array_type, - sym_bounded_type, - sym_dynamic_type, - sym_function_type, - sym_generic_type, - sym_macro_invocation, - sym_metavariable, - sym_never_type, - sym_pointer_type, - sym_reference_type, - sym_removed_trait_bound, - sym_scoped_type_identifier, - sym_tuple_type, - sym_unit_type, }; -static const TSCharacterRange sym_identifier_character_set_1[] = { +static TSCharacterRange sym_identifier_character_set_1[] = { {'A', 'Z'}, {'_', '_'}, {'a', 'z'}, {0xaa, 0xaa}, {0xb5, 0xb5}, {0xba, 0xba}, {0xc0, 0xd6}, {0xd8, 0xf6}, {0xf8, 0x2c1}, {0x2c6, 0x2d1}, {0x2e0, 0x2e4}, {0x2ec, 0x2ec}, {0x2ee, 0x2ee}, {0x370, 0x374}, {0x376, 0x377}, {0x37b, 0x37d}, {0x37f, 0x37f}, {0x386, 0x386}, {0x388, 0x38a}, {0x38c, 0x38c}, {0x38e, 0x3a1}, {0x3a3, 0x3f5}, {0x3f7, 0x481}, {0x48a, 0x52f}, @@ -7993,7 +7853,7 @@ static const TSCharacterRange sym_identifier_character_set_1[] = { {0x1760, 0x176c}, {0x176e, 0x1770}, {0x1780, 0x17b3}, {0x17d7, 0x17d7}, {0x17dc, 0x17dc}, {0x1820, 0x1878}, {0x1880, 0x18a8}, {0x18aa, 0x18aa}, {0x18b0, 0x18f5}, {0x1900, 0x191e}, {0x1950, 0x196d}, {0x1970, 0x1974}, {0x1980, 0x19ab}, {0x19b0, 0x19c9}, {0x1a00, 0x1a16}, {0x1a20, 0x1a54}, {0x1aa7, 0x1aa7}, {0x1b05, 0x1b33}, {0x1b45, 0x1b4c}, {0x1b83, 0x1ba0}, {0x1bae, 0x1baf}, {0x1bba, 0x1be5}, {0x1c00, 0x1c23}, {0x1c4d, 0x1c4f}, - {0x1c5a, 0x1c7d}, {0x1c80, 0x1c8a}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1ce9, 0x1cec}, {0x1cee, 0x1cf3}, {0x1cf5, 0x1cf6}, {0x1cfa, 0x1cfa}, + {0x1c5a, 0x1c7d}, {0x1c80, 0x1c88}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1ce9, 0x1cec}, {0x1cee, 0x1cf3}, {0x1cf5, 0x1cf6}, {0x1cfa, 0x1cfa}, {0x1d00, 0x1dbf}, {0x1e00, 0x1f15}, {0x1f18, 0x1f1d}, {0x1f20, 0x1f45}, {0x1f48, 0x1f4d}, {0x1f50, 0x1f57}, {0x1f59, 0x1f59}, {0x1f5b, 0x1f5b}, {0x1f5d, 0x1f5d}, {0x1f5f, 0x1f7d}, {0x1f80, 0x1fb4}, {0x1fb6, 0x1fbc}, {0x1fbe, 0x1fbe}, {0x1fc2, 0x1fc4}, {0x1fc6, 0x1fcc}, {0x1fd0, 0x1fd3}, {0x1fd6, 0x1fdb}, {0x1fe0, 0x1fec}, {0x1ff2, 0x1ff4}, {0x1ff6, 0x1ffc}, {0x2071, 0x2071}, {0x207f, 0x207f}, {0x2090, 0x209c}, {0x2102, 0x2102}, @@ -8003,7 +7863,7 @@ static const TSCharacterRange sym_identifier_character_set_1[] = { {0x2db8, 0x2dbe}, {0x2dc0, 0x2dc6}, {0x2dc8, 0x2dce}, {0x2dd0, 0x2dd6}, {0x2dd8, 0x2dde}, {0x3005, 0x3007}, {0x3021, 0x3029}, {0x3031, 0x3035}, {0x3038, 0x303c}, {0x3041, 0x3096}, {0x309d, 0x309f}, {0x30a1, 0x30fa}, {0x30fc, 0x30ff}, {0x3105, 0x312f}, {0x3131, 0x318e}, {0x31a0, 0x31bf}, {0x31f0, 0x31ff}, {0x3400, 0x4dbf}, {0x4e00, 0xa48c}, {0xa4d0, 0xa4fd}, {0xa500, 0xa60c}, {0xa610, 0xa61f}, {0xa62a, 0xa62b}, {0xa640, 0xa66e}, - {0xa67f, 0xa69d}, {0xa6a0, 0xa6ef}, {0xa717, 0xa71f}, {0xa722, 0xa788}, {0xa78b, 0xa7cd}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7dc}, + {0xa67f, 0xa69d}, {0xa6a0, 0xa6ef}, {0xa717, 0xa71f}, {0xa722, 0xa788}, {0xa78b, 0xa7ca}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7d9}, {0xa7f2, 0xa801}, {0xa803, 0xa805}, {0xa807, 0xa80a}, {0xa80c, 0xa822}, {0xa840, 0xa873}, {0xa882, 0xa8b3}, {0xa8f2, 0xa8f7}, {0xa8fb, 0xa8fb}, {0xa8fd, 0xa8fe}, {0xa90a, 0xa925}, {0xa930, 0xa946}, {0xa960, 0xa97c}, {0xa984, 0xa9b2}, {0xa9cf, 0xa9cf}, {0xa9e0, 0xa9e4}, {0xa9e6, 0xa9ef}, {0xa9fa, 0xa9fe}, {0xaa00, 0xaa28}, {0xaa40, 0xaa42}, {0xaa44, 0xaa4b}, {0xaa60, 0xaa76}, {0xaa7a, 0xaa7a}, {0xaa7e, 0xaaaf}, {0xaab1, 0xaab1}, @@ -8017,50 +7877,48 @@ static const TSCharacterRange sym_identifier_character_set_1[] = { {0x10080, 0x100fa}, {0x10140, 0x10174}, {0x10280, 0x1029c}, {0x102a0, 0x102d0}, {0x10300, 0x1031f}, {0x1032d, 0x1034a}, {0x10350, 0x10375}, {0x10380, 0x1039d}, {0x103a0, 0x103c3}, {0x103c8, 0x103cf}, {0x103d1, 0x103d5}, {0x10400, 0x1049d}, {0x104b0, 0x104d3}, {0x104d8, 0x104fb}, {0x10500, 0x10527}, {0x10530, 0x10563}, {0x10570, 0x1057a}, {0x1057c, 0x1058a}, {0x1058c, 0x10592}, {0x10594, 0x10595}, {0x10597, 0x105a1}, {0x105a3, 0x105b1}, {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, - {0x105c0, 0x105f3}, {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, {0x10780, 0x10785}, {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, - {0x10808, 0x10808}, {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, {0x1083f, 0x10855}, {0x10860, 0x10876}, {0x10880, 0x1089e}, {0x108e0, 0x108f2}, - {0x108f4, 0x108f5}, {0x10900, 0x10915}, {0x10920, 0x10939}, {0x10980, 0x109b7}, {0x109be, 0x109bf}, {0x10a00, 0x10a00}, {0x10a10, 0x10a13}, {0x10a15, 0x10a17}, - {0x10a19, 0x10a35}, {0x10a60, 0x10a7c}, {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae4}, {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, {0x10b60, 0x10b72}, - {0x10b80, 0x10b91}, {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d23}, {0x10d4a, 0x10d65}, {0x10d6f, 0x10d85}, {0x10e80, 0x10ea9}, - {0x10eb0, 0x10eb1}, {0x10ec2, 0x10ec4}, {0x10f00, 0x10f1c}, {0x10f27, 0x10f27}, {0x10f30, 0x10f45}, {0x10f70, 0x10f81}, {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, - {0x11003, 0x11037}, {0x11071, 0x11072}, {0x11075, 0x11075}, {0x11083, 0x110af}, {0x110d0, 0x110e8}, {0x11103, 0x11126}, {0x11144, 0x11144}, {0x11147, 0x11147}, - {0x11150, 0x11172}, {0x11176, 0x11176}, {0x11183, 0x111b2}, {0x111c1, 0x111c4}, {0x111da, 0x111da}, {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x1122b}, - {0x1123f, 0x11240}, {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, {0x112b0, 0x112de}, {0x11305, 0x1130c}, - {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, {0x11335, 0x11339}, {0x1133d, 0x1133d}, {0x11350, 0x11350}, {0x1135d, 0x11361}, - {0x11380, 0x11389}, {0x1138b, 0x1138b}, {0x1138e, 0x1138e}, {0x11390, 0x113b5}, {0x113b7, 0x113b7}, {0x113d1, 0x113d1}, {0x113d3, 0x113d3}, {0x11400, 0x11434}, - {0x11447, 0x1144a}, {0x1145f, 0x11461}, {0x11480, 0x114af}, {0x114c4, 0x114c5}, {0x114c7, 0x114c7}, {0x11580, 0x115ae}, {0x115d8, 0x115db}, {0x11600, 0x1162f}, - {0x11644, 0x11644}, {0x11680, 0x116aa}, {0x116b8, 0x116b8}, {0x11700, 0x1171a}, {0x11740, 0x11746}, {0x11800, 0x1182b}, {0x118a0, 0x118df}, {0x118ff, 0x11906}, - {0x11909, 0x11909}, {0x1190c, 0x11913}, {0x11915, 0x11916}, {0x11918, 0x1192f}, {0x1193f, 0x1193f}, {0x11941, 0x11941}, {0x119a0, 0x119a7}, {0x119aa, 0x119d0}, - {0x119e1, 0x119e1}, {0x119e3, 0x119e3}, {0x11a00, 0x11a00}, {0x11a0b, 0x11a32}, {0x11a3a, 0x11a3a}, {0x11a50, 0x11a50}, {0x11a5c, 0x11a89}, {0x11a9d, 0x11a9d}, - {0x11ab0, 0x11af8}, {0x11bc0, 0x11be0}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c2e}, {0x11c40, 0x11c40}, {0x11c72, 0x11c8f}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, - {0x11d0b, 0x11d30}, {0x11d46, 0x11d46}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d89}, {0x11d98, 0x11d98}, {0x11ee0, 0x11ef2}, {0x11f02, 0x11f02}, - {0x11f04, 0x11f10}, {0x11f12, 0x11f33}, {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, - {0x13441, 0x13446}, {0x13460, 0x143fa}, {0x14400, 0x14646}, {0x16100, 0x1611d}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, {0x16a70, 0x16abe}, {0x16ad0, 0x16aed}, - {0x16b00, 0x16b2f}, {0x16b40, 0x16b43}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16d40, 0x16d6c}, {0x16e40, 0x16e7f}, {0x16f00, 0x16f4a}, {0x16f50, 0x16f50}, - {0x16f93, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe3}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, {0x18cff, 0x18d08}, {0x1aff0, 0x1aff3}, {0x1aff5, 0x1affb}, - {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, - {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, - {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, - {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, - {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, - {0x1d7c4, 0x1d7cb}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, {0x1e030, 0x1e06d}, {0x1e100, 0x1e12c}, {0x1e137, 0x1e13d}, {0x1e14e, 0x1e14e}, {0x1e290, 0x1e2ad}, - {0x1e2c0, 0x1e2eb}, {0x1e4d0, 0x1e4eb}, {0x1e5d0, 0x1e5ed}, {0x1e5f0, 0x1e5f0}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, - {0x1e800, 0x1e8c4}, {0x1e900, 0x1e943}, {0x1e94b, 0x1e94b}, {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, - {0x1ee29, 0x1ee32}, {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, - {0x1ee4d, 0x1ee4f}, {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, {0x1ee5b, 0x1ee5b}, {0x1ee5d, 0x1ee5d}, {0x1ee5f, 0x1ee5f}, - {0x1ee61, 0x1ee62}, {0x1ee64, 0x1ee64}, {0x1ee67, 0x1ee6a}, {0x1ee6c, 0x1ee72}, {0x1ee74, 0x1ee77}, {0x1ee79, 0x1ee7c}, {0x1ee7e, 0x1ee7e}, {0x1ee80, 0x1ee89}, - {0x1ee8b, 0x1ee9b}, {0x1eea1, 0x1eea3}, {0x1eea5, 0x1eea9}, {0x1eeab, 0x1eebb}, {0x20000, 0x2a6df}, {0x2a700, 0x2b739}, {0x2b740, 0x2b81d}, {0x2b820, 0x2cea1}, - {0x2ceb0, 0x2ebe0}, {0x2ebf0, 0x2ee5d}, {0x2f800, 0x2fa1d}, {0x30000, 0x3134a}, {0x31350, 0x323af}, + {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, {0x10780, 0x10785}, {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, {0x10808, 0x10808}, + {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, {0x1083f, 0x10855}, {0x10860, 0x10876}, {0x10880, 0x1089e}, {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, + {0x10900, 0x10915}, {0x10920, 0x10939}, {0x10980, 0x109b7}, {0x109be, 0x109bf}, {0x10a00, 0x10a00}, {0x10a10, 0x10a13}, {0x10a15, 0x10a17}, {0x10a19, 0x10a35}, + {0x10a60, 0x10a7c}, {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae4}, {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, {0x10b60, 0x10b72}, {0x10b80, 0x10b91}, + {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d23}, {0x10e80, 0x10ea9}, {0x10eb0, 0x10eb1}, {0x10f00, 0x10f1c}, {0x10f27, 0x10f27}, + {0x10f30, 0x10f45}, {0x10f70, 0x10f81}, {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, {0x11003, 0x11037}, {0x11071, 0x11072}, {0x11075, 0x11075}, {0x11083, 0x110af}, + {0x110d0, 0x110e8}, {0x11103, 0x11126}, {0x11144, 0x11144}, {0x11147, 0x11147}, {0x11150, 0x11172}, {0x11176, 0x11176}, {0x11183, 0x111b2}, {0x111c1, 0x111c4}, + {0x111da, 0x111da}, {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x1122b}, {0x1123f, 0x11240}, {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, + {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, {0x112b0, 0x112de}, {0x11305, 0x1130c}, {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, + {0x11335, 0x11339}, {0x1133d, 0x1133d}, {0x11350, 0x11350}, {0x1135d, 0x11361}, {0x11400, 0x11434}, {0x11447, 0x1144a}, {0x1145f, 0x11461}, {0x11480, 0x114af}, + {0x114c4, 0x114c5}, {0x114c7, 0x114c7}, {0x11580, 0x115ae}, {0x115d8, 0x115db}, {0x11600, 0x1162f}, {0x11644, 0x11644}, {0x11680, 0x116aa}, {0x116b8, 0x116b8}, + {0x11700, 0x1171a}, {0x11740, 0x11746}, {0x11800, 0x1182b}, {0x118a0, 0x118df}, {0x118ff, 0x11906}, {0x11909, 0x11909}, {0x1190c, 0x11913}, {0x11915, 0x11916}, + {0x11918, 0x1192f}, {0x1193f, 0x1193f}, {0x11941, 0x11941}, {0x119a0, 0x119a7}, {0x119aa, 0x119d0}, {0x119e1, 0x119e1}, {0x119e3, 0x119e3}, {0x11a00, 0x11a00}, + {0x11a0b, 0x11a32}, {0x11a3a, 0x11a3a}, {0x11a50, 0x11a50}, {0x11a5c, 0x11a89}, {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c2e}, + {0x11c40, 0x11c40}, {0x11c72, 0x11c8f}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d30}, {0x11d46, 0x11d46}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, + {0x11d6a, 0x11d89}, {0x11d98, 0x11d98}, {0x11ee0, 0x11ef2}, {0x11f02, 0x11f02}, {0x11f04, 0x11f10}, {0x11f12, 0x11f33}, {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, + {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, {0x13441, 0x13446}, {0x14400, 0x14646}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, + {0x16a70, 0x16abe}, {0x16ad0, 0x16aed}, {0x16b00, 0x16b2f}, {0x16b40, 0x16b43}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16e40, 0x16e7f}, {0x16f00, 0x16f4a}, + {0x16f50, 0x16f50}, {0x16f93, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe3}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, {0x18d00, 0x18d08}, {0x1aff0, 0x1aff3}, + {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, + {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, + {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, + {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, + {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, + {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, {0x1e030, 0x1e06d}, {0x1e100, 0x1e12c}, {0x1e137, 0x1e13d}, {0x1e14e, 0x1e14e}, + {0x1e290, 0x1e2ad}, {0x1e2c0, 0x1e2eb}, {0x1e4d0, 0x1e4eb}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, {0x1e800, 0x1e8c4}, + {0x1e900, 0x1e943}, {0x1e94b, 0x1e94b}, {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, {0x1ee29, 0x1ee32}, + {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, {0x1ee4d, 0x1ee4f}, + {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, {0x1ee5b, 0x1ee5b}, {0x1ee5d, 0x1ee5d}, {0x1ee5f, 0x1ee5f}, {0x1ee61, 0x1ee62}, + {0x1ee64, 0x1ee64}, {0x1ee67, 0x1ee6a}, {0x1ee6c, 0x1ee72}, {0x1ee74, 0x1ee77}, {0x1ee79, 0x1ee7c}, {0x1ee7e, 0x1ee7e}, {0x1ee80, 0x1ee89}, {0x1ee8b, 0x1ee9b}, + {0x1eea1, 0x1eea3}, {0x1eea5, 0x1eea9}, {0x1eeab, 0x1eebb}, {0x20000, 0x2a6df}, {0x2a700, 0x2b739}, {0x2b740, 0x2b81d}, {0x2b820, 0x2cea1}, {0x2ceb0, 0x2ebe0}, + {0x2ebf0, 0x2ee5d}, {0x2f800, 0x2fa1d}, {0x30000, 0x3134a}, {0x31350, 0x323af}, }; -static const TSCharacterRange sym_identifier_character_set_3[] = { +static TSCharacterRange sym_identifier_character_set_3[] = { {'0', '9'}, {'A', 'Z'}, {'_', '_'}, {'a', 'z'}, {0xaa, 0xaa}, {0xb5, 0xb5}, {0xb7, 0xb7}, {0xba, 0xba}, {0xc0, 0xd6}, {0xd8, 0xf6}, {0xf8, 0x2c1}, {0x2c6, 0x2d1}, {0x2e0, 0x2e4}, {0x2ec, 0x2ec}, {0x2ee, 0x2ee}, {0x300, 0x374}, {0x376, 0x377}, {0x37b, 0x37d}, {0x37f, 0x37f}, {0x386, 0x38a}, {0x38c, 0x38c}, {0x38e, 0x3a1}, {0x3a3, 0x3f5}, {0x3f7, 0x481}, {0x483, 0x487}, {0x48a, 0x52f}, {0x531, 0x556}, {0x559, 0x559}, {0x560, 0x588}, {0x591, 0x5bd}, {0x5bf, 0x5bf}, {0x5c1, 0x5c2}, {0x5c4, 0x5c5}, {0x5c7, 0x5c7}, {0x5d0, 0x5ea}, {0x5ef, 0x5f2}, {0x610, 0x61a}, {0x620, 0x669}, {0x66e, 0x6d3}, {0x6d5, 0x6dc}, {0x6df, 0x6e8}, {0x6ea, 0x6fc}, {0x6ff, 0x6ff}, {0x710, 0x74a}, {0x74d, 0x7b1}, {0x7c0, 0x7f5}, {0x7fa, 0x7fa}, {0x7fd, 0x7fd}, - {0x800, 0x82d}, {0x840, 0x85b}, {0x860, 0x86a}, {0x870, 0x887}, {0x889, 0x88e}, {0x897, 0x8e1}, {0x8e3, 0x963}, {0x966, 0x96f}, + {0x800, 0x82d}, {0x840, 0x85b}, {0x860, 0x86a}, {0x870, 0x887}, {0x889, 0x88e}, {0x898, 0x8e1}, {0x8e3, 0x963}, {0x966, 0x96f}, {0x971, 0x983}, {0x985, 0x98c}, {0x98f, 0x990}, {0x993, 0x9a8}, {0x9aa, 0x9b0}, {0x9b2, 0x9b2}, {0x9b6, 0x9b9}, {0x9bc, 0x9c4}, {0x9c7, 0x9c8}, {0x9cb, 0x9ce}, {0x9d7, 0x9d7}, {0x9dc, 0x9dd}, {0x9df, 0x9e3}, {0x9e6, 0x9f1}, {0x9fc, 0x9fc}, {0x9fe, 0x9fe}, {0xa01, 0xa03}, {0xa05, 0xa0a}, {0xa0f, 0xa10}, {0xa13, 0xa28}, {0xa2a, 0xa30}, {0xa32, 0xa33}, {0xa35, 0xa36}, {0xa38, 0xa39}, @@ -8088,7 +7946,7 @@ static const TSCharacterRange sym_identifier_character_set_3[] = { {0x180b, 0x180d}, {0x180f, 0x1819}, {0x1820, 0x1878}, {0x1880, 0x18aa}, {0x18b0, 0x18f5}, {0x1900, 0x191e}, {0x1920, 0x192b}, {0x1930, 0x193b}, {0x1946, 0x196d}, {0x1970, 0x1974}, {0x1980, 0x19ab}, {0x19b0, 0x19c9}, {0x19d0, 0x19da}, {0x1a00, 0x1a1b}, {0x1a20, 0x1a5e}, {0x1a60, 0x1a7c}, {0x1a7f, 0x1a89}, {0x1a90, 0x1a99}, {0x1aa7, 0x1aa7}, {0x1ab0, 0x1abd}, {0x1abf, 0x1ace}, {0x1b00, 0x1b4c}, {0x1b50, 0x1b59}, {0x1b6b, 0x1b73}, - {0x1b80, 0x1bf3}, {0x1c00, 0x1c37}, {0x1c40, 0x1c49}, {0x1c4d, 0x1c7d}, {0x1c80, 0x1c8a}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1cd0, 0x1cd2}, + {0x1b80, 0x1bf3}, {0x1c00, 0x1c37}, {0x1c40, 0x1c49}, {0x1c4d, 0x1c7d}, {0x1c80, 0x1c88}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1cd0, 0x1cd2}, {0x1cd4, 0x1cfa}, {0x1d00, 0x1f15}, {0x1f18, 0x1f1d}, {0x1f20, 0x1f45}, {0x1f48, 0x1f4d}, {0x1f50, 0x1f57}, {0x1f59, 0x1f59}, {0x1f5b, 0x1f5b}, {0x1f5d, 0x1f5d}, {0x1f5f, 0x1f7d}, {0x1f80, 0x1fb4}, {0x1fb6, 0x1fbc}, {0x1fbe, 0x1fbe}, {0x1fc2, 0x1fc4}, {0x1fc6, 0x1fcc}, {0x1fd0, 0x1fd3}, {0x1fd6, 0x1fdb}, {0x1fe0, 0x1fec}, {0x1ff2, 0x1ff4}, {0x1ff6, 0x1ffc}, {0x200c, 0x200d}, {0x203f, 0x2040}, {0x2054, 0x2054}, {0x2071, 0x2071}, @@ -8099,7 +7957,7 @@ static const TSCharacterRange sym_identifier_character_set_3[] = { {0x2dd0, 0x2dd6}, {0x2dd8, 0x2dde}, {0x2de0, 0x2dff}, {0x3005, 0x3007}, {0x3021, 0x302f}, {0x3031, 0x3035}, {0x3038, 0x303c}, {0x3041, 0x3096}, {0x3099, 0x309a}, {0x309d, 0x309f}, {0x30a1, 0x30ff}, {0x3105, 0x312f}, {0x3131, 0x318e}, {0x31a0, 0x31bf}, {0x31f0, 0x31ff}, {0x3400, 0x4dbf}, {0x4e00, 0xa48c}, {0xa4d0, 0xa4fd}, {0xa500, 0xa60c}, {0xa610, 0xa62b}, {0xa640, 0xa66f}, {0xa674, 0xa67d}, {0xa67f, 0xa6f1}, {0xa717, 0xa71f}, - {0xa722, 0xa788}, {0xa78b, 0xa7cd}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7dc}, {0xa7f2, 0xa827}, {0xa82c, 0xa82c}, {0xa840, 0xa873}, + {0xa722, 0xa788}, {0xa78b, 0xa7ca}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7d9}, {0xa7f2, 0xa827}, {0xa82c, 0xa82c}, {0xa840, 0xa873}, {0xa880, 0xa8c5}, {0xa8d0, 0xa8d9}, {0xa8e0, 0xa8f7}, {0xa8fb, 0xa8fb}, {0xa8fd, 0xa92d}, {0xa930, 0xa953}, {0xa960, 0xa97c}, {0xa980, 0xa9c0}, {0xa9cf, 0xa9d9}, {0xa9e0, 0xa9fe}, {0xaa00, 0xaa36}, {0xaa40, 0xaa4d}, {0xaa50, 0xaa59}, {0xaa60, 0xaa76}, {0xaa7a, 0xaac2}, {0xaadb, 0xaadd}, {0xaae0, 0xaaef}, {0xaaf2, 0xaaf6}, {0xab01, 0xab06}, {0xab09, 0xab0e}, {0xab11, 0xab16}, {0xab20, 0xab26}, {0xab28, 0xab2e}, {0xab30, 0xab5a}, @@ -8112,42 +7970,39 @@ static const TSCharacterRange sym_identifier_character_set_3[] = { {0x10050, 0x1005d}, {0x10080, 0x100fa}, {0x10140, 0x10174}, {0x101fd, 0x101fd}, {0x10280, 0x1029c}, {0x102a0, 0x102d0}, {0x102e0, 0x102e0}, {0x10300, 0x1031f}, {0x1032d, 0x1034a}, {0x10350, 0x1037a}, {0x10380, 0x1039d}, {0x103a0, 0x103c3}, {0x103c8, 0x103cf}, {0x103d1, 0x103d5}, {0x10400, 0x1049d}, {0x104a0, 0x104a9}, {0x104b0, 0x104d3}, {0x104d8, 0x104fb}, {0x10500, 0x10527}, {0x10530, 0x10563}, {0x10570, 0x1057a}, {0x1057c, 0x1058a}, {0x1058c, 0x10592}, {0x10594, 0x10595}, - {0x10597, 0x105a1}, {0x105a3, 0x105b1}, {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, {0x105c0, 0x105f3}, {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, - {0x10780, 0x10785}, {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, {0x10808, 0x10808}, {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, - {0x1083f, 0x10855}, {0x10860, 0x10876}, {0x10880, 0x1089e}, {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, {0x10900, 0x10915}, {0x10920, 0x10939}, {0x10980, 0x109b7}, - {0x109be, 0x109bf}, {0x10a00, 0x10a03}, {0x10a05, 0x10a06}, {0x10a0c, 0x10a13}, {0x10a15, 0x10a17}, {0x10a19, 0x10a35}, {0x10a38, 0x10a3a}, {0x10a3f, 0x10a3f}, - {0x10a60, 0x10a7c}, {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae6}, {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, {0x10b60, 0x10b72}, {0x10b80, 0x10b91}, - {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d27}, {0x10d30, 0x10d39}, {0x10d40, 0x10d65}, {0x10d69, 0x10d6d}, {0x10d6f, 0x10d85}, - {0x10e80, 0x10ea9}, {0x10eab, 0x10eac}, {0x10eb0, 0x10eb1}, {0x10ec2, 0x10ec4}, {0x10efc, 0x10f1c}, {0x10f27, 0x10f27}, {0x10f30, 0x10f50}, {0x10f70, 0x10f85}, - {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, {0x11000, 0x11046}, {0x11066, 0x11075}, {0x1107f, 0x110ba}, {0x110c2, 0x110c2}, {0x110d0, 0x110e8}, {0x110f0, 0x110f9}, - {0x11100, 0x11134}, {0x11136, 0x1113f}, {0x11144, 0x11147}, {0x11150, 0x11173}, {0x11176, 0x11176}, {0x11180, 0x111c4}, {0x111c9, 0x111cc}, {0x111ce, 0x111da}, - {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x11237}, {0x1123e, 0x11241}, {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, - {0x1129f, 0x112a8}, {0x112b0, 0x112ea}, {0x112f0, 0x112f9}, {0x11300, 0x11303}, {0x11305, 0x1130c}, {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, - {0x11332, 0x11333}, {0x11335, 0x11339}, {0x1133b, 0x11344}, {0x11347, 0x11348}, {0x1134b, 0x1134d}, {0x11350, 0x11350}, {0x11357, 0x11357}, {0x1135d, 0x11363}, - {0x11366, 0x1136c}, {0x11370, 0x11374}, {0x11380, 0x11389}, {0x1138b, 0x1138b}, {0x1138e, 0x1138e}, {0x11390, 0x113b5}, {0x113b7, 0x113c0}, {0x113c2, 0x113c2}, - {0x113c5, 0x113c5}, {0x113c7, 0x113ca}, {0x113cc, 0x113d3}, {0x113e1, 0x113e2}, {0x11400, 0x1144a}, {0x11450, 0x11459}, {0x1145e, 0x11461}, {0x11480, 0x114c5}, - {0x114c7, 0x114c7}, {0x114d0, 0x114d9}, {0x11580, 0x115b5}, {0x115b8, 0x115c0}, {0x115d8, 0x115dd}, {0x11600, 0x11640}, {0x11644, 0x11644}, {0x11650, 0x11659}, - {0x11680, 0x116b8}, {0x116c0, 0x116c9}, {0x116d0, 0x116e3}, {0x11700, 0x1171a}, {0x1171d, 0x1172b}, {0x11730, 0x11739}, {0x11740, 0x11746}, {0x11800, 0x1183a}, + {0x10597, 0x105a1}, {0x105a3, 0x105b1}, {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, {0x10780, 0x10785}, + {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, {0x10808, 0x10808}, {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, {0x1083f, 0x10855}, + {0x10860, 0x10876}, {0x10880, 0x1089e}, {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, {0x10900, 0x10915}, {0x10920, 0x10939}, {0x10980, 0x109b7}, {0x109be, 0x109bf}, + {0x10a00, 0x10a03}, {0x10a05, 0x10a06}, {0x10a0c, 0x10a13}, {0x10a15, 0x10a17}, {0x10a19, 0x10a35}, {0x10a38, 0x10a3a}, {0x10a3f, 0x10a3f}, {0x10a60, 0x10a7c}, + {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae6}, {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, {0x10b60, 0x10b72}, {0x10b80, 0x10b91}, {0x10c00, 0x10c48}, + {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d27}, {0x10d30, 0x10d39}, {0x10e80, 0x10ea9}, {0x10eab, 0x10eac}, {0x10eb0, 0x10eb1}, {0x10efd, 0x10f1c}, + {0x10f27, 0x10f27}, {0x10f30, 0x10f50}, {0x10f70, 0x10f85}, {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, {0x11000, 0x11046}, {0x11066, 0x11075}, {0x1107f, 0x110ba}, + {0x110c2, 0x110c2}, {0x110d0, 0x110e8}, {0x110f0, 0x110f9}, {0x11100, 0x11134}, {0x11136, 0x1113f}, {0x11144, 0x11147}, {0x11150, 0x11173}, {0x11176, 0x11176}, + {0x11180, 0x111c4}, {0x111c9, 0x111cc}, {0x111ce, 0x111da}, {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x11237}, {0x1123e, 0x11241}, {0x11280, 0x11286}, + {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, {0x112b0, 0x112ea}, {0x112f0, 0x112f9}, {0x11300, 0x11303}, {0x11305, 0x1130c}, + {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, {0x11335, 0x11339}, {0x1133b, 0x11344}, {0x11347, 0x11348}, {0x1134b, 0x1134d}, + {0x11350, 0x11350}, {0x11357, 0x11357}, {0x1135d, 0x11363}, {0x11366, 0x1136c}, {0x11370, 0x11374}, {0x11400, 0x1144a}, {0x11450, 0x11459}, {0x1145e, 0x11461}, + {0x11480, 0x114c5}, {0x114c7, 0x114c7}, {0x114d0, 0x114d9}, {0x11580, 0x115b5}, {0x115b8, 0x115c0}, {0x115d8, 0x115dd}, {0x11600, 0x11640}, {0x11644, 0x11644}, + {0x11650, 0x11659}, {0x11680, 0x116b8}, {0x116c0, 0x116c9}, {0x11700, 0x1171a}, {0x1171d, 0x1172b}, {0x11730, 0x11739}, {0x11740, 0x11746}, {0x11800, 0x1183a}, {0x118a0, 0x118e9}, {0x118ff, 0x11906}, {0x11909, 0x11909}, {0x1190c, 0x11913}, {0x11915, 0x11916}, {0x11918, 0x11935}, {0x11937, 0x11938}, {0x1193b, 0x11943}, {0x11950, 0x11959}, {0x119a0, 0x119a7}, {0x119aa, 0x119d7}, {0x119da, 0x119e1}, {0x119e3, 0x119e4}, {0x11a00, 0x11a3e}, {0x11a47, 0x11a47}, {0x11a50, 0x11a99}, - {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11bc0, 0x11be0}, {0x11bf0, 0x11bf9}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c36}, {0x11c38, 0x11c40}, {0x11c50, 0x11c59}, - {0x11c72, 0x11c8f}, {0x11c92, 0x11ca7}, {0x11ca9, 0x11cb6}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d36}, {0x11d3a, 0x11d3a}, {0x11d3c, 0x11d3d}, - {0x11d3f, 0x11d47}, {0x11d50, 0x11d59}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d8e}, {0x11d90, 0x11d91}, {0x11d93, 0x11d98}, {0x11da0, 0x11da9}, - {0x11ee0, 0x11ef6}, {0x11f00, 0x11f10}, {0x11f12, 0x11f3a}, {0x11f3e, 0x11f42}, {0x11f50, 0x11f5a}, {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, {0x12400, 0x1246e}, - {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, {0x13440, 0x13455}, {0x13460, 0x143fa}, {0x14400, 0x14646}, {0x16100, 0x16139}, {0x16800, 0x16a38}, - {0x16a40, 0x16a5e}, {0x16a60, 0x16a69}, {0x16a70, 0x16abe}, {0x16ac0, 0x16ac9}, {0x16ad0, 0x16aed}, {0x16af0, 0x16af4}, {0x16b00, 0x16b36}, {0x16b40, 0x16b43}, - {0x16b50, 0x16b59}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16d40, 0x16d6c}, {0x16d70, 0x16d79}, {0x16e40, 0x16e7f}, {0x16f00, 0x16f4a}, {0x16f4f, 0x16f87}, - {0x16f8f, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe4}, {0x16ff0, 0x16ff1}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, {0x18cff, 0x18d08}, {0x1aff0, 0x1aff3}, - {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, - {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1bc9d, 0x1bc9e}, {0x1ccf0, 0x1ccf9}, {0x1cf00, 0x1cf2d}, {0x1cf30, 0x1cf46}, - {0x1d165, 0x1d169}, {0x1d16d, 0x1d172}, {0x1d17b, 0x1d182}, {0x1d185, 0x1d18b}, {0x1d1aa, 0x1d1ad}, {0x1d242, 0x1d244}, {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, - {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, - {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, - {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, - {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, {0x1d7ce, 0x1d7ff}, {0x1da00, 0x1da36}, {0x1da3b, 0x1da6c}, {0x1da75, 0x1da75}, - {0x1da84, 0x1da84}, {0x1da9b, 0x1da9f}, {0x1daa1, 0x1daaf}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, {0x1e000, 0x1e006}, {0x1e008, 0x1e018}, {0x1e01b, 0x1e021}, - {0x1e023, 0x1e024}, {0x1e026, 0x1e02a}, {0x1e030, 0x1e06d}, {0x1e08f, 0x1e08f}, {0x1e100, 0x1e12c}, {0x1e130, 0x1e13d}, {0x1e140, 0x1e149}, {0x1e14e, 0x1e14e}, - {0x1e290, 0x1e2ae}, {0x1e2c0, 0x1e2f9}, {0x1e4d0, 0x1e4f9}, {0x1e5d0, 0x1e5fa}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, + {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c36}, {0x11c38, 0x11c40}, {0x11c50, 0x11c59}, {0x11c72, 0x11c8f}, {0x11c92, 0x11ca7}, + {0x11ca9, 0x11cb6}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d36}, {0x11d3a, 0x11d3a}, {0x11d3c, 0x11d3d}, {0x11d3f, 0x11d47}, {0x11d50, 0x11d59}, + {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d8e}, {0x11d90, 0x11d91}, {0x11d93, 0x11d98}, {0x11da0, 0x11da9}, {0x11ee0, 0x11ef6}, {0x11f00, 0x11f10}, + {0x11f12, 0x11f3a}, {0x11f3e, 0x11f42}, {0x11f50, 0x11f59}, {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, + {0x13000, 0x1342f}, {0x13440, 0x13455}, {0x14400, 0x14646}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, {0x16a60, 0x16a69}, {0x16a70, 0x16abe}, {0x16ac0, 0x16ac9}, + {0x16ad0, 0x16aed}, {0x16af0, 0x16af4}, {0x16b00, 0x16b36}, {0x16b40, 0x16b43}, {0x16b50, 0x16b59}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16e40, 0x16e7f}, + {0x16f00, 0x16f4a}, {0x16f4f, 0x16f87}, {0x16f8f, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe4}, {0x16ff0, 0x16ff1}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, + {0x18d00, 0x18d08}, {0x1aff0, 0x1aff3}, {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, + {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1bc9d, 0x1bc9e}, {0x1cf00, 0x1cf2d}, + {0x1cf30, 0x1cf46}, {0x1d165, 0x1d169}, {0x1d16d, 0x1d172}, {0x1d17b, 0x1d182}, {0x1d185, 0x1d18b}, {0x1d1aa, 0x1d1ad}, {0x1d242, 0x1d244}, {0x1d400, 0x1d454}, + {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, + {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, + {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, + {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, {0x1d7ce, 0x1d7ff}, {0x1da00, 0x1da36}, {0x1da3b, 0x1da6c}, + {0x1da75, 0x1da75}, {0x1da84, 0x1da84}, {0x1da9b, 0x1da9f}, {0x1daa1, 0x1daaf}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, {0x1e000, 0x1e006}, {0x1e008, 0x1e018}, + {0x1e01b, 0x1e021}, {0x1e023, 0x1e024}, {0x1e026, 0x1e02a}, {0x1e030, 0x1e06d}, {0x1e08f, 0x1e08f}, {0x1e100, 0x1e12c}, {0x1e130, 0x1e13d}, {0x1e140, 0x1e149}, + {0x1e14e, 0x1e14e}, {0x1e290, 0x1e2ae}, {0x1e2c0, 0x1e2f9}, {0x1e4d0, 0x1e4f9}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, {0x1e800, 0x1e8c4}, {0x1e8d0, 0x1e8d6}, {0x1e900, 0x1e94b}, {0x1e950, 0x1e959}, {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, {0x1ee29, 0x1ee32}, {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, {0x1ee4d, 0x1ee4f}, {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, {0x1ee5b, 0x1ee5b}, {0x1ee5d, 0x1ee5d}, @@ -8201,7 +8056,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(70); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(156); - if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(193); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(193); END_STATE(); case 1: if (lookahead == '\n') ADVANCE(194); @@ -8259,7 +8114,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(4); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(156); - if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(193); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(193); END_STATE(); case 5: ADVANCE_MAP( @@ -8298,7 +8153,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(5); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(156); - if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(193); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(193); END_STATE(); case 6: ADVANCE_MAP( @@ -8338,7 +8193,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(6); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(156); - if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(193); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(193); END_STATE(); case 7: ADVANCE_MAP( @@ -8371,7 +8226,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(7); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(156); - if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(193); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(193); END_STATE(); case 8: ADVANCE_MAP( @@ -8403,7 +8258,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(8); - if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(193); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(193); END_STATE(); case 9: ADVANCE_MAP( @@ -8435,7 +8290,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(9); - if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(193); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(193); END_STATE(); case 10: ADVANCE_MAP( @@ -8462,7 +8317,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(10); - if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(193); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(193); END_STATE(); case 11: ADVANCE_MAP( @@ -8487,7 +8342,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(11); - if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(193); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(193); END_STATE(); case 12: ADVANCE_MAP( @@ -8521,7 +8376,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(12); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(156); - if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(193); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(193); END_STATE(); case 13: ADVANCE_MAP( @@ -8557,7 +8412,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(13); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(156); - if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(193); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(193); END_STATE(); case 14: ADVANCE_MAP( @@ -8589,7 +8444,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(14); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(156); - if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(193); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(193); END_STATE(); case 15: ADVANCE_MAP( @@ -8620,7 +8475,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(15); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(156); - if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(193); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(193); END_STATE(); case 16: ADVANCE_MAP( @@ -8647,7 +8502,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(16); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(156); - if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(193); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(193); END_STATE(); case 17: ADVANCE_MAP( @@ -8681,7 +8536,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(17); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(156); - if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(193); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(193); END_STATE(); case 18: ADVANCE_MAP( @@ -8707,7 +8562,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(18); - if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(193); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(193); END_STATE(); case 19: ADVANCE_MAP( @@ -8725,7 +8580,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(19); - if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(193); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(193); END_STATE(); case 20: ADVANCE_MAP( @@ -8757,7 +8612,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(20); - if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(193); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(193); END_STATE(); case 21: ADVANCE_MAP( @@ -8789,7 +8644,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(21); - if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(193); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(193); END_STATE(); case 22: ADVANCE_MAP( @@ -8813,7 +8668,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(22); - if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(193); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(193); END_STATE(); case 23: ADVANCE_MAP( @@ -8839,7 +8694,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(25); - if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(193); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(193); END_STATE(); case 24: if (lookahead == '"') ADVANCE(158); @@ -8851,7 +8706,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 'c') ADVANCE(181); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(24); - if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(193); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(193); END_STATE(); case 25: ADVANCE_MAP( @@ -8875,7 +8730,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(25); - if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(193); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(193); END_STATE(); case 26: ADVANCE_MAP( @@ -8893,7 +8748,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(26); - if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(193); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(193); END_STATE(); case 27: ADVANCE_MAP( @@ -8913,7 +8768,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(27); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(156); - if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(193); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(193); END_STATE(); case 28: if (lookahead == '&') ADVANCE(109); @@ -8950,7 +8805,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(31); - if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(193); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(193); END_STATE(); case 32: if (lookahead == '*') ADVANCE(176); @@ -9117,7 +8972,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(195); END_STATE(); case 69: - if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(193); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(193); END_STATE(); case 70: if (eof) ADVANCE(74); @@ -9159,7 +9014,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(70); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(156); - if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(193); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(193); END_STATE(); case 71: if (eof) ADVANCE(74); @@ -9197,7 +9052,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(71); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(156); - if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(193); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(193); END_STATE(); case 72: if (eof) ADVANCE(74); @@ -9236,7 +9091,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(72); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(156); - if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(193); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(193); END_STATE(); case 73: if (eof) ADVANCE(74); @@ -9269,7 +9124,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(73); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(156); - if (set_contains(sym_identifier_character_set_1, 685, lookahead)) ADVANCE(193); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(193); END_STATE(); case 74: ACCEPT_TOKEN(ts_builtin_sym_end); @@ -9739,77 +9594,77 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 179: ACCEPT_TOKEN(sym_identifier); if (lookahead == '!') ADVANCE(76); - if (set_contains(sym_identifier_character_set_3, 800, lookahead)) ADVANCE(193); + if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(193); END_STATE(); case 180: ACCEPT_TOKEN(sym_identifier); if (lookahead == '"') ADVANCE(158); if (lookahead == '\'') ADVANCE(30); - if (set_contains(sym_identifier_character_set_3, 800, lookahead)) ADVANCE(193); + if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(193); END_STATE(); case 181: ACCEPT_TOKEN(sym_identifier); if (lookahead == '"') ADVANCE(158); - if (set_contains(sym_identifier_character_set_3, 800, lookahead)) ADVANCE(193); + if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(193); END_STATE(); case 182: ACCEPT_TOKEN(sym_identifier); if (lookahead == '#') ADVANCE(69); - if (set_contains(sym_identifier_character_set_3, 800, lookahead)) ADVANCE(193); + if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(193); END_STATE(); case 183: ACCEPT_TOKEN(sym_identifier); if (lookahead == '_') ADVANCE(190); - if (set_contains(sym_identifier_character_set_3, 800, lookahead)) ADVANCE(193); + if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(193); END_STATE(); case 184: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'a') ADVANCE(185); - if (set_contains(sym_identifier_character_set_3, 800, lookahead)) ADVANCE(193); + if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(193); END_STATE(); case 185: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'c') ADVANCE(189); - if (set_contains(sym_identifier_character_set_3, 800, lookahead)) ADVANCE(193); + if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(193); END_STATE(); case 186: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'e') ADVANCE(191); - if (set_contains(sym_identifier_character_set_3, 800, lookahead)) ADVANCE(193); + if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(193); END_STATE(); case 187: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'l') ADVANCE(186); - if (set_contains(sym_identifier_character_set_3, 800, lookahead)) ADVANCE(193); + if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(193); END_STATE(); case 188: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'o') ADVANCE(183); - if (set_contains(sym_identifier_character_set_3, 800, lookahead)) ADVANCE(193); + if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(193); END_STATE(); case 189: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'r') ADVANCE(188); - if (set_contains(sym_identifier_character_set_3, 800, lookahead)) ADVANCE(193); + if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(193); END_STATE(); case 190: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'r') ADVANCE(192); - if (set_contains(sym_identifier_character_set_3, 800, lookahead)) ADVANCE(193); + if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(193); END_STATE(); case 191: ACCEPT_TOKEN(sym_identifier); if (lookahead == 's') ADVANCE(179); - if (set_contains(sym_identifier_character_set_3, 800, lookahead)) ADVANCE(193); + if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(193); END_STATE(); case 192: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'u') ADVANCE(187); - if (set_contains(sym_identifier_character_set_3, 800, lookahead)) ADVANCE(193); + if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(193); END_STATE(); case 193: ACCEPT_TOKEN(sym_identifier); - if (set_contains(sym_identifier_character_set_3, 800, lookahead)) ADVANCE(193); + if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(193); END_STATE(); case 194: ACCEPT_TOKEN(sym_shebang); @@ -10612,7 +10467,7 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { } } -static const TSLexerMode ts_lex_modes[STATE_COUNT] = { +static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, [1] = {.lex_state = 72, .external_lex_state = 2}, [2] = {.lex_state = 73, .external_lex_state = 2}, @@ -10655,17 +10510,17 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [39] = {.lex_state = 5, .external_lex_state = 2}, [40] = {.lex_state = 5, .external_lex_state = 2}, [41] = {.lex_state = 5, .external_lex_state = 2}, - [42] = {.lex_state = 5, .external_lex_state = 2}, + [42] = {.lex_state = 7, .external_lex_state = 2}, [43] = {.lex_state = 7, .external_lex_state = 2}, - [44] = {.lex_state = 5, .external_lex_state = 2}, + [44] = {.lex_state = 7, .external_lex_state = 2}, [45] = {.lex_state = 7, .external_lex_state = 2}, [46] = {.lex_state = 7, .external_lex_state = 2}, [47] = {.lex_state = 7, .external_lex_state = 2}, [48] = {.lex_state = 7, .external_lex_state = 2}, - [49] = {.lex_state = 7, .external_lex_state = 2}, - [50] = {.lex_state = 7, .external_lex_state = 2}, + [49] = {.lex_state = 5, .external_lex_state = 2}, + [50] = {.lex_state = 5, .external_lex_state = 2}, [51] = {.lex_state = 5, .external_lex_state = 2}, - [52] = {.lex_state = 7, .external_lex_state = 2}, + [52] = {.lex_state = 5, .external_lex_state = 2}, [53] = {.lex_state = 5, .external_lex_state = 2}, [54] = {.lex_state = 5, .external_lex_state = 2}, [55] = {.lex_state = 5, .external_lex_state = 2}, @@ -10676,10 +10531,10 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [60] = {.lex_state = 5, .external_lex_state = 2}, [61] = {.lex_state = 5, .external_lex_state = 2}, [62] = {.lex_state = 5, .external_lex_state = 2}, - [63] = {.lex_state = 5, .external_lex_state = 2}, - [64] = {.lex_state = 5, .external_lex_state = 2}, - [65] = {.lex_state = 5, .external_lex_state = 2}, - [66] = {.lex_state = 5, .external_lex_state = 2}, + [63] = {.lex_state = 4, .external_lex_state = 2}, + [64] = {.lex_state = 4, .external_lex_state = 2}, + [65] = {.lex_state = 4, .external_lex_state = 2}, + [66] = {.lex_state = 4, .external_lex_state = 2}, [67] = {.lex_state = 4, .external_lex_state = 2}, [68] = {.lex_state = 4, .external_lex_state = 2}, [69] = {.lex_state = 4, .external_lex_state = 2}, @@ -10688,25 +10543,25 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [72] = {.lex_state = 4, .external_lex_state = 2}, [73] = {.lex_state = 4, .external_lex_state = 2}, [74] = {.lex_state = 4, .external_lex_state = 2}, - [75] = {.lex_state = 4, .external_lex_state = 2}, + [75] = {.lex_state = 6, .external_lex_state = 2}, [76] = {.lex_state = 4, .external_lex_state = 2}, [77] = {.lex_state = 4, .external_lex_state = 2}, [78] = {.lex_state = 4, .external_lex_state = 2}, [79] = {.lex_state = 4, .external_lex_state = 2}, - [80] = {.lex_state = 4, .external_lex_state = 2}, + [80] = {.lex_state = 6, .external_lex_state = 2}, [81] = {.lex_state = 4, .external_lex_state = 2}, [82] = {.lex_state = 4, .external_lex_state = 2}, - [83] = {.lex_state = 6, .external_lex_state = 2}, + [83] = {.lex_state = 4, .external_lex_state = 2}, [84] = {.lex_state = 6, .external_lex_state = 2}, - [85] = {.lex_state = 6, .external_lex_state = 2}, - [86] = {.lex_state = 6, .external_lex_state = 2}, - [87] = {.lex_state = 6, .external_lex_state = 2}, + [85] = {.lex_state = 4, .external_lex_state = 2}, + [86] = {.lex_state = 4, .external_lex_state = 2}, + [87] = {.lex_state = 4, .external_lex_state = 2}, [88] = {.lex_state = 4, .external_lex_state = 2}, [89] = {.lex_state = 4, .external_lex_state = 2}, [90] = {.lex_state = 4, .external_lex_state = 2}, [91] = {.lex_state = 4, .external_lex_state = 2}, - [92] = {.lex_state = 4, .external_lex_state = 2}, - [93] = {.lex_state = 4, .external_lex_state = 2}, + [92] = {.lex_state = 6, .external_lex_state = 2}, + [93] = {.lex_state = 6, .external_lex_state = 2}, [94] = {.lex_state = 6, .external_lex_state = 2}, [95] = {.lex_state = 6, .external_lex_state = 2}, [96] = {.lex_state = 6, .external_lex_state = 2}, @@ -10715,38 +10570,38 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [99] = {.lex_state = 6, .external_lex_state = 2}, [100] = {.lex_state = 6, .external_lex_state = 2}, [101] = {.lex_state = 6, .external_lex_state = 2}, - [102] = {.lex_state = 4, .external_lex_state = 2}, - [103] = {.lex_state = 4, .external_lex_state = 2}, - [104] = {.lex_state = 4, .external_lex_state = 2}, + [102] = {.lex_state = 6, .external_lex_state = 2}, + [103] = {.lex_state = 6, .external_lex_state = 2}, + [104] = {.lex_state = 6, .external_lex_state = 2}, [105] = {.lex_state = 6, .external_lex_state = 2}, [106] = {.lex_state = 6, .external_lex_state = 2}, [107] = {.lex_state = 6, .external_lex_state = 2}, [108] = {.lex_state = 6, .external_lex_state = 2}, [109] = {.lex_state = 6, .external_lex_state = 2}, [110] = {.lex_state = 6, .external_lex_state = 2}, - [111] = {.lex_state = 6, .external_lex_state = 2}, - [112] = {.lex_state = 4, .external_lex_state = 2}, + [111] = {.lex_state = 4, .external_lex_state = 2}, + [112] = {.lex_state = 6, .external_lex_state = 2}, [113] = {.lex_state = 6, .external_lex_state = 2}, [114] = {.lex_state = 6, .external_lex_state = 2}, [115] = {.lex_state = 6, .external_lex_state = 2}, [116] = {.lex_state = 6, .external_lex_state = 2}, [117] = {.lex_state = 6, .external_lex_state = 2}, [118] = {.lex_state = 6, .external_lex_state = 2}, - [119] = {.lex_state = 4, .external_lex_state = 2}, - [120] = {.lex_state = 6, .external_lex_state = 2}, + [119] = {.lex_state = 6, .external_lex_state = 2}, + [120] = {.lex_state = 4, .external_lex_state = 2}, [121] = {.lex_state = 6, .external_lex_state = 2}, [122] = {.lex_state = 6, .external_lex_state = 2}, [123] = {.lex_state = 6, .external_lex_state = 2}, - [124] = {.lex_state = 6, .external_lex_state = 2}, + [124] = {.lex_state = 4, .external_lex_state = 2}, [125] = {.lex_state = 6, .external_lex_state = 2}, - [126] = {.lex_state = 6, .external_lex_state = 2}, + [126] = {.lex_state = 4, .external_lex_state = 2}, [127] = {.lex_state = 6, .external_lex_state = 2}, - [128] = {.lex_state = 4, .external_lex_state = 2}, - [129] = {.lex_state = 4, .external_lex_state = 2}, - [130] = {.lex_state = 6, .external_lex_state = 2}, - [131] = {.lex_state = 4, .external_lex_state = 2}, - [132] = {.lex_state = 6, .external_lex_state = 2}, - [133] = {.lex_state = 6, .external_lex_state = 2}, + [128] = {.lex_state = 6, .external_lex_state = 2}, + [129] = {.lex_state = 6, .external_lex_state = 2}, + [130] = {.lex_state = 13, .external_lex_state = 2}, + [131] = {.lex_state = 13, .external_lex_state = 2}, + [132] = {.lex_state = 13, .external_lex_state = 2}, + [133] = {.lex_state = 13, .external_lex_state = 2}, [134] = {.lex_state = 13, .external_lex_state = 2}, [135] = {.lex_state = 13, .external_lex_state = 2}, [136] = {.lex_state = 13, .external_lex_state = 2}, @@ -10764,32 +10619,32 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [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 = 13, .external_lex_state = 2}, + [151] = {.lex_state = 4, .external_lex_state = 2}, [152] = {.lex_state = 13, .external_lex_state = 2}, - [153] = {.lex_state = 4, .external_lex_state = 2}, + [153] = {.lex_state = 13, .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 = 13, .external_lex_state = 2}, + [157] = {.lex_state = 4, .external_lex_state = 2}, [158] = {.lex_state = 13, .external_lex_state = 2}, [159] = {.lex_state = 13, .external_lex_state = 2}, - [160] = {.lex_state = 13, .external_lex_state = 2}, - [161] = {.lex_state = 4, .external_lex_state = 2}, + [160] = {.lex_state = 4, .external_lex_state = 2}, + [161] = {.lex_state = 13, .external_lex_state = 2}, [162] = {.lex_state = 13, .external_lex_state = 2}, [163] = {.lex_state = 13, .external_lex_state = 2}, - [164] = {.lex_state = 4, .external_lex_state = 2}, + [164] = {.lex_state = 13, .external_lex_state = 2}, [165] = {.lex_state = 13, .external_lex_state = 2}, [166] = {.lex_state = 13, .external_lex_state = 2}, [167] = {.lex_state = 13, .external_lex_state = 2}, [168] = {.lex_state = 13, .external_lex_state = 2}, [169] = {.lex_state = 13, .external_lex_state = 2}, - [170] = {.lex_state = 13, .external_lex_state = 2}, - [171] = {.lex_state = 13, .external_lex_state = 2}, - [172] = {.lex_state = 13, .external_lex_state = 2}, - [173] = {.lex_state = 13, .external_lex_state = 2}, + [170] = {.lex_state = 4, .external_lex_state = 2}, + [171] = {.lex_state = 4, .external_lex_state = 2}, + [172] = {.lex_state = 4, .external_lex_state = 2}, + [173] = {.lex_state = 4, .external_lex_state = 2}, [174] = {.lex_state = 4, .external_lex_state = 2}, - [175] = {.lex_state = 6, .external_lex_state = 2}, - [176] = {.lex_state = 4, .external_lex_state = 2}, + [175] = {.lex_state = 13, .external_lex_state = 2}, + [176] = {.lex_state = 6, .external_lex_state = 2}, [177] = {.lex_state = 4, .external_lex_state = 2}, [178] = {.lex_state = 4, .external_lex_state = 2}, [179] = {.lex_state = 4, .external_lex_state = 2}, @@ -10797,89 +10652,89 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [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 = 4, .external_lex_state = 2}, + [184] = {.lex_state = 6, .external_lex_state = 2}, [185] = {.lex_state = 4, .external_lex_state = 2}, [186] = {.lex_state = 4, .external_lex_state = 2}, - [187] = {.lex_state = 13, .external_lex_state = 2}, + [187] = {.lex_state = 4, .external_lex_state = 2}, [188] = {.lex_state = 4, .external_lex_state = 2}, [189] = {.lex_state = 4, .external_lex_state = 2}, - [190] = {.lex_state = 4, .external_lex_state = 2}, + [190] = {.lex_state = 13, .external_lex_state = 2}, [191] = {.lex_state = 4, .external_lex_state = 2}, [192] = {.lex_state = 4, .external_lex_state = 2}, - [193] = {.lex_state = 6, .external_lex_state = 2}, + [193] = {.lex_state = 4, .external_lex_state = 2}, [194] = {.lex_state = 4, .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}, + [196] = {.lex_state = 4, .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 = 13, .external_lex_state = 2}, - [201] = {.lex_state = 4, .external_lex_state = 2}, - [202] = {.lex_state = 4, .external_lex_state = 2}, - [203] = {.lex_state = 4, .external_lex_state = 2}, + [200] = {.lex_state = 15, .external_lex_state = 2}, + [201] = {.lex_state = 13, .external_lex_state = 2}, + [202] = {.lex_state = 12, .external_lex_state = 2}, + [203] = {.lex_state = 13, .external_lex_state = 2}, [204] = {.lex_state = 6, .external_lex_state = 2}, [205] = {.lex_state = 6, .external_lex_state = 2}, - [206] = {.lex_state = 6, .external_lex_state = 2}, - [207] = {.lex_state = 12, .external_lex_state = 2}, - [208] = {.lex_state = 6, .external_lex_state = 2}, + [206] = {.lex_state = 13, .external_lex_state = 2}, + [207] = {.lex_state = 15, .external_lex_state = 2}, + [208] = {.lex_state = 15, .external_lex_state = 2}, [209] = {.lex_state = 15, .external_lex_state = 2}, - [210] = {.lex_state = 15, .external_lex_state = 2}, - [211] = {.lex_state = 15, .external_lex_state = 2}, - [212] = {.lex_state = 12, .external_lex_state = 2}, - [213] = {.lex_state = 15, .external_lex_state = 2}, - [214] = {.lex_state = 15, .external_lex_state = 2}, + [210] = {.lex_state = 12, .external_lex_state = 2}, + [211] = {.lex_state = 12, .external_lex_state = 2}, + [212] = {.lex_state = 15, .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 = 12, .external_lex_state = 2}, - [217] = {.lex_state = 13, .external_lex_state = 2}, - [218] = {.lex_state = 13, .external_lex_state = 2}, + [216] = {.lex_state = 13, .external_lex_state = 2}, + [217] = {.lex_state = 15, .external_lex_state = 2}, + [218] = {.lex_state = 6, .external_lex_state = 2}, [219] = {.lex_state = 15, .external_lex_state = 2}, - [220] = {.lex_state = 15, .external_lex_state = 2}, - [221] = {.lex_state = 13, .external_lex_state = 2}, + [220] = {.lex_state = 12, .external_lex_state = 2}, + [221] = {.lex_state = 6, .external_lex_state = 2}, [222] = {.lex_state = 15, .external_lex_state = 2}, [223] = {.lex_state = 13, .external_lex_state = 2}, - [224] = {.lex_state = 15, .external_lex_state = 2}, - [225] = {.lex_state = 13, .external_lex_state = 2}, - [226] = {.lex_state = 6, .external_lex_state = 2}, - [227] = {.lex_state = 6, .external_lex_state = 2}, - [228] = {.lex_state = 15, .external_lex_state = 2}, - [229] = {.lex_state = 15, .external_lex_state = 2}, + [224] = {.lex_state = 12, .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 = 6, .external_lex_state = 2}, + [229] = {.lex_state = 6, .external_lex_state = 2}, [230] = {.lex_state = 15, .external_lex_state = 2}, [231] = {.lex_state = 6, .external_lex_state = 2}, - [232] = {.lex_state = 6, .external_lex_state = 2}, - [233] = {.lex_state = 6, .external_lex_state = 2}, - [234] = {.lex_state = 15, .external_lex_state = 2}, - [235] = {.lex_state = 6, .external_lex_state = 2}, + [232] = {.lex_state = 15, .external_lex_state = 2}, + [233] = {.lex_state = 15, .external_lex_state = 2}, + [234] = {.lex_state = 6, .external_lex_state = 2}, + [235] = {.lex_state = 13, .external_lex_state = 2}, [236] = {.lex_state = 15, .external_lex_state = 2}, - [237] = {.lex_state = 13, .external_lex_state = 2}, - [238] = {.lex_state = 13, .external_lex_state = 2}, + [237] = {.lex_state = 15, .external_lex_state = 2}, + [238] = {.lex_state = 15, .external_lex_state = 2}, [239] = {.lex_state = 15, .external_lex_state = 2}, - [240] = {.lex_state = 13, .external_lex_state = 2}, - [241] = {.lex_state = 13, .external_lex_state = 2}, - [242] = {.lex_state = 15, .external_lex_state = 2}, + [240] = {.lex_state = 12, .external_lex_state = 2}, + [241] = {.lex_state = 6, .external_lex_state = 2}, + [242] = {.lex_state = 13, .external_lex_state = 2}, [243] = {.lex_state = 15, .external_lex_state = 2}, - [244] = {.lex_state = 13, .external_lex_state = 2}, - [245] = {.lex_state = 12, .external_lex_state = 2}, - [246] = {.lex_state = 6, .external_lex_state = 2}, + [244] = {.lex_state = 6, .external_lex_state = 2}, + [245] = {.lex_state = 15, .external_lex_state = 2}, + [246] = {.lex_state = 13, .external_lex_state = 2}, [247] = {.lex_state = 13, .external_lex_state = 2}, - [248] = {.lex_state = 15, .external_lex_state = 2}, - [249] = {.lex_state = 12, .external_lex_state = 2}, + [248] = {.lex_state = 13, .external_lex_state = 2}, + [249] = {.lex_state = 6, .external_lex_state = 2}, [250] = {.lex_state = 12, .external_lex_state = 2}, - [251] = {.lex_state = 15, .external_lex_state = 2}, - [252] = {.lex_state = 13, .external_lex_state = 2}, - [253] = {.lex_state = 15, .external_lex_state = 2}, + [251] = {.lex_state = 12, .external_lex_state = 2}, + [252] = {.lex_state = 12, .external_lex_state = 2}, + [253] = {.lex_state = 12, .external_lex_state = 2}, [254] = {.lex_state = 13, .external_lex_state = 2}, [255] = {.lex_state = 12, .external_lex_state = 2}, - [256] = {.lex_state = 12, .external_lex_state = 2}, + [256] = {.lex_state = 13, .external_lex_state = 2}, [257] = {.lex_state = 13, .external_lex_state = 2}, - [258] = {.lex_state = 12, .external_lex_state = 2}, + [258] = {.lex_state = 13, .external_lex_state = 2}, [259] = {.lex_state = 12, .external_lex_state = 2}, [260] = {.lex_state = 12, .external_lex_state = 2}, [261] = {.lex_state = 12, .external_lex_state = 2}, [262] = {.lex_state = 12, .external_lex_state = 2}, [263] = {.lex_state = 13, .external_lex_state = 2}, [264] = {.lex_state = 13, .external_lex_state = 2}, - [265] = {.lex_state = 12, .external_lex_state = 2}, - [266] = {.lex_state = 12, .external_lex_state = 2}, + [265] = {.lex_state = 13, .external_lex_state = 2}, + [266] = {.lex_state = 13, .external_lex_state = 2}, [267] = {.lex_state = 13, .external_lex_state = 2}, [268] = {.lex_state = 13, .external_lex_state = 2}, [269] = {.lex_state = 13, .external_lex_state = 2}, @@ -10923,22 +10778,22 @@ static const TSLexerMode 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}, + [315] = {.lex_state = 12, .external_lex_state = 2}, [316] = {.lex_state = 13, .external_lex_state = 2}, [317] = {.lex_state = 13, .external_lex_state = 2}, [318] = {.lex_state = 13, .external_lex_state = 2}, - [319] = {.lex_state = 14, .external_lex_state = 2}, - [320] = {.lex_state = 12, .external_lex_state = 2}, + [319] = {.lex_state = 13, .external_lex_state = 2}, + [320] = {.lex_state = 14, .external_lex_state = 2}, [321] = {.lex_state = 13, .external_lex_state = 2}, [322] = {.lex_state = 13, .external_lex_state = 2}, [323] = {.lex_state = 13, .external_lex_state = 2}, [324] = {.lex_state = 13, .external_lex_state = 2}, - [325] = {.lex_state = 14, .external_lex_state = 2}, + [325] = {.lex_state = 13, .external_lex_state = 2}, [326] = {.lex_state = 13, .external_lex_state = 2}, [327] = {.lex_state = 13, .external_lex_state = 2}, [328] = {.lex_state = 13, .external_lex_state = 2}, @@ -10947,13 +10802,13 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [331] = {.lex_state = 13, .external_lex_state = 2}, [332] = {.lex_state = 13, .external_lex_state = 2}, [333] = {.lex_state = 13, .external_lex_state = 2}, - [334] = {.lex_state = 13, .external_lex_state = 2}, + [334] = {.lex_state = 14, .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}, - [340] = {.lex_state = 14, .external_lex_state = 2}, + [340] = {.lex_state = 13, .external_lex_state = 2}, [341] = {.lex_state = 13, .external_lex_state = 2}, [342] = {.lex_state = 13, .external_lex_state = 2}, [343] = {.lex_state = 13, .external_lex_state = 2}, @@ -10999,16 +10854,16 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [383] = {.lex_state = 13, .external_lex_state = 2}, [384] = {.lex_state = 13, .external_lex_state = 2}, [385] = {.lex_state = 13, .external_lex_state = 2}, - [386] = {.lex_state = 13, .external_lex_state = 2}, - [387] = {.lex_state = 13, .external_lex_state = 2}, - [388] = {.lex_state = 13, .external_lex_state = 2}, - [389] = {.lex_state = 13, .external_lex_state = 2}, - [390] = {.lex_state = 13, .external_lex_state = 2}, - [391] = {.lex_state = 13, .external_lex_state = 2}, - [392] = {.lex_state = 13, .external_lex_state = 2}, - [393] = {.lex_state = 13, .external_lex_state = 2}, + [386] = {.lex_state = 71, .external_lex_state = 2}, + [387] = {.lex_state = 71, .external_lex_state = 2}, + [388] = {.lex_state = 71, .external_lex_state = 2}, + [389] = {.lex_state = 71, .external_lex_state = 2}, + [390] = {.lex_state = 71, .external_lex_state = 2}, + [391] = {.lex_state = 12, .external_lex_state = 2}, + [392] = {.lex_state = 71, .external_lex_state = 2}, + [393] = {.lex_state = 71, .external_lex_state = 2}, [394] = {.lex_state = 71, .external_lex_state = 2}, - [395] = {.lex_state = 71, .external_lex_state = 2}, + [395] = {.lex_state = 12, .external_lex_state = 2}, [396] = {.lex_state = 71, .external_lex_state = 2}, [397] = {.lex_state = 71, .external_lex_state = 2}, [398] = {.lex_state = 71, .external_lex_state = 2}, @@ -11016,7 +10871,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [400] = {.lex_state = 71, .external_lex_state = 2}, [401] = {.lex_state = 71, .external_lex_state = 2}, [402] = {.lex_state = 71, .external_lex_state = 2}, - [403] = {.lex_state = 12, .external_lex_state = 2}, + [403] = {.lex_state = 71, .external_lex_state = 2}, [404] = {.lex_state = 71, .external_lex_state = 2}, [405] = {.lex_state = 71, .external_lex_state = 2}, [406] = {.lex_state = 71, .external_lex_state = 2}, @@ -11024,39 +10879,39 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [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}, + [411] = {.lex_state = 12, .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}, [416] = {.lex_state = 71, .external_lex_state = 2}, - [417] = {.lex_state = 71, .external_lex_state = 2}, - [418] = {.lex_state = 12, .external_lex_state = 2}, + [417] = {.lex_state = 12, .external_lex_state = 2}, + [418] = {.lex_state = 71, .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}, - [422] = {.lex_state = 71, .external_lex_state = 2}, - [423] = {.lex_state = 71, .external_lex_state = 2}, - [424] = {.lex_state = 12, .external_lex_state = 2}, - [425] = {.lex_state = 12, .external_lex_state = 2}, - [426] = {.lex_state = 71, .external_lex_state = 2}, - [427] = {.lex_state = 71, .external_lex_state = 2}, - [428] = {.lex_state = 71, .external_lex_state = 2}, + [421] = {.lex_state = 14, .external_lex_state = 2}, + [422] = {.lex_state = 14, .external_lex_state = 2}, + [423] = {.lex_state = 14, .external_lex_state = 2}, + [424] = {.lex_state = 14, .external_lex_state = 2}, + [425] = {.lex_state = 14, .external_lex_state = 2}, + [426] = {.lex_state = 14, .external_lex_state = 2}, + [427] = {.lex_state = 14, .external_lex_state = 2}, + [428] = {.lex_state = 14, .external_lex_state = 2}, [429] = {.lex_state = 14, .external_lex_state = 2}, [430] = {.lex_state = 14, .external_lex_state = 2}, [431] = {.lex_state = 14, .external_lex_state = 2}, - [432] = {.lex_state = 14, .external_lex_state = 2}, - [433] = {.lex_state = 14, .external_lex_state = 2}, - [434] = {.lex_state = 14, .external_lex_state = 2}, - [435] = {.lex_state = 14, .external_lex_state = 2}, - [436] = {.lex_state = 14, .external_lex_state = 2}, - [437] = {.lex_state = 14, .external_lex_state = 2}, - [438] = {.lex_state = 14, .external_lex_state = 2}, - [439] = {.lex_state = 14, .external_lex_state = 2}, - [440] = {.lex_state = 5, .external_lex_state = 2}, - [441] = {.lex_state = 7, .external_lex_state = 2}, - [442] = {.lex_state = 16, .external_lex_state = 2}, - [443] = {.lex_state = 16, .external_lex_state = 2}, + [432] = {.lex_state = 5, .external_lex_state = 2}, + [433] = {.lex_state = 7, .external_lex_state = 2}, + [434] = {.lex_state = 16, .external_lex_state = 2}, + [435] = {.lex_state = 16, .external_lex_state = 2}, + [436] = {.lex_state = 13, .external_lex_state = 2}, + [437] = {.lex_state = 13, .external_lex_state = 2}, + [438] = {.lex_state = 13, .external_lex_state = 2}, + [439] = {.lex_state = 13, .external_lex_state = 2}, + [440] = {.lex_state = 13, .external_lex_state = 2}, + [441] = {.lex_state = 13, .external_lex_state = 2}, + [442] = {.lex_state = 13, .external_lex_state = 2}, + [443] = {.lex_state = 13, .external_lex_state = 2}, [444] = {.lex_state = 13, .external_lex_state = 2}, [445] = {.lex_state = 13, .external_lex_state = 2}, [446] = {.lex_state = 13, .external_lex_state = 2}, @@ -11066,31 +10921,31 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [450] = {.lex_state = 13, .external_lex_state = 2}, [451] = {.lex_state = 13, .external_lex_state = 2}, [452] = {.lex_state = 13, .external_lex_state = 2}, - [453] = {.lex_state = 13, .external_lex_state = 2}, - [454] = {.lex_state = 13, .external_lex_state = 2}, - [455] = {.lex_state = 13, .external_lex_state = 2}, - [456] = {.lex_state = 13, .external_lex_state = 2}, - [457] = {.lex_state = 13, .external_lex_state = 2}, - [458] = {.lex_state = 13, .external_lex_state = 2}, - [459] = {.lex_state = 13, .external_lex_state = 2}, - [460] = {.lex_state = 13, .external_lex_state = 2}, - [461] = {.lex_state = 14, .external_lex_state = 2}, - [462] = {.lex_state = 14, .external_lex_state = 2}, - [463] = {.lex_state = 5, .external_lex_state = 2}, - [464] = {.lex_state = 14, .external_lex_state = 2}, - [465] = {.lex_state = 14, .external_lex_state = 2}, + [453] = {.lex_state = 14, .external_lex_state = 2}, + [454] = {.lex_state = 14, .external_lex_state = 2}, + [455] = {.lex_state = 14, .external_lex_state = 2}, + [456] = {.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}, + [460] = {.lex_state = 14, .external_lex_state = 2}, + [461] = {.lex_state = 5, .external_lex_state = 2}, + [462] = {.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 = 14, .external_lex_state = 2}, - [468] = {.lex_state = 14, .external_lex_state = 2}, + [468] = {.lex_state = 5, .external_lex_state = 2}, [469] = {.lex_state = 5, .external_lex_state = 2}, [470] = {.lex_state = 5, .external_lex_state = 2}, [471] = {.lex_state = 5, .external_lex_state = 2}, [472] = {.lex_state = 5, .external_lex_state = 2}, - [473] = {.lex_state = 5, .external_lex_state = 2}, - [474] = {.lex_state = 14, .external_lex_state = 2}, + [473] = {.lex_state = 14, .external_lex_state = 2}, + [474] = {.lex_state = 5, .external_lex_state = 2}, [475] = {.lex_state = 5, .external_lex_state = 2}, - [476] = {.lex_state = 14, .external_lex_state = 2}, - [477] = {.lex_state = 5, .external_lex_state = 2}, + [476] = {.lex_state = 5, .external_lex_state = 2}, + [477] = {.lex_state = 14, .external_lex_state = 2}, [478] = {.lex_state = 5, .external_lex_state = 2}, [479] = {.lex_state = 5, .external_lex_state = 2}, [480] = {.lex_state = 5, .external_lex_state = 2}, @@ -11099,23 +10954,23 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [483] = {.lex_state = 5, .external_lex_state = 2}, [484] = {.lex_state = 5, .external_lex_state = 2}, [485] = {.lex_state = 5, .external_lex_state = 2}, - [486] = {.lex_state = 14, .external_lex_state = 2}, + [486] = {.lex_state = 5, .external_lex_state = 2}, [487] = {.lex_state = 5, .external_lex_state = 2}, [488] = {.lex_state = 5, .external_lex_state = 2}, [489] = {.lex_state = 5, .external_lex_state = 2}, [490] = {.lex_state = 5, .external_lex_state = 2}, - [491] = {.lex_state = 5, .external_lex_state = 2}, - [492] = {.lex_state = 5, .external_lex_state = 2}, - [493] = {.lex_state = 5, .external_lex_state = 2}, - [494] = {.lex_state = 5, .external_lex_state = 2}, - [495] = {.lex_state = 14, .external_lex_state = 2}, - [496] = {.lex_state = 5, .external_lex_state = 2}, - [497] = {.lex_state = 5, .external_lex_state = 2}, - [498] = {.lex_state = 5, .external_lex_state = 2}, - [499] = {.lex_state = 14, .external_lex_state = 2}, - [500] = {.lex_state = 14, .external_lex_state = 2}, - [501] = {.lex_state = 14, .external_lex_state = 2}, - [502] = {.lex_state = 14, .external_lex_state = 2}, + [491] = {.lex_state = 14, .external_lex_state = 2}, + [492] = {.lex_state = 14, .external_lex_state = 2}, + [493] = {.lex_state = 14, .external_lex_state = 2}, + [494] = {.lex_state = 14, .external_lex_state = 2}, + [495] = {.lex_state = 73, .external_lex_state = 2}, + [496] = {.lex_state = 73, .external_lex_state = 2}, + [497] = {.lex_state = 73, .external_lex_state = 2}, + [498] = {.lex_state = 73, .external_lex_state = 2}, + [499] = {.lex_state = 73, .external_lex_state = 2}, + [500] = {.lex_state = 73, .external_lex_state = 2}, + [501] = {.lex_state = 73, .external_lex_state = 2}, + [502] = {.lex_state = 73, .external_lex_state = 2}, [503] = {.lex_state = 73, .external_lex_state = 2}, [504] = {.lex_state = 73, .external_lex_state = 2}, [505] = {.lex_state = 73, .external_lex_state = 2}, @@ -11227,9 +11082,9 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [611] = {.lex_state = 73, .external_lex_state = 2}, [612] = {.lex_state = 73, .external_lex_state = 2}, [613] = {.lex_state = 73, .external_lex_state = 2}, - [614] = {.lex_state = 73, .external_lex_state = 2}, - [615] = {.lex_state = 23}, - [616] = {.lex_state = 14, .external_lex_state = 2}, + [614] = {.lex_state = 23}, + [615] = {.lex_state = 14, .external_lex_state = 2}, + [616] = {.lex_state = 73, .external_lex_state = 2}, [617] = {.lex_state = 73, .external_lex_state = 2}, [618] = {.lex_state = 73, .external_lex_state = 2}, [619] = {.lex_state = 73, .external_lex_state = 2}, @@ -11248,8 +11103,8 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [632] = {.lex_state = 73, .external_lex_state = 2}, [633] = {.lex_state = 73, .external_lex_state = 2}, [634] = {.lex_state = 73, .external_lex_state = 2}, - [635] = {.lex_state = 73, .external_lex_state = 2}, - [636] = {.lex_state = 23}, + [635] = {.lex_state = 23}, + [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}, @@ -11298,7 +11153,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [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}, + [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}, @@ -11314,7 +11169,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [698] = {.lex_state = 73, .external_lex_state = 2}, [699] = {.lex_state = 73, .external_lex_state = 2}, [700] = {.lex_state = 73, .external_lex_state = 2}, - [701] = {.lex_state = 23}, + [701] = {.lex_state = 73, .external_lex_state = 2}, [702] = {.lex_state = 73, .external_lex_state = 2}, [703] = {.lex_state = 73, .external_lex_state = 2}, [704] = {.lex_state = 73, .external_lex_state = 2}, @@ -11332,11 +11187,11 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [716] = {.lex_state = 73, .external_lex_state = 2}, [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 = 23}, + [719] = {.lex_state = 23}, + [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 = 14, .external_lex_state = 2}, + [722] = {.lex_state = 14, .external_lex_state = 2}, + [723] = {.lex_state = 73, .external_lex_state = 2}, [724] = {.lex_state = 73, .external_lex_state = 2}, [725] = {.lex_state = 73, .external_lex_state = 2}, [726] = {.lex_state = 73, .external_lex_state = 2}, @@ -11358,8 +11213,8 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [742] = {.lex_state = 73, .external_lex_state = 2}, [743] = {.lex_state = 73, .external_lex_state = 2}, [744] = {.lex_state = 73, .external_lex_state = 2}, - [745] = {.lex_state = 73, .external_lex_state = 2}, - [746] = {.lex_state = 14, .external_lex_state = 2}, + [745] = {.lex_state = 14, .external_lex_state = 2}, + [746] = {.lex_state = 73, .external_lex_state = 2}, [747] = {.lex_state = 73, .external_lex_state = 2}, [748] = {.lex_state = 73, .external_lex_state = 2}, [749] = {.lex_state = 73, .external_lex_state = 2}, @@ -11393,30 +11248,30 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [777] = {.lex_state = 73, .external_lex_state = 2}, [778] = {.lex_state = 73, .external_lex_state = 2}, [779] = {.lex_state = 73, .external_lex_state = 2}, - [780] = {.lex_state = 73, .external_lex_state = 2}, - [781] = {.lex_state = 73, .external_lex_state = 2}, - [782] = {.lex_state = 73, .external_lex_state = 2}, - [783] = {.lex_state = 73, .external_lex_state = 2}, - [784] = {.lex_state = 73, .external_lex_state = 2}, - [785] = {.lex_state = 73, .external_lex_state = 2}, - [786] = {.lex_state = 73, .external_lex_state = 2}, - [787] = {.lex_state = 73, .external_lex_state = 2}, - [788] = {.lex_state = 17}, - [789] = {.lex_state = 17}, - [790] = {.lex_state = 17}, - [791] = {.lex_state = 17}, + [780] = {.lex_state = 17}, + [781] = {.lex_state = 17}, + [782] = {.lex_state = 17}, + [783] = {.lex_state = 17}, + [784] = {.lex_state = 17}, + [785] = {.lex_state = 17}, + [786] = {.lex_state = 17}, + [787] = {.lex_state = 17}, + [788] = {.lex_state = 14, .external_lex_state = 2}, + [789] = {.lex_state = 14, .external_lex_state = 2}, + [790] = {.lex_state = 14, .external_lex_state = 2}, + [791] = {.lex_state = 14, .external_lex_state = 2}, [792] = {.lex_state = 17}, [793] = {.lex_state = 17}, [794] = {.lex_state = 17}, - [795] = {.lex_state = 17}, - [796] = {.lex_state = 17}, + [795] = {.lex_state = 14, .external_lex_state = 2}, + [796] = {.lex_state = 14, .external_lex_state = 2}, [797] = {.lex_state = 14, .external_lex_state = 2}, [798] = {.lex_state = 14, .external_lex_state = 2}, [799] = {.lex_state = 14, .external_lex_state = 2}, [800] = {.lex_state = 14, .external_lex_state = 2}, - [801] = {.lex_state = 17}, + [801] = {.lex_state = 14, .external_lex_state = 2}, [802] = {.lex_state = 14, .external_lex_state = 2}, - [803] = {.lex_state = 17}, + [803] = {.lex_state = 14, .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}, @@ -11425,14 +11280,14 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [809] = {.lex_state = 14, .external_lex_state = 2}, [810] = {.lex_state = 14, .external_lex_state = 2}, [811] = {.lex_state = 14, .external_lex_state = 2}, - [812] = {.lex_state = 14, .external_lex_state = 2}, + [812] = {.lex_state = 12, .external_lex_state = 2}, [813] = {.lex_state = 14, .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}, [817] = {.lex_state = 14, .external_lex_state = 2}, [818] = {.lex_state = 14, .external_lex_state = 2}, - [819] = {.lex_state = 12, .external_lex_state = 2}, + [819] = {.lex_state = 14, .external_lex_state = 2}, [820] = {.lex_state = 14, .external_lex_state = 2}, [821] = {.lex_state = 14, .external_lex_state = 2}, [822] = {.lex_state = 14, .external_lex_state = 2}, @@ -11459,14 +11314,14 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [843] = {.lex_state = 14, .external_lex_state = 2}, [844] = {.lex_state = 14, .external_lex_state = 2}, [845] = {.lex_state = 14, .external_lex_state = 2}, - [846] = {.lex_state = 14, .external_lex_state = 2}, - [847] = {.lex_state = 14, .external_lex_state = 2}, - [848] = {.lex_state = 14, .external_lex_state = 2}, - [849] = {.lex_state = 14, .external_lex_state = 2}, - [850] = {.lex_state = 14, .external_lex_state = 2}, - [851] = {.lex_state = 14, .external_lex_state = 2}, - [852] = {.lex_state = 14, .external_lex_state = 2}, - [853] = {.lex_state = 14, .external_lex_state = 2}, + [846] = {.lex_state = 17}, + [847] = {.lex_state = 17}, + [848] = {.lex_state = 17}, + [849] = {.lex_state = 17}, + [850] = {.lex_state = 17}, + [851] = {.lex_state = 17}, + [852] = {.lex_state = 17}, + [853] = {.lex_state = 17}, [854] = {.lex_state = 17}, [855] = {.lex_state = 17}, [856] = {.lex_state = 17}, @@ -11663,65 +11518,65 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1047] = {.lex_state = 17}, [1048] = {.lex_state = 17}, [1049] = {.lex_state = 17}, - [1050] = {.lex_state = 17}, - [1051] = {.lex_state = 17}, - [1052] = {.lex_state = 17}, - [1053] = {.lex_state = 17}, - [1054] = {.lex_state = 17}, - [1055] = {.lex_state = 17}, - [1056] = {.lex_state = 17}, + [1050] = {.lex_state = 13, .external_lex_state = 2}, + [1051] = {.lex_state = 13, .external_lex_state = 2}, + [1052] = {.lex_state = 13, .external_lex_state = 2}, + [1053] = {.lex_state = 15, .external_lex_state = 2}, + [1054] = {.lex_state = 15, .external_lex_state = 2}, + [1055] = {.lex_state = 13, .external_lex_state = 2}, + [1056] = {.lex_state = 12, .external_lex_state = 2}, [1057] = {.lex_state = 17}, [1058] = {.lex_state = 13, .external_lex_state = 2}, [1059] = {.lex_state = 13, .external_lex_state = 2}, [1060] = {.lex_state = 13, .external_lex_state = 2}, - [1061] = {.lex_state = 15, .external_lex_state = 2}, - [1062] = {.lex_state = 15, .external_lex_state = 2}, - [1063] = {.lex_state = 13, .external_lex_state = 2}, - [1064] = {.lex_state = 12, .external_lex_state = 2}, - [1065] = {.lex_state = 17}, - [1066] = {.lex_state = 13, .external_lex_state = 2}, - [1067] = {.lex_state = 13, .external_lex_state = 2}, - [1068] = {.lex_state = 13, .external_lex_state = 2}, + [1061] = {.lex_state = 23}, + [1062] = {.lex_state = 23}, + [1063] = {.lex_state = 23}, + [1064] = {.lex_state = 23}, + [1065] = {.lex_state = 23}, + [1066] = {.lex_state = 23}, + [1067] = {.lex_state = 23}, + [1068] = {.lex_state = 8}, [1069] = {.lex_state = 23}, - [1070] = {.lex_state = 8}, - [1071] = {.lex_state = 8}, - [1072] = {.lex_state = 9}, - [1073] = {.lex_state = 23}, - [1074] = {.lex_state = 23}, - [1075] = {.lex_state = 23}, - [1076] = {.lex_state = 23}, - [1077] = {.lex_state = 14, .external_lex_state = 2}, - [1078] = {.lex_state = 23}, - [1079] = {.lex_state = 23}, - [1080] = {.lex_state = 8}, - [1081] = {.lex_state = 23}, - [1082] = {.lex_state = 23}, + [1070] = {.lex_state = 23}, + [1071] = {.lex_state = 14, .external_lex_state = 2}, + [1072] = {.lex_state = 8}, + [1073] = {.lex_state = 9}, + [1074] = {.lex_state = 8}, + [1075] = {.lex_state = 26}, + [1076] = {.lex_state = 26}, + [1077] = {.lex_state = 26}, + [1078] = {.lex_state = 17}, + [1079] = {.lex_state = 8}, + [1080] = {.lex_state = 17}, + [1081] = {.lex_state = 26}, + [1082] = {.lex_state = 26}, [1083] = {.lex_state = 17}, - [1084] = {.lex_state = 26}, + [1084] = {.lex_state = 17}, [1085] = {.lex_state = 17}, - [1086] = {.lex_state = 17}, - [1087] = {.lex_state = 26}, - [1088] = {.lex_state = 8}, - [1089] = {.lex_state = 17}, - [1090] = {.lex_state = 26}, - [1091] = {.lex_state = 26}, - [1092] = {.lex_state = 26}, - [1093] = {.lex_state = 8}, + [1086] = {.lex_state = 8}, + [1087] = {.lex_state = 8}, + [1088] = {.lex_state = 14, .external_lex_state = 2}, + [1089] = {.lex_state = 8}, + [1090] = {.lex_state = 17}, + [1091] = {.lex_state = 8}, + [1092] = {.lex_state = 14, .external_lex_state = 2}, + [1093] = {.lex_state = 17}, [1094] = {.lex_state = 8}, - [1095] = {.lex_state = 14, .external_lex_state = 2}, + [1095] = {.lex_state = 8}, [1096] = {.lex_state = 8}, - [1097] = {.lex_state = 17}, - [1098] = {.lex_state = 8}, - [1099] = {.lex_state = 17}, + [1097] = {.lex_state = 8}, + [1098] = {.lex_state = 17}, + [1099] = {.lex_state = 23}, [1100] = {.lex_state = 17}, - [1101] = {.lex_state = 8}, - [1102] = {.lex_state = 8}, - [1103] = {.lex_state = 17}, - [1104] = {.lex_state = 8}, - [1105] = {.lex_state = 14, .external_lex_state = 2}, - [1106] = {.lex_state = 8}, + [1101] = {.lex_state = 23}, + [1102] = {.lex_state = 23}, + [1103] = {.lex_state = 23}, + [1104] = {.lex_state = 23}, + [1105] = {.lex_state = 23}, + [1106] = {.lex_state = 23}, [1107] = {.lex_state = 23}, - [1108] = {.lex_state = 17}, + [1108] = {.lex_state = 23}, [1109] = {.lex_state = 23}, [1110] = {.lex_state = 23}, [1111] = {.lex_state = 23}, @@ -11972,82 +11827,82 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1356] = {.lex_state = 23}, [1357] = {.lex_state = 23}, [1358] = {.lex_state = 23}, - [1359] = {.lex_state = 23}, - [1360] = {.lex_state = 23}, - [1361] = {.lex_state = 23}, - [1362] = {.lex_state = 23}, - [1363] = {.lex_state = 23}, + [1359] = {.lex_state = 9}, + [1360] = {.lex_state = 17}, + [1361] = {.lex_state = 14, .external_lex_state = 2}, + [1362] = {.lex_state = 14, .external_lex_state = 2}, + [1363] = {.lex_state = 14, .external_lex_state = 2}, [1364] = {.lex_state = 23}, - [1365] = {.lex_state = 23}, - [1366] = {.lex_state = 23}, + [1365] = {.lex_state = 14, .external_lex_state = 2}, + [1366] = {.lex_state = 17}, [1367] = {.lex_state = 9}, - [1368] = {.lex_state = 17}, - [1369] = {.lex_state = 14, .external_lex_state = 2}, - [1370] = {.lex_state = 14, .external_lex_state = 2}, - [1371] = {.lex_state = 14, .external_lex_state = 2}, - [1372] = {.lex_state = 23}, + [1368] = {.lex_state = 9}, + [1369] = {.lex_state = 9}, + [1370] = {.lex_state = 23}, + [1371] = {.lex_state = 17}, + [1372] = {.lex_state = 9}, [1373] = {.lex_state = 14, .external_lex_state = 2}, - [1374] = {.lex_state = 9}, - [1375] = {.lex_state = 17}, - [1376] = {.lex_state = 9}, - [1377] = {.lex_state = 9}, - [1378] = {.lex_state = 23}, - [1379] = {.lex_state = 9}, - [1380] = {.lex_state = 17}, - [1381] = {.lex_state = 14, .external_lex_state = 2}, - [1382] = {.lex_state = 14, .external_lex_state = 2}, - [1383] = {.lex_state = 17}, - [1384] = {.lex_state = 23}, - [1385] = {.lex_state = 9}, - [1386] = {.lex_state = 17}, - [1387] = {.lex_state = 12, .external_lex_state = 2}, - [1388] = {.lex_state = 23}, - [1389] = {.lex_state = 23}, + [1374] = {.lex_state = 14, .external_lex_state = 2}, + [1375] = {.lex_state = 9}, + [1376] = {.lex_state = 17}, + [1377] = {.lex_state = 23}, + [1378] = {.lex_state = 17}, + [1379] = {.lex_state = 12, .external_lex_state = 2}, + [1380] = {.lex_state = 23}, + [1381] = {.lex_state = 23}, + [1382] = {.lex_state = 9}, + [1383] = {.lex_state = 12, .external_lex_state = 2}, + [1384] = {.lex_state = 12, .external_lex_state = 2}, + [1385] = {.lex_state = 23}, + [1386] = {.lex_state = 9}, + [1387] = {.lex_state = 9}, + [1388] = {.lex_state = 9}, + [1389] = {.lex_state = 9}, [1390] = {.lex_state = 9}, - [1391] = {.lex_state = 12, .external_lex_state = 2}, - [1392] = {.lex_state = 12, .external_lex_state = 2}, - [1393] = {.lex_state = 23}, + [1391] = {.lex_state = 20}, + [1392] = {.lex_state = 17}, + [1393] = {.lex_state = 8}, [1394] = {.lex_state = 20}, - [1395] = {.lex_state = 20}, - [1396] = {.lex_state = 20}, - [1397] = {.lex_state = 17}, + [1395] = {.lex_state = 9}, + [1396] = {.lex_state = 9}, + [1397] = {.lex_state = 9}, [1398] = {.lex_state = 20}, [1399] = {.lex_state = 9}, - [1400] = {.lex_state = 9}, - [1401] = {.lex_state = 9}, + [1400] = {.lex_state = 20}, + [1401] = {.lex_state = 20}, [1402] = {.lex_state = 9}, [1403] = {.lex_state = 20}, - [1404] = {.lex_state = 20}, - [1405] = {.lex_state = 9}, + [1404] = {.lex_state = 9}, + [1405] = {.lex_state = 21}, [1406] = {.lex_state = 9}, [1407] = {.lex_state = 9}, [1408] = {.lex_state = 20}, [1409] = {.lex_state = 9}, - [1410] = {.lex_state = 9}, + [1410] = {.lex_state = 20}, [1411] = {.lex_state = 9}, - [1412] = {.lex_state = 9}, - [1413] = {.lex_state = 9}, + [1412] = {.lex_state = 20}, + [1413] = {.lex_state = 20}, [1414] = {.lex_state = 9}, - [1415] = {.lex_state = 20}, + [1415] = {.lex_state = 9}, [1416] = {.lex_state = 9}, - [1417] = {.lex_state = 20}, + [1417] = {.lex_state = 9}, [1418] = {.lex_state = 9}, [1419] = {.lex_state = 9}, - [1420] = {.lex_state = 9}, - [1421] = {.lex_state = 9}, + [1420] = {.lex_state = 20}, + [1421] = {.lex_state = 21}, [1422] = {.lex_state = 9}, - [1423] = {.lex_state = 21}, - [1424] = {.lex_state = 9}, + [1423] = {.lex_state = 9}, + [1424] = {.lex_state = 20}, [1425] = {.lex_state = 9}, - [1426] = {.lex_state = 20}, + [1426] = {.lex_state = 9}, [1427] = {.lex_state = 9}, [1428] = {.lex_state = 9}, - [1429] = {.lex_state = 8}, + [1429] = {.lex_state = 9}, [1430] = {.lex_state = 9}, [1431] = {.lex_state = 9}, - [1432] = {.lex_state = 20}, - [1433] = {.lex_state = 21}, - [1434] = {.lex_state = 20}, + [1432] = {.lex_state = 9}, + [1433] = {.lex_state = 9}, + [1434] = {.lex_state = 9}, [1435] = {.lex_state = 9}, [1436] = {.lex_state = 9}, [1437] = {.lex_state = 9}, @@ -12072,12 +11927,12 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1456] = {.lex_state = 9}, [1457] = {.lex_state = 9}, [1458] = {.lex_state = 9}, - [1459] = {.lex_state = 10}, + [1459] = {.lex_state = 9}, [1460] = {.lex_state = 9}, [1461] = {.lex_state = 9}, [1462] = {.lex_state = 9}, [1463] = {.lex_state = 9}, - [1464] = {.lex_state = 9}, + [1464] = {.lex_state = 10}, [1465] = {.lex_state = 9}, [1466] = {.lex_state = 9}, [1467] = {.lex_state = 9}, @@ -12162,195 +12017,195 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1546] = {.lex_state = 9}, [1547] = {.lex_state = 9}, [1548] = {.lex_state = 9}, - [1549] = {.lex_state = 9}, + [1549] = {.lex_state = 17}, [1550] = {.lex_state = 9}, - [1551] = {.lex_state = 9}, + [1551] = {.lex_state = 13, .external_lex_state = 2}, [1552] = {.lex_state = 9}, - [1553] = {.lex_state = 9}, + [1553] = {.lex_state = 13, .external_lex_state = 2}, [1554] = {.lex_state = 9}, - [1555] = {.lex_state = 9}, - [1556] = {.lex_state = 9}, - [1557] = {.lex_state = 9}, + [1555] = {.lex_state = 17}, + [1556] = {.lex_state = 17}, + [1557] = {.lex_state = 13, .external_lex_state = 2}, [1558] = {.lex_state = 9}, - [1559] = {.lex_state = 13, .external_lex_state = 2}, - [1560] = {.lex_state = 17}, - [1561] = {.lex_state = 13, .external_lex_state = 2}, + [1559] = {.lex_state = 17}, + [1560] = {.lex_state = 13, .external_lex_state = 2}, + [1561] = {.lex_state = 17}, [1562] = {.lex_state = 13, .external_lex_state = 2}, - [1563] = {.lex_state = 17}, - [1564] = {.lex_state = 17}, - [1565] = {.lex_state = 17}, + [1563] = {.lex_state = 13, .external_lex_state = 2}, + [1564] = {.lex_state = 9}, + [1565] = {.lex_state = 9}, [1566] = {.lex_state = 9}, - [1567] = {.lex_state = 17}, - [1568] = {.lex_state = 13, .external_lex_state = 2}, + [1567] = {.lex_state = 9}, + [1568] = {.lex_state = 9}, [1569] = {.lex_state = 9}, - [1570] = {.lex_state = 13, .external_lex_state = 2}, - [1571] = {.lex_state = 13, .external_lex_state = 2}, + [1570] = {.lex_state = 9}, + [1571] = {.lex_state = 9}, [1572] = {.lex_state = 9}, [1573] = {.lex_state = 11}, [1574] = {.lex_state = 9}, [1575] = {.lex_state = 9}, [1576] = {.lex_state = 9}, - [1577] = {.lex_state = 9}, + [1577] = {.lex_state = 11}, [1578] = {.lex_state = 9}, [1579] = {.lex_state = 9}, [1580] = {.lex_state = 9}, [1581] = {.lex_state = 9}, [1582] = {.lex_state = 9}, [1583] = {.lex_state = 9}, - [1584] = {.lex_state = 9}, + [1584] = {.lex_state = 11}, [1585] = {.lex_state = 9}, [1586] = {.lex_state = 9}, - [1587] = {.lex_state = 11}, + [1587] = {.lex_state = 9}, [1588] = {.lex_state = 9}, [1589] = {.lex_state = 9}, - [1590] = {.lex_state = 9}, + [1590] = {.lex_state = 10}, [1591] = {.lex_state = 9}, - [1592] = {.lex_state = 9}, + [1592] = {.lex_state = 10}, [1593] = {.lex_state = 9}, - [1594] = {.lex_state = 9}, - [1595] = {.lex_state = 9}, - [1596] = {.lex_state = 11}, + [1594] = {.lex_state = 11}, + [1595] = {.lex_state = 10}, + [1596] = {.lex_state = 9}, [1597] = {.lex_state = 9}, [1598] = {.lex_state = 11}, [1599] = {.lex_state = 9}, - [1600] = {.lex_state = 9}, - [1601] = {.lex_state = 10}, - [1602] = {.lex_state = 10}, - [1603] = {.lex_state = 17}, - [1604] = {.lex_state = 11}, + [1600] = {.lex_state = 11}, + [1601] = {.lex_state = 11}, + [1602] = {.lex_state = 11}, + [1603] = {.lex_state = 11}, + [1604] = {.lex_state = 17}, [1605] = {.lex_state = 9}, - [1606] = {.lex_state = 17}, - [1607] = {.lex_state = 10}, - [1608] = {.lex_state = 9}, + [1606] = {.lex_state = 9}, + [1607] = {.lex_state = 17}, + [1608] = {.lex_state = 10}, [1609] = {.lex_state = 11}, - [1610] = {.lex_state = 11}, - [1611] = {.lex_state = 10}, - [1612] = {.lex_state = 11}, + [1610] = {.lex_state = 9}, + [1611] = {.lex_state = 11}, + [1612] = {.lex_state = 10}, [1613] = {.lex_state = 9}, - [1614] = {.lex_state = 9}, - [1615] = {.lex_state = 11}, - [1616] = {.lex_state = 9}, + [1614] = {.lex_state = 11}, + [1615] = {.lex_state = 10}, + [1616] = {.lex_state = 17}, [1617] = {.lex_state = 9}, [1618] = {.lex_state = 17}, - [1619] = {.lex_state = 11}, - [1620] = {.lex_state = 9}, - [1621] = {.lex_state = 11}, - [1622] = {.lex_state = 9}, - [1623] = {.lex_state = 10}, - [1624] = {.lex_state = 17}, - [1625] = {.lex_state = 11}, - [1626] = {.lex_state = 10}, - [1627] = {.lex_state = 9}, + [1619] = {.lex_state = 10}, + [1620] = {.lex_state = 10}, + [1621] = {.lex_state = 10}, + [1622] = {.lex_state = 10}, + [1623] = {.lex_state = 9}, + [1624] = {.lex_state = 10}, + [1625] = {.lex_state = 9}, + [1626] = {.lex_state = 9}, + [1627] = {.lex_state = 10}, [1628] = {.lex_state = 10}, [1629] = {.lex_state = 9}, [1630] = {.lex_state = 10}, - [1631] = {.lex_state = 10}, + [1631] = {.lex_state = 9}, [1632] = {.lex_state = 9}, [1633] = {.lex_state = 9}, - [1634] = {.lex_state = 10}, - [1635] = {.lex_state = 10}, + [1634] = {.lex_state = 9}, + [1635] = {.lex_state = 9}, [1636] = {.lex_state = 9}, [1637] = {.lex_state = 9}, [1638] = {.lex_state = 9}, [1639] = {.lex_state = 9}, - [1640] = {.lex_state = 10}, - [1641] = {.lex_state = 9}, + [1640] = {.lex_state = 17}, + [1641] = {.lex_state = 10}, [1642] = {.lex_state = 10}, - [1643] = {.lex_state = 9}, - [1644] = {.lex_state = 10}, - [1645] = {.lex_state = 10}, - [1646] = {.lex_state = 9}, - [1647] = {.lex_state = 10}, + [1643] = {.lex_state = 10}, + [1644] = {.lex_state = 9}, + [1645] = {.lex_state = 9}, + [1646] = {.lex_state = 10}, + [1647] = {.lex_state = 9}, [1648] = {.lex_state = 10}, [1649] = {.lex_state = 9}, [1650] = {.lex_state = 10}, - [1651] = {.lex_state = 17}, - [1652] = {.lex_state = 10}, - [1653] = {.lex_state = 9}, - [1654] = {.lex_state = 10}, - [1655] = {.lex_state = 9}, + [1651] = {.lex_state = 9}, + [1652] = {.lex_state = 9}, + [1653] = {.lex_state = 22}, + [1654] = {.lex_state = 9}, + [1655] = {.lex_state = 22}, [1656] = {.lex_state = 9}, - [1657] = {.lex_state = 9}, + [1657] = {.lex_state = 22}, [1658] = {.lex_state = 9}, - [1659] = {.lex_state = 22}, - [1660] = {.lex_state = 10}, + [1659] = {.lex_state = 9}, + [1660] = {.lex_state = 9}, [1661] = {.lex_state = 9}, - [1662] = {.lex_state = 22}, - [1663] = {.lex_state = 22}, - [1664] = {.lex_state = 22}, - [1665] = {.lex_state = 9}, + [1662] = {.lex_state = 10}, + [1663] = {.lex_state = 9}, + [1664] = {.lex_state = 10}, + [1665] = {.lex_state = 10}, [1666] = {.lex_state = 10}, [1667] = {.lex_state = 9}, - [1668] = {.lex_state = 9}, - [1669] = {.lex_state = 9}, - [1670] = {.lex_state = 9}, + [1668] = {.lex_state = 10}, + [1669] = {.lex_state = 22}, + [1670] = {.lex_state = 10}, [1671] = {.lex_state = 10}, [1672] = {.lex_state = 10}, [1673] = {.lex_state = 10}, [1674] = {.lex_state = 10}, - [1675] = {.lex_state = 10}, - [1676] = {.lex_state = 9}, - [1677] = {.lex_state = 10}, - [1678] = {.lex_state = 22}, - [1679] = {.lex_state = 10}, + [1675] = {.lex_state = 9}, + [1676] = {.lex_state = 22}, + [1677] = {.lex_state = 22}, + [1678] = {.lex_state = 9}, + [1679] = {.lex_state = 9}, [1680] = {.lex_state = 9}, - [1681] = {.lex_state = 22}, - [1682] = {.lex_state = 22}, + [1681] = {.lex_state = 10}, + [1682] = {.lex_state = 10}, [1683] = {.lex_state = 9}, - [1684] = {.lex_state = 22}, - [1685] = {.lex_state = 22}, - [1686] = {.lex_state = 9}, - [1687] = {.lex_state = 10}, - [1688] = {.lex_state = 17}, + [1684] = {.lex_state = 9}, + [1685] = {.lex_state = 10}, + [1686] = {.lex_state = 17}, + [1687] = {.lex_state = 9}, + [1688] = {.lex_state = 10}, [1689] = {.lex_state = 10}, [1690] = {.lex_state = 9}, [1691] = {.lex_state = 9}, [1692] = {.lex_state = 9}, [1693] = {.lex_state = 10}, - [1694] = {.lex_state = 9}, - [1695] = {.lex_state = 22}, - [1696] = {.lex_state = 17}, - [1697] = {.lex_state = 9}, + [1694] = {.lex_state = 17}, + [1695] = {.lex_state = 11}, + [1696] = {.lex_state = 9}, + [1697] = {.lex_state = 22}, [1698] = {.lex_state = 9}, - [1699] = {.lex_state = 9}, - [1700] = {.lex_state = 9}, - [1701] = {.lex_state = 9}, - [1702] = {.lex_state = 10}, - [1703] = {.lex_state = 9}, + [1699] = {.lex_state = 10}, + [1700] = {.lex_state = 22}, + [1701] = {.lex_state = 22}, + [1702] = {.lex_state = 22}, + [1703] = {.lex_state = 10}, [1704] = {.lex_state = 9}, - [1705] = {.lex_state = 11}, + [1705] = {.lex_state = 9}, [1706] = {.lex_state = 9}, [1707] = {.lex_state = 9}, - [1708] = {.lex_state = 10}, - [1709] = {.lex_state = 22}, + [1708] = {.lex_state = 22}, + [1709] = {.lex_state = 10}, [1710] = {.lex_state = 9}, - [1711] = {.lex_state = 9}, - [1712] = {.lex_state = 22}, - [1713] = {.lex_state = 10}, - [1714] = {.lex_state = 9}, - [1715] = {.lex_state = 10}, + [1711] = {.lex_state = 10}, + [1712] = {.lex_state = 9}, + [1713] = {.lex_state = 22}, + [1714] = {.lex_state = 10}, + [1715] = {.lex_state = 17}, [1716] = {.lex_state = 10}, [1717] = {.lex_state = 10}, - [1718] = {.lex_state = 10}, - [1719] = {.lex_state = 9}, + [1718] = {.lex_state = 9}, + [1719] = {.lex_state = 10}, [1720] = {.lex_state = 10}, - [1721] = {.lex_state = 9}, + [1721] = {.lex_state = 10}, [1722] = {.lex_state = 10}, [1723] = {.lex_state = 9}, [1724] = {.lex_state = 10}, - [1725] = {.lex_state = 9}, + [1725] = {.lex_state = 10}, [1726] = {.lex_state = 10}, [1727] = {.lex_state = 10}, - [1728] = {.lex_state = 10}, - [1729] = {.lex_state = 10}, - [1730] = {.lex_state = 9}, + [1728] = {.lex_state = 9}, + [1729] = {.lex_state = 9}, + [1730] = {.lex_state = 10}, [1731] = {.lex_state = 10}, [1732] = {.lex_state = 9}, [1733] = {.lex_state = 10}, - [1734] = {.lex_state = 9}, + [1734] = {.lex_state = 10}, [1735] = {.lex_state = 10}, - [1736] = {.lex_state = 9}, - [1737] = {.lex_state = 10}, + [1736] = {.lex_state = 10}, + [1737] = {.lex_state = 9}, [1738] = {.lex_state = 10}, [1739] = {.lex_state = 10}, [1740] = {.lex_state = 10}, @@ -12365,9 +12220,9 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1749] = {.lex_state = 10}, [1750] = {.lex_state = 10}, [1751] = {.lex_state = 10}, - [1752] = {.lex_state = 10}, + [1752] = {.lex_state = 9}, [1753] = {.lex_state = 10}, - [1754] = {.lex_state = 9}, + [1754] = {.lex_state = 10}, [1755] = {.lex_state = 10}, [1756] = {.lex_state = 10}, [1757] = {.lex_state = 10}, @@ -12375,17 +12230,17 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1759] = {.lex_state = 10}, [1760] = {.lex_state = 10}, [1761] = {.lex_state = 10}, - [1762] = {.lex_state = 10}, + [1762] = {.lex_state = 9}, [1763] = {.lex_state = 10}, - [1764] = {.lex_state = 9}, + [1764] = {.lex_state = 10}, [1765] = {.lex_state = 10}, [1766] = {.lex_state = 10}, [1767] = {.lex_state = 10}, [1768] = {.lex_state = 10}, - [1769] = {.lex_state = 9}, + [1769] = {.lex_state = 10}, [1770] = {.lex_state = 10}, [1771] = {.lex_state = 10}, - [1772] = {.lex_state = 10}, + [1772] = {.lex_state = 9}, [1773] = {.lex_state = 10}, [1774] = {.lex_state = 10}, [1775] = {.lex_state = 10}, @@ -12399,46 +12254,46 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1783] = {.lex_state = 10}, [1784] = {.lex_state = 10}, [1785] = {.lex_state = 10}, - [1786] = {.lex_state = 9}, - [1787] = {.lex_state = 9}, + [1786] = {.lex_state = 10}, + [1787] = {.lex_state = 10}, [1788] = {.lex_state = 9}, [1789] = {.lex_state = 9}, - [1790] = {.lex_state = 10}, - [1791] = {.lex_state = 17}, + [1790] = {.lex_state = 9}, + [1791] = {.lex_state = 9}, [1792] = {.lex_state = 9}, [1793] = {.lex_state = 9}, [1794] = {.lex_state = 10}, - [1795] = {.lex_state = 9}, + [1795] = {.lex_state = 10}, [1796] = {.lex_state = 9}, - [1797] = {.lex_state = 9}, + [1797] = {.lex_state = 17}, [1798] = {.lex_state = 10}, [1799] = {.lex_state = 9}, [1800] = {.lex_state = 9}, [1801] = {.lex_state = 9}, [1802] = {.lex_state = 9}, [1803] = {.lex_state = 10}, - [1804] = {.lex_state = 10}, + [1804] = {.lex_state = 9}, [1805] = {.lex_state = 9}, [1806] = {.lex_state = 10}, - [1807] = {.lex_state = 10}, - [1808] = {.lex_state = 10}, - [1809] = {.lex_state = 9}, - [1810] = {.lex_state = 10}, + [1807] = {.lex_state = 9}, + [1808] = {.lex_state = 9}, + [1809] = {.lex_state = 10}, + [1810] = {.lex_state = 9}, [1811] = {.lex_state = 9}, [1812] = {.lex_state = 10}, - [1813] = {.lex_state = 9}, - [1814] = {.lex_state = 10}, + [1813] = {.lex_state = 10}, + [1814] = {.lex_state = 9}, [1815] = {.lex_state = 9}, [1816] = {.lex_state = 9}, - [1817] = {.lex_state = 10}, + [1817] = {.lex_state = 9}, [1818] = {.lex_state = 10}, - [1819] = {.lex_state = 9}, + [1819] = {.lex_state = 10}, [1820] = {.lex_state = 9}, [1821] = {.lex_state = 9}, [1822] = {.lex_state = 10}, - [1823] = {.lex_state = 10}, - [1824] = {.lex_state = 9}, - [1825] = {.lex_state = 10}, + [1823] = {.lex_state = 9}, + [1824] = {.lex_state = 10}, + [1825] = {.lex_state = 9}, [1826] = {.lex_state = 9}, [1827] = {.lex_state = 9}, [1828] = {.lex_state = 9}, @@ -12446,20 +12301,20 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1830] = {.lex_state = 9}, [1831] = {.lex_state = 9}, [1832] = {.lex_state = 9}, - [1833] = {.lex_state = 9}, + [1833] = {.lex_state = 10}, [1834] = {.lex_state = 9}, - [1835] = {.lex_state = 9}, + [1835] = {.lex_state = 10}, [1836] = {.lex_state = 9}, [1837] = {.lex_state = 9}, [1838] = {.lex_state = 10}, - [1839] = {.lex_state = 10}, - [1840] = {.lex_state = 10}, - [1841] = {.lex_state = 9}, - [1842] = {.lex_state = 9}, - [1843] = {.lex_state = 9}, + [1839] = {.lex_state = 9}, + [1840] = {.lex_state = 9}, + [1841] = {.lex_state = 10}, + [1842] = {.lex_state = 10}, + [1843] = {.lex_state = 10}, [1844] = {.lex_state = 9}, [1845] = {.lex_state = 9}, - [1846] = {.lex_state = 10}, + [1846] = {.lex_state = 9}, [1847] = {.lex_state = 9}, [1848] = {.lex_state = 9}, [1849] = {.lex_state = 9}, @@ -12471,101 +12326,101 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1855] = {.lex_state = 9}, [1856] = {.lex_state = 9}, [1857] = {.lex_state = 9}, - [1858] = {.lex_state = 10}, - [1859] = {.lex_state = 10}, + [1858] = {.lex_state = 9}, + [1859] = {.lex_state = 9}, [1860] = {.lex_state = 9}, - [1861] = {.lex_state = 10}, + [1861] = {.lex_state = 9}, [1862] = {.lex_state = 9}, [1863] = {.lex_state = 10}, - [1864] = {.lex_state = 9}, + [1864] = {.lex_state = 10}, [1865] = {.lex_state = 9}, [1866] = {.lex_state = 9}, [1867] = {.lex_state = 9}, [1868] = {.lex_state = 9}, [1869] = {.lex_state = 9}, - [1870] = {.lex_state = 10}, + [1870] = {.lex_state = 9}, [1871] = {.lex_state = 9}, [1872] = {.lex_state = 9}, - [1873] = {.lex_state = 10}, - [1874] = {.lex_state = 10}, - [1875] = {.lex_state = 9}, + [1873] = {.lex_state = 9}, + [1874] = {.lex_state = 9}, + [1875] = {.lex_state = 10}, [1876] = {.lex_state = 9}, - [1877] = {.lex_state = 9}, - [1878] = {.lex_state = 9}, - [1879] = {.lex_state = 9}, - [1880] = {.lex_state = 10}, + [1877] = {.lex_state = 10}, + [1878] = {.lex_state = 10}, + [1879] = {.lex_state = 17}, + [1880] = {.lex_state = 9}, [1881] = {.lex_state = 9}, - [1882] = {.lex_state = 9}, - [1883] = {.lex_state = 9}, - [1884] = {.lex_state = 17}, + [1882] = {.lex_state = 17}, + [1883] = {.lex_state = 10}, + [1884] = {.lex_state = 10}, [1885] = {.lex_state = 10}, [1886] = {.lex_state = 10}, - [1887] = {.lex_state = 9}, + [1887] = {.lex_state = 10}, [1888] = {.lex_state = 10}, [1889] = {.lex_state = 10}, [1890] = {.lex_state = 10}, - [1891] = {.lex_state = 17}, + [1891] = {.lex_state = 10}, [1892] = {.lex_state = 10}, [1893] = {.lex_state = 10}, [1894] = {.lex_state = 10}, [1895] = {.lex_state = 10}, [1896] = {.lex_state = 10}, - [1897] = {.lex_state = 10}, + [1897] = {.lex_state = 9}, [1898] = {.lex_state = 10}, [1899] = {.lex_state = 10}, - [1900] = {.lex_state = 10}, + [1900] = {.lex_state = 9}, [1901] = {.lex_state = 10}, [1902] = {.lex_state = 10}, [1903] = {.lex_state = 10}, [1904] = {.lex_state = 10}, - [1905] = {.lex_state = 9}, - [1906] = {.lex_state = 10}, - [1907] = {.lex_state = 10}, + [1905] = {.lex_state = 10}, + [1906] = {.lex_state = 9}, + [1907] = {.lex_state = 9}, [1908] = {.lex_state = 10}, - [1909] = {.lex_state = 10}, + [1909] = {.lex_state = 17}, [1910] = {.lex_state = 10}, [1911] = {.lex_state = 10}, [1912] = {.lex_state = 10}, - [1913] = {.lex_state = 17}, + [1913] = {.lex_state = 10}, [1914] = {.lex_state = 10}, - [1915] = {.lex_state = 9}, - [1916] = {.lex_state = 9}, - [1917] = {.lex_state = 10}, + [1915] = {.lex_state = 10}, + [1916] = {.lex_state = 10}, + [1917] = {.lex_state = 9}, [1918] = {.lex_state = 10}, [1919] = {.lex_state = 10}, [1920] = {.lex_state = 10}, [1921] = {.lex_state = 10}, [1922] = {.lex_state = 10}, [1923] = {.lex_state = 10}, - [1924] = {.lex_state = 9}, + [1924] = {.lex_state = 10}, [1925] = {.lex_state = 10}, [1926] = {.lex_state = 10}, [1927] = {.lex_state = 10}, [1928] = {.lex_state = 10}, [1929] = {.lex_state = 10}, [1930] = {.lex_state = 10}, - [1931] = {.lex_state = 10}, + [1931] = {.lex_state = 9}, [1932] = {.lex_state = 10}, [1933] = {.lex_state = 10}, [1934] = {.lex_state = 10}, [1935] = {.lex_state = 9}, [1936] = {.lex_state = 10}, [1937] = {.lex_state = 10}, - [1938] = {.lex_state = 10}, - [1939] = {.lex_state = 10}, - [1940] = {.lex_state = 10}, - [1941] = {.lex_state = 10}, - [1942] = {.lex_state = 10}, - [1943] = {.lex_state = 9}, - [1944] = {.lex_state = 17}, - [1945] = {.lex_state = 10}, + [1938] = {.lex_state = 9}, + [1939] = {.lex_state = 9}, + [1940] = {.lex_state = 9}, + [1941] = {.lex_state = 9}, + [1942] = {.lex_state = 9}, + [1943] = {.lex_state = 17}, + [1944] = {.lex_state = 9}, + [1945] = {.lex_state = 9}, [1946] = {.lex_state = 9}, [1947] = {.lex_state = 9}, - [1948] = {.lex_state = 17}, + [1948] = {.lex_state = 9}, [1949] = {.lex_state = 9}, [1950] = {.lex_state = 9}, [1951] = {.lex_state = 9}, - [1952] = {.lex_state = 9}, + [1952] = {.lex_state = 10}, [1953] = {.lex_state = 9}, [1954] = {.lex_state = 9}, [1955] = {.lex_state = 9}, @@ -12578,24 +12433,24 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1962] = {.lex_state = 9}, [1963] = {.lex_state = 9}, [1964] = {.lex_state = 10}, - [1965] = {.lex_state = 9}, + [1965] = {.lex_state = 17}, [1966] = {.lex_state = 9}, - [1967] = {.lex_state = 9}, + [1967] = {.lex_state = 10}, [1968] = {.lex_state = 9}, [1969] = {.lex_state = 9}, - [1970] = {.lex_state = 17}, - [1971] = {.lex_state = 9}, + [1970] = {.lex_state = 9}, + [1971] = {.lex_state = 17}, [1972] = {.lex_state = 9}, - [1973] = {.lex_state = 9}, - [1974] = {.lex_state = 9}, + [1973] = {.lex_state = 17}, + [1974] = {.lex_state = 17}, [1975] = {.lex_state = 17}, - [1976] = {.lex_state = 9}, - [1977] = {.lex_state = 10}, - [1978] = {.lex_state = 17}, - [1979] = {.lex_state = 9}, - [1980] = {.lex_state = 10}, - [1981] = {.lex_state = 9}, - [1982] = {.lex_state = 9}, + [1976] = {.lex_state = 17}, + [1977] = {.lex_state = 17}, + [1978] = {.lex_state = 9}, + [1979] = {.lex_state = 17}, + [1980] = {.lex_state = 17}, + [1981] = {.lex_state = 17}, + [1982] = {.lex_state = 17}, [1983] = {.lex_state = 17}, [1984] = {.lex_state = 17}, [1985] = {.lex_state = 17}, @@ -12606,86 +12461,86 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1990] = {.lex_state = 17}, [1991] = {.lex_state = 17}, [1992] = {.lex_state = 17}, - [1993] = {.lex_state = 17}, - [1994] = {.lex_state = 17}, - [1995] = {.lex_state = 17}, - [1996] = {.lex_state = 17}, - [1997] = {.lex_state = 17}, - [1998] = {.lex_state = 17}, - [1999] = {.lex_state = 17}, - [2000] = {.lex_state = 17}, - [2001] = {.lex_state = 31}, - [2002] = {.lex_state = 31}, - [2003] = {.lex_state = 18}, + [1993] = {.lex_state = 31}, + [1994] = {.lex_state = 31}, + [1995] = {.lex_state = 18}, + [1996] = {.lex_state = 18}, + [1997] = {.lex_state = 18}, + [1998] = {.lex_state = 18}, + [1999] = {.lex_state = 18}, + [2000] = {.lex_state = 18}, + [2001] = {.lex_state = 18}, + [2002] = {.lex_state = 17}, + [2003] = {.lex_state = 17}, [2004] = {.lex_state = 18}, [2005] = {.lex_state = 18}, [2006] = {.lex_state = 18}, [2007] = {.lex_state = 18}, - [2008] = {.lex_state = 18}, + [2008] = {.lex_state = 17}, [2009] = {.lex_state = 18}, [2010] = {.lex_state = 17}, [2011] = {.lex_state = 17}, - [2012] = {.lex_state = 17}, + [2012] = {.lex_state = 13, .external_lex_state = 2}, [2013] = {.lex_state = 17}, - [2014] = {.lex_state = 18}, - [2015] = {.lex_state = 18}, - [2016] = {.lex_state = 18}, + [2014] = {.lex_state = 17}, + [2015] = {.lex_state = 31}, + [2016] = {.lex_state = 17}, [2017] = {.lex_state = 18}, - [2018] = {.lex_state = 18}, - [2019] = {.lex_state = 17}, - [2020] = {.lex_state = 17}, + [2018] = {.lex_state = 31}, + [2019] = {.lex_state = 18}, + [2020] = {.lex_state = 18}, [2021] = {.lex_state = 17}, [2022] = {.lex_state = 17}, - [2023] = {.lex_state = 13, .external_lex_state = 2}, - [2024] = {.lex_state = 18}, - [2025] = {.lex_state = 31}, - [2026] = {.lex_state = 17}, + [2023] = {.lex_state = 17}, + [2024] = {.lex_state = 17}, + [2025] = {.lex_state = 17}, + [2026] = {.lex_state = 31}, [2027] = {.lex_state = 31}, - [2028] = {.lex_state = 18}, - [2029] = {.lex_state = 17}, + [2028] = {.lex_state = 31}, + [2029] = {.lex_state = 31}, [2030] = {.lex_state = 17}, [2031] = {.lex_state = 31}, - [2032] = {.lex_state = 31}, - [2033] = {.lex_state = 17}, - [2034] = {.lex_state = 18}, + [2032] = {.lex_state = 18}, + [2033] = {.lex_state = 18}, + [2034] = {.lex_state = 17}, [2035] = {.lex_state = 17}, - [2036] = {.lex_state = 31}, - [2037] = {.lex_state = 18}, + [2036] = {.lex_state = 18}, + [2037] = {.lex_state = 31}, [2038] = {.lex_state = 17}, [2039] = {.lex_state = 17}, - [2040] = {.lex_state = 31}, + [2040] = {.lex_state = 17}, [2041] = {.lex_state = 31}, [2042] = {.lex_state = 17}, - [2043] = {.lex_state = 18}, + [2043] = {.lex_state = 31}, [2044] = {.lex_state = 31}, - [2045] = {.lex_state = 31}, - [2046] = {.lex_state = 31}, - [2047] = {.lex_state = 17}, + [2045] = {.lex_state = 18}, + [2046] = {.lex_state = 17}, + [2047] = {.lex_state = 31}, [2048] = {.lex_state = 31}, [2049] = {.lex_state = 31}, - [2050] = {.lex_state = 18}, - [2051] = {.lex_state = 17}, + [2050] = {.lex_state = 17}, + [2051] = {.lex_state = 31}, [2052] = {.lex_state = 31}, - [2053] = {.lex_state = 17}, + [2053] = {.lex_state = 31}, [2054] = {.lex_state = 31}, - [2055] = {.lex_state = 18}, + [2055] = {.lex_state = 17}, [2056] = {.lex_state = 17}, - [2057] = {.lex_state = 17}, - [2058] = {.lex_state = 17}, + [2057] = {.lex_state = 31}, + [2058] = {.lex_state = 31}, [2059] = {.lex_state = 31}, - [2060] = {.lex_state = 17}, - [2061] = {.lex_state = 17}, - [2062] = {.lex_state = 17}, + [2060] = {.lex_state = 31}, + [2061] = {.lex_state = 31}, + [2062] = {.lex_state = 31}, [2063] = {.lex_state = 18}, [2064] = {.lex_state = 31}, - [2065] = {.lex_state = 17}, + [2065] = {.lex_state = 31}, [2066] = {.lex_state = 31}, [2067] = {.lex_state = 31}, [2068] = {.lex_state = 31}, [2069] = {.lex_state = 31}, - [2070] = {.lex_state = 31}, + [2070] = {.lex_state = 17}, [2071] = {.lex_state = 31}, - [2072] = {.lex_state = 31}, + [2072] = {.lex_state = 17}, [2073] = {.lex_state = 31}, [2074] = {.lex_state = 31}, [2075] = {.lex_state = 31}, @@ -12701,296 +12556,296 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2085] = {.lex_state = 31}, [2086] = {.lex_state = 31}, [2087] = {.lex_state = 31}, - [2088] = {.lex_state = 31}, - [2089] = {.lex_state = 31}, - [2090] = {.lex_state = 31}, + [2088] = {.lex_state = 17}, + [2089] = {.lex_state = 17}, + [2090] = {.lex_state = 17}, [2091] = {.lex_state = 31}, [2092] = {.lex_state = 31}, [2093] = {.lex_state = 31}, - [2094] = {.lex_state = 31}, + [2094] = {.lex_state = 17}, [2095] = {.lex_state = 17}, - [2096] = {.lex_state = 31}, + [2096] = {.lex_state = 17}, [2097] = {.lex_state = 17}, [2098] = {.lex_state = 17}, [2099] = {.lex_state = 17}, - [2100] = {.lex_state = 17}, - [2101] = {.lex_state = 17}, - [2102] = {.lex_state = 17}, - [2103] = {.lex_state = 17}, - [2104] = {.lex_state = 31}, - [2105] = {.lex_state = 17}, - [2106] = {.lex_state = 31}, - [2107] = {.lex_state = 31}, + [2100] = {.lex_state = 31}, + [2101] = {.lex_state = 18}, + [2102] = {.lex_state = 31}, + [2103] = {.lex_state = 18}, + [2104] = {.lex_state = 18}, + [2105] = {.lex_state = 18}, + [2106] = {.lex_state = 18}, + [2107] = {.lex_state = 19}, [2108] = {.lex_state = 18}, - [2109] = {.lex_state = 17}, - [2110] = {.lex_state = 31}, + [2109] = {.lex_state = 18}, + [2110] = {.lex_state = 17}, [2111] = {.lex_state = 18}, [2112] = {.lex_state = 18}, [2113] = {.lex_state = 18}, - [2114] = {.lex_state = 18}, + [2114] = {.lex_state = 17}, [2115] = {.lex_state = 18}, - [2116] = {.lex_state = 31}, + [2116] = {.lex_state = 18}, [2117] = {.lex_state = 18}, [2118] = {.lex_state = 17}, - [2119] = {.lex_state = 18}, - [2120] = {.lex_state = 18}, - [2121] = {.lex_state = 18}, - [2122] = {.lex_state = 18}, - [2123] = {.lex_state = 19}, - [2124] = {.lex_state = 18}, - [2125] = {.lex_state = 18}, - [2126] = {.lex_state = 17}, - [2127] = {.lex_state = 17}, - [2128] = {.lex_state = 17}, + [2119] = {.lex_state = 17}, + [2120] = {.lex_state = 17}, + [2121] = {.lex_state = 17}, + [2122] = {.lex_state = 17}, + [2123] = {.lex_state = 17}, + [2124] = {.lex_state = 17}, + [2125] = {.lex_state = 17}, + [2126] = {.lex_state = 18}, + [2127] = {.lex_state = 31}, + [2128] = {.lex_state = 27}, [2129] = {.lex_state = 17}, [2130] = {.lex_state = 17}, - [2131] = {.lex_state = 17}, + [2131] = {.lex_state = 18}, [2132] = {.lex_state = 17}, [2133] = {.lex_state = 17}, - [2134] = {.lex_state = 27}, + [2134] = {.lex_state = 18}, [2135] = {.lex_state = 18}, - [2136] = {.lex_state = 31}, - [2137] = {.lex_state = 18}, + [2136] = {.lex_state = 17}, + [2137] = {.lex_state = 17}, [2138] = {.lex_state = 17}, - [2139] = {.lex_state = 17}, - [2140] = {.lex_state = 17}, - [2141] = {.lex_state = 18}, - [2142] = {.lex_state = 17}, - [2143] = {.lex_state = 19}, + [2139] = {.lex_state = 31}, + [2140] = {.lex_state = 19}, + [2141] = {.lex_state = 17}, + [2142] = {.lex_state = 31}, + [2143] = {.lex_state = 17}, [2144] = {.lex_state = 17}, [2145] = {.lex_state = 17}, - [2146] = {.lex_state = 19}, - [2147] = {.lex_state = 17}, + [2146] = {.lex_state = 17}, + [2147] = {.lex_state = 31}, [2148] = {.lex_state = 17}, - [2149] = {.lex_state = 17}, - [2150] = {.lex_state = 19}, - [2151] = {.lex_state = 19}, - [2152] = {.lex_state = 31}, - [2153] = {.lex_state = 18}, - [2154] = {.lex_state = 17}, + [2149] = {.lex_state = 18}, + [2150] = {.lex_state = 18}, + [2151] = {.lex_state = 18}, + [2152] = {.lex_state = 18}, + [2153] = {.lex_state = 24}, + [2154] = {.lex_state = 31}, [2155] = {.lex_state = 18}, - [2156] = {.lex_state = 18}, - [2157] = {.lex_state = 31}, - [2158] = {.lex_state = 17}, + [2156] = {.lex_state = 24}, + [2157] = {.lex_state = 18}, + [2158] = {.lex_state = 18}, [2159] = {.lex_state = 18}, - [2160] = {.lex_state = 31}, + [2160] = {.lex_state = 17}, [2161] = {.lex_state = 17}, - [2162] = {.lex_state = 17}, - [2163] = {.lex_state = 17}, + [2162] = {.lex_state = 18}, + [2163] = {.lex_state = 27}, [2164] = {.lex_state = 17}, - [2165] = {.lex_state = 24}, + [2165] = {.lex_state = 17}, [2166] = {.lex_state = 17}, - [2167] = {.lex_state = 24}, - [2168] = {.lex_state = 17}, - [2169] = {.lex_state = 18}, - [2170] = {.lex_state = 18}, - [2171] = {.lex_state = 18}, - [2172] = {.lex_state = 18}, + [2167] = {.lex_state = 17}, + [2168] = {.lex_state = 19}, + [2169] = {.lex_state = 19}, + [2170] = {.lex_state = 19}, + [2171] = {.lex_state = 17}, + [2172] = {.lex_state = 31}, [2173] = {.lex_state = 17}, [2174] = {.lex_state = 17}, - [2175] = {.lex_state = 18}, - [2176] = {.lex_state = 17}, + [2175] = {.lex_state = 31}, + [2176] = {.lex_state = 27}, [2177] = {.lex_state = 27}, - [2178] = {.lex_state = 31}, - [2179] = {.lex_state = 18}, + [2178] = {.lex_state = 17}, + [2179] = {.lex_state = 31}, [2180] = {.lex_state = 31}, [2181] = {.lex_state = 31}, - [2182] = {.lex_state = 31}, - [2183] = {.lex_state = 27}, + [2182] = {.lex_state = 18}, + [2183] = {.lex_state = 31}, [2184] = {.lex_state = 31}, - [2185] = {.lex_state = 31}, + [2185] = {.lex_state = 18}, [2186] = {.lex_state = 27}, - [2187] = {.lex_state = 19}, - [2188] = {.lex_state = 31}, + [2187] = {.lex_state = 18}, + [2188] = {.lex_state = 18}, [2189] = {.lex_state = 31}, [2190] = {.lex_state = 31}, [2191] = {.lex_state = 31}, [2192] = {.lex_state = 31}, - [2193] = {.lex_state = 31}, + [2193] = {.lex_state = 12}, [2194] = {.lex_state = 31}, - [2195] = {.lex_state = 18}, - [2196] = {.lex_state = 18}, + [2195] = {.lex_state = 31}, + [2196] = {.lex_state = 31}, [2197] = {.lex_state = 31}, [2198] = {.lex_state = 31}, - [2199] = {.lex_state = 18}, - [2200] = {.lex_state = 12}, - [2201] = {.lex_state = 18}, + [2199] = {.lex_state = 31}, + [2200] = {.lex_state = 31}, + [2201] = {.lex_state = 31}, [2202] = {.lex_state = 31}, - [2203] = {.lex_state = 31}, + [2203] = {.lex_state = 18}, [2204] = {.lex_state = 31}, [2205] = {.lex_state = 31}, [2206] = {.lex_state = 31}, [2207] = {.lex_state = 31}, - [2208] = {.lex_state = 27}, - [2209] = {.lex_state = 31}, + [2208] = {.lex_state = 19}, + [2209] = {.lex_state = 18}, [2210] = {.lex_state = 31}, - [2211] = {.lex_state = 18}, + [2211] = {.lex_state = 31}, [2212] = {.lex_state = 31}, - [2213] = {.lex_state = 17}, + [2213] = {.lex_state = 31}, [2214] = {.lex_state = 31}, [2215] = {.lex_state = 31}, - [2216] = {.lex_state = 18}, - [2217] = {.lex_state = 31}, + [2216] = {.lex_state = 17}, + [2217] = {.lex_state = 27}, [2218] = {.lex_state = 31}, - [2219] = {.lex_state = 18}, - [2220] = {.lex_state = 31}, + [2219] = {.lex_state = 17}, + [2220] = {.lex_state = 18}, [2221] = {.lex_state = 31}, [2222] = {.lex_state = 31}, - [2223] = {.lex_state = 17}, - [2224] = {.lex_state = 17}, + [2223] = {.lex_state = 31}, + [2224] = {.lex_state = 31}, [2225] = {.lex_state = 31}, [2226] = {.lex_state = 31}, [2227] = {.lex_state = 31}, - [2228] = {.lex_state = 31}, + [2228] = {.lex_state = 12}, [2229] = {.lex_state = 17}, - [2230] = {.lex_state = 31}, - [2231] = {.lex_state = 31}, - [2232] = {.lex_state = 27}, - [2233] = {.lex_state = 17}, - [2234] = {.lex_state = 31}, - [2235] = {.lex_state = 31}, - [2236] = {.lex_state = 12}, - [2237] = {.lex_state = 19}, - [2238] = {.lex_state = 17}, - [2239] = {.lex_state = 8}, - [2240] = {.lex_state = 12}, - [2241] = {.lex_state = 17}, - [2242] = {.lex_state = 31}, - [2243] = {.lex_state = 8}, - [2244] = {.lex_state = 72}, - [2245] = {.lex_state = 17}, + [2230] = {.lex_state = 17}, + [2231] = {.lex_state = 17}, + [2232] = {.lex_state = 8}, + [2233] = {.lex_state = 8}, + [2234] = {.lex_state = 17}, + [2235] = {.lex_state = 17}, + [2236] = {.lex_state = 17}, + [2237] = {.lex_state = 31}, + [2238] = {.lex_state = 31}, + [2239] = {.lex_state = 17}, + [2240] = {.lex_state = 19}, + [2241] = {.lex_state = 18}, + [2242] = {.lex_state = 17}, + [2243] = {.lex_state = 17}, + [2244] = {.lex_state = 31}, + [2245] = {.lex_state = 24}, [2246] = {.lex_state = 17}, [2247] = {.lex_state = 17}, - [2248] = {.lex_state = 19}, - [2249] = {.lex_state = 17}, - [2250] = {.lex_state = 17}, + [2248] = {.lex_state = 24}, + [2249] = {.lex_state = 31}, + [2250] = {.lex_state = 72}, [2251] = {.lex_state = 17}, [2252] = {.lex_state = 31}, - [2253] = {.lex_state = 24}, - [2254] = {.lex_state = 8}, - [2255] = {.lex_state = 17}, + [2253] = {.lex_state = 17}, + [2254] = {.lex_state = 31}, + [2255] = {.lex_state = 12}, [2256] = {.lex_state = 17}, [2257] = {.lex_state = 31}, [2258] = {.lex_state = 31}, [2259] = {.lex_state = 17}, - [2260] = {.lex_state = 31}, - [2261] = {.lex_state = 17}, - [2262] = {.lex_state = 18}, - [2263] = {.lex_state = 31}, + [2260] = {.lex_state = 17}, + [2261] = {.lex_state = 31}, + [2262] = {.lex_state = 8}, + [2263] = {.lex_state = 17}, [2264] = {.lex_state = 17}, - [2265] = {.lex_state = 31}, - [2266] = {.lex_state = 17}, + [2265] = {.lex_state = 19}, + [2266] = {.lex_state = 31}, [2267] = {.lex_state = 17}, - [2268] = {.lex_state = 31}, - [2269] = {.lex_state = 19}, - [2270] = {.lex_state = 12}, - [2271] = {.lex_state = 19}, - [2272] = {.lex_state = 17}, - [2273] = {.lex_state = 31}, - [2274] = {.lex_state = 17}, - [2275] = {.lex_state = 17}, + [2268] = {.lex_state = 12}, + [2269] = {.lex_state = 31}, + [2270] = {.lex_state = 17}, + [2271] = {.lex_state = 12}, + [2272] = {.lex_state = 27}, + [2273] = {.lex_state = 17}, + [2274] = {.lex_state = 19}, + [2275] = {.lex_state = 19}, [2276] = {.lex_state = 17}, [2277] = {.lex_state = 17}, - [2278] = {.lex_state = 31}, - [2279] = {.lex_state = 17}, - [2280] = {.lex_state = 19}, - [2281] = {.lex_state = 31}, + [2278] = {.lex_state = 17}, + [2279] = {.lex_state = 19}, + [2280] = {.lex_state = 17}, + [2281] = {.lex_state = 17}, [2282] = {.lex_state = 17}, - [2283] = {.lex_state = 12}, + [2283] = {.lex_state = 17}, [2284] = {.lex_state = 17}, [2285] = {.lex_state = 17}, - [2286] = {.lex_state = 27}, - [2287] = {.lex_state = 24}, - [2288] = {.lex_state = 17}, - [2289] = {.lex_state = 17}, + [2286] = {.lex_state = 17}, + [2287] = {.lex_state = 27}, + [2288] = {.lex_state = 27}, + [2289] = {.lex_state = 24}, [2290] = {.lex_state = 17}, [2291] = {.lex_state = 17}, [2292] = {.lex_state = 17}, [2293] = {.lex_state = 17}, - [2294] = {.lex_state = 17}, + [2294] = {.lex_state = 27}, [2295] = {.lex_state = 27}, [2296] = {.lex_state = 27}, - [2297] = {.lex_state = 24}, + [2297] = {.lex_state = 27}, [2298] = {.lex_state = 17}, - [2299] = {.lex_state = 17}, - [2300] = {.lex_state = 17}, + [2299] = {.lex_state = 27}, + [2300] = {.lex_state = 27}, [2301] = {.lex_state = 17}, - [2302] = {.lex_state = 27}, + [2302] = {.lex_state = 17}, [2303] = {.lex_state = 27}, - [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 = 27}, + [2308] = {.lex_state = 17}, [2309] = {.lex_state = 17}, [2310] = {.lex_state = 17}, [2311] = {.lex_state = 17}, [2312] = {.lex_state = 17}, [2313] = {.lex_state = 17}, [2314] = {.lex_state = 17}, - [2315] = {.lex_state = 17}, - [2316] = {.lex_state = 17}, - [2317] = {.lex_state = 17}, + [2315] = {.lex_state = 27}, + [2316] = {.lex_state = 27}, + [2317] = {.lex_state = 27}, [2318] = {.lex_state = 17}, - [2319] = {.lex_state = 17}, + [2319] = {.lex_state = 12}, [2320] = {.lex_state = 17}, [2321] = {.lex_state = 17}, - [2322] = {.lex_state = 27}, - [2323] = {.lex_state = 27}, - [2324] = {.lex_state = 27}, + [2322] = {.lex_state = 17}, + [2323] = {.lex_state = 17}, + [2324] = {.lex_state = 17}, [2325] = {.lex_state = 17}, [2326] = {.lex_state = 17}, - [2327] = {.lex_state = 12}, + [2327] = {.lex_state = 17}, [2328] = {.lex_state = 17}, [2329] = {.lex_state = 17}, [2330] = {.lex_state = 17}, [2331] = {.lex_state = 17}, [2332] = {.lex_state = 17}, - [2333] = {.lex_state = 17}, - [2334] = {.lex_state = 17}, - [2335] = {.lex_state = 17}, + [2333] = {.lex_state = 72}, + [2334] = {.lex_state = 27}, + [2335] = {.lex_state = 27}, [2336] = {.lex_state = 17}, [2337] = {.lex_state = 17}, - [2338] = {.lex_state = 17}, - [2339] = {.lex_state = 17}, - [2340] = {.lex_state = 27}, + [2338] = {.lex_state = 5}, + [2339] = {.lex_state = 19}, + [2340] = {.lex_state = 72}, [2341] = {.lex_state = 72}, - [2342] = {.lex_state = 19}, - [2343] = {.lex_state = 17}, - [2344] = {.lex_state = 17}, - [2345] = {.lex_state = 27}, - [2346] = {.lex_state = 27}, + [2342] = {.lex_state = 72}, + [2343] = {.lex_state = 72}, + [2344] = {.lex_state = 72}, + [2345] = {.lex_state = 72}, + [2346] = {.lex_state = 17}, [2347] = {.lex_state = 72}, - [2348] = {.lex_state = 72}, + [2348] = {.lex_state = 17}, [2349] = {.lex_state = 72}, [2350] = {.lex_state = 72}, - [2351] = {.lex_state = 27}, - [2352] = {.lex_state = 27}, + [2351] = {.lex_state = 17}, + [2352] = {.lex_state = 72}, [2353] = {.lex_state = 72}, [2354] = {.lex_state = 72}, - [2355] = {.lex_state = 17}, + [2355] = {.lex_state = 72}, [2356] = {.lex_state = 72}, - [2357] = {.lex_state = 17}, + [2357] = {.lex_state = 72}, [2358] = {.lex_state = 17}, [2359] = {.lex_state = 72}, [2360] = {.lex_state = 72}, [2361] = {.lex_state = 17}, - [2362] = {.lex_state = 72}, - [2363] = {.lex_state = 72}, - [2364] = {.lex_state = 17}, - [2365] = {.lex_state = 27}, - [2366] = {.lex_state = 5}, - [2367] = {.lex_state = 12}, - [2368] = {.lex_state = 27}, - [2369] = {.lex_state = 5}, - [2370] = {.lex_state = 72}, - [2371] = {.lex_state = 72}, + [2362] = {.lex_state = 17}, + [2363] = {.lex_state = 27}, + [2364] = {.lex_state = 27}, + [2365] = {.lex_state = 17}, + [2366] = {.lex_state = 27}, + [2367] = {.lex_state = 27}, + [2368] = {.lex_state = 17}, + [2369] = {.lex_state = 17}, + [2370] = {.lex_state = 17}, + [2371] = {.lex_state = 17}, [2372] = {.lex_state = 17}, - [2373] = {.lex_state = 72}, - [2374] = {.lex_state = 72}, - [2375] = {.lex_state = 72}, - [2376] = {.lex_state = 72}, - [2377] = {.lex_state = 72}, + [2373] = {.lex_state = 27}, + [2374] = {.lex_state = 5}, + [2375] = {.lex_state = 12}, + [2376] = {.lex_state = 27}, + [2377] = {.lex_state = 17}, [2378] = {.lex_state = 72}, [2379] = {.lex_state = 72}, [2380] = {.lex_state = 72}, @@ -12998,571 +12853,571 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2382] = {.lex_state = 72}, [2383] = {.lex_state = 72}, [2384] = {.lex_state = 72}, - [2385] = {.lex_state = 5}, - [2386] = {.lex_state = 12}, - [2387] = {.lex_state = 72}, - [2388] = {.lex_state = 31}, - [2389] = {.lex_state = 31}, + [2385] = {.lex_state = 72}, + [2386] = {.lex_state = 72}, + [2387] = {.lex_state = 5}, + [2388] = {.lex_state = 12}, + [2389] = {.lex_state = 72}, [2390] = {.lex_state = 72}, [2391] = {.lex_state = 72}, - [2392] = {.lex_state = 27}, - [2393] = {.lex_state = 27}, + [2392] = {.lex_state = 31}, + [2393] = {.lex_state = 12}, [2394] = {.lex_state = 17}, - [2395] = {.lex_state = 17}, - [2396] = {.lex_state = 17}, - [2397] = {.lex_state = 12}, + [2395] = {.lex_state = 31}, + [2396] = {.lex_state = 169}, + [2397] = {.lex_state = 17}, [2398] = {.lex_state = 17}, - [2399] = {.lex_state = 169}, + [2399] = {.lex_state = 17}, [2400] = {.lex_state = 17}, - [2401] = {.lex_state = 72}, + [2401] = {.lex_state = 17}, [2402] = {.lex_state = 17}, - [2403] = {.lex_state = 17}, + [2403] = {.lex_state = 72}, [2404] = {.lex_state = 17}, - [2405] = {.lex_state = 17}, - [2406] = {.lex_state = 17}, - [2407] = {.lex_state = 19}, - [2408] = {.lex_state = 19}, - [2409] = {.lex_state = 20}, - [2410] = {.lex_state = 19}, - [2411] = {.lex_state = 19}, - [2412] = {.lex_state = 19}, - [2413] = {.lex_state = 17}, + [2405] = {.lex_state = 20}, + [2406] = {.lex_state = 31}, + [2407] = {.lex_state = 17}, + [2408] = {.lex_state = 17}, + [2409] = {.lex_state = 17}, + [2410] = {.lex_state = 20}, + [2411] = {.lex_state = 31}, + [2412] = {.lex_state = 31}, + [2413] = {.lex_state = 27}, [2414] = {.lex_state = 17}, [2415] = {.lex_state = 17}, [2416] = {.lex_state = 17}, [2417] = {.lex_state = 17}, - [2418] = {.lex_state = 17}, + [2418] = {.lex_state = 20}, [2419] = {.lex_state = 17}, - [2420] = {.lex_state = 17}, + [2420] = {.lex_state = 5}, [2421] = {.lex_state = 17}, - [2422] = {.lex_state = 20}, + [2422] = {.lex_state = 15}, [2423] = {.lex_state = 17}, [2424] = {.lex_state = 17}, [2425] = {.lex_state = 17}, - [2426] = {.lex_state = 20}, - [2427] = {.lex_state = 20}, + [2426] = {.lex_state = 17}, + [2427] = {.lex_state = 17}, [2428] = {.lex_state = 17}, - [2429] = {.lex_state = 5}, - [2430] = {.lex_state = 31}, - [2431] = {.lex_state = 23}, - [2432] = {.lex_state = 31}, - [2433] = {.lex_state = 31}, + [2429] = {.lex_state = 20}, + [2430] = {.lex_state = 17}, + [2431] = {.lex_state = 17}, + [2432] = {.lex_state = 17}, + [2433] = {.lex_state = 17}, [2434] = {.lex_state = 17}, - [2435] = {.lex_state = 23}, + [2435] = {.lex_state = 17}, [2436] = {.lex_state = 17}, [2437] = {.lex_state = 17}, - [2438] = {.lex_state = 17}, - [2439] = {.lex_state = 23}, - [2440] = {.lex_state = 17}, - [2441] = {.lex_state = 19}, - [2442] = {.lex_state = 31}, - [2443] = {.lex_state = 17}, - [2444] = {.lex_state = 17}, - [2445] = {.lex_state = 17}, - [2446] = {.lex_state = 5}, - [2447] = {.lex_state = 19}, + [2438] = {.lex_state = 31}, + [2439] = {.lex_state = 17}, + [2440] = {.lex_state = 20}, + [2441] = {.lex_state = 20}, + [2442] = {.lex_state = 17}, + [2443] = {.lex_state = 31}, + [2444] = {.lex_state = 23}, + [2445] = {.lex_state = 31}, + [2446] = {.lex_state = 31}, + [2447] = {.lex_state = 17}, [2448] = {.lex_state = 23}, - [2449] = {.lex_state = 31}, - [2450] = {.lex_state = 23}, - [2451] = {.lex_state = 31}, - [2452] = {.lex_state = 17}, - [2453] = {.lex_state = 31}, - [2454] = {.lex_state = 31}, + [2449] = {.lex_state = 17}, + [2450] = {.lex_state = 31}, + [2451] = {.lex_state = 17}, + [2452] = {.lex_state = 23}, + [2453] = {.lex_state = 15}, + [2454] = {.lex_state = 17}, [2455] = {.lex_state = 17}, - [2456] = {.lex_state = 17}, - [2457] = {.lex_state = 31}, + [2456] = {.lex_state = 23}, + [2457] = {.lex_state = 5}, [2458] = {.lex_state = 31}, - [2459] = {.lex_state = 17}, - [2460] = {.lex_state = 17}, - [2461] = {.lex_state = 17}, + [2459] = {.lex_state = 23}, + [2460] = {.lex_state = 31}, + [2461] = {.lex_state = 31}, [2462] = {.lex_state = 17}, - [2463] = {.lex_state = 17}, + [2463] = {.lex_state = 31}, [2464] = {.lex_state = 17}, - [2465] = {.lex_state = 31}, + [2465] = {.lex_state = 17}, [2466] = {.lex_state = 31}, - [2467] = {.lex_state = 20}, - [2468] = {.lex_state = 31}, - [2469] = {.lex_state = 17}, - [2470] = {.lex_state = 72}, + [2467] = {.lex_state = 19}, + [2468] = {.lex_state = 19}, + [2469] = {.lex_state = 19}, + [2470] = {.lex_state = 17}, [2471] = {.lex_state = 17}, - [2472] = {.lex_state = 17}, - [2473] = {.lex_state = 17}, - [2474] = {.lex_state = 31}, + [2472] = {.lex_state = 19}, + [2473] = {.lex_state = 19}, + [2474] = {.lex_state = 17}, [2475] = {.lex_state = 17}, [2476] = {.lex_state = 31}, [2477] = {.lex_state = 31}, - [2478] = {.lex_state = 15}, + [2478] = {.lex_state = 19}, [2479] = {.lex_state = 17}, [2480] = {.lex_state = 17}, - [2481] = {.lex_state = 5}, - [2482] = {.lex_state = 17}, - [2483] = {.lex_state = 17}, + [2481] = {.lex_state = 17}, + [2482] = {.lex_state = 5}, + [2483] = {.lex_state = 72}, [2484] = {.lex_state = 17}, - [2485] = {.lex_state = 20}, - [2486] = {.lex_state = 17}, - [2487] = {.lex_state = 5}, - [2488] = {.lex_state = 15}, + [2485] = {.lex_state = 5}, + [2486] = {.lex_state = 31}, + [2487] = {.lex_state = 17}, + [2488] = {.lex_state = 17}, [2489] = {.lex_state = 17}, [2490] = {.lex_state = 17}, [2491] = {.lex_state = 17}, - [2492] = {.lex_state = 17}, + [2492] = {.lex_state = 31}, [2493] = {.lex_state = 23}, [2494] = {.lex_state = 17}, - [2495] = {.lex_state = 31}, + [2495] = {.lex_state = 17}, [2496] = {.lex_state = 17}, - [2497] = {.lex_state = 72}, - [2498] = {.lex_state = 27}, + [2497] = {.lex_state = 17}, + [2498] = {.lex_state = 17}, [2499] = {.lex_state = 17}, [2500] = {.lex_state = 17}, [2501] = {.lex_state = 17}, - [2502] = {.lex_state = 17}, - [2503] = {.lex_state = 17}, - [2504] = {.lex_state = 17}, - [2505] = {.lex_state = 17}, - [2506] = {.lex_state = 17}, + [2502] = {.lex_state = 19}, + [2503] = {.lex_state = 23}, + [2504] = {.lex_state = 31}, + [2505] = {.lex_state = 19}, + [2506] = {.lex_state = 31}, [2507] = {.lex_state = 17}, - [2508] = {.lex_state = 17}, - [2509] = {.lex_state = 17}, - [2510] = {.lex_state = 17}, - [2511] = {.lex_state = 23}, - [2512] = {.lex_state = 31}, - [2513] = {.lex_state = 31}, - [2514] = {.lex_state = 23}, - [2515] = {.lex_state = 23, .external_lex_state = 3}, - [2516] = {.lex_state = 23}, - [2517] = {.lex_state = 31}, + [2508] = {.lex_state = 72}, + [2509] = {.lex_state = 31}, + [2510] = {.lex_state = 31}, + [2511] = {.lex_state = 31}, + [2512] = {.lex_state = 23}, + [2513] = {.lex_state = 23}, + [2514] = {.lex_state = 31}, + [2515] = {.lex_state = 23}, + [2516] = {.lex_state = 17}, + [2517] = {.lex_state = 19}, [2518] = {.lex_state = 31}, [2519] = {.lex_state = 31}, [2520] = {.lex_state = 23}, [2521] = {.lex_state = 31}, - [2522] = {.lex_state = 23}, - [2523] = {.lex_state = 17}, - [2524] = {.lex_state = 17}, - [2525] = {.lex_state = 17}, - [2526] = {.lex_state = 19}, - [2527] = {.lex_state = 19}, - [2528] = {.lex_state = 23}, - [2529] = {.lex_state = 19}, + [2522] = {.lex_state = 17}, + [2523] = {.lex_state = 31}, + [2524] = {.lex_state = 23, .external_lex_state = 3}, + [2525] = {.lex_state = 23}, + [2526] = {.lex_state = 23}, + [2527] = {.lex_state = 31}, + [2528] = {.lex_state = 31}, + [2529] = {.lex_state = 31}, [2530] = {.lex_state = 31}, [2531] = {.lex_state = 31}, - [2532] = {.lex_state = 23}, - [2533] = {.lex_state = 31}, - [2534] = {.lex_state = 23}, - [2535] = {.lex_state = 17}, + [2532] = {.lex_state = 31}, + [2533] = {.lex_state = 17}, + [2534] = {.lex_state = 31}, + [2535] = {.lex_state = 31}, [2536] = {.lex_state = 17}, - [2537] = {.lex_state = 17}, + [2537] = {.lex_state = 19}, [2538] = {.lex_state = 19}, - [2539] = {.lex_state = 72}, - [2540] = {.lex_state = 17}, - [2541] = {.lex_state = 19}, - [2542] = {.lex_state = 19}, + [2539] = {.lex_state = 19}, + [2540] = {.lex_state = 23}, + [2541] = {.lex_state = 23}, + [2542] = {.lex_state = 17}, [2543] = {.lex_state = 23}, - [2544] = {.lex_state = 17}, - [2545] = {.lex_state = 17}, - [2546] = {.lex_state = 17}, - [2547] = {.lex_state = 23}, - [2548] = {.lex_state = 23}, + [2544] = {.lex_state = 31}, + [2545] = {.lex_state = 23}, + [2546] = {.lex_state = 23}, + [2547] = {.lex_state = 17}, + [2548] = {.lex_state = 8}, [2549] = {.lex_state = 23}, - [2550] = {.lex_state = 31}, - [2551] = {.lex_state = 17}, + [2550] = {.lex_state = 17}, + [2551] = {.lex_state = 23}, [2552] = {.lex_state = 17}, [2553] = {.lex_state = 23}, - [2554] = {.lex_state = 31}, - [2555] = {.lex_state = 23}, - [2556] = {.lex_state = 23}, - [2557] = {.lex_state = 31}, + [2554] = {.lex_state = 17}, + [2555] = {.lex_state = 17}, + [2556] = {.lex_state = 17}, + [2557] = {.lex_state = 23}, [2558] = {.lex_state = 23}, - [2559] = {.lex_state = 72}, - [2560] = {.lex_state = 23}, - [2561] = {.lex_state = 23}, - [2562] = {.lex_state = 23}, + [2559] = {.lex_state = 17}, + [2560] = {.lex_state = 31}, + [2561] = {.lex_state = 17}, + [2562] = {.lex_state = 17}, [2563] = {.lex_state = 23}, - [2564] = {.lex_state = 23}, + [2564] = {.lex_state = 17}, [2565] = {.lex_state = 17}, - [2566] = {.lex_state = 23}, + [2566] = {.lex_state = 17}, [2567] = {.lex_state = 8}, - [2568] = {.lex_state = 8}, + [2568] = {.lex_state = 31}, [2569] = {.lex_state = 31}, - [2570] = {.lex_state = 31}, + [2570] = {.lex_state = 23}, [2571] = {.lex_state = 23}, [2572] = {.lex_state = 31}, - [2573] = {.lex_state = 17}, - [2574] = {.lex_state = 31}, - [2575] = {.lex_state = 31}, - [2576] = {.lex_state = 31}, - [2577] = {.lex_state = 17}, + [2573] = {.lex_state = 31}, + [2574] = {.lex_state = 17}, + [2575] = {.lex_state = 17}, + [2576] = {.lex_state = 17}, + [2577] = {.lex_state = 8}, [2578] = {.lex_state = 31}, - [2579] = {.lex_state = 23}, + [2579] = {.lex_state = 72}, [2580] = {.lex_state = 31}, - [2581] = {.lex_state = 17}, - [2582] = {.lex_state = 31}, - [2583] = {.lex_state = 31}, - [2584] = {.lex_state = 31}, + [2581] = {.lex_state = 23}, + [2582] = {.lex_state = 17}, + [2583] = {.lex_state = 23}, + [2584] = {.lex_state = 8}, [2585] = {.lex_state = 17}, - [2586] = {.lex_state = 17}, - [2587] = {.lex_state = 17}, + [2586] = {.lex_state = 23}, + [2587] = {.lex_state = 23}, [2588] = {.lex_state = 23}, [2589] = {.lex_state = 17}, - [2590] = {.lex_state = 17}, - [2591] = {.lex_state = 8}, - [2592] = {.lex_state = 23}, + [2590] = {.lex_state = 23}, + [2591] = {.lex_state = 17}, + [2592] = {.lex_state = 17}, [2593] = {.lex_state = 23}, - [2594] = {.lex_state = 31}, - [2595] = {.lex_state = 17}, - [2596] = {.lex_state = 17}, - [2597] = {.lex_state = 31}, + [2594] = {.lex_state = 23}, + [2595] = {.lex_state = 5}, + [2596] = {.lex_state = 23}, + [2597] = {.lex_state = 17}, [2598] = {.lex_state = 31}, - [2599] = {.lex_state = 23}, - [2600] = {.lex_state = 31}, - [2601] = {.lex_state = 17}, - [2602] = {.lex_state = 17}, + [2599] = {.lex_state = 17}, + [2600] = {.lex_state = 5}, + [2601] = {.lex_state = 23}, + [2602] = {.lex_state = 19}, [2603] = {.lex_state = 17}, [2604] = {.lex_state = 17}, - [2605] = {.lex_state = 8}, - [2606] = {.lex_state = 17}, + [2605] = {.lex_state = 17}, + [2606] = {.lex_state = 8}, [2607] = {.lex_state = 17}, - [2608] = {.lex_state = 23}, - [2609] = {.lex_state = 5}, - [2610] = {.lex_state = 8}, - [2611] = {.lex_state = 5}, + [2608] = {.lex_state = 31}, + [2609] = {.lex_state = 31}, + [2610] = {.lex_state = 23}, + [2611] = {.lex_state = 31}, [2612] = {.lex_state = 23}, - [2613] = {.lex_state = 31}, - [2614] = {.lex_state = 17}, - [2615] = {.lex_state = 31}, - [2616] = {.lex_state = 23}, - [2617] = {.lex_state = 17}, - [2618] = {.lex_state = 23}, - [2619] = {.lex_state = 31}, - [2620] = {.lex_state = 17}, - [2621] = {.lex_state = 23}, - [2622] = {.lex_state = 17}, + [2613] = {.lex_state = 23}, + [2614] = {.lex_state = 23}, + [2615] = {.lex_state = 23}, + [2616] = {.lex_state = 19}, + [2617] = {.lex_state = 19}, + [2618] = {.lex_state = 19}, + [2619] = {.lex_state = 19}, + [2620] = {.lex_state = 72}, + [2621] = {.lex_state = 17}, + [2622] = {.lex_state = 23}, [2623] = {.lex_state = 23}, - [2624] = {.lex_state = 72}, - [2625] = {.lex_state = 19}, + [2624] = {.lex_state = 23}, + [2625] = {.lex_state = 23, .external_lex_state = 4}, [2626] = {.lex_state = 23}, - [2627] = {.lex_state = 8}, + [2627] = {.lex_state = 23}, [2628] = {.lex_state = 17}, - [2629] = {.lex_state = 8}, - [2630] = {.lex_state = 8}, - [2631] = {.lex_state = 19}, - [2632] = {.lex_state = 17}, - [2633] = {.lex_state = 19}, + [2629] = {.lex_state = 23}, + [2630] = {.lex_state = 5}, + [2631] = {.lex_state = 72}, + [2632] = {.lex_state = 18}, + [2633] = {.lex_state = 72}, [2634] = {.lex_state = 72}, - [2635] = {.lex_state = 18}, - [2636] = {.lex_state = 72}, - [2637] = {.lex_state = 23}, - [2638] = {.lex_state = 23}, + [2635] = {.lex_state = 23}, + [2636] = {.lex_state = 23}, + [2637] = {.lex_state = 72}, + [2638] = {.lex_state = 72}, [2639] = {.lex_state = 23}, [2640] = {.lex_state = 23, .external_lex_state = 4}, - [2641] = {.lex_state = 19}, - [2642] = {.lex_state = 23}, - [2643] = {.lex_state = 17}, - [2644] = {.lex_state = 23}, + [2641] = {.lex_state = 72}, + [2642] = {.lex_state = 8}, + [2643] = {.lex_state = 72}, + [2644] = {.lex_state = 8}, [2645] = {.lex_state = 72}, [2646] = {.lex_state = 72}, - [2647] = {.lex_state = 18}, + [2647] = {.lex_state = 72}, [2648] = {.lex_state = 17}, - [2649] = {.lex_state = 17}, - [2650] = {.lex_state = 72}, - [2651] = {.lex_state = 23}, + [2649] = {.lex_state = 8}, + [2650] = {.lex_state = 8}, + [2651] = {.lex_state = 72}, [2652] = {.lex_state = 23}, - [2653] = {.lex_state = 72}, - [2654] = {.lex_state = 23}, - [2655] = {.lex_state = 23, .external_lex_state = 4}, - [2656] = {.lex_state = 72}, - [2657] = {.lex_state = 8}, - [2658] = {.lex_state = 8}, - [2659] = {.lex_state = 8}, - [2660] = {.lex_state = 8}, - [2661] = {.lex_state = 72}, - [2662] = {.lex_state = 8}, - [2663] = {.lex_state = 8}, - [2664] = {.lex_state = 72}, - [2665] = {.lex_state = 8}, - [2666] = {.lex_state = 8}, - [2667] = {.lex_state = 17}, - [2668] = {.lex_state = 23}, - [2669] = {.lex_state = 72}, - [2670] = {.lex_state = 72}, - [2671] = {.lex_state = 23}, - [2672] = {.lex_state = 72}, + [2653] = {.lex_state = 8}, + [2654] = {.lex_state = 8}, + [2655] = {.lex_state = 8}, + [2656] = {.lex_state = 17}, + [2657] = {.lex_state = 17}, + [2658] = {.lex_state = 17}, + [2659] = {.lex_state = 17}, + [2660] = {.lex_state = 17}, + [2661] = {.lex_state = 17}, + [2662] = {.lex_state = 17}, + [2663] = {.lex_state = 23}, + [2664] = {.lex_state = 31}, + [2665] = {.lex_state = 23}, + [2666] = {.lex_state = 33}, + [2667] = {.lex_state = 8}, + [2668] = {.lex_state = 72}, + [2669] = {.lex_state = 8}, + [2670] = {.lex_state = 8}, + [2671] = {.lex_state = 8}, + [2672] = {.lex_state = 8}, [2673] = {.lex_state = 72}, - [2674] = {.lex_state = 17}, - [2675] = {.lex_state = 31}, + [2674] = {.lex_state = 72}, + [2675] = {.lex_state = 72}, [2676] = {.lex_state = 17}, - [2677] = {.lex_state = 17}, + [2677] = {.lex_state = 19}, [2678] = {.lex_state = 19}, - [2679] = {.lex_state = 33}, - [2680] = {.lex_state = 23}, - [2681] = {.lex_state = 31}, - [2682] = {.lex_state = 72}, - [2683] = {.lex_state = 72}, + [2679] = {.lex_state = 19}, + [2680] = {.lex_state = 72}, + [2681] = {.lex_state = 17}, + [2682] = {.lex_state = 19}, + [2683] = {.lex_state = 17}, [2684] = {.lex_state = 17}, [2685] = {.lex_state = 17}, [2686] = {.lex_state = 23}, [2687] = {.lex_state = 17}, [2688] = {.lex_state = 17}, - [2689] = {.lex_state = 33}, - [2690] = {.lex_state = 23}, + [2689] = {.lex_state = 8}, + [2690] = {.lex_state = 8}, [2691] = {.lex_state = 23}, - [2692] = {.lex_state = 23, .external_lex_state = 4}, - [2693] = {.lex_state = 23}, - [2694] = {.lex_state = 23}, - [2695] = {.lex_state = 17}, - [2696] = {.lex_state = 8}, - [2697] = {.lex_state = 23}, - [2698] = {.lex_state = 72}, - [2699] = {.lex_state = 23}, - [2700] = {.lex_state = 23}, - [2701] = {.lex_state = 23}, - [2702] = {.lex_state = 23, .external_lex_state = 4}, - [2703] = {.lex_state = 72}, - [2704] = {.lex_state = 8}, - [2705] = {.lex_state = 8}, - [2706] = {.lex_state = 8}, - [2707] = {.lex_state = 8}, - [2708] = {.lex_state = 8}, - [2709] = {.lex_state = 8}, - [2710] = {.lex_state = 23}, - [2711] = {.lex_state = 23}, + [2692] = {.lex_state = 19}, + [2693] = {.lex_state = 19}, + [2694] = {.lex_state = 19}, + [2695] = {.lex_state = 19}, + [2696] = {.lex_state = 17}, + [2697] = {.lex_state = 17}, + [2698] = {.lex_state = 18}, + [2699] = {.lex_state = 8}, + [2700] = {.lex_state = 72}, + [2701] = {.lex_state = 17}, + [2702] = {.lex_state = 17}, + [2703] = {.lex_state = 17}, + [2704] = {.lex_state = 17}, + [2705] = {.lex_state = 17}, + [2706] = {.lex_state = 17}, + [2707] = {.lex_state = 72}, + [2708] = {.lex_state = 23}, + [2709] = {.lex_state = 17}, + [2710] = {.lex_state = 17}, + [2711] = {.lex_state = 17}, [2712] = {.lex_state = 17}, - [2713] = {.lex_state = 17}, - [2714] = {.lex_state = 23}, - [2715] = {.lex_state = 31}, - [2716] = {.lex_state = 72}, - [2717] = {.lex_state = 23}, - [2718] = {.lex_state = 23, .external_lex_state = 4}, - [2719] = {.lex_state = 72}, - [2720] = {.lex_state = 31}, - [2721] = {.lex_state = 23, .external_lex_state = 4}, - [2722] = {.lex_state = 72}, - [2723] = {.lex_state = 23}, + [2713] = {.lex_state = 72}, + [2714] = {.lex_state = 17}, + [2715] = {.lex_state = 17}, + [2716] = {.lex_state = 17}, + [2717] = {.lex_state = 17}, + [2718] = {.lex_state = 17}, + [2719] = {.lex_state = 17}, + [2720] = {.lex_state = 17}, + [2721] = {.lex_state = 8}, + [2722] = {.lex_state = 17}, + [2723] = {.lex_state = 72}, [2724] = {.lex_state = 17}, - [2725] = {.lex_state = 23, .external_lex_state = 4}, - [2726] = {.lex_state = 72}, + [2725] = {.lex_state = 23}, + [2726] = {.lex_state = 23}, [2727] = {.lex_state = 23, .external_lex_state = 4}, - [2728] = {.lex_state = 72}, - [2729] = {.lex_state = 8}, - [2730] = {.lex_state = 8}, - [2731] = {.lex_state = 8}, - [2732] = {.lex_state = 8}, - [2733] = {.lex_state = 17}, - [2734] = {.lex_state = 23}, - [2735] = {.lex_state = 17}, - [2736] = {.lex_state = 23, .external_lex_state = 4}, - [2737] = {.lex_state = 17}, - [2738] = {.lex_state = 23, .external_lex_state = 4}, + [2728] = {.lex_state = 33}, + [2729] = {.lex_state = 17}, + [2730] = {.lex_state = 23}, + [2731] = {.lex_state = 18}, + [2732] = {.lex_state = 23}, + [2733] = {.lex_state = 72}, + [2734] = {.lex_state = 72}, + [2735] = {.lex_state = 23}, + [2736] = {.lex_state = 23}, + [2737] = {.lex_state = 72}, + [2738] = {.lex_state = 23}, [2739] = {.lex_state = 23, .external_lex_state = 4}, - [2740] = {.lex_state = 8}, + [2740] = {.lex_state = 72}, [2741] = {.lex_state = 8}, - [2742] = {.lex_state = 17}, - [2743] = {.lex_state = 17}, - [2744] = {.lex_state = 23}, - [2745] = {.lex_state = 8}, + [2742] = {.lex_state = 8}, + [2743] = {.lex_state = 8}, + [2744] = {.lex_state = 8}, + [2745] = {.lex_state = 72}, [2746] = {.lex_state = 8}, - [2747] = {.lex_state = 8}, - [2748] = {.lex_state = 72}, - [2749] = {.lex_state = 17}, + [2747] = {.lex_state = 17}, + [2748] = {.lex_state = 8}, + [2749] = {.lex_state = 8}, [2750] = {.lex_state = 8}, [2751] = {.lex_state = 72}, - [2752] = {.lex_state = 5}, - [2753] = {.lex_state = 17}, - [2754] = {.lex_state = 72}, - [2755] = {.lex_state = 17}, - [2756] = {.lex_state = 5}, - [2757] = {.lex_state = 72}, - [2758] = {.lex_state = 17}, - [2759] = {.lex_state = 72}, + [2752] = {.lex_state = 23}, + [2753] = {.lex_state = 72}, + [2754] = {.lex_state = 23}, + [2755] = {.lex_state = 23}, + [2756] = {.lex_state = 31}, + [2757] = {.lex_state = 8}, + [2758] = {.lex_state = 72}, + [2759] = {.lex_state = 17}, [2760] = {.lex_state = 17}, [2761] = {.lex_state = 72}, - [2762] = {.lex_state = 19}, + [2762] = {.lex_state = 17}, [2763] = {.lex_state = 17}, - [2764] = {.lex_state = 18}, - [2765] = {.lex_state = 31}, - [2766] = {.lex_state = 72}, - [2767] = {.lex_state = 72}, - [2768] = {.lex_state = 19}, - [2769] = {.lex_state = 8}, - [2770] = {.lex_state = 17}, - [2771] = {.lex_state = 72}, + [2764] = {.lex_state = 23}, + [2765] = {.lex_state = 23}, + [2766] = {.lex_state = 23, .external_lex_state = 4}, + [2767] = {.lex_state = 23}, + [2768] = {.lex_state = 17}, + [2769] = {.lex_state = 31}, + [2770] = {.lex_state = 72}, + [2771] = {.lex_state = 23}, [2772] = {.lex_state = 23}, - [2773] = {.lex_state = 8}, + [2773] = {.lex_state = 72}, [2774] = {.lex_state = 23}, - [2775] = {.lex_state = 23}, - [2776] = {.lex_state = 23}, - [2777] = {.lex_state = 19}, - [2778] = {.lex_state = 17}, - [2779] = {.lex_state = 31}, - [2780] = {.lex_state = 72}, - [2781] = {.lex_state = 17}, - [2782] = {.lex_state = 33}, + [2775] = {.lex_state = 23, .external_lex_state = 4}, + [2776] = {.lex_state = 72}, + [2777] = {.lex_state = 8}, + [2778] = {.lex_state = 8}, + [2779] = {.lex_state = 8}, + [2780] = {.lex_state = 8}, + [2781] = {.lex_state = 31}, + [2782] = {.lex_state = 23}, [2783] = {.lex_state = 23}, - [2784] = {.lex_state = 23, .external_lex_state = 4}, - [2785] = {.lex_state = 72}, + [2784] = {.lex_state = 33}, + [2785] = {.lex_state = 23, .external_lex_state = 4}, [2786] = {.lex_state = 23}, - [2787] = {.lex_state = 17}, - [2788] = {.lex_state = 23}, - [2789] = {.lex_state = 17}, - [2790] = {.lex_state = 8}, - [2791] = {.lex_state = 23}, + [2787] = {.lex_state = 72}, + [2788] = {.lex_state = 72}, + [2789] = {.lex_state = 72}, + [2790] = {.lex_state = 23, .external_lex_state = 4}, + [2791] = {.lex_state = 72}, [2792] = {.lex_state = 8}, - [2793] = {.lex_state = 17}, - [2794] = {.lex_state = 23}, - [2795] = {.lex_state = 17}, - [2796] = {.lex_state = 72}, - [2797] = {.lex_state = 23}, - [2798] = {.lex_state = 23}, - [2799] = {.lex_state = 17}, - [2800] = {.lex_state = 17}, - [2801] = {.lex_state = 31}, + [2793] = {.lex_state = 8}, + [2794] = {.lex_state = 8}, + [2795] = {.lex_state = 8}, + [2796] = {.lex_state = 31}, + [2797] = {.lex_state = 23, .external_lex_state = 4}, + [2798] = {.lex_state = 23, .external_lex_state = 4}, + [2799] = {.lex_state = 8}, + [2800] = {.lex_state = 8}, + [2801] = {.lex_state = 23, .external_lex_state = 4}, [2802] = {.lex_state = 17}, - [2803] = {.lex_state = 72}, - [2804] = {.lex_state = 72}, - [2805] = {.lex_state = 19}, - [2806] = {.lex_state = 17}, - [2807] = {.lex_state = 72}, - [2808] = {.lex_state = 23}, - [2809] = {.lex_state = 23}, - [2810] = {.lex_state = 72}, - [2811] = {.lex_state = 17}, - [2812] = {.lex_state = 31}, - [2813] = {.lex_state = 8}, - [2814] = {.lex_state = 8}, - [2815] = {.lex_state = 23}, - [2816] = {.lex_state = 72}, - [2817] = {.lex_state = 23}, + [2803] = {.lex_state = 17}, + [2804] = {.lex_state = 8}, + [2805] = {.lex_state = 8}, + [2806] = {.lex_state = 8}, + [2807] = {.lex_state = 17}, + [2808] = {.lex_state = 17}, + [2809] = {.lex_state = 5}, + [2810] = {.lex_state = 23}, + [2811] = {.lex_state = 72}, + [2812] = {.lex_state = 72}, + [2813] = {.lex_state = 17}, + [2814] = {.lex_state = 17}, + [2815] = {.lex_state = 72}, + [2816] = {.lex_state = 23}, + [2817] = {.lex_state = 8}, [2818] = {.lex_state = 23}, - [2819] = {.lex_state = 17}, - [2820] = {.lex_state = 72}, - [2821] = {.lex_state = 17}, - [2822] = {.lex_state = 23}, - [2823] = {.lex_state = 17}, - [2824] = {.lex_state = 17}, + [2819] = {.lex_state = 72}, + [2820] = {.lex_state = 8}, + [2821] = {.lex_state = 8}, + [2822] = {.lex_state = 31}, + [2823] = {.lex_state = 23}, + [2824] = {.lex_state = 31}, [2825] = {.lex_state = 23}, - [2826] = {.lex_state = 17}, - [2827] = {.lex_state = 23}, - [2828] = {.lex_state = 23}, - [2829] = {.lex_state = 18}, - [2830] = {.lex_state = 18}, - [2831] = {.lex_state = 72}, + [2826] = {.lex_state = 23}, + [2827] = {.lex_state = 72}, + [2828] = {.lex_state = 72}, + [2829] = {.lex_state = 31}, + [2830] = {.lex_state = 31}, + [2831] = {.lex_state = 23}, [2832] = {.lex_state = 23}, - [2833] = {.lex_state = 8}, - [2834] = {.lex_state = 5}, - [2835] = {.lex_state = 19}, - [2836] = {.lex_state = 8}, - [2837] = {.lex_state = 17}, - [2838] = {.lex_state = 23, .external_lex_state = 4}, - [2839] = {.lex_state = 8}, - [2840] = {.lex_state = 17}, - [2841] = {.lex_state = 72}, - [2842] = {.lex_state = 17}, - [2843] = {.lex_state = 31}, + [2833] = {.lex_state = 72}, + [2834] = {.lex_state = 23}, + [2835] = {.lex_state = 23}, + [2836] = {.lex_state = 31}, + [2837] = {.lex_state = 23}, + [2838] = {.lex_state = 17}, + [2839] = {.lex_state = 23}, + [2840] = {.lex_state = 18}, + [2841] = {.lex_state = 17}, + [2842] = {.lex_state = 18}, + [2843] = {.lex_state = 23}, [2844] = {.lex_state = 17}, [2845] = {.lex_state = 5}, - [2846] = {.lex_state = 72}, + [2846] = {.lex_state = 23}, [2847] = {.lex_state = 17}, - [2848] = {.lex_state = 8}, - [2849] = {.lex_state = 8}, - [2850] = {.lex_state = 17}, + [2848] = {.lex_state = 72}, + [2849] = {.lex_state = 23, .external_lex_state = 4}, + [2850] = {.lex_state = 5}, [2851] = {.lex_state = 17}, - [2852] = {.lex_state = 17}, - [2853] = {.lex_state = 17}, + [2852] = {.lex_state = 72}, + [2853] = {.lex_state = 31}, [2854] = {.lex_state = 8}, - [2855] = {.lex_state = 5}, + [2855] = {.lex_state = 8}, [2856] = {.lex_state = 17}, [2857] = {.lex_state = 17}, - [2858] = {.lex_state = 8}, + [2858] = {.lex_state = 17}, [2859] = {.lex_state = 17}, [2860] = {.lex_state = 8}, - [2861] = {.lex_state = 23}, - [2862] = {.lex_state = 19}, - [2863] = {.lex_state = 17}, - [2864] = {.lex_state = 19}, - [2865] = {.lex_state = 8}, - [2866] = {.lex_state = 23}, + [2861] = {.lex_state = 5}, + [2862] = {.lex_state = 23}, + [2863] = {.lex_state = 8}, + [2864] = {.lex_state = 8}, + [2865] = {.lex_state = 17}, + [2866] = {.lex_state = 8}, [2867] = {.lex_state = 17}, - [2868] = {.lex_state = 8}, - [2869] = {.lex_state = 8}, - [2870] = {.lex_state = 31}, - [2871] = {.lex_state = 33}, - [2872] = {.lex_state = 8}, - [2873] = {.lex_state = 72}, + [2868] = {.lex_state = 23}, + [2869] = {.lex_state = 17}, + [2870] = {.lex_state = 33}, + [2871] = {.lex_state = 8}, + [2872] = {.lex_state = 72}, + [2873] = {.lex_state = 23, .external_lex_state = 4}, [2874] = {.lex_state = 72}, - [2875] = {.lex_state = 8}, - [2876] = {.lex_state = 17}, - [2877] = {.lex_state = 8}, - [2878] = {.lex_state = 31}, - [2879] = {.lex_state = 17}, - [2880] = {.lex_state = 17}, + [2875] = {.lex_state = 72}, + [2876] = {.lex_state = 72}, + [2877] = {.lex_state = 72}, + [2878] = {.lex_state = 17}, + [2879] = {.lex_state = 72}, + [2880] = {.lex_state = 72}, [2881] = {.lex_state = 72}, - [2882] = {.lex_state = 17}, - [2883] = {.lex_state = 72}, - [2884] = {.lex_state = 31}, - [2885] = {.lex_state = 72}, - [2886] = {.lex_state = 72}, - [2887] = {.lex_state = 20}, + [2882] = {.lex_state = 72}, + [2883] = {.lex_state = 17}, + [2884] = {.lex_state = 72}, + [2885] = {.lex_state = 19}, + [2886] = {.lex_state = 19}, + [2887] = {.lex_state = 72}, [2888] = {.lex_state = 72}, - [2889] = {.lex_state = 19}, + [2889] = {.lex_state = 72}, [2890] = {.lex_state = 72}, - [2891] = {.lex_state = 72}, - [2892] = {.lex_state = 19}, - [2893] = {.lex_state = 72}, + [2891] = {.lex_state = 17}, + [2892] = {.lex_state = 72}, + [2893] = {.lex_state = 19}, [2894] = {.lex_state = 72}, [2895] = {.lex_state = 72}, - [2896] = {.lex_state = 72}, - [2897] = {.lex_state = 19}, + [2896] = {.lex_state = 17}, + [2897] = {.lex_state = 17}, [2898] = {.lex_state = 72}, [2899] = {.lex_state = 72}, [2900] = {.lex_state = 72}, - [2901] = {.lex_state = 19}, - [2902] = {.lex_state = 72}, + [2901] = {.lex_state = 72}, + [2902] = {.lex_state = 17}, [2903] = {.lex_state = 19}, [2904] = {.lex_state = 72}, - [2905] = {.lex_state = 72}, - [2906] = {.lex_state = 72}, - [2907] = {.lex_state = 72}, + [2905] = {.lex_state = 19}, + [2906] = {.lex_state = 19}, + [2907] = {.lex_state = 19}, [2908] = {.lex_state = 72}, [2909] = {.lex_state = 72}, [2910] = {.lex_state = 72}, - [2911] = {.lex_state = 72}, - [2912] = {.lex_state = 17}, + [2911] = {.lex_state = 19}, + [2912] = {.lex_state = 72}, [2913] = {.lex_state = 72}, [2914] = {.lex_state = 72}, - [2915] = {.lex_state = 17}, + [2915] = {.lex_state = 72}, [2916] = {.lex_state = 72}, - [2917] = {.lex_state = 72}, + [2917] = {.lex_state = 19}, [2918] = {.lex_state = 72}, - [2919] = {.lex_state = 17}, - [2920] = {.lex_state = 72}, - [2921] = {.lex_state = 17}, - [2922] = {.lex_state = 17}, - [2923] = {.lex_state = 17}, + [2919] = {.lex_state = 72}, + [2920] = {.lex_state = 19}, + [2921] = {.lex_state = 19}, + [2922] = {.lex_state = 72}, + [2923] = {.lex_state = 72}, [2924] = {.lex_state = 72}, [2925] = {.lex_state = 72}, - [2926] = {.lex_state = 19}, + [2926] = {.lex_state = 72}, [2927] = {.lex_state = 72}, [2928] = {.lex_state = 72}, - [2929] = {.lex_state = 19}, - [2930] = {.lex_state = 19}, - [2931] = {.lex_state = 19}, + [2929] = {.lex_state = 72}, + [2930] = {.lex_state = 17}, + [2931] = {.lex_state = 72}, [2932] = {.lex_state = 72}, - [2933] = {.lex_state = 72}, + [2933] = {.lex_state = 8}, [2934] = {.lex_state = 72}, [2935] = {.lex_state = 72}, [2936] = {.lex_state = 72}, [2937] = {.lex_state = 72}, [2938] = {.lex_state = 72}, [2939] = {.lex_state = 72}, - [2940] = {.lex_state = 72}, + [2940] = {.lex_state = 17}, [2941] = {.lex_state = 72}, - [2942] = {.lex_state = 19}, + [2942] = {.lex_state = 17}, [2943] = {.lex_state = 72}, [2944] = {.lex_state = 72}, [2945] = {.lex_state = 72}, [2946] = {.lex_state = 72}, [2947] = {.lex_state = 72}, - [2948] = {.lex_state = 72}, - [2949] = {.lex_state = 23}, + [2948] = {.lex_state = 20}, + [2949] = {.lex_state = 72}, [2950] = {.lex_state = 72}, [2951] = {.lex_state = 72}, [2952] = {.lex_state = 72}, @@ -13577,174 +13432,174 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2961] = {.lex_state = 72}, [2962] = {.lex_state = 72}, [2963] = {.lex_state = 72}, - [2964] = {.lex_state = 72}, - [2965] = {.lex_state = 17}, + [2964] = {.lex_state = 19}, + [2965] = {.lex_state = 72}, [2966] = {.lex_state = 72}, - [2967] = {.lex_state = 72}, - [2968] = {.lex_state = 20}, + [2967] = {.lex_state = 17}, + [2968] = {.lex_state = 72}, [2969] = {.lex_state = 72}, [2970] = {.lex_state = 72}, [2971] = {.lex_state = 72}, [2972] = {.lex_state = 72}, [2973] = {.lex_state = 72}, [2974] = {.lex_state = 72}, - [2975] = {.lex_state = 20}, + [2975] = {.lex_state = 72}, [2976] = {.lex_state = 72}, [2977] = {.lex_state = 72}, [2978] = {.lex_state = 72}, [2979] = {.lex_state = 72}, - [2980] = {.lex_state = 17}, + [2980] = {.lex_state = 72}, [2981] = {.lex_state = 72}, [2982] = {.lex_state = 72}, [2983] = {.lex_state = 72}, - [2984] = {.lex_state = 72}, + [2984] = {.lex_state = 17}, [2985] = {.lex_state = 72}, - [2986] = {.lex_state = 72}, + [2986] = {.lex_state = 31}, [2987] = {.lex_state = 72}, [2988] = {.lex_state = 72}, [2989] = {.lex_state = 72}, [2990] = {.lex_state = 72}, - [2991] = {.lex_state = 72}, - [2992] = {.lex_state = 72}, - [2993] = {.lex_state = 31}, + [2991] = {.lex_state = 8}, + [2992] = {.lex_state = 17}, + [2993] = {.lex_state = 19}, [2994] = {.lex_state = 72}, [2995] = {.lex_state = 72}, - [2996] = {.lex_state = 72}, - [2997] = {.lex_state = 72}, + [2996] = {.lex_state = 17}, + [2997] = {.lex_state = 20}, [2998] = {.lex_state = 72}, - [2999] = {.lex_state = 17}, + [2999] = {.lex_state = 72}, [3000] = {.lex_state = 72}, [3001] = {.lex_state = 72}, - [3002] = {.lex_state = 72}, + [3002] = {.lex_state = 19}, [3003] = {.lex_state = 72}, - [3004] = {.lex_state = 72}, - [3005] = {.lex_state = 72}, - [3006] = {.lex_state = 19}, - [3007] = {.lex_state = 19}, + [3004] = {.lex_state = 19}, + [3005] = {.lex_state = 8}, + [3006] = {.lex_state = 72}, + [3007] = {.lex_state = 17}, [3008] = {.lex_state = 72}, [3009] = {.lex_state = 72}, - [3010] = {.lex_state = 19}, + [3010] = {.lex_state = 72}, [3011] = {.lex_state = 72}, - [3012] = {.lex_state = 19}, + [3012] = {.lex_state = 72}, [3013] = {.lex_state = 72}, - [3014] = {.lex_state = 8}, + [3014] = {.lex_state = 17}, [3015] = {.lex_state = 72}, - [3016] = {.lex_state = 19}, + [3016] = {.lex_state = 72}, [3017] = {.lex_state = 72}, - [3018] = {.lex_state = 17}, - [3019] = {.lex_state = 17}, - [3020] = {.lex_state = 19}, + [3018] = {.lex_state = 72}, + [3019] = {.lex_state = 72}, + [3020] = {.lex_state = 72}, [3021] = {.lex_state = 72}, - [3022] = {.lex_state = 17}, - [3023] = {.lex_state = 19}, - [3024] = {.lex_state = 72}, + [3022] = {.lex_state = 72}, + [3023] = {.lex_state = 72}, + [3024] = {.lex_state = 17}, [3025] = {.lex_state = 72}, [3026] = {.lex_state = 72}, - [3027] = {.lex_state = 8}, - [3028] = {.lex_state = 17}, + [3027] = {.lex_state = 19}, + [3028] = {.lex_state = 19}, [3029] = {.lex_state = 72}, [3030] = {.lex_state = 72}, [3031] = {.lex_state = 72}, [3032] = {.lex_state = 72}, - [3033] = {.lex_state = 72}, - [3034] = {.lex_state = 72}, - [3035] = {.lex_state = 72}, - [3036] = {.lex_state = 17}, - [3037] = {.lex_state = 19}, - [3038] = {.lex_state = 19}, - [3039] = {.lex_state = 19}, - [3040] = {.lex_state = 72}, + [3033] = {.lex_state = 19}, + [3034] = {.lex_state = 19}, + [3035] = {.lex_state = 19}, + [3036] = {.lex_state = 19}, + [3037] = {.lex_state = 72}, + [3038] = {.lex_state = 72}, + [3039] = {.lex_state = 72}, + [3040] = {.lex_state = 17}, [3041] = {.lex_state = 72}, - [3042] = {.lex_state = 19}, - [3043] = {.lex_state = 19}, - [3044] = {.lex_state = 19}, - [3045] = {.lex_state = 72}, - [3046] = {.lex_state = 72}, - [3047] = {.lex_state = 72}, - [3048] = {.lex_state = 72}, + [3042] = {.lex_state = 72}, + [3043] = {.lex_state = 72}, + [3044] = {.lex_state = 8}, + [3045] = {.lex_state = 19}, + [3046] = {.lex_state = 19}, + [3047] = {.lex_state = 20}, + [3048] = {.lex_state = 19}, [3049] = {.lex_state = 72}, [3050] = {.lex_state = 72}, [3051] = {.lex_state = 72}, [3052] = {.lex_state = 72}, [3053] = {.lex_state = 72}, - [3054] = {.lex_state = 20}, - [3055] = {.lex_state = 17}, + [3054] = {.lex_state = 72}, + [3055] = {.lex_state = 20}, [3056] = {.lex_state = 72}, [3057] = {.lex_state = 72}, - [3058] = {.lex_state = 17}, + [3058] = {.lex_state = 72}, [3059] = {.lex_state = 72}, - [3060] = {.lex_state = 8}, - [3061] = {.lex_state = 19}, + [3060] = {.lex_state = 72}, + [3061] = {.lex_state = 17}, [3062] = {.lex_state = 72}, - [3063] = {.lex_state = 72}, - [3064] = {.lex_state = 72}, - [3065] = {.lex_state = 17}, + [3063] = {.lex_state = 8}, + [3064] = {.lex_state = 17}, + [3065] = {.lex_state = 72}, [3066] = {.lex_state = 72}, - [3067] = {.lex_state = 72}, + [3067] = {.lex_state = 8}, [3068] = {.lex_state = 72}, [3069] = {.lex_state = 72}, [3070] = {.lex_state = 72}, [3071] = {.lex_state = 72}, [3072] = {.lex_state = 17}, - [3073] = {.lex_state = 17}, - [3074] = {.lex_state = 8}, - [3075] = {.lex_state = 17}, - [3076] = {.lex_state = 8}, - [3077] = {.lex_state = 72}, + [3073] = {.lex_state = 31}, + [3074] = {.lex_state = 72}, + [3075] = {.lex_state = 72}, + [3076] = {.lex_state = 72}, + [3077] = {.lex_state = 23}, [3078] = {.lex_state = 72}, [3079] = {.lex_state = 72}, [3080] = {.lex_state = 72}, - [3081] = {.lex_state = 72}, + [3081] = {.lex_state = 23}, [3082] = {.lex_state = 72}, - [3083] = {.lex_state = 23}, + [3083] = {.lex_state = 72}, [3084] = {.lex_state = 72}, [3085] = {.lex_state = 72}, - [3086] = {.lex_state = 72}, - [3087] = {.lex_state = 72}, + [3086] = {.lex_state = 20}, + [3087] = {.lex_state = 19}, [3088] = {.lex_state = 72}, [3089] = {.lex_state = 72}, [3090] = {.lex_state = 72}, [3091] = {.lex_state = 72}, [3092] = {.lex_state = 72}, - [3093] = {.lex_state = 17}, + [3093] = {.lex_state = 72}, [3094] = {.lex_state = 72}, - [3095] = {.lex_state = 72}, + [3095] = {.lex_state = 8}, [3096] = {.lex_state = 72}, [3097] = {.lex_state = 72}, [3098] = {.lex_state = 72}, [3099] = {.lex_state = 72}, - [3100] = {.lex_state = 72}, + [3100] = {.lex_state = 17}, [3101] = {.lex_state = 72}, - [3102] = {.lex_state = 72}, - [3103] = {.lex_state = 8}, + [3102] = {.lex_state = 23}, + [3103] = {.lex_state = 72}, [3104] = {.lex_state = 72}, [3105] = {.lex_state = 72}, [3106] = {.lex_state = 72}, [3107] = {.lex_state = 72}, - [3108] = {.lex_state = 72}, - [3109] = {.lex_state = 17}, - [3110] = {.lex_state = 19}, + [3108] = {.lex_state = 19}, + [3109] = {.lex_state = 19}, + [3110] = {.lex_state = 17}, [3111] = {.lex_state = 19}, - [3112] = {.lex_state = 19}, + [3112] = {.lex_state = 17}, [3113] = {.lex_state = 19}, [3114] = {.lex_state = 19}, [3115] = {.lex_state = 19}, [3116] = {.lex_state = 72}, [3117] = {.lex_state = 72}, - [3118] = {.lex_state = 72}, + [3118] = {.lex_state = 17}, [3119] = {.lex_state = 72}, [3120] = {.lex_state = 72}, - [3121] = {.lex_state = 72}, - [3122] = {.lex_state = 23}, - [3123] = {.lex_state = 72}, + [3121] = {.lex_state = 8}, + [3122] = {.lex_state = 19}, + [3123] = {.lex_state = 17}, [3124] = {.lex_state = 72}, - [3125] = {.lex_state = 72}, + [3125] = {.lex_state = 19}, [3126] = {.lex_state = 72}, [3127] = {.lex_state = 72}, - [3128] = {.lex_state = 23}, + [3128] = {.lex_state = 72}, [3129] = {.lex_state = 72}, - [3130] = {.lex_state = 72}, - [3131] = {.lex_state = 8}, + [3130] = {.lex_state = 23}, + [3131] = {.lex_state = 72}, [3132] = {.lex_state = 72}, [3133] = {.lex_state = 72}, [3134] = {.lex_state = 72}, @@ -13757,179 +13612,179 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [3141] = {.lex_state = 72}, [3142] = {.lex_state = 72}, [3143] = {.lex_state = 72}, - [3144] = {.lex_state = 72}, - [3145] = {.lex_state = 72}, + [3144] = {.lex_state = 17}, + [3145] = {.lex_state = 17}, [3146] = {.lex_state = 72}, [3147] = {.lex_state = 72}, - [3148] = {.lex_state = 8}, - [3149] = {.lex_state = 17}, + [3148] = {.lex_state = 72}, + [3149] = {.lex_state = 72}, [3150] = {.lex_state = 72}, - [3151] = {.lex_state = 72}, + [3151] = {.lex_state = 19}, [3152] = {.lex_state = 19}, [3153] = {.lex_state = 19}, [3154] = {.lex_state = 19}, - [3155] = {.lex_state = 19}, - [3156] = {.lex_state = 17}, - [3157] = {.lex_state = 72}, - [3158] = {.lex_state = 23, .external_lex_state = 4}, + [3155] = {.lex_state = 72}, + [3156] = {.lex_state = 72}, + [3157] = {.lex_state = 23, .external_lex_state = 4}, + [3158] = {.lex_state = 72}, [3159] = {.lex_state = 72}, [3160] = {.lex_state = 72}, - [3161] = {.lex_state = 17}, + [3161] = {.lex_state = 72}, [3162] = {.lex_state = 72}, [3163] = {.lex_state = 72}, [3164] = {.lex_state = 72}, [3165] = {.lex_state = 72}, - [3166] = {.lex_state = 72}, + [3166] = {.lex_state = 8}, [3167] = {.lex_state = 8}, [3168] = {.lex_state = 72}, - [3169] = {.lex_state = 72}, + [3169] = {.lex_state = 8}, [3170] = {.lex_state = 72}, [3171] = {.lex_state = 72}, [3172] = {.lex_state = 72}, - [3173] = {.lex_state = 8}, - [3174] = {.lex_state = 72}, - [3175] = {.lex_state = 20}, - [3176] = {.lex_state = 72}, - [3177] = {.lex_state = 72}, - [3178] = {.lex_state = 8}, - [3179] = {.lex_state = 19}, + [3173] = {.lex_state = 72}, + [3174] = {.lex_state = 8}, + [3175] = {.lex_state = 72}, + [3176] = {.lex_state = 8}, + [3177] = {.lex_state = 17}, + [3178] = {.lex_state = 72}, + [3179] = {.lex_state = 72}, [3180] = {.lex_state = 8}, - [3181] = {.lex_state = 19}, - [3182] = {.lex_state = 17}, - [3183] = {.lex_state = 72}, + [3181] = {.lex_state = 72}, + [3182] = {.lex_state = 72}, + [3183] = {.lex_state = 17}, [3184] = {.lex_state = 72}, - [3185] = {.lex_state = 8}, + [3185] = {.lex_state = 72}, [3186] = {.lex_state = 72}, - [3187] = {.lex_state = 17}, - [3188] = {.lex_state = 19}, + [3187] = {.lex_state = 72}, + [3188] = {.lex_state = 72}, [3189] = {.lex_state = 72}, [3190] = {.lex_state = 72}, - [3191] = {.lex_state = 8}, + [3191] = {.lex_state = 31}, [3192] = {.lex_state = 72}, [3193] = {.lex_state = 72}, [3194] = {.lex_state = 17}, - [3195] = {.lex_state = 72}, - [3196] = {.lex_state = 72}, + [3195] = {.lex_state = 17}, + [3196] = {.lex_state = 17}, [3197] = {.lex_state = 72}, [3198] = {.lex_state = 72}, - [3199] = {.lex_state = 8}, + [3199] = {.lex_state = 17}, [3200] = {.lex_state = 17}, [3201] = {.lex_state = 17}, [3202] = {.lex_state = 17}, - [3203] = {.lex_state = 23, .external_lex_state = 5}, - [3204] = {.lex_state = 17}, + [3203] = {.lex_state = 72}, + [3204] = {.lex_state = 72}, [3205] = {.lex_state = 17}, - [3206] = {.lex_state = 17}, - [3207] = {.lex_state = 72}, - [3208] = {.lex_state = 23, .external_lex_state = 5}, - [3209] = {.lex_state = 17}, - [3210] = {.lex_state = 72}, + [3206] = {.lex_state = 72}, + [3207] = {.lex_state = 17}, + [3208] = {.lex_state = 17}, + [3209] = {.lex_state = 72}, + [3210] = {.lex_state = 17}, [3211] = {.lex_state = 72}, - [3212] = {.lex_state = 72}, + [3212] = {.lex_state = 17}, [3213] = {.lex_state = 72}, [3214] = {.lex_state = 72}, - [3215] = {.lex_state = 72}, - [3216] = {.lex_state = 72}, - [3217] = {.lex_state = 17}, - [3218] = {.lex_state = 23}, + [3215] = {.lex_state = 23, .external_lex_state = 5}, + [3216] = {.lex_state = 17}, + [3217] = {.lex_state = 72}, + [3218] = {.lex_state = 72}, [3219] = {.lex_state = 72}, [3220] = {.lex_state = 72}, - [3221] = {.lex_state = 72}, - [3222] = {.lex_state = 17}, - [3223] = {.lex_state = 72}, + [3221] = {.lex_state = 23}, + [3222] = {.lex_state = 72}, + [3223] = {.lex_state = 23}, [3224] = {.lex_state = 72}, - [3225] = {.lex_state = 72}, - [3226] = {.lex_state = 72}, - [3227] = {.lex_state = 17}, - [3228] = {.lex_state = 72}, - [3229] = {.lex_state = 17}, + [3225] = {.lex_state = 8}, + [3226] = {.lex_state = 17}, + [3227] = {.lex_state = 72, .external_lex_state = 6}, + [3228] = {.lex_state = 17}, + [3229] = {.lex_state = 72}, [3230] = {.lex_state = 72}, [3231] = {.lex_state = 72}, [3232] = {.lex_state = 17}, [3233] = {.lex_state = 72}, - [3234] = {.lex_state = 72}, - [3235] = {.lex_state = 72}, + [3234] = {.lex_state = 17}, + [3235] = {.lex_state = 17}, [3236] = {.lex_state = 72}, [3237] = {.lex_state = 72}, [3238] = {.lex_state = 72}, - [3239] = {.lex_state = 72}, - [3240] = {.lex_state = 17}, - [3241] = {.lex_state = 72}, - [3242] = {.lex_state = 17}, - [3243] = {.lex_state = 72}, - [3244] = {.lex_state = 72}, + [3239] = {.lex_state = 17}, + [3240] = {.lex_state = 72}, + [3241] = {.lex_state = 17}, + [3242] = {.lex_state = 72}, + [3243] = {.lex_state = 17}, + [3244] = {.lex_state = 17}, [3245] = {.lex_state = 17}, [3246] = {.lex_state = 72}, [3247] = {.lex_state = 72}, - [3248] = {.lex_state = 72}, - [3249] = {.lex_state = 23}, + [3248] = {.lex_state = 23, .external_lex_state = 5}, + [3249] = {.lex_state = 17}, [3250] = {.lex_state = 17}, - [3251] = {.lex_state = 23, .external_lex_state = 5}, + [3251] = {.lex_state = 17}, [3252] = {.lex_state = 17}, - [3253] = {.lex_state = 72}, + [3253] = {.lex_state = 17}, [3254] = {.lex_state = 72}, - [3255] = {.lex_state = 31}, - [3256] = {.lex_state = 31}, + [3255] = {.lex_state = 17}, + [3256] = {.lex_state = 72}, [3257] = {.lex_state = 17}, [3258] = {.lex_state = 72}, - [3259] = {.lex_state = 17}, - [3260] = {.lex_state = 17}, - [3261] = {.lex_state = 17}, + [3259] = {.lex_state = 72}, + [3260] = {.lex_state = 72}, + [3261] = {.lex_state = 72}, [3262] = {.lex_state = 72}, [3263] = {.lex_state = 31}, - [3264] = {.lex_state = 17}, + [3264] = {.lex_state = 72}, [3265] = {.lex_state = 72}, [3266] = {.lex_state = 72}, [3267] = {.lex_state = 17}, - [3268] = {.lex_state = 17}, + [3268] = {.lex_state = 72}, [3269] = {.lex_state = 17}, - [3270] = {.lex_state = 72, .external_lex_state = 6}, - [3271] = {.lex_state = 72}, + [3270] = {.lex_state = 72}, + [3271] = {.lex_state = 17}, [3272] = {.lex_state = 17}, - [3273] = {.lex_state = 72}, + [3273] = {.lex_state = 17}, [3274] = {.lex_state = 72}, [3275] = {.lex_state = 17}, - [3276] = {.lex_state = 31}, + [3276] = {.lex_state = 17}, [3277] = {.lex_state = 72}, - [3278] = {.lex_state = 72}, + [3278] = {.lex_state = 17}, [3279] = {.lex_state = 72}, [3280] = {.lex_state = 72}, - [3281] = {.lex_state = 17}, + [3281] = {.lex_state = 72}, [3282] = {.lex_state = 72}, - [3283] = {.lex_state = 72}, - [3284] = {.lex_state = 17}, - [3285] = {.lex_state = 31}, - [3286] = {.lex_state = 17}, - [3287] = {.lex_state = 17}, - [3288] = {.lex_state = 17}, + [3283] = {.lex_state = 31}, + [3284] = {.lex_state = 72}, + [3285] = {.lex_state = 17}, + [3286] = {.lex_state = 72}, + [3287] = {.lex_state = 72}, + [3288] = {.lex_state = 72}, [3289] = {.lex_state = 17}, - [3290] = {.lex_state = 72}, - [3291] = {.lex_state = 72}, - [3292] = {.lex_state = 72}, - [3293] = {.lex_state = 72}, - [3294] = {.lex_state = 72}, + [3290] = {.lex_state = 17}, + [3291] = {.lex_state = 17}, + [3292] = {.lex_state = 17}, + [3293] = {.lex_state = 17}, + [3294] = {.lex_state = 17}, [3295] = {.lex_state = 72}, [3296] = {.lex_state = 72}, [3297] = {.lex_state = 72}, - [3298] = {.lex_state = 72}, + [3298] = {.lex_state = 17}, [3299] = {.lex_state = 72}, - [3300] = {.lex_state = 17}, - [3301] = {.lex_state = 7}, - [3302] = {.lex_state = 7}, - [3303] = {.lex_state = 17}, + [3300] = {.lex_state = 72}, + [3301] = {.lex_state = 72}, + [3302] = {.lex_state = 72}, + [3303] = {.lex_state = 72}, [3304] = {.lex_state = 17}, [3305] = {.lex_state = 17}, [3306] = {.lex_state = 72}, - [3307] = {.lex_state = 72}, + [3307] = {.lex_state = 17}, [3308] = {.lex_state = 17}, [3309] = {.lex_state = 17}, [3310] = {.lex_state = 17}, - [3311] = {.lex_state = 17}, + [3311] = {.lex_state = 31}, [3312] = {.lex_state = 17}, - [3313] = {.lex_state = 72}, + [3313] = {.lex_state = 17}, [3314] = {.lex_state = 17}, - [3315] = {.lex_state = 72}, - [3316] = {.lex_state = 72}, + [3315] = {.lex_state = 17}, + [3316] = {.lex_state = 17}, [3317] = {.lex_state = 17}, [3318] = {.lex_state = 17}, [3319] = {.lex_state = 17}, @@ -13942,506 +13797,498 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [3326] = {.lex_state = 17}, [3327] = {.lex_state = 17}, [3328] = {.lex_state = 17}, - [3329] = {.lex_state = 17}, - [3330] = {.lex_state = 17}, - [3331] = {.lex_state = 17}, - [3332] = {.lex_state = 17}, - [3333] = {.lex_state = 17}, + [3329] = {.lex_state = 72}, + [3330] = {.lex_state = 72}, + [3331] = {.lex_state = 72}, + [3332] = {.lex_state = 72}, + [3333] = {.lex_state = 72}, [3334] = {.lex_state = 72}, [3335] = {.lex_state = 72}, [3336] = {.lex_state = 72}, [3337] = {.lex_state = 72}, [3338] = {.lex_state = 72}, [3339] = {.lex_state = 72}, - [3340] = {.lex_state = 31}, + [3340] = {.lex_state = 72}, [3341] = {.lex_state = 72}, [3342] = {.lex_state = 72}, - [3343] = {.lex_state = 17}, - [3344] = {.lex_state = 72}, + [3343] = {.lex_state = 8}, + [3344] = {.lex_state = 17}, [3345] = {.lex_state = 72}, [3346] = {.lex_state = 72}, - [3347] = {.lex_state = 17}, - [3348] = {.lex_state = 17}, - [3349] = {.lex_state = 17}, + [3347] = {.lex_state = 72}, + [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}, - [3355] = {.lex_state = 8}, + [3355] = {.lex_state = 72}, [3356] = {.lex_state = 72}, [3357] = {.lex_state = 17}, [3358] = {.lex_state = 72}, - [3359] = {.lex_state = 17}, + [3359] = {.lex_state = 72}, [3360] = {.lex_state = 72}, [3361] = {.lex_state = 72}, [3362] = {.lex_state = 72}, [3363] = {.lex_state = 72}, [3364] = {.lex_state = 72}, - [3365] = {.lex_state = 17}, + [3365] = {.lex_state = 72}, [3366] = {.lex_state = 72}, [3367] = {.lex_state = 72}, - [3368] = {.lex_state = 72}, + [3368] = {.lex_state = 17}, [3369] = {.lex_state = 72}, [3370] = {.lex_state = 72}, [3371] = {.lex_state = 72}, [3372] = {.lex_state = 72}, [3373] = {.lex_state = 72}, [3374] = {.lex_state = 72}, - [3375] = {.lex_state = 17}, - [3376] = {.lex_state = 72}, - [3377] = {.lex_state = 17}, + [3375] = {.lex_state = 72}, + [3376] = {.lex_state = 17}, + [3377] = {.lex_state = 72}, [3378] = {.lex_state = 72}, [3379] = {.lex_state = 72}, [3380] = {.lex_state = 72}, [3381] = {.lex_state = 72}, - [3382] = {.lex_state = 17}, - [3383] = {.lex_state = 17}, - [3384] = {.lex_state = 17}, + [3382] = {.lex_state = 72}, + [3383] = {.lex_state = 72}, + [3384] = {.lex_state = 72}, [3385] = {.lex_state = 72}, [3386] = {.lex_state = 72}, [3387] = {.lex_state = 72}, [3388] = {.lex_state = 72}, [3389] = {.lex_state = 72}, - [3390] = {.lex_state = 72}, - [3391] = {.lex_state = 72}, + [3390] = {.lex_state = 17}, + [3391] = {.lex_state = 17}, [3392] = {.lex_state = 72}, [3393] = {.lex_state = 72}, [3394] = {.lex_state = 72}, - [3395] = {.lex_state = 72}, + [3395] = {.lex_state = 17}, [3396] = {.lex_state = 72}, [3397] = {.lex_state = 72}, - [3398] = {.lex_state = 17}, - [3399] = {.lex_state = 72}, - [3400] = {.lex_state = 20}, + [3398] = {.lex_state = 72}, + [3399] = {.lex_state = 20}, + [3400] = {.lex_state = 17}, [3401] = {.lex_state = 72}, [3402] = {.lex_state = 72}, [3403] = {.lex_state = 72}, [3404] = {.lex_state = 72}, [3405] = {.lex_state = 72}, - [3406] = {.lex_state = 17}, + [3406] = {.lex_state = 72}, [3407] = {.lex_state = 72}, [3408] = {.lex_state = 72}, [3409] = {.lex_state = 72}, - [3410] = {.lex_state = 17}, + [3410] = {.lex_state = 72}, [3411] = {.lex_state = 72}, - [3412] = {.lex_state = 72}, - [3413] = {.lex_state = 72}, + [3412] = {.lex_state = 17}, + [3413] = {.lex_state = 17}, [3414] = {.lex_state = 72}, [3415] = {.lex_state = 72}, [3416] = {.lex_state = 72}, [3417] = {.lex_state = 72}, - [3418] = {.lex_state = 72}, - [3419] = {.lex_state = 72}, + [3418] = {.lex_state = 23, .external_lex_state = 5}, + [3419] = {.lex_state = 17}, [3420] = {.lex_state = 72}, [3421] = {.lex_state = 72}, [3422] = {.lex_state = 72}, [3423] = {.lex_state = 72}, - [3424] = {.lex_state = 72}, + [3424] = {.lex_state = 7}, [3425] = {.lex_state = 72}, - [3426] = {.lex_state = 72}, + [3426] = {.lex_state = 7}, [3427] = {.lex_state = 72}, - [3428] = {.lex_state = 17}, + [3428] = {.lex_state = 72}, [3429] = {.lex_state = 72}, - [3430] = {.lex_state = 17}, - [3431] = {.lex_state = 17}, - [3432] = {.lex_state = 72, .external_lex_state = 6}, + [3430] = {.lex_state = 72}, + [3431] = {.lex_state = 72}, + [3432] = {.lex_state = 72}, [3433] = {.lex_state = 72}, [3434] = {.lex_state = 72}, [3435] = {.lex_state = 17}, [3436] = {.lex_state = 72}, [3437] = {.lex_state = 72}, [3438] = {.lex_state = 17}, - [3439] = {.lex_state = 72}, + [3439] = {.lex_state = 17}, [3440] = {.lex_state = 72}, - [3441] = {.lex_state = 72}, + [3441] = {.lex_state = 17}, [3442] = {.lex_state = 72}, - [3443] = {.lex_state = 72}, - [3444] = {.lex_state = 72}, - [3445] = {.lex_state = 17}, + [3443] = {.lex_state = 17}, + [3444] = {.lex_state = 17}, + [3445] = {.lex_state = 72}, [3446] = {.lex_state = 72}, - [3447] = {.lex_state = 17}, + [3447] = {.lex_state = 72}, [3448] = {.lex_state = 17}, - [3449] = {.lex_state = 72}, + [3449] = {.lex_state = 17}, [3450] = {.lex_state = 17}, - [3451] = {.lex_state = 17}, - [3452] = {.lex_state = 72}, - [3453] = {.lex_state = 72}, + [3451] = {.lex_state = 72}, + [3452] = {.lex_state = 17}, + [3453] = {.lex_state = 17}, [3454] = {.lex_state = 72}, - [3455] = {.lex_state = 72}, - [3456] = {.lex_state = 17}, + [3455] = {.lex_state = 17}, + [3456] = {.lex_state = 72}, [3457] = {.lex_state = 17}, [3458] = {.lex_state = 72}, - [3459] = {.lex_state = 17}, + [3459] = {.lex_state = 72}, [3460] = {.lex_state = 17}, [3461] = {.lex_state = 17}, [3462] = {.lex_state = 72}, - [3463] = {.lex_state = 17}, - [3464] = {.lex_state = 72}, + [3463] = {.lex_state = 72}, + [3464] = {.lex_state = 17}, [3465] = {.lex_state = 72}, - [3466] = {.lex_state = 72}, + [3466] = {.lex_state = 17}, [3467] = {.lex_state = 17}, - [3468] = {.lex_state = 17}, + [3468] = {.lex_state = 72, .external_lex_state = 6}, [3469] = {.lex_state = 17}, - [3470] = {.lex_state = 17}, + [3470] = {.lex_state = 31}, [3471] = {.lex_state = 72}, [3472] = {.lex_state = 17}, [3473] = {.lex_state = 17}, [3474] = {.lex_state = 17}, [3475] = {.lex_state = 17}, - [3476] = {.lex_state = 72}, - [3477] = {.lex_state = 17}, - [3478] = {.lex_state = 17}, + [3476] = {.lex_state = 17}, + [3477] = {.lex_state = 72}, + [3478] = {.lex_state = 72}, [3479] = {.lex_state = 17}, - [3480] = {.lex_state = 17}, + [3480] = {.lex_state = 72}, [3481] = {.lex_state = 72}, - [3482] = {.lex_state = 72}, + [3482] = {.lex_state = 31}, [3483] = {.lex_state = 17}, - [3484] = {.lex_state = 72}, + [3484] = {.lex_state = 17}, [3485] = {.lex_state = 72}, - [3486] = {.lex_state = 17}, - [3487] = {.lex_state = 72}, - [3488] = {.lex_state = 72}, - [3489] = {.lex_state = 17}, + [3486] = {.lex_state = 72}, + [3487] = {.lex_state = 17}, + [3488] = {.lex_state = 17}, + [3489] = {.lex_state = 72}, [3490] = {.lex_state = 72}, [3491] = {.lex_state = 72}, - [3492] = {.lex_state = 17}, + [3492] = {.lex_state = 72}, [3493] = {.lex_state = 72}, [3494] = {.lex_state = 72}, - [3495] = {.lex_state = 17}, + [3495] = {.lex_state = 72}, [3496] = {.lex_state = 72}, [3497] = {.lex_state = 72}, [3498] = {.lex_state = 72}, - [3499] = {.lex_state = 17}, - [3500] = {.lex_state = 17}, + [3499] = {.lex_state = 72}, + [3500] = {.lex_state = 72}, [3501] = {.lex_state = 72}, [3502] = {.lex_state = 72}, - [3503] = {.lex_state = 73}, - [3504] = {.lex_state = 72, .external_lex_state = 7}, + [3503] = {.lex_state = 72}, + [3504] = {.lex_state = 72}, [3505] = {.lex_state = 72}, [3506] = {.lex_state = 17}, - [3507] = {.lex_state = 72, .external_lex_state = 8}, + [3507] = {.lex_state = 72}, [3508] = {.lex_state = 72}, - [3509] = {.lex_state = 17}, - [3510] = {.lex_state = 72}, - [3511] = {.lex_state = 73}, - [3512] = {.lex_state = 73}, - [3513] = {.lex_state = 72}, + [3509] = {.lex_state = 72}, + [3510] = {.lex_state = 17}, + [3511] = {.lex_state = 72}, + [3512] = {.lex_state = 72}, + [3513] = {.lex_state = 73}, [3514] = {.lex_state = 72}, - [3515] = {.lex_state = 17}, + [3515] = {.lex_state = 72}, [3516] = {.lex_state = 17}, [3517] = {.lex_state = 72}, [3518] = {.lex_state = 72}, - [3519] = {.lex_state = 72}, + [3519] = {.lex_state = 17}, [3520] = {.lex_state = 72}, - [3521] = {.lex_state = 72}, + [3521] = {.lex_state = 17}, [3522] = {.lex_state = 72}, - [3523] = {.lex_state = 72}, - [3524] = {.lex_state = 17}, + [3523] = {.lex_state = 72, .external_lex_state = 7}, + [3524] = {.lex_state = 72}, [3525] = {.lex_state = 72}, - [3526] = {.lex_state = 72}, - [3527] = {.lex_state = 72}, - [3528] = {.lex_state = 72}, - [3529] = {.lex_state = 72}, - [3530] = {.lex_state = 72}, + [3526] = {.lex_state = 17}, + [3527] = {.lex_state = 17}, + [3528] = {.lex_state = 17}, + [3529] = {.lex_state = 8}, + [3530] = {.lex_state = 17}, [3531] = {.lex_state = 72}, - [3532] = {.lex_state = 23}, + [3532] = {.lex_state = 20}, [3533] = {.lex_state = 72}, - [3534] = {.lex_state = 17}, - [3535] = {.lex_state = 17}, + [3534] = {.lex_state = 72}, + [3535] = {.lex_state = 72}, [3536] = {.lex_state = 72}, [3537] = {.lex_state = 72}, - [3538] = {.lex_state = 17}, - [3539] = {.lex_state = 17}, - [3540] = {.lex_state = 72}, - [3541] = {.lex_state = 17}, - [3542] = {.lex_state = 20}, + [3538] = {.lex_state = 72}, + [3539] = {.lex_state = 72}, + [3540] = {.lex_state = 72, .external_lex_state = 8}, + [3541] = {.lex_state = 72, .external_lex_state = 8}, + [3542] = {.lex_state = 72}, [3543] = {.lex_state = 72}, - [3544] = {.lex_state = 72}, - [3545] = {.lex_state = 73}, - [3546] = {.lex_state = 17}, - [3547] = {.lex_state = 72}, - [3548] = {.lex_state = 17}, - [3549] = {.lex_state = 72}, - [3550] = {.lex_state = 17}, + [3544] = {.lex_state = 73}, + [3545] = {.lex_state = 17}, + [3546] = {.lex_state = 72}, + [3547] = {.lex_state = 20}, + [3548] = {.lex_state = 72, .external_lex_state = 7}, + [3549] = {.lex_state = 17}, + [3550] = {.lex_state = 72}, [3551] = {.lex_state = 72}, [3552] = {.lex_state = 72}, [3553] = {.lex_state = 72}, - [3554] = {.lex_state = 72}, - [3555] = {.lex_state = 72}, + [3554] = {.lex_state = 17}, + [3555] = {.lex_state = 73}, [3556] = {.lex_state = 72}, - [3557] = {.lex_state = 73}, - [3558] = {.lex_state = 72, .external_lex_state = 8}, + [3557] = {.lex_state = 72, .external_lex_state = 8}, + [3558] = {.lex_state = 17}, [3559] = {.lex_state = 17}, [3560] = {.lex_state = 73}, [3561] = {.lex_state = 72}, [3562] = {.lex_state = 17}, [3563] = {.lex_state = 17}, - [3564] = {.lex_state = 72, .external_lex_state = 7}, - [3565] = {.lex_state = 72}, + [3564] = {.lex_state = 17}, + [3565] = {.lex_state = 17}, [3566] = {.lex_state = 72}, - [3567] = {.lex_state = 17}, + [3567] = {.lex_state = 72}, [3568] = {.lex_state = 72}, [3569] = {.lex_state = 17}, - [3570] = {.lex_state = 17}, + [3570] = {.lex_state = 72}, [3571] = {.lex_state = 72}, - [3572] = {.lex_state = 17}, + [3572] = {.lex_state = 23}, [3573] = {.lex_state = 17}, - [3574] = {.lex_state = 17}, - [3575] = {.lex_state = 72}, - [3576] = {.lex_state = 72, .external_lex_state = 7}, - [3577] = {.lex_state = 72, .external_lex_state = 7}, - [3578] = {.lex_state = 72}, + [3574] = {.lex_state = 20}, + [3575] = {.lex_state = 17}, + [3576] = {.lex_state = 72}, + [3577] = {.lex_state = 72}, + [3578] = {.lex_state = 23}, [3579] = {.lex_state = 72}, - [3580] = {.lex_state = 72}, - [3581] = {.lex_state = 17}, + [3580] = {.lex_state = 17}, + [3581] = {.lex_state = 72}, [3582] = {.lex_state = 72}, [3583] = {.lex_state = 72}, [3584] = {.lex_state = 72}, [3585] = {.lex_state = 72}, - [3586] = {.lex_state = 17}, + [3586] = {.lex_state = 72}, [3587] = {.lex_state = 72}, - [3588] = {.lex_state = 17}, - [3589] = {.lex_state = 17}, + [3588] = {.lex_state = 72}, + [3589] = {.lex_state = 72, .external_lex_state = 7}, [3590] = {.lex_state = 17}, [3591] = {.lex_state = 72}, - [3592] = {.lex_state = 72}, + [3592] = {.lex_state = 17}, [3593] = {.lex_state = 72}, - [3594] = {.lex_state = 72}, - [3595] = {.lex_state = 72}, + [3594] = {.lex_state = 20}, + [3595] = {.lex_state = 20}, [3596] = {.lex_state = 72}, - [3597] = {.lex_state = 72}, + [3597] = {.lex_state = 72, .external_lex_state = 7}, [3598] = {.lex_state = 72}, [3599] = {.lex_state = 72}, [3600] = {.lex_state = 72}, [3601] = {.lex_state = 72}, - [3602] = {.lex_state = 17}, - [3603] = {.lex_state = 72}, + [3602] = {.lex_state = 72, .external_lex_state = 7}, + [3603] = {.lex_state = 17}, [3604] = {.lex_state = 72}, [3605] = {.lex_state = 72}, [3606] = {.lex_state = 72}, - [3607] = {.lex_state = 20}, + [3607] = {.lex_state = 17}, [3608] = {.lex_state = 72}, - [3609] = {.lex_state = 17}, - [3610] = {.lex_state = 20}, + [3609] = {.lex_state = 72}, + [3610] = {.lex_state = 72}, [3611] = {.lex_state = 72}, [3612] = {.lex_state = 72}, [3613] = {.lex_state = 72}, [3614] = {.lex_state = 72}, - [3615] = {.lex_state = 72, .external_lex_state = 8}, - [3616] = {.lex_state = 72}, + [3615] = {.lex_state = 72}, + [3616] = {.lex_state = 72, .external_lex_state = 9}, [3617] = {.lex_state = 72}, [3618] = {.lex_state = 72}, [3619] = {.lex_state = 72}, - [3620] = {.lex_state = 72}, - [3621] = {.lex_state = 20}, + [3620] = {.lex_state = 17}, + [3621] = {.lex_state = 72}, [3622] = {.lex_state = 72}, - [3623] = {.lex_state = 17}, + [3623] = {.lex_state = 72}, [3624] = {.lex_state = 72}, - [3625] = {.lex_state = 72, .external_lex_state = 9}, + [3625] = {.lex_state = 72}, [3626] = {.lex_state = 72}, - [3627] = {.lex_state = 72, .external_lex_state = 9}, - [3628] = {.lex_state = 72}, - [3629] = {.lex_state = 72}, - [3630] = {.lex_state = 72}, + [3627] = {.lex_state = 17}, + [3628] = {.lex_state = 17}, + [3629] = {.lex_state = 72, .external_lex_state = 9}, + [3630] = {.lex_state = 17}, [3631] = {.lex_state = 72}, - [3632] = {.lex_state = 72}, - [3633] = {.lex_state = 72}, - [3634] = {.lex_state = 72}, + [3632] = {.lex_state = 8}, + [3633] = {.lex_state = 17}, + [3634] = {.lex_state = 17}, [3635] = {.lex_state = 72}, [3636] = {.lex_state = 72}, - [3637] = {.lex_state = 72, .external_lex_state = 7}, - [3638] = {.lex_state = 72}, - [3639] = {.lex_state = 23}, - [3640] = {.lex_state = 17}, + [3637] = {.lex_state = 20}, + [3638] = {.lex_state = 17}, + [3639] = {.lex_state = 72}, + [3640] = {.lex_state = 72}, [3641] = {.lex_state = 20}, - [3642] = {.lex_state = 8}, + [3642] = {.lex_state = 72}, [3643] = {.lex_state = 72}, - [3644] = {.lex_state = 17}, - [3645] = {.lex_state = 72}, + [3644] = {.lex_state = 72}, + [3645] = {.lex_state = 17}, [3646] = {.lex_state = 72}, [3647] = {.lex_state = 72}, [3648] = {.lex_state = 72}, [3649] = {.lex_state = 72}, - [3650] = {.lex_state = 72}, - [3651] = {.lex_state = 167}, - [3652] = {.lex_state = 17}, + [3650] = {.lex_state = 17}, + [3651] = {.lex_state = 72}, + [3652] = {.lex_state = 72}, [3653] = {.lex_state = 72}, - [3654] = {.lex_state = 72}, - [3655] = {.lex_state = 17}, - [3656] = {.lex_state = 72}, + [3654] = {.lex_state = 17}, + [3655] = {.lex_state = 167}, + [3656] = {.lex_state = 72, .external_lex_state = 9}, [3657] = {.lex_state = 72}, [3658] = {.lex_state = 20}, [3659] = {.lex_state = 72}, [3660] = {.lex_state = 72}, - [3661] = {.lex_state = 17}, + [3661] = {.lex_state = 72}, [3662] = {.lex_state = 72}, [3663] = {.lex_state = 72}, - [3664] = {.lex_state = 72}, - [3665] = {.lex_state = 72, .external_lex_state = 9}, - [3666] = {.lex_state = 20}, + [3664] = {.lex_state = 17}, + [3665] = {.lex_state = 73}, + [3666] = {.lex_state = 72}, [3667] = {.lex_state = 72}, [3668] = {.lex_state = 72}, - [3669] = {.lex_state = 72}, + [3669] = {.lex_state = 72, .external_lex_state = 8}, [3670] = {.lex_state = 72}, - [3671] = {.lex_state = 17}, + [3671] = {.lex_state = 72}, [3672] = {.lex_state = 72}, - [3673] = {.lex_state = 17}, - [3674] = {.lex_state = 20}, - [3675] = {.lex_state = 72}, - [3676] = {.lex_state = 72}, - [3677] = {.lex_state = 17}, - [3678] = {.lex_state = 17}, + [3673] = {.lex_state = 72}, + [3674] = {.lex_state = 17}, + [3675] = {.lex_state = 20}, + [3676] = {.lex_state = 72, .external_lex_state = 9}, + [3677] = {.lex_state = 72}, + [3678] = {.lex_state = 72, .external_lex_state = 9}, [3679] = {.lex_state = 72}, [3680] = {.lex_state = 72}, - [3681] = {.lex_state = 72}, - [3682] = {.lex_state = 17}, - [3683] = {.lex_state = 17}, + [3681] = {.lex_state = 17}, + [3682] = {.lex_state = 72}, + [3683] = {.lex_state = 72, .external_lex_state = 9}, [3684] = {.lex_state = 72}, [3685] = {.lex_state = 72}, - [3686] = {.lex_state = 72, .external_lex_state = 9}, + [3686] = {.lex_state = 17}, [3687] = {.lex_state = 72}, [3688] = {.lex_state = 72}, [3689] = {.lex_state = 72}, - [3690] = {.lex_state = 72, .external_lex_state = 9}, + [3690] = {.lex_state = 72}, [3691] = {.lex_state = 72}, [3692] = {.lex_state = 72}, - [3693] = {.lex_state = 72, .external_lex_state = 9}, + [3693] = {.lex_state = 72}, [3694] = {.lex_state = 72}, [3695] = {.lex_state = 72}, [3696] = {.lex_state = 72}, - [3697] = {.lex_state = 72}, - [3698] = {.lex_state = 72}, + [3697] = {.lex_state = 17}, + [3698] = {.lex_state = 20}, [3699] = {.lex_state = 72}, - [3700] = {.lex_state = 72}, - [3701] = {.lex_state = 72}, + [3700] = {.lex_state = 17}, + [3701] = {.lex_state = 20}, [3702] = {.lex_state = 72}, - [3703] = {.lex_state = 72}, - [3704] = {.lex_state = 72}, - [3705] = {.lex_state = 72}, - [3706] = {.lex_state = 72}, - [3707] = {.lex_state = 72}, - [3708] = {.lex_state = 17}, - [3709] = {.lex_state = 72}, - [3710] = {.lex_state = 72}, - [3711] = {.lex_state = 20}, + [3703] = {.lex_state = 17}, + [3704] = {.lex_state = 17}, + [3705] = {.lex_state = 20}, + [3706] = {.lex_state = 17}, + [3707] = {.lex_state = 17}, + [3708] = {.lex_state = 72}, + [3709] = {.lex_state = 20}, + [3710] = {.lex_state = 20}, + [3711] = {.lex_state = 72}, [3712] = {.lex_state = 72}, [3713] = {.lex_state = 72}, [3714] = {.lex_state = 72}, - [3715] = {.lex_state = 72, .external_lex_state = 8}, - [3716] = {.lex_state = 72, .external_lex_state = 8}, + [3715] = {.lex_state = 20}, + [3716] = {.lex_state = 72}, [3717] = {.lex_state = 17}, - [3718] = {.lex_state = 72}, - [3719] = {.lex_state = 20}, - [3720] = {.lex_state = 20}, - [3721] = {.lex_state = 17}, - [3722] = {.lex_state = 72}, + [3718] = {.lex_state = 17}, + [3719] = {.lex_state = 72}, + [3720] = {.lex_state = 72}, + [3721] = {.lex_state = 72}, + [3722] = {.lex_state = 17}, [3723] = {.lex_state = 72}, - [3724] = {.lex_state = 72, .external_lex_state = 7}, - [3725] = {.lex_state = 20}, - [3726] = {.lex_state = 17}, + [3724] = {.lex_state = 72}, + [3725] = {.lex_state = 72}, + [3726] = {.lex_state = 72}, [3727] = {.lex_state = 72}, - [3728] = {.lex_state = 17}, - [3729] = {.lex_state = 17}, - [3730] = {.lex_state = 17}, + [3728] = {.lex_state = 72}, + [3729] = {.lex_state = 20}, + [3730] = {.lex_state = 72}, [3731] = {.lex_state = 72}, - [3732] = {.lex_state = 17}, + [3732] = {.lex_state = 72}, [3733] = {.lex_state = 20}, - [3734] = {.lex_state = 17}, + [3734] = {.lex_state = 72}, [3735] = {.lex_state = 72}, [3736] = {.lex_state = 72}, - [3737] = {.lex_state = 17}, - [3738] = {.lex_state = 72}, - [3739] = {.lex_state = 20}, + [3737] = {.lex_state = 72}, + [3738] = {.lex_state = 17}, + [3739] = {.lex_state = 72}, [3740] = {.lex_state = 72}, [3741] = {.lex_state = 72}, - [3742] = {.lex_state = 72}, - [3743] = {.lex_state = 20}, - [3744] = {.lex_state = 20}, + [3742] = {.lex_state = 20}, + [3743] = {.lex_state = 17}, + [3744] = {.lex_state = 17}, [3745] = {.lex_state = 20}, - [3746] = {.lex_state = 72}, - [3747] = {.lex_state = 72}, + [3746] = {.lex_state = 73}, + [3747] = {.lex_state = 17}, [3748] = {.lex_state = 72}, [3749] = {.lex_state = 72}, [3750] = {.lex_state = 72}, - [3751] = {.lex_state = 72}, - [3752] = {.lex_state = 20}, - [3753] = {.lex_state = 72}, - [3754] = {.lex_state = 17}, + [3751] = {.lex_state = 8}, + [3752] = {.lex_state = 72, .external_lex_state = 8}, + [3753] = {.lex_state = 17}, + [3754] = {.lex_state = 72}, [3755] = {.lex_state = 72}, [3756] = {.lex_state = 72}, - [3757] = {.lex_state = 17}, - [3758] = {.lex_state = 72}, + [3757] = {.lex_state = 72, .external_lex_state = 8}, + [3758] = {.lex_state = 20}, [3759] = {.lex_state = 72}, - [3760] = {.lex_state = 8}, + [3760] = {.lex_state = 72}, [3761] = {.lex_state = 20}, [3762] = {.lex_state = 72}, - [3763] = {.lex_state = 73}, - [3764] = {.lex_state = 72}, - [3765] = {.lex_state = 17}, - [3766] = {.lex_state = 8}, - [3767] = {.lex_state = 72}, + [3763] = {.lex_state = 72}, + [3764] = {.lex_state = 20}, + [3765] = {.lex_state = 72}, + [3766] = {.lex_state = 72}, + [3767] = {.lex_state = 20}, [3768] = {.lex_state = 20}, - [3769] = {.lex_state = 72}, + [3769] = {.lex_state = 73}, [3770] = {.lex_state = 72}, [3771] = {.lex_state = 20}, - [3772] = {.lex_state = 72}, - [3773] = {.lex_state = 72}, - [3774] = {.lex_state = 20}, + [3772] = {.lex_state = 20}, + [3773] = {.lex_state = 20}, + [3774] = {.lex_state = 72}, [3775] = {.lex_state = 17}, - [3776] = {.lex_state = 72}, - [3777] = {.lex_state = 20}, - [3778] = {.lex_state = 20}, - [3779] = {.lex_state = 72}, + [3776] = {.lex_state = 20}, + [3777] = {.lex_state = 72}, + [3778] = {.lex_state = 72}, + [3779] = {.lex_state = 17}, [3780] = {.lex_state = 72}, - [3781] = {.lex_state = 20}, - [3782] = {.lex_state = 20}, - [3783] = {.lex_state = 20}, + [3781] = {.lex_state = 72}, + [3782] = {.lex_state = 17}, + [3783] = {.lex_state = 72}, [3784] = {.lex_state = 72}, [3785] = {.lex_state = 17}, [3786] = {.lex_state = 17}, [3787] = {.lex_state = 72}, - [3788] = {.lex_state = 17}, + [3788] = {.lex_state = 72}, [3789] = {.lex_state = 72}, - [3790] = {.lex_state = 73}, + [3790] = {.lex_state = 17}, [3791] = {.lex_state = 72}, [3792] = {.lex_state = 17}, - [3793] = {.lex_state = 72}, + [3793] = {.lex_state = 17}, [3794] = {.lex_state = 72}, [3795] = {.lex_state = 17}, - [3796] = {.lex_state = 17}, - [3797] = {.lex_state = 72}, + [3796] = {.lex_state = 72}, + [3797] = {.lex_state = 17}, [3798] = {.lex_state = 72}, - [3799] = {.lex_state = 72}, - [3800] = {.lex_state = 72}, - [3801] = {.lex_state = 72}, - [3802] = {.lex_state = 72}, - [3803] = {.lex_state = 17}, - [3804] = {.lex_state = 72}, + [3799] = {.lex_state = 17}, + [3800] = {.lex_state = 73}, + [3801] = {.lex_state = 17}, + [3802] = {.lex_state = 17}, + [3803] = {.lex_state = 72}, + [3804] = {.lex_state = 17}, [3805] = {.lex_state = 72}, [3806] = {.lex_state = 17}, [3807] = {.lex_state = 17}, [3808] = {.lex_state = 17}, - [3809] = {.lex_state = 17}, - [3810] = {.lex_state = 17}, - [3811] = {.lex_state = 17}, - [3812] = {.lex_state = 72}, - [3813] = {.lex_state = 72}, - [3814] = {.lex_state = 20}, - [3815] = {.lex_state = 17}, - [3816] = {.lex_state = 72}, - [3817] = {.lex_state = 72}, - [3818] = {(TSStateId)(-1),}, - [3819] = {(TSStateId)(-1),}, - [3820] = {(TSStateId)(-1),}, - [3821] = {(TSStateId)(-1),}, - [3822] = {(TSStateId)(-1),}, - [3823] = {(TSStateId)(-1),}, - [3824] = {(TSStateId)(-1),}, + [3809] = {.lex_state = 72}, + [3810] = {(TSStateId)(-1)}, + [3811] = {(TSStateId)(-1)}, + [3812] = {(TSStateId)(-1)}, + [3813] = {(TSStateId)(-1)}, + [3814] = {(TSStateId)(-1)}, + [3815] = {(TSStateId)(-1)}, + [3816] = {(TSStateId)(-1)}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { - [STATE(0)] = { + [0] = { [sym_line_comment] = STATE(0), [sym_block_comment] = STATE(0), [ts_builtin_sym_end] = ACTIONS(1), @@ -14597,84 +14444,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__line_doc_content] = ACTIONS(1), [sym__error_sentinel] = ACTIONS(1), }, - [STATE(1)] = { - [sym_source_file] = STATE(3656), - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1972), - [sym_macro_invocation] = STATE(410), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), + [1] = { + [sym_source_file] = STATE(3660), + [sym__statement] = STATE(716), + [sym_empty_statement] = STATE(717), + [sym_expression_statement] = STATE(717), + [sym_macro_definition] = STATE(717), + [sym_attribute_item] = STATE(717), + [sym_inner_attribute_item] = STATE(717), + [sym_mod_item] = STATE(717), + [sym_foreign_mod_item] = STATE(717), + [sym_struct_item] = STATE(717), + [sym_union_item] = STATE(717), + [sym_enum_item] = STATE(717), + [sym_extern_crate_declaration] = STATE(717), + [sym_const_item] = STATE(717), + [sym_static_item] = STATE(717), + [sym_type_item] = STATE(717), + [sym_function_item] = STATE(717), + [sym_function_signature_item] = STATE(717), + [sym_function_modifiers] = STATE(3519), + [sym_impl_item] = STATE(717), + [sym_trait_item] = STATE(717), + [sym_associated_type] = STATE(717), + [sym_let_declaration] = STATE(717), + [sym_use_declaration] = STATE(717), + [sym_extern_modifier] = STATE(2236), + [sym_visibility_modifier] = STATE(2021), + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1961), + [sym_macro_invocation] = STATE(406), + [sym_scoped_identifier] = STATE(1596), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), [sym_if_expression] = STATE(419), [sym_match_expression] = STATE(419), [sym_while_expression] = STATE(419), [sym_loop_expression] = STATE(419), [sym_for_expression] = STATE(419), [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3675), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), [sym_unsafe_block] = STATE(419), [sym_async_block] = STATE(419), [sym_gen_block] = STATE(419), [sym_try_block] = STATE(419), [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), [sym_line_comment] = STATE(1), [sym_block_comment] = STATE(1), [aux_sym_source_file_repeat1] = STATE(5), - [aux_sym_function_modifiers_repeat1] = STATE(2336), + [aux_sym_function_modifiers_repeat1] = STATE(2329), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), @@ -14754,83 +14601,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(2)] = { - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1769), - [sym_macro_invocation] = STATE(410), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), + [2] = { + [sym__statement] = STATE(716), + [sym_empty_statement] = STATE(717), + [sym_expression_statement] = STATE(717), + [sym_macro_definition] = STATE(717), + [sym_attribute_item] = STATE(717), + [sym_inner_attribute_item] = STATE(717), + [sym_mod_item] = STATE(717), + [sym_foreign_mod_item] = STATE(717), + [sym_struct_item] = STATE(717), + [sym_union_item] = STATE(717), + [sym_enum_item] = STATE(717), + [sym_extern_crate_declaration] = STATE(717), + [sym_const_item] = STATE(717), + [sym_static_item] = STATE(717), + [sym_type_item] = STATE(717), + [sym_function_item] = STATE(717), + [sym_function_signature_item] = STATE(717), + [sym_function_modifiers] = STATE(3519), + [sym_impl_item] = STATE(717), + [sym_trait_item] = STATE(717), + [sym_associated_type] = STATE(717), + [sym_let_declaration] = STATE(717), + [sym_use_declaration] = STATE(717), + [sym_extern_modifier] = STATE(2236), + [sym_visibility_modifier] = STATE(2021), + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1772), + [sym_macro_invocation] = STATE(406), + [sym_scoped_identifier] = STATE(1596), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), [sym_if_expression] = STATE(419), [sym_match_expression] = STATE(419), [sym_while_expression] = STATE(419), [sym_loop_expression] = STATE(419), [sym_for_expression] = STATE(419), [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3675), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), [sym_unsafe_block] = STATE(419), [sym_async_block] = STATE(419), [sym_gen_block] = STATE(419), [sym_try_block] = STATE(419), [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), [sym_line_comment] = STATE(2), [sym_block_comment] = STATE(2), [aux_sym_source_file_repeat1] = STATE(34), - [aux_sym_function_modifiers_repeat1] = STATE(2336), + [aux_sym_function_modifiers_repeat1] = STATE(2329), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -14909,83 +14756,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(3)] = { - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1881), - [sym_macro_invocation] = STATE(410), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), + [3] = { + [sym__statement] = STATE(716), + [sym_empty_statement] = STATE(717), + [sym_expression_statement] = STATE(717), + [sym_macro_definition] = STATE(717), + [sym_attribute_item] = STATE(717), + [sym_inner_attribute_item] = STATE(717), + [sym_mod_item] = STATE(717), + [sym_foreign_mod_item] = STATE(717), + [sym_struct_item] = STATE(717), + [sym_union_item] = STATE(717), + [sym_enum_item] = STATE(717), + [sym_extern_crate_declaration] = STATE(717), + [sym_const_item] = STATE(717), + [sym_static_item] = STATE(717), + [sym_type_item] = STATE(717), + [sym_function_item] = STATE(717), + [sym_function_signature_item] = STATE(717), + [sym_function_modifiers] = STATE(3519), + [sym_impl_item] = STATE(717), + [sym_trait_item] = STATE(717), + [sym_associated_type] = STATE(717), + [sym_let_declaration] = STATE(717), + [sym_use_declaration] = STATE(717), + [sym_extern_modifier] = STATE(2236), + [sym_visibility_modifier] = STATE(2021), + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1876), + [sym_macro_invocation] = STATE(406), + [sym_scoped_identifier] = STATE(1596), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), [sym_if_expression] = STATE(419), [sym_match_expression] = STATE(419), [sym_while_expression] = STATE(419), [sym_loop_expression] = STATE(419), [sym_for_expression] = STATE(419), [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3675), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), [sym_unsafe_block] = STATE(419), [sym_async_block] = STATE(419), [sym_gen_block] = STATE(419), [sym_try_block] = STATE(419), [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), [sym_line_comment] = STATE(3), [sym_block_comment] = STATE(3), [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2336), + [aux_sym_function_modifiers_repeat1] = STATE(2329), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -15064,83 +14911,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(4)] = { - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1972), - [sym_macro_invocation] = STATE(410), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), + [4] = { + [sym__statement] = STATE(716), + [sym_empty_statement] = STATE(717), + [sym_expression_statement] = STATE(717), + [sym_macro_definition] = STATE(717), + [sym_attribute_item] = STATE(717), + [sym_inner_attribute_item] = STATE(717), + [sym_mod_item] = STATE(717), + [sym_foreign_mod_item] = STATE(717), + [sym_struct_item] = STATE(717), + [sym_union_item] = STATE(717), + [sym_enum_item] = STATE(717), + [sym_extern_crate_declaration] = STATE(717), + [sym_const_item] = STATE(717), + [sym_static_item] = STATE(717), + [sym_type_item] = STATE(717), + [sym_function_item] = STATE(717), + [sym_function_signature_item] = STATE(717), + [sym_function_modifiers] = STATE(3519), + [sym_impl_item] = STATE(717), + [sym_trait_item] = STATE(717), + [sym_associated_type] = STATE(717), + [sym_let_declaration] = STATE(717), + [sym_use_declaration] = STATE(717), + [sym_extern_modifier] = STATE(2236), + [sym_visibility_modifier] = STATE(2021), + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1961), + [sym_macro_invocation] = STATE(406), + [sym_scoped_identifier] = STATE(1596), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), [sym_if_expression] = STATE(419), [sym_match_expression] = STATE(419), [sym_while_expression] = STATE(419), [sym_loop_expression] = STATE(419), [sym_for_expression] = STATE(419), [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3675), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), [sym_unsafe_block] = STATE(419), [sym_async_block] = STATE(419), [sym_gen_block] = STATE(419), [sym_try_block] = STATE(419), [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), [sym_line_comment] = STATE(4), [sym_block_comment] = STATE(4), [aux_sym_source_file_repeat1] = STATE(6), - [aux_sym_function_modifiers_repeat1] = STATE(2336), + [aux_sym_function_modifiers_repeat1] = STATE(2329), [ts_builtin_sym_end] = ACTIONS(127), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), @@ -15219,83 +15066,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(5)] = { - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1972), - [sym_macro_invocation] = STATE(410), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), + [5] = { + [sym__statement] = STATE(716), + [sym_empty_statement] = STATE(717), + [sym_expression_statement] = STATE(717), + [sym_macro_definition] = STATE(717), + [sym_attribute_item] = STATE(717), + [sym_inner_attribute_item] = STATE(717), + [sym_mod_item] = STATE(717), + [sym_foreign_mod_item] = STATE(717), + [sym_struct_item] = STATE(717), + [sym_union_item] = STATE(717), + [sym_enum_item] = STATE(717), + [sym_extern_crate_declaration] = STATE(717), + [sym_const_item] = STATE(717), + [sym_static_item] = STATE(717), + [sym_type_item] = STATE(717), + [sym_function_item] = STATE(717), + [sym_function_signature_item] = STATE(717), + [sym_function_modifiers] = STATE(3519), + [sym_impl_item] = STATE(717), + [sym_trait_item] = STATE(717), + [sym_associated_type] = STATE(717), + [sym_let_declaration] = STATE(717), + [sym_use_declaration] = STATE(717), + [sym_extern_modifier] = STATE(2236), + [sym_visibility_modifier] = STATE(2021), + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1961), + [sym_macro_invocation] = STATE(406), + [sym_scoped_identifier] = STATE(1596), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), [sym_if_expression] = STATE(419), [sym_match_expression] = STATE(419), [sym_while_expression] = STATE(419), [sym_loop_expression] = STATE(419), [sym_for_expression] = STATE(419), [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3675), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), [sym_unsafe_block] = STATE(419), [sym_async_block] = STATE(419), [sym_gen_block] = STATE(419), [sym_try_block] = STATE(419), [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), [sym_line_comment] = STATE(5), [sym_block_comment] = STATE(5), [aux_sym_source_file_repeat1] = STATE(7), - [aux_sym_function_modifiers_repeat1] = STATE(2336), + [aux_sym_function_modifiers_repeat1] = STATE(2329), [ts_builtin_sym_end] = ACTIONS(127), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), @@ -15374,83 +15221,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(6)] = { - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1972), - [sym_macro_invocation] = STATE(410), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), + [6] = { + [sym__statement] = STATE(716), + [sym_empty_statement] = STATE(717), + [sym_expression_statement] = STATE(717), + [sym_macro_definition] = STATE(717), + [sym_attribute_item] = STATE(717), + [sym_inner_attribute_item] = STATE(717), + [sym_mod_item] = STATE(717), + [sym_foreign_mod_item] = STATE(717), + [sym_struct_item] = STATE(717), + [sym_union_item] = STATE(717), + [sym_enum_item] = STATE(717), + [sym_extern_crate_declaration] = STATE(717), + [sym_const_item] = STATE(717), + [sym_static_item] = STATE(717), + [sym_type_item] = STATE(717), + [sym_function_item] = STATE(717), + [sym_function_signature_item] = STATE(717), + [sym_function_modifiers] = STATE(3519), + [sym_impl_item] = STATE(717), + [sym_trait_item] = STATE(717), + [sym_associated_type] = STATE(717), + [sym_let_declaration] = STATE(717), + [sym_use_declaration] = STATE(717), + [sym_extern_modifier] = STATE(2236), + [sym_visibility_modifier] = STATE(2021), + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1961), + [sym_macro_invocation] = STATE(406), + [sym_scoped_identifier] = STATE(1596), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), [sym_if_expression] = STATE(419), [sym_match_expression] = STATE(419), [sym_while_expression] = STATE(419), [sym_loop_expression] = STATE(419), [sym_for_expression] = STATE(419), [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3675), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), [sym_unsafe_block] = STATE(419), [sym_async_block] = STATE(419), [sym_gen_block] = STATE(419), [sym_try_block] = STATE(419), [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), [sym_line_comment] = STATE(6), [sym_block_comment] = STATE(6), [aux_sym_source_file_repeat1] = STATE(7), - [aux_sym_function_modifiers_repeat1] = STATE(2336), + [aux_sym_function_modifiers_repeat1] = STATE(2329), [ts_builtin_sym_end] = ACTIONS(129), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), @@ -15529,83 +15376,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(7)] = { - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1972), - [sym_macro_invocation] = STATE(410), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), + [7] = { + [sym__statement] = STATE(716), + [sym_empty_statement] = STATE(717), + [sym_expression_statement] = STATE(717), + [sym_macro_definition] = STATE(717), + [sym_attribute_item] = STATE(717), + [sym_inner_attribute_item] = STATE(717), + [sym_mod_item] = STATE(717), + [sym_foreign_mod_item] = STATE(717), + [sym_struct_item] = STATE(717), + [sym_union_item] = STATE(717), + [sym_enum_item] = STATE(717), + [sym_extern_crate_declaration] = STATE(717), + [sym_const_item] = STATE(717), + [sym_static_item] = STATE(717), + [sym_type_item] = STATE(717), + [sym_function_item] = STATE(717), + [sym_function_signature_item] = STATE(717), + [sym_function_modifiers] = STATE(3519), + [sym_impl_item] = STATE(717), + [sym_trait_item] = STATE(717), + [sym_associated_type] = STATE(717), + [sym_let_declaration] = STATE(717), + [sym_use_declaration] = STATE(717), + [sym_extern_modifier] = STATE(2236), + [sym_visibility_modifier] = STATE(2021), + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1961), + [sym_macro_invocation] = STATE(406), + [sym_scoped_identifier] = STATE(1596), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), [sym_if_expression] = STATE(419), [sym_match_expression] = STATE(419), [sym_while_expression] = STATE(419), [sym_loop_expression] = STATE(419), [sym_for_expression] = STATE(419), [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3675), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), [sym_unsafe_block] = STATE(419), [sym_async_block] = STATE(419), [sym_gen_block] = STATE(419), [sym_try_block] = STATE(419), [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), [sym_line_comment] = STATE(7), [sym_block_comment] = STATE(7), [aux_sym_source_file_repeat1] = STATE(7), - [aux_sym_function_modifiers_repeat1] = STATE(2336), + [aux_sym_function_modifiers_repeat1] = STATE(2329), [ts_builtin_sym_end] = ACTIONS(131), [sym_identifier] = ACTIONS(133), [anon_sym_SEMI] = ACTIONS(136), @@ -15684,83 +15531,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(289), [sym_float_literal] = ACTIONS(268), }, - [STATE(8)] = { - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1788), - [sym_macro_invocation] = STATE(410), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), + [8] = { + [sym__statement] = STATE(716), + [sym_empty_statement] = STATE(717), + [sym_expression_statement] = STATE(717), + [sym_macro_definition] = STATE(717), + [sym_attribute_item] = STATE(717), + [sym_inner_attribute_item] = STATE(717), + [sym_mod_item] = STATE(717), + [sym_foreign_mod_item] = STATE(717), + [sym_struct_item] = STATE(717), + [sym_union_item] = STATE(717), + [sym_enum_item] = STATE(717), + [sym_extern_crate_declaration] = STATE(717), + [sym_const_item] = STATE(717), + [sym_static_item] = STATE(717), + [sym_type_item] = STATE(717), + [sym_function_item] = STATE(717), + [sym_function_signature_item] = STATE(717), + [sym_function_modifiers] = STATE(3519), + [sym_impl_item] = STATE(717), + [sym_trait_item] = STATE(717), + [sym_associated_type] = STATE(717), + [sym_let_declaration] = STATE(717), + [sym_use_declaration] = STATE(717), + [sym_extern_modifier] = STATE(2236), + [sym_visibility_modifier] = STATE(2021), + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1792), + [sym_macro_invocation] = STATE(406), + [sym_scoped_identifier] = STATE(1596), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), [sym_if_expression] = STATE(419), [sym_match_expression] = STATE(419), [sym_while_expression] = STATE(419), [sym_loop_expression] = STATE(419), [sym_for_expression] = STATE(419), [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3675), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), [sym_unsafe_block] = STATE(419), [sym_async_block] = STATE(419), [sym_gen_block] = STATE(419), [sym_try_block] = STATE(419), [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), [sym_line_comment] = STATE(8), [sym_block_comment] = STATE(8), [aux_sym_source_file_repeat1] = STATE(9), - [aux_sym_function_modifiers_repeat1] = STATE(2336), + [aux_sym_function_modifiers_repeat1] = STATE(2329), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -15839,83 +15686,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(9)] = { - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1887), - [sym_macro_invocation] = STATE(410), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), + [9] = { + [sym__statement] = STATE(716), + [sym_empty_statement] = STATE(717), + [sym_expression_statement] = STATE(717), + [sym_macro_definition] = STATE(717), + [sym_attribute_item] = STATE(717), + [sym_inner_attribute_item] = STATE(717), + [sym_mod_item] = STATE(717), + [sym_foreign_mod_item] = STATE(717), + [sym_struct_item] = STATE(717), + [sym_union_item] = STATE(717), + [sym_enum_item] = STATE(717), + [sym_extern_crate_declaration] = STATE(717), + [sym_const_item] = STATE(717), + [sym_static_item] = STATE(717), + [sym_type_item] = STATE(717), + [sym_function_item] = STATE(717), + [sym_function_signature_item] = STATE(717), + [sym_function_modifiers] = STATE(3519), + [sym_impl_item] = STATE(717), + [sym_trait_item] = STATE(717), + [sym_associated_type] = STATE(717), + [sym_let_declaration] = STATE(717), + [sym_use_declaration] = STATE(717), + [sym_extern_modifier] = STATE(2236), + [sym_visibility_modifier] = STATE(2021), + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1900), + [sym_macro_invocation] = STATE(406), + [sym_scoped_identifier] = STATE(1596), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), [sym_if_expression] = STATE(419), [sym_match_expression] = STATE(419), [sym_while_expression] = STATE(419), [sym_loop_expression] = STATE(419), [sym_for_expression] = STATE(419), [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3675), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), [sym_unsafe_block] = STATE(419), [sym_async_block] = STATE(419), [sym_gen_block] = STATE(419), [sym_try_block] = STATE(419), [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), [sym_line_comment] = STATE(9), [sym_block_comment] = STATE(9), [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2336), + [aux_sym_function_modifiers_repeat1] = STATE(2329), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -15994,83 +15841,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(10)] = { - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1793), - [sym_macro_invocation] = STATE(410), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), + [10] = { + [sym__statement] = STATE(716), + [sym_empty_statement] = STATE(717), + [sym_expression_statement] = STATE(717), + [sym_macro_definition] = STATE(717), + [sym_attribute_item] = STATE(717), + [sym_inner_attribute_item] = STATE(717), + [sym_mod_item] = STATE(717), + [sym_foreign_mod_item] = STATE(717), + [sym_struct_item] = STATE(717), + [sym_union_item] = STATE(717), + [sym_enum_item] = STATE(717), + [sym_extern_crate_declaration] = STATE(717), + [sym_const_item] = STATE(717), + [sym_static_item] = STATE(717), + [sym_type_item] = STATE(717), + [sym_function_item] = STATE(717), + [sym_function_signature_item] = STATE(717), + [sym_function_modifiers] = STATE(3519), + [sym_impl_item] = STATE(717), + [sym_trait_item] = STATE(717), + [sym_associated_type] = STATE(717), + [sym_let_declaration] = STATE(717), + [sym_use_declaration] = STATE(717), + [sym_extern_modifier] = STATE(2236), + [sym_visibility_modifier] = STATE(2021), + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1790), + [sym_macro_invocation] = STATE(406), + [sym_scoped_identifier] = STATE(1596), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), [sym_if_expression] = STATE(419), [sym_match_expression] = STATE(419), [sym_while_expression] = STATE(419), [sym_loop_expression] = STATE(419), [sym_for_expression] = STATE(419), [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3675), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), [sym_unsafe_block] = STATE(419), [sym_async_block] = STATE(419), [sym_gen_block] = STATE(419), [sym_try_block] = STATE(419), [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), [sym_line_comment] = STATE(10), [sym_block_comment] = STATE(10), [aux_sym_source_file_repeat1] = STATE(11), - [aux_sym_function_modifiers_repeat1] = STATE(2336), + [aux_sym_function_modifiers_repeat1] = STATE(2329), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -16149,83 +15996,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(11)] = { - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), + [11] = { + [sym__statement] = STATE(716), + [sym_empty_statement] = STATE(717), + [sym_expression_statement] = STATE(717), + [sym_macro_definition] = STATE(717), + [sym_attribute_item] = STATE(717), + [sym_inner_attribute_item] = STATE(717), + [sym_mod_item] = STATE(717), + [sym_foreign_mod_item] = STATE(717), + [sym_struct_item] = STATE(717), + [sym_union_item] = STATE(717), + [sym_enum_item] = STATE(717), + [sym_extern_crate_declaration] = STATE(717), + [sym_const_item] = STATE(717), + [sym_static_item] = STATE(717), + [sym_type_item] = STATE(717), + [sym_function_item] = STATE(717), + [sym_function_signature_item] = STATE(717), + [sym_function_modifiers] = STATE(3519), + [sym_impl_item] = STATE(717), + [sym_trait_item] = STATE(717), + [sym_associated_type] = STATE(717), + [sym_let_declaration] = STATE(717), + [sym_use_declaration] = STATE(717), + [sym_extern_modifier] = STATE(2236), + [sym_visibility_modifier] = STATE(2021), + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), [sym__expression] = STATE(1799), - [sym_macro_invocation] = STATE(410), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), + [sym_macro_invocation] = STATE(406), + [sym_scoped_identifier] = STATE(1596), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), [sym_if_expression] = STATE(419), [sym_match_expression] = STATE(419), [sym_while_expression] = STATE(419), [sym_loop_expression] = STATE(419), [sym_for_expression] = STATE(419), [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3675), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), [sym_unsafe_block] = STATE(419), [sym_async_block] = STATE(419), [sym_gen_block] = STATE(419), [sym_try_block] = STATE(419), [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), [sym_line_comment] = STATE(11), [sym_block_comment] = STATE(11), [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2336), + [aux_sym_function_modifiers_repeat1] = STATE(2329), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -16304,83 +16151,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(12)] = { - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1972), - [sym_macro_invocation] = STATE(428), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), + [12] = { + [sym__statement] = STATE(716), + [sym_empty_statement] = STATE(717), + [sym_expression_statement] = STATE(717), + [sym_macro_definition] = STATE(717), + [sym_attribute_item] = STATE(717), + [sym_inner_attribute_item] = STATE(717), + [sym_mod_item] = STATE(717), + [sym_foreign_mod_item] = STATE(717), + [sym_struct_item] = STATE(717), + [sym_union_item] = STATE(717), + [sym_enum_item] = STATE(717), + [sym_extern_crate_declaration] = STATE(717), + [sym_const_item] = STATE(717), + [sym_static_item] = STATE(717), + [sym_type_item] = STATE(717), + [sym_function_item] = STATE(717), + [sym_function_signature_item] = STATE(717), + [sym_function_modifiers] = STATE(3519), + [sym_impl_item] = STATE(717), + [sym_trait_item] = STATE(717), + [sym_associated_type] = STATE(717), + [sym_let_declaration] = STATE(717), + [sym_use_declaration] = STATE(717), + [sym_extern_modifier] = STATE(2236), + [sym_visibility_modifier] = STATE(2021), + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1961), + [sym_macro_invocation] = STATE(420), + [sym_scoped_identifier] = STATE(1596), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), [sym_if_expression] = STATE(419), [sym_match_expression] = STATE(419), [sym_while_expression] = STATE(419), [sym_loop_expression] = STATE(419), [sym_for_expression] = STATE(419), [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3675), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), [sym_unsafe_block] = STATE(419), [sym_async_block] = STATE(419), [sym_gen_block] = STATE(419), [sym_try_block] = STATE(419), [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), [sym_line_comment] = STATE(12), [sym_block_comment] = STATE(12), [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2336), + [aux_sym_function_modifiers_repeat1] = STATE(2329), [sym_identifier] = ACTIONS(133), [anon_sym_SEMI] = ACTIONS(136), [anon_sym_macro_rules_BANG] = ACTIONS(139), @@ -16459,83 +16306,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(289), [sym_float_literal] = ACTIONS(268), }, - [STATE(13)] = { - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1811), - [sym_macro_invocation] = STATE(410), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), + [13] = { + [sym__statement] = STATE(716), + [sym_empty_statement] = STATE(717), + [sym_expression_statement] = STATE(717), + [sym_macro_definition] = STATE(717), + [sym_attribute_item] = STATE(717), + [sym_inner_attribute_item] = STATE(717), + [sym_mod_item] = STATE(717), + [sym_foreign_mod_item] = STATE(717), + [sym_struct_item] = STATE(717), + [sym_union_item] = STATE(717), + [sym_enum_item] = STATE(717), + [sym_extern_crate_declaration] = STATE(717), + [sym_const_item] = STATE(717), + [sym_static_item] = STATE(717), + [sym_type_item] = STATE(717), + [sym_function_item] = STATE(717), + [sym_function_signature_item] = STATE(717), + [sym_function_modifiers] = STATE(3519), + [sym_impl_item] = STATE(717), + [sym_trait_item] = STATE(717), + [sym_associated_type] = STATE(717), + [sym_let_declaration] = STATE(717), + [sym_use_declaration] = STATE(717), + [sym_extern_modifier] = STATE(2236), + [sym_visibility_modifier] = STATE(2021), + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1810), + [sym_macro_invocation] = STATE(406), + [sym_scoped_identifier] = STATE(1596), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), [sym_if_expression] = STATE(419), [sym_match_expression] = STATE(419), [sym_while_expression] = STATE(419), [sym_loop_expression] = STATE(419), [sym_for_expression] = STATE(419), [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3675), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), [sym_unsafe_block] = STATE(419), [sym_async_block] = STATE(419), [sym_gen_block] = STATE(419), [sym_try_block] = STATE(419), [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), [sym_line_comment] = STATE(13), [sym_block_comment] = STATE(13), [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2336), + [aux_sym_function_modifiers_repeat1] = STATE(2329), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -16614,83 +16461,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(14)] = { - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1816), - [sym_macro_invocation] = STATE(410), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), + [14] = { + [sym__statement] = STATE(716), + [sym_empty_statement] = STATE(717), + [sym_expression_statement] = STATE(717), + [sym_macro_definition] = STATE(717), + [sym_attribute_item] = STATE(717), + [sym_inner_attribute_item] = STATE(717), + [sym_mod_item] = STATE(717), + [sym_foreign_mod_item] = STATE(717), + [sym_struct_item] = STATE(717), + [sym_union_item] = STATE(717), + [sym_enum_item] = STATE(717), + [sym_extern_crate_declaration] = STATE(717), + [sym_const_item] = STATE(717), + [sym_static_item] = STATE(717), + [sym_type_item] = STATE(717), + [sym_function_item] = STATE(717), + [sym_function_signature_item] = STATE(717), + [sym_function_modifiers] = STATE(3519), + [sym_impl_item] = STATE(717), + [sym_trait_item] = STATE(717), + [sym_associated_type] = STATE(717), + [sym_let_declaration] = STATE(717), + [sym_use_declaration] = STATE(717), + [sym_extern_modifier] = STATE(2236), + [sym_visibility_modifier] = STATE(2021), + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1815), + [sym_macro_invocation] = STATE(406), + [sym_scoped_identifier] = STATE(1596), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), [sym_if_expression] = STATE(419), [sym_match_expression] = STATE(419), [sym_while_expression] = STATE(419), [sym_loop_expression] = STATE(419), [sym_for_expression] = STATE(419), [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3675), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), [sym_unsafe_block] = STATE(419), [sym_async_block] = STATE(419), [sym_gen_block] = STATE(419), [sym_try_block] = STATE(419), [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), [sym_line_comment] = STATE(14), [sym_block_comment] = STATE(14), [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2336), + [aux_sym_function_modifiers_repeat1] = STATE(2329), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -16769,83 +16616,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(15)] = { - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1826), - [sym_macro_invocation] = STATE(410), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), + [15] = { + [sym__statement] = STATE(716), + [sym_empty_statement] = STATE(717), + [sym_expression_statement] = STATE(717), + [sym_macro_definition] = STATE(717), + [sym_attribute_item] = STATE(717), + [sym_inner_attribute_item] = STATE(717), + [sym_mod_item] = STATE(717), + [sym_foreign_mod_item] = STATE(717), + [sym_struct_item] = STATE(717), + [sym_union_item] = STATE(717), + [sym_enum_item] = STATE(717), + [sym_extern_crate_declaration] = STATE(717), + [sym_const_item] = STATE(717), + [sym_static_item] = STATE(717), + [sym_type_item] = STATE(717), + [sym_function_item] = STATE(717), + [sym_function_signature_item] = STATE(717), + [sym_function_modifiers] = STATE(3519), + [sym_impl_item] = STATE(717), + [sym_trait_item] = STATE(717), + [sym_associated_type] = STATE(717), + [sym_let_declaration] = STATE(717), + [sym_use_declaration] = STATE(717), + [sym_extern_modifier] = STATE(2236), + [sym_visibility_modifier] = STATE(2021), + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1823), + [sym_macro_invocation] = STATE(406), + [sym_scoped_identifier] = STATE(1596), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), [sym_if_expression] = STATE(419), [sym_match_expression] = STATE(419), [sym_while_expression] = STATE(419), [sym_loop_expression] = STATE(419), [sym_for_expression] = STATE(419), [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3675), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), [sym_unsafe_block] = STATE(419), [sym_async_block] = STATE(419), [sym_gen_block] = STATE(419), [sym_try_block] = STATE(419), [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), [sym_line_comment] = STATE(15), [sym_block_comment] = STATE(15), [aux_sym_source_file_repeat1] = STATE(16), - [aux_sym_function_modifiers_repeat1] = STATE(2336), + [aux_sym_function_modifiers_repeat1] = STATE(2329), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -16924,83 +16771,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(16)] = { - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1834), - [sym_macro_invocation] = STATE(410), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), + [16] = { + [sym__statement] = STATE(716), + [sym_empty_statement] = STATE(717), + [sym_expression_statement] = STATE(717), + [sym_macro_definition] = STATE(717), + [sym_attribute_item] = STATE(717), + [sym_inner_attribute_item] = STATE(717), + [sym_mod_item] = STATE(717), + [sym_foreign_mod_item] = STATE(717), + [sym_struct_item] = STATE(717), + [sym_union_item] = STATE(717), + [sym_enum_item] = STATE(717), + [sym_extern_crate_declaration] = STATE(717), + [sym_const_item] = STATE(717), + [sym_static_item] = STATE(717), + [sym_type_item] = STATE(717), + [sym_function_item] = STATE(717), + [sym_function_signature_item] = STATE(717), + [sym_function_modifiers] = STATE(3519), + [sym_impl_item] = STATE(717), + [sym_trait_item] = STATE(717), + [sym_associated_type] = STATE(717), + [sym_let_declaration] = STATE(717), + [sym_use_declaration] = STATE(717), + [sym_extern_modifier] = STATE(2236), + [sym_visibility_modifier] = STATE(2021), + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1830), + [sym_macro_invocation] = STATE(406), + [sym_scoped_identifier] = STATE(1596), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), [sym_if_expression] = STATE(419), [sym_match_expression] = STATE(419), [sym_while_expression] = STATE(419), [sym_loop_expression] = STATE(419), [sym_for_expression] = STATE(419), [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3675), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), [sym_unsafe_block] = STATE(419), [sym_async_block] = STATE(419), [sym_gen_block] = STATE(419), [sym_try_block] = STATE(419), [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), [sym_line_comment] = STATE(16), [sym_block_comment] = STATE(16), [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2336), + [aux_sym_function_modifiers_repeat1] = STATE(2329), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -17079,83 +16926,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(17)] = { - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1841), - [sym_macro_invocation] = STATE(410), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), + [17] = { + [sym__statement] = STATE(716), + [sym_empty_statement] = STATE(717), + [sym_expression_statement] = STATE(717), + [sym_macro_definition] = STATE(717), + [sym_attribute_item] = STATE(717), + [sym_inner_attribute_item] = STATE(717), + [sym_mod_item] = STATE(717), + [sym_foreign_mod_item] = STATE(717), + [sym_struct_item] = STATE(717), + [sym_union_item] = STATE(717), + [sym_enum_item] = STATE(717), + [sym_extern_crate_declaration] = STATE(717), + [sym_const_item] = STATE(717), + [sym_static_item] = STATE(717), + [sym_type_item] = STATE(717), + [sym_function_item] = STATE(717), + [sym_function_signature_item] = STATE(717), + [sym_function_modifiers] = STATE(3519), + [sym_impl_item] = STATE(717), + [sym_trait_item] = STATE(717), + [sym_associated_type] = STATE(717), + [sym_let_declaration] = STATE(717), + [sym_use_declaration] = STATE(717), + [sym_extern_modifier] = STATE(2236), + [sym_visibility_modifier] = STATE(2021), + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1834), + [sym_macro_invocation] = STATE(406), + [sym_scoped_identifier] = STATE(1596), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), [sym_if_expression] = STATE(419), [sym_match_expression] = STATE(419), [sym_while_expression] = STATE(419), [sym_loop_expression] = STATE(419), [sym_for_expression] = STATE(419), [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3675), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), [sym_unsafe_block] = STATE(419), [sym_async_block] = STATE(419), [sym_gen_block] = STATE(419), [sym_try_block] = STATE(419), [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), [sym_line_comment] = STATE(17), [sym_block_comment] = STATE(17), [aux_sym_source_file_repeat1] = STATE(18), - [aux_sym_function_modifiers_repeat1] = STATE(2336), + [aux_sym_function_modifiers_repeat1] = STATE(2329), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -17234,83 +17081,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(18)] = { - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1845), - [sym_macro_invocation] = STATE(410), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), + [18] = { + [sym__statement] = STATE(716), + [sym_empty_statement] = STATE(717), + [sym_expression_statement] = STATE(717), + [sym_macro_definition] = STATE(717), + [sym_attribute_item] = STATE(717), + [sym_inner_attribute_item] = STATE(717), + [sym_mod_item] = STATE(717), + [sym_foreign_mod_item] = STATE(717), + [sym_struct_item] = STATE(717), + [sym_union_item] = STATE(717), + [sym_enum_item] = STATE(717), + [sym_extern_crate_declaration] = STATE(717), + [sym_const_item] = STATE(717), + [sym_static_item] = STATE(717), + [sym_type_item] = STATE(717), + [sym_function_item] = STATE(717), + [sym_function_signature_item] = STATE(717), + [sym_function_modifiers] = STATE(3519), + [sym_impl_item] = STATE(717), + [sym_trait_item] = STATE(717), + [sym_associated_type] = STATE(717), + [sym_let_declaration] = STATE(717), + [sym_use_declaration] = STATE(717), + [sym_extern_modifier] = STATE(2236), + [sym_visibility_modifier] = STATE(2021), + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1840), + [sym_macro_invocation] = STATE(406), + [sym_scoped_identifier] = STATE(1596), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), [sym_if_expression] = STATE(419), [sym_match_expression] = STATE(419), [sym_while_expression] = STATE(419), [sym_loop_expression] = STATE(419), [sym_for_expression] = STATE(419), [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3675), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), [sym_unsafe_block] = STATE(419), [sym_async_block] = STATE(419), [sym_gen_block] = STATE(419), [sym_try_block] = STATE(419), [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), [sym_line_comment] = STATE(18), [sym_block_comment] = STATE(18), [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2336), + [aux_sym_function_modifiers_repeat1] = STATE(2329), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -17389,83 +17236,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(19)] = { - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1852), - [sym_macro_invocation] = STATE(410), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), + [19] = { + [sym__statement] = STATE(716), + [sym_empty_statement] = STATE(717), + [sym_expression_statement] = STATE(717), + [sym_macro_definition] = STATE(717), + [sym_attribute_item] = STATE(717), + [sym_inner_attribute_item] = STATE(717), + [sym_mod_item] = STATE(717), + [sym_foreign_mod_item] = STATE(717), + [sym_struct_item] = STATE(717), + [sym_union_item] = STATE(717), + [sym_enum_item] = STATE(717), + [sym_extern_crate_declaration] = STATE(717), + [sym_const_item] = STATE(717), + [sym_static_item] = STATE(717), + [sym_type_item] = STATE(717), + [sym_function_item] = STATE(717), + [sym_function_signature_item] = STATE(717), + [sym_function_modifiers] = STATE(3519), + [sym_impl_item] = STATE(717), + [sym_trait_item] = STATE(717), + [sym_associated_type] = STATE(717), + [sym_let_declaration] = STATE(717), + [sym_use_declaration] = STATE(717), + [sym_extern_modifier] = STATE(2236), + [sym_visibility_modifier] = STATE(2021), + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1844), + [sym_macro_invocation] = STATE(406), + [sym_scoped_identifier] = STATE(1596), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), [sym_if_expression] = STATE(419), [sym_match_expression] = STATE(419), [sym_while_expression] = STATE(419), [sym_loop_expression] = STATE(419), [sym_for_expression] = STATE(419), [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3675), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), [sym_unsafe_block] = STATE(419), [sym_async_block] = STATE(419), [sym_gen_block] = STATE(419), [sym_try_block] = STATE(419), [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), [sym_line_comment] = STATE(19), [sym_block_comment] = STATE(19), [aux_sym_source_file_repeat1] = STATE(20), - [aux_sym_function_modifiers_repeat1] = STATE(2336), + [aux_sym_function_modifiers_repeat1] = STATE(2329), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -17544,83 +17391,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(20)] = { - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1855), - [sym_macro_invocation] = STATE(410), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), + [20] = { + [sym__statement] = STATE(716), + [sym_empty_statement] = STATE(717), + [sym_expression_statement] = STATE(717), + [sym_macro_definition] = STATE(717), + [sym_attribute_item] = STATE(717), + [sym_inner_attribute_item] = STATE(717), + [sym_mod_item] = STATE(717), + [sym_foreign_mod_item] = STATE(717), + [sym_struct_item] = STATE(717), + [sym_union_item] = STATE(717), + [sym_enum_item] = STATE(717), + [sym_extern_crate_declaration] = STATE(717), + [sym_const_item] = STATE(717), + [sym_static_item] = STATE(717), + [sym_type_item] = STATE(717), + [sym_function_item] = STATE(717), + [sym_function_signature_item] = STATE(717), + [sym_function_modifiers] = STATE(3519), + [sym_impl_item] = STATE(717), + [sym_trait_item] = STATE(717), + [sym_associated_type] = STATE(717), + [sym_let_declaration] = STATE(717), + [sym_use_declaration] = STATE(717), + [sym_extern_modifier] = STATE(2236), + [sym_visibility_modifier] = STATE(2021), + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1846), + [sym_macro_invocation] = STATE(406), + [sym_scoped_identifier] = STATE(1596), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), [sym_if_expression] = STATE(419), [sym_match_expression] = STATE(419), [sym_while_expression] = STATE(419), [sym_loop_expression] = STATE(419), [sym_for_expression] = STATE(419), [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3675), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), [sym_unsafe_block] = STATE(419), [sym_async_block] = STATE(419), [sym_gen_block] = STATE(419), [sym_try_block] = STATE(419), [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), [sym_line_comment] = STATE(20), [sym_block_comment] = STATE(20), [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2336), + [aux_sym_function_modifiers_repeat1] = STATE(2329), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -17699,83 +17546,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(21)] = { - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1860), - [sym_macro_invocation] = STATE(410), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), + [21] = { + [sym__statement] = STATE(716), + [sym_empty_statement] = STATE(717), + [sym_expression_statement] = STATE(717), + [sym_macro_definition] = STATE(717), + [sym_attribute_item] = STATE(717), + [sym_inner_attribute_item] = STATE(717), + [sym_mod_item] = STATE(717), + [sym_foreign_mod_item] = STATE(717), + [sym_struct_item] = STATE(717), + [sym_union_item] = STATE(717), + [sym_enum_item] = STATE(717), + [sym_extern_crate_declaration] = STATE(717), + [sym_const_item] = STATE(717), + [sym_static_item] = STATE(717), + [sym_type_item] = STATE(717), + [sym_function_item] = STATE(717), + [sym_function_signature_item] = STATE(717), + [sym_function_modifiers] = STATE(3519), + [sym_impl_item] = STATE(717), + [sym_trait_item] = STATE(717), + [sym_associated_type] = STATE(717), + [sym_let_declaration] = STATE(717), + [sym_use_declaration] = STATE(717), + [sym_extern_modifier] = STATE(2236), + [sym_visibility_modifier] = STATE(2021), + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1856), + [sym_macro_invocation] = STATE(406), + [sym_scoped_identifier] = STATE(1596), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), [sym_if_expression] = STATE(419), [sym_match_expression] = STATE(419), [sym_while_expression] = STATE(419), [sym_loop_expression] = STATE(419), [sym_for_expression] = STATE(419), [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3675), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), [sym_unsafe_block] = STATE(419), [sym_async_block] = STATE(419), [sym_gen_block] = STATE(419), [sym_try_block] = STATE(419), [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), [sym_line_comment] = STATE(21), [sym_block_comment] = STATE(21), [aux_sym_source_file_repeat1] = STATE(22), - [aux_sym_function_modifiers_repeat1] = STATE(2336), + [aux_sym_function_modifiers_repeat1] = STATE(2329), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -17854,83 +17701,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(22)] = { - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1862), - [sym_macro_invocation] = STATE(410), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), + [22] = { + [sym__statement] = STATE(716), + [sym_empty_statement] = STATE(717), + [sym_expression_statement] = STATE(717), + [sym_macro_definition] = STATE(717), + [sym_attribute_item] = STATE(717), + [sym_inner_attribute_item] = STATE(717), + [sym_mod_item] = STATE(717), + [sym_foreign_mod_item] = STATE(717), + [sym_struct_item] = STATE(717), + [sym_union_item] = STATE(717), + [sym_enum_item] = STATE(717), + [sym_extern_crate_declaration] = STATE(717), + [sym_const_item] = STATE(717), + [sym_static_item] = STATE(717), + [sym_type_item] = STATE(717), + [sym_function_item] = STATE(717), + [sym_function_signature_item] = STATE(717), + [sym_function_modifiers] = STATE(3519), + [sym_impl_item] = STATE(717), + [sym_trait_item] = STATE(717), + [sym_associated_type] = STATE(717), + [sym_let_declaration] = STATE(717), + [sym_use_declaration] = STATE(717), + [sym_extern_modifier] = STATE(2236), + [sym_visibility_modifier] = STATE(2021), + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1859), + [sym_macro_invocation] = STATE(406), + [sym_scoped_identifier] = STATE(1596), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), [sym_if_expression] = STATE(419), [sym_match_expression] = STATE(419), [sym_while_expression] = STATE(419), [sym_loop_expression] = STATE(419), [sym_for_expression] = STATE(419), [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3675), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), [sym_unsafe_block] = STATE(419), [sym_async_block] = STATE(419), [sym_gen_block] = STATE(419), [sym_try_block] = STATE(419), [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), [sym_line_comment] = STATE(22), [sym_block_comment] = STATE(22), [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2336), + [aux_sym_function_modifiers_repeat1] = STATE(2329), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18009,83 +17856,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(23)] = { - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1865), - [sym_macro_invocation] = STATE(410), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), + [23] = { + [sym__statement] = STATE(716), + [sym_empty_statement] = STATE(717), + [sym_expression_statement] = STATE(717), + [sym_macro_definition] = STATE(717), + [sym_attribute_item] = STATE(717), + [sym_inner_attribute_item] = STATE(717), + [sym_mod_item] = STATE(717), + [sym_foreign_mod_item] = STATE(717), + [sym_struct_item] = STATE(717), + [sym_union_item] = STATE(717), + [sym_enum_item] = STATE(717), + [sym_extern_crate_declaration] = STATE(717), + [sym_const_item] = STATE(717), + [sym_static_item] = STATE(717), + [sym_type_item] = STATE(717), + [sym_function_item] = STATE(717), + [sym_function_signature_item] = STATE(717), + [sym_function_modifiers] = STATE(3519), + [sym_impl_item] = STATE(717), + [sym_trait_item] = STATE(717), + [sym_associated_type] = STATE(717), + [sym_let_declaration] = STATE(717), + [sym_use_declaration] = STATE(717), + [sym_extern_modifier] = STATE(2236), + [sym_visibility_modifier] = STATE(2021), + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1861), + [sym_macro_invocation] = STATE(406), + [sym_scoped_identifier] = STATE(1596), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), [sym_if_expression] = STATE(419), [sym_match_expression] = STATE(419), [sym_while_expression] = STATE(419), [sym_loop_expression] = STATE(419), [sym_for_expression] = STATE(419), [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3675), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), [sym_unsafe_block] = STATE(419), [sym_async_block] = STATE(419), [sym_gen_block] = STATE(419), [sym_try_block] = STATE(419), [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), [sym_line_comment] = STATE(23), [sym_block_comment] = STATE(23), [aux_sym_source_file_repeat1] = STATE(24), - [aux_sym_function_modifiers_repeat1] = STATE(2336), + [aux_sym_function_modifiers_repeat1] = STATE(2329), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18164,83 +18011,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(24)] = { - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1866), - [sym_macro_invocation] = STATE(410), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), + [24] = { + [sym__statement] = STATE(716), + [sym_empty_statement] = STATE(717), + [sym_expression_statement] = STATE(717), + [sym_macro_definition] = STATE(717), + [sym_attribute_item] = STATE(717), + [sym_inner_attribute_item] = STATE(717), + [sym_mod_item] = STATE(717), + [sym_foreign_mod_item] = STATE(717), + [sym_struct_item] = STATE(717), + [sym_union_item] = STATE(717), + [sym_enum_item] = STATE(717), + [sym_extern_crate_declaration] = STATE(717), + [sym_const_item] = STATE(717), + [sym_static_item] = STATE(717), + [sym_type_item] = STATE(717), + [sym_function_item] = STATE(717), + [sym_function_signature_item] = STATE(717), + [sym_function_modifiers] = STATE(3519), + [sym_impl_item] = STATE(717), + [sym_trait_item] = STATE(717), + [sym_associated_type] = STATE(717), + [sym_let_declaration] = STATE(717), + [sym_use_declaration] = STATE(717), + [sym_extern_modifier] = STATE(2236), + [sym_visibility_modifier] = STATE(2021), + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1862), + [sym_macro_invocation] = STATE(406), + [sym_scoped_identifier] = STATE(1596), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), [sym_if_expression] = STATE(419), [sym_match_expression] = STATE(419), [sym_while_expression] = STATE(419), [sym_loop_expression] = STATE(419), [sym_for_expression] = STATE(419), [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3675), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), [sym_unsafe_block] = STATE(419), [sym_async_block] = STATE(419), [sym_gen_block] = STATE(419), [sym_try_block] = STATE(419), [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), [sym_line_comment] = STATE(24), [sym_block_comment] = STATE(24), [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2336), + [aux_sym_function_modifiers_repeat1] = STATE(2329), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18319,83 +18166,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(25)] = { - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1868), - [sym_macro_invocation] = STATE(410), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), + [25] = { + [sym__statement] = STATE(716), + [sym_empty_statement] = STATE(717), + [sym_expression_statement] = STATE(717), + [sym_macro_definition] = STATE(717), + [sym_attribute_item] = STATE(717), + [sym_inner_attribute_item] = STATE(717), + [sym_mod_item] = STATE(717), + [sym_foreign_mod_item] = STATE(717), + [sym_struct_item] = STATE(717), + [sym_union_item] = STATE(717), + [sym_enum_item] = STATE(717), + [sym_extern_crate_declaration] = STATE(717), + [sym_const_item] = STATE(717), + [sym_static_item] = STATE(717), + [sym_type_item] = STATE(717), + [sym_function_item] = STATE(717), + [sym_function_signature_item] = STATE(717), + [sym_function_modifiers] = STATE(3519), + [sym_impl_item] = STATE(717), + [sym_trait_item] = STATE(717), + [sym_associated_type] = STATE(717), + [sym_let_declaration] = STATE(717), + [sym_use_declaration] = STATE(717), + [sym_extern_modifier] = STATE(2236), + [sym_visibility_modifier] = STATE(2021), + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1865), + [sym_macro_invocation] = STATE(406), + [sym_scoped_identifier] = STATE(1596), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), [sym_if_expression] = STATE(419), [sym_match_expression] = STATE(419), [sym_while_expression] = STATE(419), [sym_loop_expression] = STATE(419), [sym_for_expression] = STATE(419), [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3675), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), [sym_unsafe_block] = STATE(419), [sym_async_block] = STATE(419), [sym_gen_block] = STATE(419), [sym_try_block] = STATE(419), [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), [sym_line_comment] = STATE(25), [sym_block_comment] = STATE(25), [aux_sym_source_file_repeat1] = STATE(26), - [aux_sym_function_modifiers_repeat1] = STATE(2336), + [aux_sym_function_modifiers_repeat1] = STATE(2329), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18474,83 +18321,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(26)] = { - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1869), - [sym_macro_invocation] = STATE(410), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), + [26] = { + [sym__statement] = STATE(716), + [sym_empty_statement] = STATE(717), + [sym_expression_statement] = STATE(717), + [sym_macro_definition] = STATE(717), + [sym_attribute_item] = STATE(717), + [sym_inner_attribute_item] = STATE(717), + [sym_mod_item] = STATE(717), + [sym_foreign_mod_item] = STATE(717), + [sym_struct_item] = STATE(717), + [sym_union_item] = STATE(717), + [sym_enum_item] = STATE(717), + [sym_extern_crate_declaration] = STATE(717), + [sym_const_item] = STATE(717), + [sym_static_item] = STATE(717), + [sym_type_item] = STATE(717), + [sym_function_item] = STATE(717), + [sym_function_signature_item] = STATE(717), + [sym_function_modifiers] = STATE(3519), + [sym_impl_item] = STATE(717), + [sym_trait_item] = STATE(717), + [sym_associated_type] = STATE(717), + [sym_let_declaration] = STATE(717), + [sym_use_declaration] = STATE(717), + [sym_extern_modifier] = STATE(2236), + [sym_visibility_modifier] = STATE(2021), + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1866), + [sym_macro_invocation] = STATE(406), + [sym_scoped_identifier] = STATE(1596), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), [sym_if_expression] = STATE(419), [sym_match_expression] = STATE(419), [sym_while_expression] = STATE(419), [sym_loop_expression] = STATE(419), [sym_for_expression] = STATE(419), [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3675), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), [sym_unsafe_block] = STATE(419), [sym_async_block] = STATE(419), [sym_gen_block] = STATE(419), [sym_try_block] = STATE(419), [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), [sym_line_comment] = STATE(26), [sym_block_comment] = STATE(26), [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2336), + [aux_sym_function_modifiers_repeat1] = STATE(2329), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18629,83 +18476,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(27)] = { - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1871), - [sym_macro_invocation] = STATE(410), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), + [27] = { + [sym__statement] = STATE(716), + [sym_empty_statement] = STATE(717), + [sym_expression_statement] = STATE(717), + [sym_macro_definition] = STATE(717), + [sym_attribute_item] = STATE(717), + [sym_inner_attribute_item] = STATE(717), + [sym_mod_item] = STATE(717), + [sym_foreign_mod_item] = STATE(717), + [sym_struct_item] = STATE(717), + [sym_union_item] = STATE(717), + [sym_enum_item] = STATE(717), + [sym_extern_crate_declaration] = STATE(717), + [sym_const_item] = STATE(717), + [sym_static_item] = STATE(717), + [sym_type_item] = STATE(717), + [sym_function_item] = STATE(717), + [sym_function_signature_item] = STATE(717), + [sym_function_modifiers] = STATE(3519), + [sym_impl_item] = STATE(717), + [sym_trait_item] = STATE(717), + [sym_associated_type] = STATE(717), + [sym_let_declaration] = STATE(717), + [sym_use_declaration] = STATE(717), + [sym_extern_modifier] = STATE(2236), + [sym_visibility_modifier] = STATE(2021), + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1868), + [sym_macro_invocation] = STATE(406), + [sym_scoped_identifier] = STATE(1596), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), [sym_if_expression] = STATE(419), [sym_match_expression] = STATE(419), [sym_while_expression] = STATE(419), [sym_loop_expression] = STATE(419), [sym_for_expression] = STATE(419), [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3675), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), [sym_unsafe_block] = STATE(419), [sym_async_block] = STATE(419), [sym_gen_block] = STATE(419), [sym_try_block] = STATE(419), [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), [sym_line_comment] = STATE(27), [sym_block_comment] = STATE(27), [aux_sym_source_file_repeat1] = STATE(28), - [aux_sym_function_modifiers_repeat1] = STATE(2336), + [aux_sym_function_modifiers_repeat1] = STATE(2329), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18784,83 +18631,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(28)] = { - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1872), - [sym_macro_invocation] = STATE(410), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), + [28] = { + [sym__statement] = STATE(716), + [sym_empty_statement] = STATE(717), + [sym_expression_statement] = STATE(717), + [sym_macro_definition] = STATE(717), + [sym_attribute_item] = STATE(717), + [sym_inner_attribute_item] = STATE(717), + [sym_mod_item] = STATE(717), + [sym_foreign_mod_item] = STATE(717), + [sym_struct_item] = STATE(717), + [sym_union_item] = STATE(717), + [sym_enum_item] = STATE(717), + [sym_extern_crate_declaration] = STATE(717), + [sym_const_item] = STATE(717), + [sym_static_item] = STATE(717), + [sym_type_item] = STATE(717), + [sym_function_item] = STATE(717), + [sym_function_signature_item] = STATE(717), + [sym_function_modifiers] = STATE(3519), + [sym_impl_item] = STATE(717), + [sym_trait_item] = STATE(717), + [sym_associated_type] = STATE(717), + [sym_let_declaration] = STATE(717), + [sym_use_declaration] = STATE(717), + [sym_extern_modifier] = STATE(2236), + [sym_visibility_modifier] = STATE(2021), + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1869), + [sym_macro_invocation] = STATE(406), + [sym_scoped_identifier] = STATE(1596), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), [sym_if_expression] = STATE(419), [sym_match_expression] = STATE(419), [sym_while_expression] = STATE(419), [sym_loop_expression] = STATE(419), [sym_for_expression] = STATE(419), [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3675), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), [sym_unsafe_block] = STATE(419), [sym_async_block] = STATE(419), [sym_gen_block] = STATE(419), [sym_try_block] = STATE(419), [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), [sym_line_comment] = STATE(28), [sym_block_comment] = STATE(28), [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2336), + [aux_sym_function_modifiers_repeat1] = STATE(2329), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18939,83 +18786,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(29)] = { - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1875), - [sym_macro_invocation] = STATE(410), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), + [29] = { + [sym__statement] = STATE(716), + [sym_empty_statement] = STATE(717), + [sym_expression_statement] = STATE(717), + [sym_macro_definition] = STATE(717), + [sym_attribute_item] = STATE(717), + [sym_inner_attribute_item] = STATE(717), + [sym_mod_item] = STATE(717), + [sym_foreign_mod_item] = STATE(717), + [sym_struct_item] = STATE(717), + [sym_union_item] = STATE(717), + [sym_enum_item] = STATE(717), + [sym_extern_crate_declaration] = STATE(717), + [sym_const_item] = STATE(717), + [sym_static_item] = STATE(717), + [sym_type_item] = STATE(717), + [sym_function_item] = STATE(717), + [sym_function_signature_item] = STATE(717), + [sym_function_modifiers] = STATE(3519), + [sym_impl_item] = STATE(717), + [sym_trait_item] = STATE(717), + [sym_associated_type] = STATE(717), + [sym_let_declaration] = STATE(717), + [sym_use_declaration] = STATE(717), + [sym_extern_modifier] = STATE(2236), + [sym_visibility_modifier] = STATE(2021), + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1870), + [sym_macro_invocation] = STATE(406), + [sym_scoped_identifier] = STATE(1596), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), [sym_if_expression] = STATE(419), [sym_match_expression] = STATE(419), [sym_while_expression] = STATE(419), [sym_loop_expression] = STATE(419), [sym_for_expression] = STATE(419), [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3675), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), [sym_unsafe_block] = STATE(419), [sym_async_block] = STATE(419), [sym_gen_block] = STATE(419), [sym_try_block] = STATE(419), [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), [sym_line_comment] = STATE(29), [sym_block_comment] = STATE(29), [aux_sym_source_file_repeat1] = STATE(30), - [aux_sym_function_modifiers_repeat1] = STATE(2336), + [aux_sym_function_modifiers_repeat1] = STATE(2329), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -19094,83 +18941,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(30)] = { - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1876), - [sym_macro_invocation] = STATE(410), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), + [30] = { + [sym__statement] = STATE(716), + [sym_empty_statement] = STATE(717), + [sym_expression_statement] = STATE(717), + [sym_macro_definition] = STATE(717), + [sym_attribute_item] = STATE(717), + [sym_inner_attribute_item] = STATE(717), + [sym_mod_item] = STATE(717), + [sym_foreign_mod_item] = STATE(717), + [sym_struct_item] = STATE(717), + [sym_union_item] = STATE(717), + [sym_enum_item] = STATE(717), + [sym_extern_crate_declaration] = STATE(717), + [sym_const_item] = STATE(717), + [sym_static_item] = STATE(717), + [sym_type_item] = STATE(717), + [sym_function_item] = STATE(717), + [sym_function_signature_item] = STATE(717), + [sym_function_modifiers] = STATE(3519), + [sym_impl_item] = STATE(717), + [sym_trait_item] = STATE(717), + [sym_associated_type] = STATE(717), + [sym_let_declaration] = STATE(717), + [sym_use_declaration] = STATE(717), + [sym_extern_modifier] = STATE(2236), + [sym_visibility_modifier] = STATE(2021), + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1871), + [sym_macro_invocation] = STATE(406), + [sym_scoped_identifier] = STATE(1596), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), [sym_if_expression] = STATE(419), [sym_match_expression] = STATE(419), [sym_while_expression] = STATE(419), [sym_loop_expression] = STATE(419), [sym_for_expression] = STATE(419), [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3675), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), [sym_unsafe_block] = STATE(419), [sym_async_block] = STATE(419), [sym_gen_block] = STATE(419), [sym_try_block] = STATE(419), [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), [sym_line_comment] = STATE(30), [sym_block_comment] = STATE(30), [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2336), + [aux_sym_function_modifiers_repeat1] = STATE(2329), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -19249,83 +19096,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(31)] = { - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1877), - [sym_macro_invocation] = STATE(410), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), + [31] = { + [sym__statement] = STATE(716), + [sym_empty_statement] = STATE(717), + [sym_expression_statement] = STATE(717), + [sym_macro_definition] = STATE(717), + [sym_attribute_item] = STATE(717), + [sym_inner_attribute_item] = STATE(717), + [sym_mod_item] = STATE(717), + [sym_foreign_mod_item] = STATE(717), + [sym_struct_item] = STATE(717), + [sym_union_item] = STATE(717), + [sym_enum_item] = STATE(717), + [sym_extern_crate_declaration] = STATE(717), + [sym_const_item] = STATE(717), + [sym_static_item] = STATE(717), + [sym_type_item] = STATE(717), + [sym_function_item] = STATE(717), + [sym_function_signature_item] = STATE(717), + [sym_function_modifiers] = STATE(3519), + [sym_impl_item] = STATE(717), + [sym_trait_item] = STATE(717), + [sym_associated_type] = STATE(717), + [sym_let_declaration] = STATE(717), + [sym_use_declaration] = STATE(717), + [sym_extern_modifier] = STATE(2236), + [sym_visibility_modifier] = STATE(2021), + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1872), + [sym_macro_invocation] = STATE(406), + [sym_scoped_identifier] = STATE(1596), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), [sym_if_expression] = STATE(419), [sym_match_expression] = STATE(419), [sym_while_expression] = STATE(419), [sym_loop_expression] = STATE(419), [sym_for_expression] = STATE(419), [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3675), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), [sym_unsafe_block] = STATE(419), [sym_async_block] = STATE(419), [sym_gen_block] = STATE(419), [sym_try_block] = STATE(419), [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), [sym_line_comment] = STATE(31), [sym_block_comment] = STATE(31), [aux_sym_source_file_repeat1] = STATE(32), - [aux_sym_function_modifiers_repeat1] = STATE(2336), + [aux_sym_function_modifiers_repeat1] = STATE(2329), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -19404,83 +19251,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(32)] = { - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1878), - [sym_macro_invocation] = STATE(410), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), + [32] = { + [sym__statement] = STATE(716), + [sym_empty_statement] = STATE(717), + [sym_expression_statement] = STATE(717), + [sym_macro_definition] = STATE(717), + [sym_attribute_item] = STATE(717), + [sym_inner_attribute_item] = STATE(717), + [sym_mod_item] = STATE(717), + [sym_foreign_mod_item] = STATE(717), + [sym_struct_item] = STATE(717), + [sym_union_item] = STATE(717), + [sym_enum_item] = STATE(717), + [sym_extern_crate_declaration] = STATE(717), + [sym_const_item] = STATE(717), + [sym_static_item] = STATE(717), + [sym_type_item] = STATE(717), + [sym_function_item] = STATE(717), + [sym_function_signature_item] = STATE(717), + [sym_function_modifiers] = STATE(3519), + [sym_impl_item] = STATE(717), + [sym_trait_item] = STATE(717), + [sym_associated_type] = STATE(717), + [sym_let_declaration] = STATE(717), + [sym_use_declaration] = STATE(717), + [sym_extern_modifier] = STATE(2236), + [sym_visibility_modifier] = STATE(2021), + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1873), + [sym_macro_invocation] = STATE(406), + [sym_scoped_identifier] = STATE(1596), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), [sym_if_expression] = STATE(419), [sym_match_expression] = STATE(419), [sym_while_expression] = STATE(419), [sym_loop_expression] = STATE(419), [sym_for_expression] = STATE(419), [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3675), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), [sym_unsafe_block] = STATE(419), [sym_async_block] = STATE(419), [sym_gen_block] = STATE(419), [sym_try_block] = STATE(419), [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), [sym_line_comment] = STATE(32), [sym_block_comment] = STATE(32), [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2336), + [aux_sym_function_modifiers_repeat1] = STATE(2329), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -19559,83 +19406,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(33)] = { - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1879), - [sym_macro_invocation] = STATE(410), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), + [33] = { + [sym__statement] = STATE(716), + [sym_empty_statement] = STATE(717), + [sym_expression_statement] = STATE(717), + [sym_macro_definition] = STATE(717), + [sym_attribute_item] = STATE(717), + [sym_inner_attribute_item] = STATE(717), + [sym_mod_item] = STATE(717), + [sym_foreign_mod_item] = STATE(717), + [sym_struct_item] = STATE(717), + [sym_union_item] = STATE(717), + [sym_enum_item] = STATE(717), + [sym_extern_crate_declaration] = STATE(717), + [sym_const_item] = STATE(717), + [sym_static_item] = STATE(717), + [sym_type_item] = STATE(717), + [sym_function_item] = STATE(717), + [sym_function_signature_item] = STATE(717), + [sym_function_modifiers] = STATE(3519), + [sym_impl_item] = STATE(717), + [sym_trait_item] = STATE(717), + [sym_associated_type] = STATE(717), + [sym_let_declaration] = STATE(717), + [sym_use_declaration] = STATE(717), + [sym_extern_modifier] = STATE(2236), + [sym_visibility_modifier] = STATE(2021), + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1874), + [sym_macro_invocation] = STATE(406), + [sym_scoped_identifier] = STATE(1596), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), [sym_if_expression] = STATE(419), [sym_match_expression] = STATE(419), [sym_while_expression] = STATE(419), [sym_loop_expression] = STATE(419), [sym_for_expression] = STATE(419), [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3675), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), [sym_unsafe_block] = STATE(419), [sym_async_block] = STATE(419), [sym_gen_block] = STATE(419), [sym_try_block] = STATE(419), [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), [sym_line_comment] = STATE(33), [sym_block_comment] = STATE(33), [aux_sym_source_file_repeat1] = STATE(3), - [aux_sym_function_modifiers_repeat1] = STATE(2336), + [aux_sym_function_modifiers_repeat1] = STATE(2329), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -19714,83 +19561,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(34)] = { - [sym__statement] = STATE(717), - [sym_empty_statement] = STATE(718), - [sym_expression_statement] = STATE(718), - [sym_macro_definition] = STATE(718), - [sym_attribute_item] = STATE(718), - [sym_inner_attribute_item] = STATE(718), - [sym_mod_item] = STATE(718), - [sym_foreign_mod_item] = STATE(718), - [sym_struct_item] = STATE(718), - [sym_union_item] = STATE(718), - [sym_enum_item] = STATE(718), - [sym_extern_crate_declaration] = STATE(718), - [sym_const_item] = STATE(718), - [sym_static_item] = STATE(718), - [sym_type_item] = STATE(718), - [sym_function_item] = STATE(718), - [sym_function_signature_item] = STATE(718), - [sym_function_modifiers] = STATE(3683), - [sym_impl_item] = STATE(718), - [sym_trait_item] = STATE(718), - [sym_associated_type] = STATE(718), - [sym_let_declaration] = STATE(718), - [sym_use_declaration] = STATE(718), - [sym_extern_modifier] = STATE(2255), - [sym_visibility_modifier] = STATE(2030), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1905), - [sym_macro_invocation] = STATE(410), - [sym_scoped_identifier] = STATE(1622), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), + [34] = { + [sym__statement] = STATE(716), + [sym_empty_statement] = STATE(717), + [sym_expression_statement] = STATE(717), + [sym_macro_definition] = STATE(717), + [sym_attribute_item] = STATE(717), + [sym_inner_attribute_item] = STATE(717), + [sym_mod_item] = STATE(717), + [sym_foreign_mod_item] = STATE(717), + [sym_struct_item] = STATE(717), + [sym_union_item] = STATE(717), + [sym_enum_item] = STATE(717), + [sym_extern_crate_declaration] = STATE(717), + [sym_const_item] = STATE(717), + [sym_static_item] = STATE(717), + [sym_type_item] = STATE(717), + [sym_function_item] = STATE(717), + [sym_function_signature_item] = STATE(717), + [sym_function_modifiers] = STATE(3519), + [sym_impl_item] = STATE(717), + [sym_trait_item] = STATE(717), + [sym_associated_type] = STATE(717), + [sym_let_declaration] = STATE(717), + [sym_use_declaration] = STATE(717), + [sym_extern_modifier] = STATE(2236), + [sym_visibility_modifier] = STATE(2021), + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1897), + [sym_macro_invocation] = STATE(406), + [sym_scoped_identifier] = STATE(1596), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), [sym_if_expression] = STATE(419), [sym_match_expression] = STATE(419), [sym_while_expression] = STATE(419), [sym_loop_expression] = STATE(419), [sym_for_expression] = STATE(419), [sym_const_block] = STATE(419), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3610), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3675), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), [sym_unsafe_block] = STATE(419), [sym_async_block] = STATE(419), [sym_gen_block] = STATE(419), [sym_try_block] = STATE(419), [sym_block] = STATE(419), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), [sym_line_comment] = STATE(34), [sym_block_comment] = STATE(34), [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2336), + [aux_sym_function_modifiers_repeat1] = STATE(2329), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -19869,54 +19716,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(35)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1591), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [35] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1585), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), [sym_line_comment] = STATE(35), [sym_block_comment] = STATE(35), [sym_identifier] = ACTIONS(344), @@ -20018,54 +19865,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(36)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1594), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [36] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1586), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), [sym_line_comment] = STATE(36), [sym_block_comment] = STATE(36), [sym_identifier] = ACTIONS(344), @@ -20166,54 +20013,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(37)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1572), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [37] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1570), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), [sym_line_comment] = STATE(37), [sym_block_comment] = STATE(37), [sym_identifier] = ACTIONS(344), @@ -20314,54 +20161,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(38)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1590), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), + [38] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1574), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), [sym_label] = STATE(35), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), [sym_line_comment] = STATE(38), [sym_block_comment] = STATE(38), [sym_identifier] = ACTIONS(344), @@ -20462,57 +20309,353 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(39)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1572), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [39] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1581), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), [sym_line_comment] = STATE(39), [sym_block_comment] = STATE(39), [sym_identifier] = ACTIONS(344), + [anon_sym_SEMI] = ACTIONS(402), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(402), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_RBRACE] = ACTIONS(402), + [anon_sym_PLUS] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(354), + [anon_sym_QMARK] = ACTIONS(402), + [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(354), + [anon_sym_SLASH] = ACTIONS(404), + [anon_sym_PERCENT] = ACTIONS(404), + [anon_sym_CARET] = ACTIONS(404), + [anon_sym_BANG] = ACTIONS(354), + [anon_sym_AMP] = ACTIONS(384), + [anon_sym_PIPE] = ACTIONS(386), + [anon_sym_AMP_AMP] = ACTIONS(402), + [anon_sym_PIPE_PIPE] = ACTIONS(402), + [anon_sym_LT_LT] = ACTIONS(404), + [anon_sym_GT_GT] = ACTIONS(404), + [anon_sym_PLUS_EQ] = ACTIONS(402), + [anon_sym_DASH_EQ] = ACTIONS(402), + [anon_sym_STAR_EQ] = ACTIONS(402), + [anon_sym_SLASH_EQ] = ACTIONS(402), + [anon_sym_PERCENT_EQ] = ACTIONS(402), + [anon_sym_CARET_EQ] = ACTIONS(402), + [anon_sym_AMP_EQ] = ACTIONS(402), + [anon_sym_PIPE_EQ] = ACTIONS(402), + [anon_sym_LT_LT_EQ] = ACTIONS(402), + [anon_sym_GT_GT_EQ] = ACTIONS(402), + [anon_sym_EQ] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(402), + [anon_sym_BANG_EQ] = ACTIONS(402), + [anon_sym_GT] = ACTIONS(404), + [anon_sym_LT] = ACTIONS(388), + [anon_sym_GT_EQ] = ACTIONS(402), + [anon_sym_LT_EQ] = ACTIONS(402), + [anon_sym_DOT] = ACTIONS(404), + [anon_sym_DOT_DOT] = ACTIONS(390), + [anon_sym_DOT_DOT_DOT] = ACTIONS(402), + [anon_sym_DOT_DOT_EQ] = ACTIONS(402), + [anon_sym_COMMA] = ACTIONS(402), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(404), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(360), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(364), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_else] = ACTIONS(404), + [anon_sym_raw] = ACTIONS(360), + [anon_sym_yield] = ACTIONS(93), + [anon_sym_move] = ACTIONS(95), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(111), + [sym_super] = ACTIONS(113), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(117), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [40] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1588), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(40), + [sym_block_comment] = STATE(40), + [sym_identifier] = ACTIONS(344), + [anon_sym_SEMI] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(406), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(406), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_RBRACE] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(354), + [anon_sym_QMARK] = ACTIONS(406), + [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(354), + [anon_sym_SLASH] = ACTIONS(408), + [anon_sym_PERCENT] = ACTIONS(408), + [anon_sym_CARET] = ACTIONS(408), + [anon_sym_BANG] = ACTIONS(354), + [anon_sym_AMP] = ACTIONS(384), + [anon_sym_PIPE] = ACTIONS(386), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(408), + [anon_sym_GT_GT] = ACTIONS(408), + [anon_sym_PLUS_EQ] = ACTIONS(406), + [anon_sym_DASH_EQ] = ACTIONS(406), + [anon_sym_STAR_EQ] = ACTIONS(406), + [anon_sym_SLASH_EQ] = ACTIONS(406), + [anon_sym_PERCENT_EQ] = ACTIONS(406), + [anon_sym_CARET_EQ] = ACTIONS(406), + [anon_sym_AMP_EQ] = ACTIONS(406), + [anon_sym_PIPE_EQ] = ACTIONS(406), + [anon_sym_LT_LT_EQ] = ACTIONS(406), + [anon_sym_GT_GT_EQ] = ACTIONS(406), + [anon_sym_EQ] = ACTIONS(408), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_GT] = ACTIONS(408), + [anon_sym_LT] = ACTIONS(388), + [anon_sym_GT_EQ] = ACTIONS(406), + [anon_sym_LT_EQ] = ACTIONS(406), + [anon_sym_DOT] = ACTIONS(408), + [anon_sym_DOT_DOT] = ACTIONS(390), + [anon_sym_DOT_DOT_DOT] = ACTIONS(406), + [anon_sym_DOT_DOT_EQ] = ACTIONS(406), + [anon_sym_COMMA] = ACTIONS(406), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(408), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(360), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(364), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_else] = ACTIONS(408), + [anon_sym_raw] = ACTIONS(360), + [anon_sym_yield] = ACTIONS(93), + [anon_sym_move] = ACTIONS(95), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(111), + [sym_super] = ACTIONS(113), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(117), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [41] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1570), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(41), + [sym_block_comment] = STATE(41), + [sym_identifier] = ACTIONS(344), [anon_sym_SEMI] = ACTIONS(392), [anon_sym_LPAREN] = ACTIONS(392), [anon_sym_RPAREN] = ACTIONS(392), @@ -20610,500 +20753,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(40)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1576), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(40), - [sym_block_comment] = STATE(40), - [sym_identifier] = ACTIONS(344), - [anon_sym_SEMI] = ACTIONS(402), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(402), - [anon_sym_LBRACK] = ACTIONS(402), - [anon_sym_RBRACK] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_RBRACE] = ACTIONS(402), - [anon_sym_PLUS] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(404), - [anon_sym_QMARK] = ACTIONS(402), - [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(404), - [anon_sym_SLASH] = ACTIONS(404), - [anon_sym_PERCENT] = ACTIONS(404), - [anon_sym_CARET] = ACTIONS(404), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_AMP] = ACTIONS(404), - [anon_sym_PIPE] = ACTIONS(404), - [anon_sym_AMP_AMP] = ACTIONS(402), - [anon_sym_PIPE_PIPE] = ACTIONS(402), - [anon_sym_LT_LT] = ACTIONS(404), - [anon_sym_GT_GT] = ACTIONS(404), - [anon_sym_PLUS_EQ] = ACTIONS(402), - [anon_sym_DASH_EQ] = ACTIONS(402), - [anon_sym_STAR_EQ] = ACTIONS(402), - [anon_sym_SLASH_EQ] = ACTIONS(402), - [anon_sym_PERCENT_EQ] = ACTIONS(402), - [anon_sym_CARET_EQ] = ACTIONS(402), - [anon_sym_AMP_EQ] = ACTIONS(402), - [anon_sym_PIPE_EQ] = ACTIONS(402), - [anon_sym_LT_LT_EQ] = ACTIONS(402), - [anon_sym_GT_GT_EQ] = ACTIONS(402), - [anon_sym_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(402), - [anon_sym_BANG_EQ] = ACTIONS(402), - [anon_sym_GT] = ACTIONS(404), - [anon_sym_LT] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(402), - [anon_sym_LT_EQ] = ACTIONS(402), - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_DOT_DOT] = ACTIONS(404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(402), - [anon_sym_DOT_DOT_EQ] = ACTIONS(402), - [anon_sym_COMMA] = ACTIONS(402), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(404), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_else] = ACTIONS(404), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), - }, - [STATE(41)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1576), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(41), - [sym_block_comment] = STATE(41), - [sym_identifier] = ACTIONS(344), - [anon_sym_SEMI] = ACTIONS(402), - [anon_sym_LPAREN] = ACTIONS(402), - [anon_sym_RPAREN] = ACTIONS(402), - [anon_sym_LBRACK] = ACTIONS(402), - [anon_sym_RBRACK] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_RBRACE] = ACTIONS(402), - [anon_sym_PLUS] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(404), - [anon_sym_QMARK] = ACTIONS(402), - [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(404), - [anon_sym_SLASH] = ACTIONS(404), - [anon_sym_PERCENT] = ACTIONS(404), - [anon_sym_CARET] = ACTIONS(404), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_AMP] = ACTIONS(404), - [anon_sym_PIPE] = ACTIONS(404), - [anon_sym_AMP_AMP] = ACTIONS(402), - [anon_sym_PIPE_PIPE] = ACTIONS(402), - [anon_sym_LT_LT] = ACTIONS(404), - [anon_sym_GT_GT] = ACTIONS(404), - [anon_sym_PLUS_EQ] = ACTIONS(402), - [anon_sym_DASH_EQ] = ACTIONS(402), - [anon_sym_STAR_EQ] = ACTIONS(402), - [anon_sym_SLASH_EQ] = ACTIONS(402), - [anon_sym_PERCENT_EQ] = ACTIONS(402), - [anon_sym_CARET_EQ] = ACTIONS(402), - [anon_sym_AMP_EQ] = ACTIONS(402), - [anon_sym_PIPE_EQ] = ACTIONS(402), - [anon_sym_LT_LT_EQ] = ACTIONS(402), - [anon_sym_GT_GT_EQ] = ACTIONS(402), - [anon_sym_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(402), - [anon_sym_BANG_EQ] = ACTIONS(402), - [anon_sym_GT] = ACTIONS(404), - [anon_sym_LT] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(402), - [anon_sym_LT_EQ] = ACTIONS(402), - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_DOT_DOT] = ACTIONS(404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(402), - [anon_sym_DOT_DOT_EQ] = ACTIONS(402), - [anon_sym_COMMA] = ACTIONS(402), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(404), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_else] = ACTIONS(404), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), - }, - [STATE(42)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1595), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [42] = { + [sym_bracketed_type] = STATE(3659), + [sym_generic_function] = STATE(1714), + [sym_generic_type_with_turbofish] = STATE(2899), + [sym__expression_except_range] = STATE(1670), + [sym__expression] = STATE(1733), + [sym_macro_invocation] = STATE(1893), + [sym_scoped_identifier] = STATE(1650), + [sym_scoped_type_identifier_in_expression_position] = STATE(3266), + [sym_range_expression] = STATE(1889), + [sym_unary_expression] = STATE(1714), + [sym_try_expression] = STATE(1714), + [sym_reference_expression] = STATE(1714), + [sym_binary_expression] = STATE(1714), + [sym_assignment_expression] = STATE(1714), + [sym_compound_assignment_expr] = STATE(1714), + [sym_type_cast_expression] = STATE(1714), + [sym_return_expression] = STATE(1714), + [sym_yield_expression] = STATE(1714), + [sym_call_expression] = STATE(1714), + [sym_array_expression] = STATE(1714), + [sym_parenthesized_expression] = STATE(1714), + [sym_tuple_expression] = STATE(1714), + [sym_unit_expression] = STATE(1714), + [sym_struct_expression] = STATE(1714), + [sym_if_expression] = STATE(1714), + [sym_match_expression] = STATE(1714), + [sym_while_expression] = STATE(1714), + [sym_loop_expression] = STATE(1714), + [sym_for_expression] = STATE(1714), + [sym_const_block] = STATE(1714), + [sym_closure_expression] = STATE(1714), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1714), + [sym_continue_expression] = STATE(1714), + [sym_index_expression] = STATE(1714), + [sym_await_expression] = STATE(1714), + [sym_field_expression] = STATE(1672), + [sym_unsafe_block] = STATE(1714), + [sym_async_block] = STATE(1714), + [sym_gen_block] = STATE(1714), + [sym_try_block] = STATE(1714), + [sym_block] = STATE(1714), + [sym__literal] = STATE(1714), + [sym_string_literal] = STATE(1766), + [sym_raw_string_literal] = STATE(1766), + [sym_boolean_literal] = STATE(1766), [sym_line_comment] = STATE(42), [sym_block_comment] = STATE(42), - [sym_identifier] = ACTIONS(344), - [anon_sym_SEMI] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(406), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(406), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_RBRACE] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(408), - [anon_sym_STAR] = ACTIONS(354), - [anon_sym_QMARK] = ACTIONS(406), - [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(354), - [anon_sym_SLASH] = ACTIONS(408), - [anon_sym_PERCENT] = ACTIONS(408), - [anon_sym_CARET] = ACTIONS(408), - [anon_sym_BANG] = ACTIONS(354), - [anon_sym_AMP] = ACTIONS(384), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(406), - [anon_sym_PIPE_PIPE] = ACTIONS(406), - [anon_sym_LT_LT] = ACTIONS(408), - [anon_sym_GT_GT] = ACTIONS(408), - [anon_sym_PLUS_EQ] = ACTIONS(406), - [anon_sym_DASH_EQ] = ACTIONS(406), - [anon_sym_STAR_EQ] = ACTIONS(406), - [anon_sym_SLASH_EQ] = ACTIONS(406), - [anon_sym_PERCENT_EQ] = ACTIONS(406), - [anon_sym_CARET_EQ] = ACTIONS(406), - [anon_sym_AMP_EQ] = ACTIONS(406), - [anon_sym_PIPE_EQ] = ACTIONS(406), - [anon_sym_LT_LT_EQ] = ACTIONS(406), - [anon_sym_GT_GT_EQ] = ACTIONS(406), - [anon_sym_EQ] = ACTIONS(408), - [anon_sym_EQ_EQ] = ACTIONS(406), - [anon_sym_BANG_EQ] = ACTIONS(406), - [anon_sym_GT] = ACTIONS(408), - [anon_sym_LT] = ACTIONS(388), - [anon_sym_GT_EQ] = ACTIONS(406), - [anon_sym_LT_EQ] = ACTIONS(406), - [anon_sym_DOT] = ACTIONS(408), - [anon_sym_DOT_DOT] = ACTIONS(390), - [anon_sym_DOT_DOT_DOT] = ACTIONS(406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(406), - [anon_sym_COMMA] = ACTIONS(406), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(408), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_else] = ACTIONS(408), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), - }, - [STATE(43)] = { - [sym_bracketed_type] = STATE(3669), - [sym_generic_function] = STATE(1894), - [sym_generic_type_with_turbofish] = STATE(3057), - [sym__expression_except_range] = STATE(1672), - [sym__expression] = STATE(1737), - [sym_macro_invocation] = STATE(1901), - [sym_scoped_identifier] = STATE(1644), - [sym_scoped_type_identifier_in_expression_position] = STATE(3253), - [sym_range_expression] = STATE(1897), - [sym_unary_expression] = STATE(1894), - [sym_try_expression] = STATE(1894), - [sym_reference_expression] = STATE(1894), - [sym_binary_expression] = STATE(1894), - [sym_assignment_expression] = STATE(1894), - [sym_compound_assignment_expr] = STATE(1894), - [sym_type_cast_expression] = STATE(1894), - [sym_return_expression] = STATE(1894), - [sym_yield_expression] = STATE(1894), - [sym_call_expression] = STATE(1894), - [sym_array_expression] = STATE(1894), - [sym_parenthesized_expression] = STATE(1894), - [sym_tuple_expression] = STATE(1894), - [sym_unit_expression] = STATE(1894), - [sym_struct_expression] = STATE(1894), - [sym_if_expression] = STATE(1894), - [sym_match_expression] = STATE(1894), - [sym_while_expression] = STATE(1894), - [sym_loop_expression] = STATE(1894), - [sym_for_expression] = STATE(1894), - [sym_const_block] = STATE(1894), - [sym_closure_expression] = STATE(1894), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3777), - [sym_break_expression] = STATE(1894), - [sym_continue_expression] = STATE(1894), - [sym_index_expression] = STATE(1894), - [sym_await_expression] = STATE(1894), - [sym_field_expression] = STATE(1674), - [sym_unsafe_block] = STATE(1894), - [sym_async_block] = STATE(1894), - [sym_gen_block] = STATE(1894), - [sym_try_block] = STATE(1894), - [sym_block] = STATE(1894), - [sym__literal] = STATE(1894), - [sym_string_literal] = STATE(1768), - [sym_raw_string_literal] = STATE(1768), - [sym_boolean_literal] = STATE(1768), - [sym_line_comment] = STATE(43), - [sym_block_comment] = STATE(43), [sym_identifier] = ACTIONS(410), [anon_sym_LPAREN] = ACTIONS(346), [anon_sym_LBRACK] = ACTIONS(346), @@ -21198,207 +20897,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(468), [sym_float_literal] = ACTIONS(456), }, - [STATE(44)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1828), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(44), - [sym_block_comment] = STATE(44), - [sym_identifier] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(346), - [anon_sym_LBRACK] = ACTIONS(346), - [anon_sym_LBRACE] = ACTIONS(346), - [anon_sym_COLON] = ACTIONS(350), - [anon_sym_PLUS] = ACTIONS(352), - [anon_sym_STAR] = ACTIONS(352), - [anon_sym_QMARK] = ACTIONS(346), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(352), - [anon_sym_SLASH] = ACTIONS(352), - [anon_sym_PERCENT] = ACTIONS(352), - [anon_sym_CARET] = ACTIONS(352), - [anon_sym_BANG] = ACTIONS(474), - [anon_sym_AMP] = ACTIONS(352), - [anon_sym_PIPE] = ACTIONS(352), - [anon_sym_AMP_AMP] = ACTIONS(346), - [anon_sym_PIPE_PIPE] = ACTIONS(346), - [anon_sym_LT_LT] = ACTIONS(352), - [anon_sym_GT_GT] = ACTIONS(352), - [anon_sym_PLUS_EQ] = ACTIONS(346), - [anon_sym_DASH_EQ] = ACTIONS(346), - [anon_sym_STAR_EQ] = ACTIONS(346), - [anon_sym_SLASH_EQ] = ACTIONS(346), - [anon_sym_PERCENT_EQ] = ACTIONS(346), - [anon_sym_CARET_EQ] = ACTIONS(346), - [anon_sym_AMP_EQ] = ACTIONS(346), - [anon_sym_PIPE_EQ] = ACTIONS(346), - [anon_sym_LT_LT_EQ] = ACTIONS(346), - [anon_sym_GT_GT_EQ] = ACTIONS(346), - [anon_sym_EQ] = ACTIONS(352), - [anon_sym_EQ_EQ] = ACTIONS(346), - [anon_sym_BANG_EQ] = ACTIONS(346), - [anon_sym_GT] = ACTIONS(352), - [anon_sym_LT] = ACTIONS(352), - [anon_sym_GT_EQ] = ACTIONS(346), - [anon_sym_LT_EQ] = ACTIONS(346), - [anon_sym_DOT] = ACTIONS(352), - [anon_sym_DOT_DOT] = ACTIONS(352), - [anon_sym_DOT_DOT_DOT] = ACTIONS(346), - [anon_sym_DOT_DOT_EQ] = ACTIONS(346), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(352), - [anon_sym_async] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(484), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(486), - [anon_sym_static] = ACTIONS(488), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_move] = ACTIONS(492), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), - }, - [STATE(45)] = { - [sym_bracketed_type] = STATE(3669), - [sym_generic_function] = STATE(1894), - [sym_generic_type_with_turbofish] = STATE(3057), - [sym__expression_except_range] = STATE(1672), - [sym__expression] = STATE(1917), - [sym_macro_invocation] = STATE(1901), - [sym_scoped_identifier] = STATE(1644), - [sym_scoped_type_identifier_in_expression_position] = STATE(3253), - [sym_range_expression] = STATE(1897), - [sym_unary_expression] = STATE(1894), - [sym_try_expression] = STATE(1894), - [sym_reference_expression] = STATE(1894), - [sym_binary_expression] = STATE(1894), - [sym_assignment_expression] = STATE(1894), - [sym_compound_assignment_expr] = STATE(1894), - [sym_type_cast_expression] = STATE(1894), - [sym_return_expression] = STATE(1894), - [sym_yield_expression] = STATE(1894), - [sym_call_expression] = STATE(1894), - [sym_array_expression] = STATE(1894), - [sym_parenthesized_expression] = STATE(1894), - [sym_tuple_expression] = STATE(1894), - [sym_unit_expression] = STATE(1894), - [sym_struct_expression] = STATE(1894), - [sym_if_expression] = STATE(1894), - [sym_match_expression] = STATE(1894), - [sym_while_expression] = STATE(1894), - [sym_loop_expression] = STATE(1894), - [sym_for_expression] = STATE(1894), - [sym_const_block] = STATE(1894), - [sym_closure_expression] = STATE(1894), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3777), - [sym_break_expression] = STATE(1894), - [sym_continue_expression] = STATE(1894), - [sym_index_expression] = STATE(1894), - [sym_await_expression] = STATE(1894), - [sym_field_expression] = STATE(1674), - [sym_unsafe_block] = STATE(1894), - [sym_async_block] = STATE(1894), - [sym_gen_block] = STATE(1894), - [sym_try_block] = STATE(1894), - [sym_block] = STATE(1894), - [sym__literal] = STATE(1894), - [sym_string_literal] = STATE(1768), - [sym_raw_string_literal] = STATE(1768), - [sym_boolean_literal] = STATE(1768), - [sym_line_comment] = STATE(45), - [sym_block_comment] = STATE(45), + [43] = { + [sym_bracketed_type] = STATE(3659), + [sym_generic_function] = STATE(1714), + [sym_generic_type_with_turbofish] = STATE(2899), + [sym__expression_except_range] = STATE(1670), + [sym__expression] = STATE(1903), + [sym_macro_invocation] = STATE(1893), + [sym_scoped_identifier] = STATE(1650), + [sym_scoped_type_identifier_in_expression_position] = STATE(3266), + [sym_range_expression] = STATE(1889), + [sym_unary_expression] = STATE(1714), + [sym_try_expression] = STATE(1714), + [sym_reference_expression] = STATE(1714), + [sym_binary_expression] = STATE(1714), + [sym_assignment_expression] = STATE(1714), + [sym_compound_assignment_expr] = STATE(1714), + [sym_type_cast_expression] = STATE(1714), + [sym_return_expression] = STATE(1714), + [sym_yield_expression] = STATE(1714), + [sym_call_expression] = STATE(1714), + [sym_array_expression] = STATE(1714), + [sym_parenthesized_expression] = STATE(1714), + [sym_tuple_expression] = STATE(1714), + [sym_unit_expression] = STATE(1714), + [sym_struct_expression] = STATE(1714), + [sym_if_expression] = STATE(1714), + [sym_match_expression] = STATE(1714), + [sym_while_expression] = STATE(1714), + [sym_loop_expression] = STATE(1714), + [sym_for_expression] = STATE(1714), + [sym_const_block] = STATE(1714), + [sym_closure_expression] = STATE(1714), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1714), + [sym_continue_expression] = STATE(1714), + [sym_index_expression] = STATE(1714), + [sym_await_expression] = STATE(1714), + [sym_field_expression] = STATE(1672), + [sym_unsafe_block] = STATE(1714), + [sym_async_block] = STATE(1714), + [sym_gen_block] = STATE(1714), + [sym_try_block] = STATE(1714), + [sym_block] = STATE(1714), + [sym__literal] = STATE(1714), + [sym_string_literal] = STATE(1766), + [sym_raw_string_literal] = STATE(1766), + [sym_boolean_literal] = STATE(1766), + [sym_line_comment] = STATE(43), + [sym_block_comment] = STATE(43), [sym_identifier] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(502), + [anon_sym_LPAREN] = ACTIONS(470), + [anon_sym_LBRACK] = ACTIONS(472), [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_EQ_GT] = ACTIONS(380), - [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_EQ_GT] = ACTIONS(402), + [anon_sym_PLUS] = ACTIONS(404), [anon_sym_STAR] = ACTIONS(418), - [anon_sym_QMARK] = ACTIONS(380), + [anon_sym_QMARK] = ACTIONS(402), [anon_sym_u8] = ACTIONS(416), [anon_sym_i8] = ACTIONS(416), [anon_sym_u16] = ACTIONS(416), @@ -21417,40 +20973,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(416), [anon_sym_char] = ACTIONS(416), [anon_sym_DASH] = ACTIONS(418), - [anon_sym_SLASH] = ACTIONS(382), - [anon_sym_PERCENT] = ACTIONS(382), - [anon_sym_CARET] = ACTIONS(382), + [anon_sym_SLASH] = ACTIONS(404), + [anon_sym_PERCENT] = ACTIONS(404), + [anon_sym_CARET] = ACTIONS(404), [anon_sym_BANG] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(504), + [anon_sym_AMP] = ACTIONS(474), [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(380), - [anon_sym_PIPE_PIPE] = ACTIONS(380), - [anon_sym_LT_LT] = ACTIONS(382), - [anon_sym_GT_GT] = ACTIONS(382), - [anon_sym_PLUS_EQ] = ACTIONS(380), - [anon_sym_DASH_EQ] = ACTIONS(380), - [anon_sym_STAR_EQ] = ACTIONS(380), - [anon_sym_SLASH_EQ] = ACTIONS(380), - [anon_sym_PERCENT_EQ] = ACTIONS(380), - [anon_sym_CARET_EQ] = ACTIONS(380), - [anon_sym_AMP_EQ] = ACTIONS(380), - [anon_sym_PIPE_EQ] = ACTIONS(380), - [anon_sym_LT_LT_EQ] = ACTIONS(380), - [anon_sym_GT_GT_EQ] = ACTIONS(380), - [anon_sym_EQ] = ACTIONS(382), - [anon_sym_EQ_EQ] = ACTIONS(380), - [anon_sym_BANG_EQ] = ACTIONS(380), - [anon_sym_GT] = ACTIONS(382), + [anon_sym_AMP_AMP] = ACTIONS(402), + [anon_sym_PIPE_PIPE] = ACTIONS(402), + [anon_sym_LT_LT] = ACTIONS(404), + [anon_sym_GT_GT] = ACTIONS(404), + [anon_sym_PLUS_EQ] = ACTIONS(402), + [anon_sym_DASH_EQ] = ACTIONS(402), + [anon_sym_STAR_EQ] = ACTIONS(402), + [anon_sym_SLASH_EQ] = ACTIONS(402), + [anon_sym_PERCENT_EQ] = ACTIONS(402), + [anon_sym_CARET_EQ] = ACTIONS(402), + [anon_sym_AMP_EQ] = ACTIONS(402), + [anon_sym_PIPE_EQ] = ACTIONS(402), + [anon_sym_LT_LT_EQ] = ACTIONS(402), + [anon_sym_GT_GT_EQ] = ACTIONS(402), + [anon_sym_EQ] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(402), + [anon_sym_BANG_EQ] = ACTIONS(402), + [anon_sym_GT] = ACTIONS(404), [anon_sym_LT] = ACTIONS(388), - [anon_sym_GT_EQ] = ACTIONS(380), - [anon_sym_LT_EQ] = ACTIONS(380), - [anon_sym_DOT] = ACTIONS(382), - [anon_sym_DOT_DOT] = ACTIONS(506), - [anon_sym_DOT_DOT_DOT] = ACTIONS(380), - [anon_sym_DOT_DOT_EQ] = ACTIONS(380), + [anon_sym_GT_EQ] = ACTIONS(402), + [anon_sym_LT_EQ] = ACTIONS(402), + [anon_sym_DOT] = ACTIONS(404), + [anon_sym_DOT_DOT] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(402), + [anon_sym_DOT_DOT_EQ] = ACTIONS(402), [anon_sym_COLON_COLON] = ACTIONS(420), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(382), + [anon_sym_as] = ACTIONS(404), [anon_sym_async] = ACTIONS(422), [anon_sym_break] = ACTIONS(424), [anon_sym_const] = ACTIONS(426), @@ -21484,64 +21040,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(468), [sym_float_literal] = ACTIONS(456), }, - [STATE(46)] = { - [sym_bracketed_type] = STATE(3669), - [sym_generic_function] = STATE(1894), - [sym_generic_type_with_turbofish] = STATE(3057), - [sym__expression_except_range] = STATE(1672), - [sym__expression] = STATE(1918), - [sym_macro_invocation] = STATE(1901), - [sym_scoped_identifier] = STATE(1644), - [sym_scoped_type_identifier_in_expression_position] = STATE(3253), - [sym_range_expression] = STATE(1897), - [sym_unary_expression] = STATE(1894), - [sym_try_expression] = STATE(1894), - [sym_reference_expression] = STATE(1894), - [sym_binary_expression] = STATE(1894), - [sym_assignment_expression] = STATE(1894), - [sym_compound_assignment_expr] = STATE(1894), - [sym_type_cast_expression] = STATE(1894), - [sym_return_expression] = STATE(1894), - [sym_yield_expression] = STATE(1894), - [sym_call_expression] = STATE(1894), - [sym_array_expression] = STATE(1894), - [sym_parenthesized_expression] = STATE(1894), - [sym_tuple_expression] = STATE(1894), - [sym_unit_expression] = STATE(1894), - [sym_struct_expression] = STATE(1894), - [sym_if_expression] = STATE(1894), - [sym_match_expression] = STATE(1894), - [sym_while_expression] = STATE(1894), - [sym_loop_expression] = STATE(1894), - [sym_for_expression] = STATE(1894), - [sym_const_block] = STATE(1894), - [sym_closure_expression] = STATE(1894), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3777), - [sym_break_expression] = STATE(1894), - [sym_continue_expression] = STATE(1894), - [sym_index_expression] = STATE(1894), - [sym_await_expression] = STATE(1894), - [sym_field_expression] = STATE(1674), - [sym_unsafe_block] = STATE(1894), - [sym_async_block] = STATE(1894), - [sym_gen_block] = STATE(1894), - [sym_try_block] = STATE(1894), - [sym_block] = STATE(1894), - [sym__literal] = STATE(1894), - [sym_string_literal] = STATE(1768), - [sym_raw_string_literal] = STATE(1768), - [sym_boolean_literal] = STATE(1768), - [sym_line_comment] = STATE(46), - [sym_block_comment] = STATE(46), + [44] = { + [sym_bracketed_type] = STATE(3659), + [sym_generic_function] = STATE(1714), + [sym_generic_type_with_turbofish] = STATE(2899), + [sym__expression_except_range] = STATE(1670), + [sym__expression] = STATE(1748), + [sym_macro_invocation] = STATE(1893), + [sym_scoped_identifier] = STATE(1650), + [sym_scoped_type_identifier_in_expression_position] = STATE(3266), + [sym_range_expression] = STATE(1889), + [sym_unary_expression] = STATE(1714), + [sym_try_expression] = STATE(1714), + [sym_reference_expression] = STATE(1714), + [sym_binary_expression] = STATE(1714), + [sym_assignment_expression] = STATE(1714), + [sym_compound_assignment_expr] = STATE(1714), + [sym_type_cast_expression] = STATE(1714), + [sym_return_expression] = STATE(1714), + [sym_yield_expression] = STATE(1714), + [sym_call_expression] = STATE(1714), + [sym_array_expression] = STATE(1714), + [sym_parenthesized_expression] = STATE(1714), + [sym_tuple_expression] = STATE(1714), + [sym_unit_expression] = STATE(1714), + [sym_struct_expression] = STATE(1714), + [sym_if_expression] = STATE(1714), + [sym_match_expression] = STATE(1714), + [sym_while_expression] = STATE(1714), + [sym_loop_expression] = STATE(1714), + [sym_for_expression] = STATE(1714), + [sym_const_block] = STATE(1714), + [sym_closure_expression] = STATE(1714), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1714), + [sym_continue_expression] = STATE(1714), + [sym_index_expression] = STATE(1714), + [sym_await_expression] = STATE(1714), + [sym_field_expression] = STATE(1672), + [sym_unsafe_block] = STATE(1714), + [sym_async_block] = STATE(1714), + [sym_gen_block] = STATE(1714), + [sym_try_block] = STATE(1714), + [sym_block] = STATE(1714), + [sym__literal] = STATE(1714), + [sym_string_literal] = STATE(1766), + [sym_raw_string_literal] = STATE(1766), + [sym_boolean_literal] = STATE(1766), + [sym_line_comment] = STATE(44), + [sym_block_comment] = STATE(44), [sym_identifier] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(502), + [anon_sym_LPAREN] = ACTIONS(470), + [anon_sym_LBRACK] = ACTIONS(392), [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_EQ_GT] = ACTIONS(406), - [anon_sym_PLUS] = ACTIONS(408), - [anon_sym_STAR] = ACTIONS(418), - [anon_sym_QMARK] = ACTIONS(406), + [anon_sym_EQ_GT] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_STAR] = ACTIONS(394), + [anon_sym_QMARK] = ACTIONS(392), [anon_sym_u8] = ACTIONS(416), [anon_sym_i8] = ACTIONS(416), [anon_sym_u16] = ACTIONS(416), @@ -21559,41 +21115,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(416), [anon_sym_str] = ACTIONS(416), [anon_sym_char] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_SLASH] = ACTIONS(408), - [anon_sym_PERCENT] = ACTIONS(408), - [anon_sym_CARET] = ACTIONS(408), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_SLASH] = ACTIONS(394), + [anon_sym_PERCENT] = ACTIONS(394), + [anon_sym_CARET] = ACTIONS(394), [anon_sym_BANG] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(504), - [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(406), - [anon_sym_PIPE_PIPE] = ACTIONS(406), - [anon_sym_LT_LT] = ACTIONS(408), - [anon_sym_GT_GT] = ACTIONS(408), - [anon_sym_PLUS_EQ] = ACTIONS(406), - [anon_sym_DASH_EQ] = ACTIONS(406), - [anon_sym_STAR_EQ] = ACTIONS(406), - [anon_sym_SLASH_EQ] = ACTIONS(406), - [anon_sym_PERCENT_EQ] = ACTIONS(406), - [anon_sym_CARET_EQ] = ACTIONS(406), - [anon_sym_AMP_EQ] = ACTIONS(406), - [anon_sym_PIPE_EQ] = ACTIONS(406), - [anon_sym_LT_LT_EQ] = ACTIONS(406), - [anon_sym_GT_GT_EQ] = ACTIONS(406), - [anon_sym_EQ] = ACTIONS(408), - [anon_sym_EQ_EQ] = ACTIONS(406), - [anon_sym_BANG_EQ] = ACTIONS(406), - [anon_sym_GT] = ACTIONS(408), - [anon_sym_LT] = ACTIONS(388), - [anon_sym_GT_EQ] = ACTIONS(406), - [anon_sym_LT_EQ] = ACTIONS(406), - [anon_sym_DOT] = ACTIONS(408), - [anon_sym_DOT_DOT] = ACTIONS(506), - [anon_sym_DOT_DOT_DOT] = ACTIONS(406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(394), + [anon_sym_PIPE] = ACTIONS(394), + [anon_sym_AMP_AMP] = ACTIONS(392), + [anon_sym_PIPE_PIPE] = ACTIONS(392), + [anon_sym_LT_LT] = ACTIONS(394), + [anon_sym_GT_GT] = ACTIONS(394), + [anon_sym_PLUS_EQ] = ACTIONS(392), + [anon_sym_DASH_EQ] = ACTIONS(392), + [anon_sym_STAR_EQ] = ACTIONS(392), + [anon_sym_SLASH_EQ] = ACTIONS(392), + [anon_sym_PERCENT_EQ] = ACTIONS(392), + [anon_sym_CARET_EQ] = ACTIONS(392), + [anon_sym_AMP_EQ] = ACTIONS(392), + [anon_sym_PIPE_EQ] = ACTIONS(392), + [anon_sym_LT_LT_EQ] = ACTIONS(392), + [anon_sym_GT_GT_EQ] = ACTIONS(392), + [anon_sym_EQ] = ACTIONS(394), + [anon_sym_EQ_EQ] = ACTIONS(392), + [anon_sym_BANG_EQ] = ACTIONS(392), + [anon_sym_GT] = ACTIONS(394), + [anon_sym_LT] = ACTIONS(394), + [anon_sym_GT_EQ] = ACTIONS(392), + [anon_sym_LT_EQ] = ACTIONS(392), + [anon_sym_DOT] = ACTIONS(394), + [anon_sym_DOT_DOT] = ACTIONS(394), + [anon_sym_DOT_DOT_DOT] = ACTIONS(392), + [anon_sym_DOT_DOT_EQ] = ACTIONS(392), [anon_sym_COLON_COLON] = ACTIONS(420), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(408), + [anon_sym_as] = ACTIONS(394), [anon_sym_async] = ACTIONS(422), [anon_sym_break] = ACTIONS(424), [anon_sym_const] = ACTIONS(426), @@ -21627,64 +21183,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(468), [sym_float_literal] = ACTIONS(456), }, - [STATE(47)] = { - [sym_bracketed_type] = STATE(3669), - [sym_generic_function] = STATE(1894), - [sym_generic_type_with_turbofish] = STATE(3057), - [sym__expression_except_range] = STATE(1672), - [sym__expression] = STATE(1912), - [sym_macro_invocation] = STATE(1901), - [sym_scoped_identifier] = STATE(1644), - [sym_scoped_type_identifier_in_expression_position] = STATE(3253), - [sym_range_expression] = STATE(1897), - [sym_unary_expression] = STATE(1894), - [sym_try_expression] = STATE(1894), - [sym_reference_expression] = STATE(1894), - [sym_binary_expression] = STATE(1894), - [sym_assignment_expression] = STATE(1894), - [sym_compound_assignment_expr] = STATE(1894), - [sym_type_cast_expression] = STATE(1894), - [sym_return_expression] = STATE(1894), - [sym_yield_expression] = STATE(1894), - [sym_call_expression] = STATE(1894), - [sym_array_expression] = STATE(1894), - [sym_parenthesized_expression] = STATE(1894), - [sym_tuple_expression] = STATE(1894), - [sym_unit_expression] = STATE(1894), - [sym_struct_expression] = STATE(1894), - [sym_if_expression] = STATE(1894), - [sym_match_expression] = STATE(1894), - [sym_while_expression] = STATE(1894), - [sym_loop_expression] = STATE(1894), - [sym_for_expression] = STATE(1894), - [sym_const_block] = STATE(1894), - [sym_closure_expression] = STATE(1894), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(43), - [sym_break_expression] = STATE(1894), - [sym_continue_expression] = STATE(1894), - [sym_index_expression] = STATE(1894), - [sym_await_expression] = STATE(1894), - [sym_field_expression] = STATE(1674), - [sym_unsafe_block] = STATE(1894), - [sym_async_block] = STATE(1894), - [sym_gen_block] = STATE(1894), - [sym_try_block] = STATE(1894), - [sym_block] = STATE(1894), - [sym__literal] = STATE(1894), - [sym_string_literal] = STATE(1768), - [sym_raw_string_literal] = STATE(1768), - [sym_boolean_literal] = STATE(1768), - [sym_line_comment] = STATE(47), - [sym_block_comment] = STATE(47), + [45] = { + [sym_bracketed_type] = STATE(3659), + [sym_generic_function] = STATE(1714), + [sym_generic_type_with_turbofish] = STATE(2899), + [sym__expression_except_range] = STATE(1670), + [sym__expression] = STATE(1748), + [sym_macro_invocation] = STATE(1893), + [sym_scoped_identifier] = STATE(1650), + [sym_scoped_type_identifier_in_expression_position] = STATE(3266), + [sym_range_expression] = STATE(1889), + [sym_unary_expression] = STATE(1714), + [sym_try_expression] = STATE(1714), + [sym_reference_expression] = STATE(1714), + [sym_binary_expression] = STATE(1714), + [sym_assignment_expression] = STATE(1714), + [sym_compound_assignment_expr] = STATE(1714), + [sym_type_cast_expression] = STATE(1714), + [sym_return_expression] = STATE(1714), + [sym_yield_expression] = STATE(1714), + [sym_call_expression] = STATE(1714), + [sym_array_expression] = STATE(1714), + [sym_parenthesized_expression] = STATE(1714), + [sym_tuple_expression] = STATE(1714), + [sym_unit_expression] = STATE(1714), + [sym_struct_expression] = STATE(1714), + [sym_if_expression] = STATE(1714), + [sym_match_expression] = STATE(1714), + [sym_while_expression] = STATE(1714), + [sym_loop_expression] = STATE(1714), + [sym_for_expression] = STATE(1714), + [sym_const_block] = STATE(1714), + [sym_closure_expression] = STATE(1714), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1714), + [sym_continue_expression] = STATE(1714), + [sym_index_expression] = STATE(1714), + [sym_await_expression] = STATE(1714), + [sym_field_expression] = STATE(1672), + [sym_unsafe_block] = STATE(1714), + [sym_async_block] = STATE(1714), + [sym_gen_block] = STATE(1714), + [sym_try_block] = STATE(1714), + [sym_block] = STATE(1714), + [sym__literal] = STATE(1714), + [sym_string_literal] = STATE(1766), + [sym_raw_string_literal] = STATE(1766), + [sym_boolean_literal] = STATE(1766), + [sym_line_comment] = STATE(45), + [sym_block_comment] = STATE(45), [sym_identifier] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(396), - [anon_sym_LBRACK] = ACTIONS(396), + [anon_sym_LPAREN] = ACTIONS(392), + [anon_sym_LBRACK] = ACTIONS(392), [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_EQ_GT] = ACTIONS(396), - [anon_sym_PLUS] = ACTIONS(398), - [anon_sym_STAR] = ACTIONS(398), - [anon_sym_QMARK] = ACTIONS(396), + [anon_sym_EQ_GT] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_STAR] = ACTIONS(394), + [anon_sym_QMARK] = ACTIONS(392), [anon_sym_u8] = ACTIONS(416), [anon_sym_i8] = ACTIONS(416), [anon_sym_u16] = ACTIONS(416), @@ -21702,41 +21258,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(416), [anon_sym_str] = ACTIONS(416), [anon_sym_char] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(398), - [anon_sym_SLASH] = ACTIONS(398), - [anon_sym_PERCENT] = ACTIONS(398), - [anon_sym_CARET] = ACTIONS(398), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_SLASH] = ACTIONS(394), + [anon_sym_PERCENT] = ACTIONS(394), + [anon_sym_CARET] = ACTIONS(394), [anon_sym_BANG] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(398), - [anon_sym_PIPE] = ACTIONS(398), - [anon_sym_AMP_AMP] = ACTIONS(396), - [anon_sym_PIPE_PIPE] = ACTIONS(396), - [anon_sym_LT_LT] = ACTIONS(398), - [anon_sym_GT_GT] = ACTIONS(398), - [anon_sym_PLUS_EQ] = ACTIONS(396), - [anon_sym_DASH_EQ] = ACTIONS(396), - [anon_sym_STAR_EQ] = ACTIONS(396), - [anon_sym_SLASH_EQ] = ACTIONS(396), - [anon_sym_PERCENT_EQ] = ACTIONS(396), - [anon_sym_CARET_EQ] = ACTIONS(396), - [anon_sym_AMP_EQ] = ACTIONS(396), - [anon_sym_PIPE_EQ] = ACTIONS(396), - [anon_sym_LT_LT_EQ] = ACTIONS(396), - [anon_sym_GT_GT_EQ] = ACTIONS(396), - [anon_sym_EQ] = ACTIONS(398), - [anon_sym_EQ_EQ] = ACTIONS(396), - [anon_sym_BANG_EQ] = ACTIONS(396), - [anon_sym_GT] = ACTIONS(398), - [anon_sym_LT] = ACTIONS(398), - [anon_sym_GT_EQ] = ACTIONS(396), - [anon_sym_LT_EQ] = ACTIONS(396), - [anon_sym_DOT] = ACTIONS(398), - [anon_sym_DOT_DOT] = ACTIONS(398), - [anon_sym_DOT_DOT_DOT] = ACTIONS(396), - [anon_sym_DOT_DOT_EQ] = ACTIONS(396), + [anon_sym_AMP] = ACTIONS(394), + [anon_sym_PIPE] = ACTIONS(394), + [anon_sym_AMP_AMP] = ACTIONS(392), + [anon_sym_PIPE_PIPE] = ACTIONS(392), + [anon_sym_LT_LT] = ACTIONS(394), + [anon_sym_GT_GT] = ACTIONS(394), + [anon_sym_PLUS_EQ] = ACTIONS(392), + [anon_sym_DASH_EQ] = ACTIONS(392), + [anon_sym_STAR_EQ] = ACTIONS(392), + [anon_sym_SLASH_EQ] = ACTIONS(392), + [anon_sym_PERCENT_EQ] = ACTIONS(392), + [anon_sym_CARET_EQ] = ACTIONS(392), + [anon_sym_AMP_EQ] = ACTIONS(392), + [anon_sym_PIPE_EQ] = ACTIONS(392), + [anon_sym_LT_LT_EQ] = ACTIONS(392), + [anon_sym_GT_GT_EQ] = ACTIONS(392), + [anon_sym_EQ] = ACTIONS(394), + [anon_sym_EQ_EQ] = ACTIONS(392), + [anon_sym_BANG_EQ] = ACTIONS(392), + [anon_sym_GT] = ACTIONS(394), + [anon_sym_LT] = ACTIONS(394), + [anon_sym_GT_EQ] = ACTIONS(392), + [anon_sym_LT_EQ] = ACTIONS(392), + [anon_sym_DOT] = ACTIONS(394), + [anon_sym_DOT_DOT] = ACTIONS(394), + [anon_sym_DOT_DOT_DOT] = ACTIONS(392), + [anon_sym_DOT_DOT_EQ] = ACTIONS(392), [anon_sym_COLON_COLON] = ACTIONS(420), - [anon_sym_SQUOTE] = ACTIONS(508), - [anon_sym_as] = ACTIONS(398), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(394), [anon_sym_async] = ACTIONS(422), [anon_sym_break] = ACTIONS(424), [anon_sym_const] = ACTIONS(426), @@ -21770,64 +21326,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(468), [sym_float_literal] = ACTIONS(456), }, - [STATE(48)] = { - [sym_bracketed_type] = STATE(3669), - [sym_generic_function] = STATE(1894), - [sym_generic_type_with_turbofish] = STATE(3057), - [sym__expression_except_range] = STATE(1672), - [sym__expression] = STATE(1910), - [sym_macro_invocation] = STATE(1901), - [sym_scoped_identifier] = STATE(1644), - [sym_scoped_type_identifier_in_expression_position] = STATE(3253), - [sym_range_expression] = STATE(1897), - [sym_unary_expression] = STATE(1894), - [sym_try_expression] = STATE(1894), - [sym_reference_expression] = STATE(1894), - [sym_binary_expression] = STATE(1894), - [sym_assignment_expression] = STATE(1894), - [sym_compound_assignment_expr] = STATE(1894), - [sym_type_cast_expression] = STATE(1894), - [sym_return_expression] = STATE(1894), - [sym_yield_expression] = STATE(1894), - [sym_call_expression] = STATE(1894), - [sym_array_expression] = STATE(1894), - [sym_parenthesized_expression] = STATE(1894), - [sym_tuple_expression] = STATE(1894), - [sym_unit_expression] = STATE(1894), - [sym_struct_expression] = STATE(1894), - [sym_if_expression] = STATE(1894), - [sym_match_expression] = STATE(1894), - [sym_while_expression] = STATE(1894), - [sym_loop_expression] = STATE(1894), - [sym_for_expression] = STATE(1894), - [sym_const_block] = STATE(1894), - [sym_closure_expression] = STATE(1894), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3777), - [sym_break_expression] = STATE(1894), - [sym_continue_expression] = STATE(1894), - [sym_index_expression] = STATE(1894), - [sym_await_expression] = STATE(1894), - [sym_field_expression] = STATE(1674), - [sym_unsafe_block] = STATE(1894), - [sym_async_block] = STATE(1894), - [sym_gen_block] = STATE(1894), - [sym_try_block] = STATE(1894), - [sym_block] = STATE(1894), - [sym__literal] = STATE(1894), - [sym_string_literal] = STATE(1768), - [sym_raw_string_literal] = STATE(1768), - [sym_boolean_literal] = STATE(1768), - [sym_line_comment] = STATE(48), - [sym_block_comment] = STATE(48), + [46] = { + [sym_bracketed_type] = STATE(3659), + [sym_generic_function] = STATE(1714), + [sym_generic_type_with_turbofish] = STATE(2899), + [sym__expression_except_range] = STATE(1670), + [sym__expression] = STATE(1904), + [sym_macro_invocation] = STATE(1893), + [sym_scoped_identifier] = STATE(1650), + [sym_scoped_type_identifier_in_expression_position] = STATE(3266), + [sym_range_expression] = STATE(1889), + [sym_unary_expression] = STATE(1714), + [sym_try_expression] = STATE(1714), + [sym_reference_expression] = STATE(1714), + [sym_binary_expression] = STATE(1714), + [sym_assignment_expression] = STATE(1714), + [sym_compound_assignment_expr] = STATE(1714), + [sym_type_cast_expression] = STATE(1714), + [sym_return_expression] = STATE(1714), + [sym_yield_expression] = STATE(1714), + [sym_call_expression] = STATE(1714), + [sym_array_expression] = STATE(1714), + [sym_parenthesized_expression] = STATE(1714), + [sym_tuple_expression] = STATE(1714), + [sym_unit_expression] = STATE(1714), + [sym_struct_expression] = STATE(1714), + [sym_if_expression] = STATE(1714), + [sym_match_expression] = STATE(1714), + [sym_while_expression] = STATE(1714), + [sym_loop_expression] = STATE(1714), + [sym_for_expression] = STATE(1714), + [sym_const_block] = STATE(1714), + [sym_closure_expression] = STATE(1714), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(42), + [sym_break_expression] = STATE(1714), + [sym_continue_expression] = STATE(1714), + [sym_index_expression] = STATE(1714), + [sym_await_expression] = STATE(1714), + [sym_field_expression] = STATE(1672), + [sym_unsafe_block] = STATE(1714), + [sym_async_block] = STATE(1714), + [sym_gen_block] = STATE(1714), + [sym_try_block] = STATE(1714), + [sym_block] = STATE(1714), + [sym__literal] = STATE(1714), + [sym_string_literal] = STATE(1766), + [sym_raw_string_literal] = STATE(1766), + [sym_boolean_literal] = STATE(1766), + [sym_line_comment] = STATE(46), + [sym_block_comment] = STATE(46), [sym_identifier] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(402), + [anon_sym_LPAREN] = ACTIONS(396), + [anon_sym_LBRACK] = ACTIONS(396), [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_EQ_GT] = ACTIONS(402), - [anon_sym_PLUS] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(404), - [anon_sym_QMARK] = ACTIONS(402), + [anon_sym_EQ_GT] = ACTIONS(396), + [anon_sym_PLUS] = ACTIONS(398), + [anon_sym_STAR] = ACTIONS(398), + [anon_sym_QMARK] = ACTIONS(396), [anon_sym_u8] = ACTIONS(416), [anon_sym_i8] = ACTIONS(416), [anon_sym_u16] = ACTIONS(416), @@ -21845,41 +21401,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(416), [anon_sym_str] = ACTIONS(416), [anon_sym_char] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(404), - [anon_sym_SLASH] = ACTIONS(404), - [anon_sym_PERCENT] = ACTIONS(404), - [anon_sym_CARET] = ACTIONS(404), + [anon_sym_DASH] = ACTIONS(398), + [anon_sym_SLASH] = ACTIONS(398), + [anon_sym_PERCENT] = ACTIONS(398), + [anon_sym_CARET] = ACTIONS(398), [anon_sym_BANG] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(404), - [anon_sym_PIPE] = ACTIONS(404), - [anon_sym_AMP_AMP] = ACTIONS(402), - [anon_sym_PIPE_PIPE] = ACTIONS(402), - [anon_sym_LT_LT] = ACTIONS(404), - [anon_sym_GT_GT] = ACTIONS(404), - [anon_sym_PLUS_EQ] = ACTIONS(402), - [anon_sym_DASH_EQ] = ACTIONS(402), - [anon_sym_STAR_EQ] = ACTIONS(402), - [anon_sym_SLASH_EQ] = ACTIONS(402), - [anon_sym_PERCENT_EQ] = ACTIONS(402), - [anon_sym_CARET_EQ] = ACTIONS(402), - [anon_sym_AMP_EQ] = ACTIONS(402), - [anon_sym_PIPE_EQ] = ACTIONS(402), - [anon_sym_LT_LT_EQ] = ACTIONS(402), - [anon_sym_GT_GT_EQ] = ACTIONS(402), - [anon_sym_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(402), - [anon_sym_BANG_EQ] = ACTIONS(402), - [anon_sym_GT] = ACTIONS(404), - [anon_sym_LT] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(402), - [anon_sym_LT_EQ] = ACTIONS(402), - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_DOT_DOT] = ACTIONS(404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(402), - [anon_sym_DOT_DOT_EQ] = ACTIONS(402), + [anon_sym_AMP] = ACTIONS(398), + [anon_sym_PIPE] = ACTIONS(398), + [anon_sym_AMP_AMP] = ACTIONS(396), + [anon_sym_PIPE_PIPE] = ACTIONS(396), + [anon_sym_LT_LT] = ACTIONS(398), + [anon_sym_GT_GT] = ACTIONS(398), + [anon_sym_PLUS_EQ] = ACTIONS(396), + [anon_sym_DASH_EQ] = ACTIONS(396), + [anon_sym_STAR_EQ] = ACTIONS(396), + [anon_sym_SLASH_EQ] = ACTIONS(396), + [anon_sym_PERCENT_EQ] = ACTIONS(396), + [anon_sym_CARET_EQ] = ACTIONS(396), + [anon_sym_AMP_EQ] = ACTIONS(396), + [anon_sym_PIPE_EQ] = ACTIONS(396), + [anon_sym_LT_LT_EQ] = ACTIONS(396), + [anon_sym_GT_GT_EQ] = ACTIONS(396), + [anon_sym_EQ] = ACTIONS(398), + [anon_sym_EQ_EQ] = ACTIONS(396), + [anon_sym_BANG_EQ] = ACTIONS(396), + [anon_sym_GT] = ACTIONS(398), + [anon_sym_LT] = ACTIONS(398), + [anon_sym_GT_EQ] = ACTIONS(396), + [anon_sym_LT_EQ] = ACTIONS(396), + [anon_sym_DOT] = ACTIONS(398), + [anon_sym_DOT_DOT] = ACTIONS(398), + [anon_sym_DOT_DOT_DOT] = ACTIONS(396), + [anon_sym_DOT_DOT_EQ] = ACTIONS(396), [anon_sym_COLON_COLON] = ACTIONS(420), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(404), + [anon_sym_SQUOTE] = ACTIONS(478), + [anon_sym_as] = ACTIONS(398), [anon_sym_async] = ACTIONS(422), [anon_sym_break] = ACTIONS(424), [anon_sym_const] = ACTIONS(426), @@ -21913,64 +21469,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(468), [sym_float_literal] = ACTIONS(456), }, - [STATE(49)] = { - [sym_bracketed_type] = STATE(3669), - [sym_generic_function] = STATE(1894), - [sym_generic_type_with_turbofish] = STATE(3057), - [sym__expression_except_range] = STATE(1672), - [sym__expression] = STATE(1751), - [sym_macro_invocation] = STATE(1901), - [sym_scoped_identifier] = STATE(1644), - [sym_scoped_type_identifier_in_expression_position] = STATE(3253), - [sym_range_expression] = STATE(1897), - [sym_unary_expression] = STATE(1894), - [sym_try_expression] = STATE(1894), - [sym_reference_expression] = STATE(1894), - [sym_binary_expression] = STATE(1894), - [sym_assignment_expression] = STATE(1894), - [sym_compound_assignment_expr] = STATE(1894), - [sym_type_cast_expression] = STATE(1894), - [sym_return_expression] = STATE(1894), - [sym_yield_expression] = STATE(1894), - [sym_call_expression] = STATE(1894), - [sym_array_expression] = STATE(1894), - [sym_parenthesized_expression] = STATE(1894), - [sym_tuple_expression] = STATE(1894), - [sym_unit_expression] = STATE(1894), - [sym_struct_expression] = STATE(1894), - [sym_if_expression] = STATE(1894), - [sym_match_expression] = STATE(1894), - [sym_while_expression] = STATE(1894), - [sym_loop_expression] = STATE(1894), - [sym_for_expression] = STATE(1894), - [sym_const_block] = STATE(1894), - [sym_closure_expression] = STATE(1894), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3777), - [sym_break_expression] = STATE(1894), - [sym_continue_expression] = STATE(1894), - [sym_index_expression] = STATE(1894), - [sym_await_expression] = STATE(1894), - [sym_field_expression] = STATE(1674), - [sym_unsafe_block] = STATE(1894), - [sym_async_block] = STATE(1894), - [sym_gen_block] = STATE(1894), - [sym_try_block] = STATE(1894), - [sym_block] = STATE(1894), - [sym__literal] = STATE(1894), - [sym_string_literal] = STATE(1768), - [sym_raw_string_literal] = STATE(1768), - [sym_boolean_literal] = STATE(1768), - [sym_line_comment] = STATE(49), - [sym_block_comment] = STATE(49), + [47] = { + [sym_bracketed_type] = STATE(3659), + [sym_generic_function] = STATE(1714), + [sym_generic_type_with_turbofish] = STATE(2899), + [sym__expression_except_range] = STATE(1670), + [sym__expression] = STATE(1908), + [sym_macro_invocation] = STATE(1893), + [sym_scoped_identifier] = STATE(1650), + [sym_scoped_type_identifier_in_expression_position] = STATE(3266), + [sym_range_expression] = STATE(1889), + [sym_unary_expression] = STATE(1714), + [sym_try_expression] = STATE(1714), + [sym_reference_expression] = STATE(1714), + [sym_binary_expression] = STATE(1714), + [sym_assignment_expression] = STATE(1714), + [sym_compound_assignment_expr] = STATE(1714), + [sym_type_cast_expression] = STATE(1714), + [sym_return_expression] = STATE(1714), + [sym_yield_expression] = STATE(1714), + [sym_call_expression] = STATE(1714), + [sym_array_expression] = STATE(1714), + [sym_parenthesized_expression] = STATE(1714), + [sym_tuple_expression] = STATE(1714), + [sym_unit_expression] = STATE(1714), + [sym_struct_expression] = STATE(1714), + [sym_if_expression] = STATE(1714), + [sym_match_expression] = STATE(1714), + [sym_while_expression] = STATE(1714), + [sym_loop_expression] = STATE(1714), + [sym_for_expression] = STATE(1714), + [sym_const_block] = STATE(1714), + [sym_closure_expression] = STATE(1714), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1714), + [sym_continue_expression] = STATE(1714), + [sym_index_expression] = STATE(1714), + [sym_await_expression] = STATE(1714), + [sym_field_expression] = STATE(1672), + [sym_unsafe_block] = STATE(1714), + [sym_async_block] = STATE(1714), + [sym_gen_block] = STATE(1714), + [sym_try_block] = STATE(1714), + [sym_block] = STATE(1714), + [sym__literal] = STATE(1714), + [sym_string_literal] = STATE(1766), + [sym_raw_string_literal] = STATE(1766), + [sym_boolean_literal] = STATE(1766), + [sym_line_comment] = STATE(47), + [sym_block_comment] = STATE(47), [sym_identifier] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(392), + [anon_sym_LPAREN] = ACTIONS(470), + [anon_sym_LBRACK] = ACTIONS(472), [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_EQ_GT] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_STAR] = ACTIONS(394), - [anon_sym_QMARK] = ACTIONS(392), + [anon_sym_EQ_GT] = ACTIONS(380), + [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_STAR] = ACTIONS(418), + [anon_sym_QMARK] = ACTIONS(380), [anon_sym_u8] = ACTIONS(416), [anon_sym_i8] = ACTIONS(416), [anon_sym_u16] = ACTIONS(416), @@ -21988,41 +21544,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(416), [anon_sym_str] = ACTIONS(416), [anon_sym_char] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_PERCENT] = ACTIONS(394), - [anon_sym_CARET] = ACTIONS(394), + [anon_sym_DASH] = ACTIONS(418), + [anon_sym_SLASH] = ACTIONS(382), + [anon_sym_PERCENT] = ACTIONS(382), + [anon_sym_CARET] = ACTIONS(382), [anon_sym_BANG] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(394), - [anon_sym_PIPE] = ACTIONS(394), - [anon_sym_AMP_AMP] = ACTIONS(392), - [anon_sym_PIPE_PIPE] = ACTIONS(392), - [anon_sym_LT_LT] = ACTIONS(394), - [anon_sym_GT_GT] = ACTIONS(394), - [anon_sym_PLUS_EQ] = ACTIONS(392), - [anon_sym_DASH_EQ] = ACTIONS(392), - [anon_sym_STAR_EQ] = ACTIONS(392), - [anon_sym_SLASH_EQ] = ACTIONS(392), - [anon_sym_PERCENT_EQ] = ACTIONS(392), - [anon_sym_CARET_EQ] = ACTIONS(392), - [anon_sym_AMP_EQ] = ACTIONS(392), - [anon_sym_PIPE_EQ] = ACTIONS(392), - [anon_sym_LT_LT_EQ] = ACTIONS(392), - [anon_sym_GT_GT_EQ] = ACTIONS(392), - [anon_sym_EQ] = ACTIONS(394), - [anon_sym_EQ_EQ] = ACTIONS(392), - [anon_sym_BANG_EQ] = ACTIONS(392), - [anon_sym_GT] = ACTIONS(394), - [anon_sym_LT] = ACTIONS(394), - [anon_sym_GT_EQ] = ACTIONS(392), - [anon_sym_LT_EQ] = ACTIONS(392), - [anon_sym_DOT] = ACTIONS(394), - [anon_sym_DOT_DOT] = ACTIONS(394), - [anon_sym_DOT_DOT_DOT] = ACTIONS(392), - [anon_sym_DOT_DOT_EQ] = ACTIONS(392), + [anon_sym_AMP] = ACTIONS(474), + [anon_sym_PIPE] = ACTIONS(386), + [anon_sym_AMP_AMP] = ACTIONS(380), + [anon_sym_PIPE_PIPE] = ACTIONS(380), + [anon_sym_LT_LT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(382), + [anon_sym_PLUS_EQ] = ACTIONS(380), + [anon_sym_DASH_EQ] = ACTIONS(380), + [anon_sym_STAR_EQ] = ACTIONS(380), + [anon_sym_SLASH_EQ] = ACTIONS(380), + [anon_sym_PERCENT_EQ] = ACTIONS(380), + [anon_sym_CARET_EQ] = ACTIONS(380), + [anon_sym_AMP_EQ] = ACTIONS(380), + [anon_sym_PIPE_EQ] = ACTIONS(380), + [anon_sym_LT_LT_EQ] = ACTIONS(380), + [anon_sym_GT_GT_EQ] = ACTIONS(380), + [anon_sym_EQ] = ACTIONS(382), + [anon_sym_EQ_EQ] = ACTIONS(380), + [anon_sym_BANG_EQ] = ACTIONS(380), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_LT] = ACTIONS(388), + [anon_sym_GT_EQ] = ACTIONS(380), + [anon_sym_LT_EQ] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(382), + [anon_sym_DOT_DOT] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(380), + [anon_sym_DOT_DOT_EQ] = ACTIONS(380), [anon_sym_COLON_COLON] = ACTIONS(420), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(394), + [anon_sym_as] = ACTIONS(382), [anon_sym_async] = ACTIONS(422), [anon_sym_break] = ACTIONS(424), [anon_sym_const] = ACTIONS(426), @@ -22056,64 +21612,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(468), [sym_float_literal] = ACTIONS(456), }, - [STATE(50)] = { - [sym_bracketed_type] = STATE(3669), - [sym_generic_function] = STATE(1894), - [sym_generic_type_with_turbofish] = STATE(3057), - [sym__expression_except_range] = STATE(1672), + [48] = { + [sym_bracketed_type] = STATE(3659), + [sym_generic_function] = STATE(1714), + [sym_generic_type_with_turbofish] = STATE(2899), + [sym__expression_except_range] = STATE(1670), [sym__expression] = STATE(1910), - [sym_macro_invocation] = STATE(1901), - [sym_scoped_identifier] = STATE(1644), - [sym_scoped_type_identifier_in_expression_position] = STATE(3253), - [sym_range_expression] = STATE(1897), - [sym_unary_expression] = STATE(1894), - [sym_try_expression] = STATE(1894), - [sym_reference_expression] = STATE(1894), - [sym_binary_expression] = STATE(1894), - [sym_assignment_expression] = STATE(1894), - [sym_compound_assignment_expr] = STATE(1894), - [sym_type_cast_expression] = STATE(1894), - [sym_return_expression] = STATE(1894), - [sym_yield_expression] = STATE(1894), - [sym_call_expression] = STATE(1894), - [sym_array_expression] = STATE(1894), - [sym_parenthesized_expression] = STATE(1894), - [sym_tuple_expression] = STATE(1894), - [sym_unit_expression] = STATE(1894), - [sym_struct_expression] = STATE(1894), - [sym_if_expression] = STATE(1894), - [sym_match_expression] = STATE(1894), - [sym_while_expression] = STATE(1894), - [sym_loop_expression] = STATE(1894), - [sym_for_expression] = STATE(1894), - [sym_const_block] = STATE(1894), - [sym_closure_expression] = STATE(1894), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3777), - [sym_break_expression] = STATE(1894), - [sym_continue_expression] = STATE(1894), - [sym_index_expression] = STATE(1894), - [sym_await_expression] = STATE(1894), - [sym_field_expression] = STATE(1674), - [sym_unsafe_block] = STATE(1894), - [sym_async_block] = STATE(1894), - [sym_gen_block] = STATE(1894), - [sym_try_block] = STATE(1894), - [sym_block] = STATE(1894), - [sym__literal] = STATE(1894), - [sym_string_literal] = STATE(1768), - [sym_raw_string_literal] = STATE(1768), - [sym_boolean_literal] = STATE(1768), - [sym_line_comment] = STATE(50), - [sym_block_comment] = STATE(50), + [sym_macro_invocation] = STATE(1893), + [sym_scoped_identifier] = STATE(1650), + [sym_scoped_type_identifier_in_expression_position] = STATE(3266), + [sym_range_expression] = STATE(1889), + [sym_unary_expression] = STATE(1714), + [sym_try_expression] = STATE(1714), + [sym_reference_expression] = STATE(1714), + [sym_binary_expression] = STATE(1714), + [sym_assignment_expression] = STATE(1714), + [sym_compound_assignment_expr] = STATE(1714), + [sym_type_cast_expression] = STATE(1714), + [sym_return_expression] = STATE(1714), + [sym_yield_expression] = STATE(1714), + [sym_call_expression] = STATE(1714), + [sym_array_expression] = STATE(1714), + [sym_parenthesized_expression] = STATE(1714), + [sym_tuple_expression] = STATE(1714), + [sym_unit_expression] = STATE(1714), + [sym_struct_expression] = STATE(1714), + [sym_if_expression] = STATE(1714), + [sym_match_expression] = STATE(1714), + [sym_while_expression] = STATE(1714), + [sym_loop_expression] = STATE(1714), + [sym_for_expression] = STATE(1714), + [sym_const_block] = STATE(1714), + [sym_closure_expression] = STATE(1714), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1714), + [sym_continue_expression] = STATE(1714), + [sym_index_expression] = STATE(1714), + [sym_await_expression] = STATE(1714), + [sym_field_expression] = STATE(1672), + [sym_unsafe_block] = STATE(1714), + [sym_async_block] = STATE(1714), + [sym_gen_block] = STATE(1714), + [sym_try_block] = STATE(1714), + [sym_block] = STATE(1714), + [sym__literal] = STATE(1714), + [sym_string_literal] = STATE(1766), + [sym_raw_string_literal] = STATE(1766), + [sym_boolean_literal] = STATE(1766), + [sym_line_comment] = STATE(48), + [sym_block_comment] = STATE(48), [sym_identifier] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(402), - [anon_sym_LBRACK] = ACTIONS(402), + [anon_sym_LPAREN] = ACTIONS(470), + [anon_sym_LBRACK] = ACTIONS(472), [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_EQ_GT] = ACTIONS(402), - [anon_sym_PLUS] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(404), - [anon_sym_QMARK] = ACTIONS(402), + [anon_sym_EQ_GT] = ACTIONS(406), + [anon_sym_PLUS] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(418), + [anon_sym_QMARK] = ACTIONS(406), [anon_sym_u8] = ACTIONS(416), [anon_sym_i8] = ACTIONS(416), [anon_sym_u16] = ACTIONS(416), @@ -22131,41 +21687,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(416), [anon_sym_str] = ACTIONS(416), [anon_sym_char] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(404), - [anon_sym_SLASH] = ACTIONS(404), - [anon_sym_PERCENT] = ACTIONS(404), - [anon_sym_CARET] = ACTIONS(404), + [anon_sym_DASH] = ACTIONS(418), + [anon_sym_SLASH] = ACTIONS(408), + [anon_sym_PERCENT] = ACTIONS(408), + [anon_sym_CARET] = ACTIONS(408), [anon_sym_BANG] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(404), - [anon_sym_PIPE] = ACTIONS(404), - [anon_sym_AMP_AMP] = ACTIONS(402), - [anon_sym_PIPE_PIPE] = ACTIONS(402), - [anon_sym_LT_LT] = ACTIONS(404), - [anon_sym_GT_GT] = ACTIONS(404), - [anon_sym_PLUS_EQ] = ACTIONS(402), - [anon_sym_DASH_EQ] = ACTIONS(402), - [anon_sym_STAR_EQ] = ACTIONS(402), - [anon_sym_SLASH_EQ] = ACTIONS(402), - [anon_sym_PERCENT_EQ] = ACTIONS(402), - [anon_sym_CARET_EQ] = ACTIONS(402), - [anon_sym_AMP_EQ] = ACTIONS(402), - [anon_sym_PIPE_EQ] = ACTIONS(402), - [anon_sym_LT_LT_EQ] = ACTIONS(402), - [anon_sym_GT_GT_EQ] = ACTIONS(402), - [anon_sym_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(402), - [anon_sym_BANG_EQ] = ACTIONS(402), - [anon_sym_GT] = ACTIONS(404), - [anon_sym_LT] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(402), - [anon_sym_LT_EQ] = ACTIONS(402), - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_DOT_DOT] = ACTIONS(404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(402), - [anon_sym_DOT_DOT_EQ] = ACTIONS(402), + [anon_sym_AMP] = ACTIONS(474), + [anon_sym_PIPE] = ACTIONS(386), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(408), + [anon_sym_GT_GT] = ACTIONS(408), + [anon_sym_PLUS_EQ] = ACTIONS(406), + [anon_sym_DASH_EQ] = ACTIONS(406), + [anon_sym_STAR_EQ] = ACTIONS(406), + [anon_sym_SLASH_EQ] = ACTIONS(406), + [anon_sym_PERCENT_EQ] = ACTIONS(406), + [anon_sym_CARET_EQ] = ACTIONS(406), + [anon_sym_AMP_EQ] = ACTIONS(406), + [anon_sym_PIPE_EQ] = ACTIONS(406), + [anon_sym_LT_LT_EQ] = ACTIONS(406), + [anon_sym_GT_GT_EQ] = ACTIONS(406), + [anon_sym_EQ] = ACTIONS(408), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_GT] = ACTIONS(408), + [anon_sym_LT] = ACTIONS(388), + [anon_sym_GT_EQ] = ACTIONS(406), + [anon_sym_LT_EQ] = ACTIONS(406), + [anon_sym_DOT] = ACTIONS(408), + [anon_sym_DOT_DOT] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(406), + [anon_sym_DOT_DOT_EQ] = ACTIONS(406), [anon_sym_COLON_COLON] = ACTIONS(420), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(404), + [anon_sym_as] = ACTIONS(408), [anon_sym_async] = ACTIONS(422), [anon_sym_break] = ACTIONS(424), [anon_sym_const] = ACTIONS(426), @@ -22199,57 +21755,200 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(468), [sym_float_literal] = ACTIONS(456), }, - [STATE(51)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1690), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(51), - [sym_block_comment] = STATE(51), - [sym_identifier] = ACTIONS(470), + [49] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1832), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(225), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(49), + [sym_block_comment] = STATE(49), + [sym_identifier] = ACTIONS(480), + [anon_sym_LPAREN] = ACTIONS(346), + [anon_sym_LBRACK] = ACTIONS(346), + [anon_sym_LBRACE] = ACTIONS(346), + [anon_sym_COLON] = ACTIONS(350), + [anon_sym_PLUS] = ACTIONS(352), + [anon_sym_STAR] = ACTIONS(352), + [anon_sym_QMARK] = ACTIONS(346), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(352), + [anon_sym_SLASH] = ACTIONS(352), + [anon_sym_PERCENT] = ACTIONS(352), + [anon_sym_CARET] = ACTIONS(352), + [anon_sym_BANG] = ACTIONS(484), + [anon_sym_AMP] = ACTIONS(352), + [anon_sym_PIPE] = ACTIONS(352), + [anon_sym_AMP_AMP] = ACTIONS(346), + [anon_sym_PIPE_PIPE] = ACTIONS(346), + [anon_sym_LT_LT] = ACTIONS(352), + [anon_sym_GT_GT] = ACTIONS(352), + [anon_sym_PLUS_EQ] = ACTIONS(346), + [anon_sym_DASH_EQ] = ACTIONS(346), + [anon_sym_STAR_EQ] = ACTIONS(346), + [anon_sym_SLASH_EQ] = ACTIONS(346), + [anon_sym_PERCENT_EQ] = ACTIONS(346), + [anon_sym_CARET_EQ] = ACTIONS(346), + [anon_sym_AMP_EQ] = ACTIONS(346), + [anon_sym_PIPE_EQ] = ACTIONS(346), + [anon_sym_LT_LT_EQ] = ACTIONS(346), + [anon_sym_GT_GT_EQ] = ACTIONS(346), + [anon_sym_EQ] = ACTIONS(352), + [anon_sym_EQ_EQ] = ACTIONS(346), + [anon_sym_BANG_EQ] = ACTIONS(346), + [anon_sym_GT] = ACTIONS(352), + [anon_sym_LT] = ACTIONS(352), + [anon_sym_GT_EQ] = ACTIONS(346), + [anon_sym_LT_EQ] = ACTIONS(346), + [anon_sym_DOT] = ACTIONS(352), + [anon_sym_DOT_DOT] = ACTIONS(352), + [anon_sym_DOT_DOT_DOT] = ACTIONS(346), + [anon_sym_DOT_DOT_EQ] = ACTIONS(346), + [anon_sym_COLON_COLON] = ACTIONS(486), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(352), + [anon_sym_async] = ACTIONS(488), + [anon_sym_break] = ACTIONS(490), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(492), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(494), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(496), + [anon_sym_static] = ACTIONS(498), + [anon_sym_union] = ACTIONS(492), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_raw] = ACTIONS(492), + [anon_sym_yield] = ACTIONS(500), + [anon_sym_move] = ACTIONS(502), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [50] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1687), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(208), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(50), + [sym_block_comment] = STATE(50), + [sym_identifier] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(346), [anon_sym_LBRACK] = ACTIONS(346), [anon_sym_LBRACE] = ACTIONS(346), @@ -22257,23 +21956,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(352), [anon_sym_STAR] = ACTIONS(352), [anon_sym_QMARK] = ACTIONS(346), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), [anon_sym_DASH] = ACTIONS(352), [anon_sym_SLASH] = ACTIONS(352), [anon_sym_PERCENT] = ACTIONS(352), @@ -22306,14 +22005,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(352), [anon_sym_DOT_DOT_DOT] = ACTIONS(346), [anon_sym_DOT_DOT_EQ] = ACTIONS(346), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_COLON_COLON] = ACTIONS(486), [anon_sym_SQUOTE] = ACTIONS(352), [anon_sym_as] = ACTIONS(352), [anon_sym_async] = ACTIONS(512), [anon_sym_break] = ACTIONS(514), [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), + [anon_sym_default] = ACTIONS(492), [anon_sym_for] = ACTIONS(362), [anon_sym_gen] = ACTIONS(518), [anon_sym_if] = ACTIONS(366), @@ -22321,10 +22020,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(370), [anon_sym_return] = ACTIONS(520), [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), + [anon_sym_union] = ACTIONS(492), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), + [anon_sym_raw] = ACTIONS(492), [anon_sym_yield] = ACTIONS(524), [anon_sym_move] = ACTIONS(526), [anon_sym_try] = ACTIONS(378), @@ -22335,270 +22034,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(52)] = { - [sym_bracketed_type] = STATE(3669), - [sym_generic_function] = STATE(1894), - [sym_generic_type_with_turbofish] = STATE(3057), - [sym__expression_except_range] = STATE(1672), - [sym__expression] = STATE(1751), - [sym_macro_invocation] = STATE(1901), - [sym_scoped_identifier] = STATE(1644), - [sym_scoped_type_identifier_in_expression_position] = STATE(3253), - [sym_range_expression] = STATE(1897), - [sym_unary_expression] = STATE(1894), - [sym_try_expression] = STATE(1894), - [sym_reference_expression] = STATE(1894), - [sym_binary_expression] = STATE(1894), - [sym_assignment_expression] = STATE(1894), - [sym_compound_assignment_expr] = STATE(1894), - [sym_type_cast_expression] = STATE(1894), - [sym_return_expression] = STATE(1894), - [sym_yield_expression] = STATE(1894), - [sym_call_expression] = STATE(1894), - [sym_array_expression] = STATE(1894), - [sym_parenthesized_expression] = STATE(1894), - [sym_tuple_expression] = STATE(1894), - [sym_unit_expression] = STATE(1894), - [sym_struct_expression] = STATE(1894), - [sym_if_expression] = STATE(1894), - [sym_match_expression] = STATE(1894), - [sym_while_expression] = STATE(1894), - [sym_loop_expression] = STATE(1894), - [sym_for_expression] = STATE(1894), - [sym_const_block] = STATE(1894), - [sym_closure_expression] = STATE(1894), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3777), - [sym_break_expression] = STATE(1894), - [sym_continue_expression] = STATE(1894), - [sym_index_expression] = STATE(1894), - [sym_await_expression] = STATE(1894), - [sym_field_expression] = STATE(1674), - [sym_unsafe_block] = STATE(1894), - [sym_async_block] = STATE(1894), - [sym_gen_block] = STATE(1894), - [sym_try_block] = STATE(1894), - [sym_block] = STATE(1894), - [sym__literal] = STATE(1894), - [sym_string_literal] = STATE(1768), - [sym_raw_string_literal] = STATE(1768), - [sym_boolean_literal] = STATE(1768), - [sym_line_comment] = STATE(52), - [sym_block_comment] = STATE(52), - [sym_identifier] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(392), - [anon_sym_LBRACK] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_EQ_GT] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_STAR] = ACTIONS(394), - [anon_sym_QMARK] = ACTIONS(392), - [anon_sym_u8] = ACTIONS(416), - [anon_sym_i8] = ACTIONS(416), - [anon_sym_u16] = ACTIONS(416), - [anon_sym_i16] = ACTIONS(416), - [anon_sym_u32] = ACTIONS(416), - [anon_sym_i32] = ACTIONS(416), - [anon_sym_u64] = ACTIONS(416), - [anon_sym_i64] = ACTIONS(416), - [anon_sym_u128] = ACTIONS(416), - [anon_sym_i128] = ACTIONS(416), - [anon_sym_isize] = ACTIONS(416), - [anon_sym_usize] = ACTIONS(416), - [anon_sym_f32] = ACTIONS(416), - [anon_sym_f64] = ACTIONS(416), - [anon_sym_bool] = ACTIONS(416), - [anon_sym_str] = ACTIONS(416), - [anon_sym_char] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_PERCENT] = ACTIONS(394), - [anon_sym_CARET] = ACTIONS(394), - [anon_sym_BANG] = ACTIONS(418), - [anon_sym_AMP] = ACTIONS(394), - [anon_sym_PIPE] = ACTIONS(394), - [anon_sym_AMP_AMP] = ACTIONS(392), - [anon_sym_PIPE_PIPE] = ACTIONS(392), - [anon_sym_LT_LT] = ACTIONS(394), - [anon_sym_GT_GT] = ACTIONS(394), - [anon_sym_PLUS_EQ] = ACTIONS(392), - [anon_sym_DASH_EQ] = ACTIONS(392), - [anon_sym_STAR_EQ] = ACTIONS(392), - [anon_sym_SLASH_EQ] = ACTIONS(392), - [anon_sym_PERCENT_EQ] = ACTIONS(392), - [anon_sym_CARET_EQ] = ACTIONS(392), - [anon_sym_AMP_EQ] = ACTIONS(392), - [anon_sym_PIPE_EQ] = ACTIONS(392), - [anon_sym_LT_LT_EQ] = ACTIONS(392), - [anon_sym_GT_GT_EQ] = ACTIONS(392), - [anon_sym_EQ] = ACTIONS(394), - [anon_sym_EQ_EQ] = ACTIONS(392), - [anon_sym_BANG_EQ] = ACTIONS(392), - [anon_sym_GT] = ACTIONS(394), - [anon_sym_LT] = ACTIONS(394), - [anon_sym_GT_EQ] = ACTIONS(392), - [anon_sym_LT_EQ] = ACTIONS(392), - [anon_sym_DOT] = ACTIONS(394), - [anon_sym_DOT_DOT] = ACTIONS(394), - [anon_sym_DOT_DOT_DOT] = ACTIONS(392), - [anon_sym_DOT_DOT_EQ] = ACTIONS(392), - [anon_sym_COLON_COLON] = ACTIONS(420), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(394), - [anon_sym_async] = ACTIONS(422), - [anon_sym_break] = ACTIONS(424), - [anon_sym_const] = ACTIONS(426), - [anon_sym_continue] = ACTIONS(428), - [anon_sym_default] = ACTIONS(430), - [anon_sym_for] = ACTIONS(432), - [anon_sym_gen] = ACTIONS(434), - [anon_sym_if] = ACTIONS(436), - [anon_sym_loop] = ACTIONS(438), - [anon_sym_match] = ACTIONS(440), - [anon_sym_return] = ACTIONS(442), - [anon_sym_static] = ACTIONS(444), - [anon_sym_union] = ACTIONS(430), - [anon_sym_unsafe] = ACTIONS(446), - [anon_sym_while] = ACTIONS(448), - [anon_sym_raw] = ACTIONS(430), - [anon_sym_yield] = ACTIONS(450), - [anon_sym_move] = ACTIONS(452), - [anon_sym_try] = ACTIONS(454), - [sym_integer_literal] = ACTIONS(456), - [aux_sym_string_literal_token1] = ACTIONS(458), - [sym_char_literal] = ACTIONS(456), - [anon_sym_true] = ACTIONS(460), - [anon_sym_false] = ACTIONS(460), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(462), - [sym_super] = ACTIONS(464), - [sym_crate] = ACTIONS(464), - [sym_metavariable] = ACTIONS(466), - [sym__raw_string_literal_start] = ACTIONS(468), - [sym_float_literal] = ACTIONS(456), - }, - [STATE(53)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1706), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(53), - [sym_block_comment] = STATE(53), - [sym_identifier] = ACTIONS(470), + [51] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1656), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(208), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(51), + [sym_block_comment] = STATE(51), + [sym_identifier] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_PLUS] = ACTIONS(408), + [anon_sym_PLUS] = ACTIONS(382), [anon_sym_STAR] = ACTIONS(510), - [anon_sym_QMARK] = ACTIONS(406), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(380), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), [anon_sym_DASH] = ACTIONS(510), - [anon_sym_SLASH] = ACTIONS(408), - [anon_sym_PERCENT] = ACTIONS(408), - [anon_sym_CARET] = ACTIONS(408), + [anon_sym_SLASH] = ACTIONS(382), + [anon_sym_PERCENT] = ACTIONS(382), + [anon_sym_CARET] = ACTIONS(382), [anon_sym_BANG] = ACTIONS(510), [anon_sym_AMP] = ACTIONS(528), [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(406), - [anon_sym_PIPE_PIPE] = ACTIONS(406), - [anon_sym_LT_LT] = ACTIONS(408), - [anon_sym_GT_GT] = ACTIONS(408), - [anon_sym_PLUS_EQ] = ACTIONS(406), - [anon_sym_DASH_EQ] = ACTIONS(406), - [anon_sym_STAR_EQ] = ACTIONS(406), - [anon_sym_SLASH_EQ] = ACTIONS(406), - [anon_sym_PERCENT_EQ] = ACTIONS(406), - [anon_sym_CARET_EQ] = ACTIONS(406), - [anon_sym_AMP_EQ] = ACTIONS(406), - [anon_sym_PIPE_EQ] = ACTIONS(406), - [anon_sym_LT_LT_EQ] = ACTIONS(406), - [anon_sym_GT_GT_EQ] = ACTIONS(406), - [anon_sym_EQ] = ACTIONS(408), - [anon_sym_EQ_EQ] = ACTIONS(406), - [anon_sym_BANG_EQ] = ACTIONS(406), - [anon_sym_GT] = ACTIONS(408), + [anon_sym_AMP_AMP] = ACTIONS(380), + [anon_sym_PIPE_PIPE] = ACTIONS(380), + [anon_sym_LT_LT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(382), + [anon_sym_PLUS_EQ] = ACTIONS(380), + [anon_sym_DASH_EQ] = ACTIONS(380), + [anon_sym_STAR_EQ] = ACTIONS(380), + [anon_sym_SLASH_EQ] = ACTIONS(380), + [anon_sym_PERCENT_EQ] = ACTIONS(380), + [anon_sym_CARET_EQ] = ACTIONS(380), + [anon_sym_AMP_EQ] = ACTIONS(380), + [anon_sym_PIPE_EQ] = ACTIONS(380), + [anon_sym_LT_LT_EQ] = ACTIONS(380), + [anon_sym_GT_GT_EQ] = ACTIONS(380), + [anon_sym_EQ] = ACTIONS(382), + [anon_sym_EQ_EQ] = ACTIONS(380), + [anon_sym_BANG_EQ] = ACTIONS(380), + [anon_sym_GT] = ACTIONS(382), [anon_sym_LT] = ACTIONS(388), - [anon_sym_GT_EQ] = ACTIONS(406), - [anon_sym_LT_EQ] = ACTIONS(406), - [anon_sym_DOT] = ACTIONS(408), + [anon_sym_GT_EQ] = ACTIONS(380), + [anon_sym_LT_EQ] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(382), [anon_sym_DOT_DOT] = ACTIONS(530), - [anon_sym_DOT_DOT_DOT] = ACTIONS(406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(406), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(380), + [anon_sym_DOT_DOT_EQ] = ACTIONS(380), + [anon_sym_COLON_COLON] = ACTIONS(486), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(408), + [anon_sym_as] = ACTIONS(382), [anon_sym_async] = ACTIONS(512), [anon_sym_break] = ACTIONS(514), [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), + [anon_sym_default] = ACTIONS(492), [anon_sym_for] = ACTIONS(362), [anon_sym_gen] = ACTIONS(518), [anon_sym_if] = ACTIONS(366), @@ -22606,10 +22162,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(370), [anon_sym_return] = ACTIONS(520), [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), + [anon_sym_union] = ACTIONS(492), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), + [anon_sym_raw] = ACTIONS(492), [anon_sym_yield] = ACTIONS(524), [anon_sym_move] = ACTIONS(526), [anon_sym_try] = ACTIONS(378), @@ -22620,140 +22176,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(54)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1833), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(54), - [sym_block_comment] = STATE(54), - [sym_identifier] = ACTIONS(470), + [52] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1825), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(225), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(52), + [sym_block_comment] = STATE(52), + [sym_identifier] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_PLUS] = ACTIONS(408), - [anon_sym_STAR] = ACTIONS(474), - [anon_sym_QMARK] = ACTIONS(406), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(474), - [anon_sym_SLASH] = ACTIONS(408), - [anon_sym_PERCENT] = ACTIONS(408), - [anon_sym_CARET] = ACTIONS(408), - [anon_sym_BANG] = ACTIONS(474), + [anon_sym_PLUS] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(484), + [anon_sym_QMARK] = ACTIONS(402), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_SLASH] = ACTIONS(404), + [anon_sym_PERCENT] = ACTIONS(404), + [anon_sym_CARET] = ACTIONS(404), + [anon_sym_BANG] = ACTIONS(484), [anon_sym_AMP] = ACTIONS(532), [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(406), - [anon_sym_PIPE_PIPE] = ACTIONS(406), - [anon_sym_LT_LT] = ACTIONS(408), - [anon_sym_GT_GT] = ACTIONS(408), - [anon_sym_PLUS_EQ] = ACTIONS(406), - [anon_sym_DASH_EQ] = ACTIONS(406), - [anon_sym_STAR_EQ] = ACTIONS(406), - [anon_sym_SLASH_EQ] = ACTIONS(406), - [anon_sym_PERCENT_EQ] = ACTIONS(406), - [anon_sym_CARET_EQ] = ACTIONS(406), - [anon_sym_AMP_EQ] = ACTIONS(406), - [anon_sym_PIPE_EQ] = ACTIONS(406), - [anon_sym_LT_LT_EQ] = ACTIONS(406), - [anon_sym_GT_GT_EQ] = ACTIONS(406), - [anon_sym_EQ] = ACTIONS(408), - [anon_sym_EQ_EQ] = ACTIONS(406), - [anon_sym_BANG_EQ] = ACTIONS(406), - [anon_sym_GT] = ACTIONS(408), + [anon_sym_AMP_AMP] = ACTIONS(402), + [anon_sym_PIPE_PIPE] = ACTIONS(402), + [anon_sym_LT_LT] = ACTIONS(404), + [anon_sym_GT_GT] = ACTIONS(404), + [anon_sym_PLUS_EQ] = ACTIONS(402), + [anon_sym_DASH_EQ] = ACTIONS(402), + [anon_sym_STAR_EQ] = ACTIONS(402), + [anon_sym_SLASH_EQ] = ACTIONS(402), + [anon_sym_PERCENT_EQ] = ACTIONS(402), + [anon_sym_CARET_EQ] = ACTIONS(402), + [anon_sym_AMP_EQ] = ACTIONS(402), + [anon_sym_PIPE_EQ] = ACTIONS(402), + [anon_sym_LT_LT_EQ] = ACTIONS(402), + [anon_sym_GT_GT_EQ] = ACTIONS(402), + [anon_sym_EQ] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(402), + [anon_sym_BANG_EQ] = ACTIONS(402), + [anon_sym_GT] = ACTIONS(404), [anon_sym_LT] = ACTIONS(388), - [anon_sym_GT_EQ] = ACTIONS(406), - [anon_sym_LT_EQ] = ACTIONS(406), - [anon_sym_DOT] = ACTIONS(408), + [anon_sym_GT_EQ] = ACTIONS(402), + [anon_sym_LT_EQ] = ACTIONS(402), + [anon_sym_DOT] = ACTIONS(404), [anon_sym_DOT_DOT] = ACTIONS(534), - [anon_sym_DOT_DOT_DOT] = ACTIONS(406), - [anon_sym_DOT_DOT_EQ] = ACTIONS(406), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(402), + [anon_sym_DOT_DOT_EQ] = ACTIONS(402), + [anon_sym_COLON_COLON] = ACTIONS(486), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(408), - [anon_sym_async] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), + [anon_sym_as] = ACTIONS(404), + [anon_sym_async] = ACTIONS(488), + [anon_sym_break] = ACTIONS(490), [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(482), + [anon_sym_default] = ACTIONS(492), [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(484), + [anon_sym_gen] = ACTIONS(494), [anon_sym_if] = ACTIONS(366), [anon_sym_loop] = ACTIONS(368), [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(486), - [anon_sym_static] = ACTIONS(488), - [anon_sym_union] = ACTIONS(482), + [anon_sym_return] = ACTIONS(496), + [anon_sym_static] = ACTIONS(498), + [anon_sym_union] = ACTIONS(492), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_move] = ACTIONS(492), + [anon_sym_raw] = ACTIONS(492), + [anon_sym_yield] = ACTIONS(500), + [anon_sym_move] = ACTIONS(502), [anon_sym_try] = ACTIONS(378), [sym_integer_literal] = ACTIONS(99), [aux_sym_string_literal_token1] = ACTIONS(101), @@ -22762,92 +22318,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(55)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1857), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(55), - [sym_block_comment] = STATE(55), - [sym_identifier] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(392), + [53] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1654), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(208), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(53), + [sym_block_comment] = STATE(53), + [sym_identifier] = ACTIONS(480), + [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(392), [anon_sym_LBRACE] = ACTIONS(392), [anon_sym_PLUS] = ACTIONS(394), [anon_sym_STAR] = ACTIONS(394), [anon_sym_QMARK] = ACTIONS(392), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), [anon_sym_DASH] = ACTIONS(394), [anon_sym_SLASH] = ACTIONS(394), [anon_sym_PERCENT] = ACTIONS(394), [anon_sym_CARET] = ACTIONS(394), - [anon_sym_BANG] = ACTIONS(474), + [anon_sym_BANG] = ACTIONS(510), [anon_sym_AMP] = ACTIONS(394), [anon_sym_PIPE] = ACTIONS(394), [anon_sym_AMP_AMP] = ACTIONS(392), @@ -22875,27 +22431,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(394), [anon_sym_DOT_DOT_DOT] = ACTIONS(392), [anon_sym_DOT_DOT_EQ] = ACTIONS(392), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(486), + [anon_sym_SQUOTE] = ACTIONS(394), [anon_sym_as] = ACTIONS(394), - [anon_sym_async] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), + [anon_sym_async] = ACTIONS(512), + [anon_sym_break] = ACTIONS(514), [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(482), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_default] = ACTIONS(492), [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(484), + [anon_sym_gen] = ACTIONS(518), [anon_sym_if] = ACTIONS(366), [anon_sym_loop] = ACTIONS(368), [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(486), - [anon_sym_static] = ACTIONS(488), - [anon_sym_union] = ACTIONS(482), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(522), + [anon_sym_union] = ACTIONS(492), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_move] = ACTIONS(492), + [anon_sym_raw] = ACTIONS(492), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_move] = ACTIONS(526), [anon_sym_try] = ACTIONS(378), [sym_integer_literal] = ACTIONS(99), [aux_sym_string_literal_token1] = ACTIONS(101), @@ -22904,92 +22460,234 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(56)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1692), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(56), - [sym_block_comment] = STATE(56), - [sym_identifier] = ACTIONS(470), + [54] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1828), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(225), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(54), + [sym_block_comment] = STATE(54), + [sym_identifier] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_STAR] = ACTIONS(484), + [anon_sym_QMARK] = ACTIONS(380), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_SLASH] = ACTIONS(382), + [anon_sym_PERCENT] = ACTIONS(382), + [anon_sym_CARET] = ACTIONS(382), + [anon_sym_BANG] = ACTIONS(484), + [anon_sym_AMP] = ACTIONS(532), + [anon_sym_PIPE] = ACTIONS(386), + [anon_sym_AMP_AMP] = ACTIONS(380), + [anon_sym_PIPE_PIPE] = ACTIONS(380), + [anon_sym_LT_LT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(382), + [anon_sym_PLUS_EQ] = ACTIONS(380), + [anon_sym_DASH_EQ] = ACTIONS(380), + [anon_sym_STAR_EQ] = ACTIONS(380), + [anon_sym_SLASH_EQ] = ACTIONS(380), + [anon_sym_PERCENT_EQ] = ACTIONS(380), + [anon_sym_CARET_EQ] = ACTIONS(380), + [anon_sym_AMP_EQ] = ACTIONS(380), + [anon_sym_PIPE_EQ] = ACTIONS(380), + [anon_sym_LT_LT_EQ] = ACTIONS(380), + [anon_sym_GT_GT_EQ] = ACTIONS(380), + [anon_sym_EQ] = ACTIONS(382), + [anon_sym_EQ_EQ] = ACTIONS(380), + [anon_sym_BANG_EQ] = ACTIONS(380), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_LT] = ACTIONS(388), + [anon_sym_GT_EQ] = ACTIONS(380), + [anon_sym_LT_EQ] = ACTIONS(380), + [anon_sym_DOT] = ACTIONS(382), + [anon_sym_DOT_DOT] = ACTIONS(534), + [anon_sym_DOT_DOT_DOT] = ACTIONS(380), + [anon_sym_DOT_DOT_EQ] = ACTIONS(380), + [anon_sym_COLON_COLON] = ACTIONS(486), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(382), + [anon_sym_async] = ACTIONS(488), + [anon_sym_break] = ACTIONS(490), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(492), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(494), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(496), + [anon_sym_static] = ACTIONS(498), + [anon_sym_union] = ACTIONS(492), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_raw] = ACTIONS(492), + [anon_sym_yield] = ACTIONS(500), + [anon_sym_move] = ACTIONS(502), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [55] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1860), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(225), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(55), + [sym_block_comment] = STATE(55), + [sym_identifier] = ACTIONS(480), + [anon_sym_LPAREN] = ACTIONS(392), [anon_sym_LBRACK] = ACTIONS(392), [anon_sym_LBRACE] = ACTIONS(392), [anon_sym_PLUS] = ACTIONS(394), [anon_sym_STAR] = ACTIONS(394), [anon_sym_QMARK] = ACTIONS(392), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), [anon_sym_DASH] = ACTIONS(394), [anon_sym_SLASH] = ACTIONS(394), [anon_sym_PERCENT] = ACTIONS(394), [anon_sym_CARET] = ACTIONS(394), - [anon_sym_BANG] = ACTIONS(510), + [anon_sym_BANG] = ACTIONS(484), [anon_sym_AMP] = ACTIONS(394), [anon_sym_PIPE] = ACTIONS(394), [anon_sym_AMP_AMP] = ACTIONS(392), @@ -23017,169 +22715,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(394), [anon_sym_DOT_DOT_DOT] = ACTIONS(392), [anon_sym_DOT_DOT_EQ] = ACTIONS(392), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_SQUOTE] = ACTIONS(394), + [anon_sym_COLON_COLON] = ACTIONS(486), + [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_as] = ACTIONS(394), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), - }, - [STATE(57)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(57), - [sym_block_comment] = STATE(57), - [sym_identifier] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(402), - [anon_sym_PLUS] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(404), - [anon_sym_QMARK] = ACTIONS(402), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(404), - [anon_sym_SLASH] = ACTIONS(404), - [anon_sym_PERCENT] = ACTIONS(404), - [anon_sym_CARET] = ACTIONS(404), - [anon_sym_BANG] = ACTIONS(510), - [anon_sym_AMP] = ACTIONS(404), - [anon_sym_PIPE] = ACTIONS(404), - [anon_sym_AMP_AMP] = ACTIONS(402), - [anon_sym_PIPE_PIPE] = ACTIONS(402), - [anon_sym_LT_LT] = ACTIONS(404), - [anon_sym_GT_GT] = ACTIONS(404), - [anon_sym_PLUS_EQ] = ACTIONS(402), - [anon_sym_DASH_EQ] = ACTIONS(402), - [anon_sym_STAR_EQ] = ACTIONS(402), - [anon_sym_SLASH_EQ] = ACTIONS(402), - [anon_sym_PERCENT_EQ] = ACTIONS(402), - [anon_sym_CARET_EQ] = ACTIONS(402), - [anon_sym_AMP_EQ] = ACTIONS(402), - [anon_sym_PIPE_EQ] = ACTIONS(402), - [anon_sym_LT_LT_EQ] = ACTIONS(402), - [anon_sym_GT_GT_EQ] = ACTIONS(402), - [anon_sym_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(402), - [anon_sym_BANG_EQ] = ACTIONS(402), - [anon_sym_GT] = ACTIONS(404), - [anon_sym_LT] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(402), - [anon_sym_LT_EQ] = ACTIONS(402), - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_DOT_DOT] = ACTIONS(404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(402), - [anon_sym_DOT_DOT_EQ] = ACTIONS(402), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_SQUOTE] = ACTIONS(404), - [anon_sym_as] = ACTIONS(404), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), + [anon_sym_async] = ACTIONS(488), + [anon_sym_break] = ACTIONS(490), [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(492), [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), + [anon_sym_gen] = ACTIONS(494), [anon_sym_if] = ACTIONS(366), [anon_sym_loop] = ACTIONS(368), [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), + [anon_sym_return] = ACTIONS(496), + [anon_sym_static] = ACTIONS(498), + [anon_sym_union] = ACTIONS(492), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), + [anon_sym_raw] = ACTIONS(492), + [anon_sym_yield] = ACTIONS(500), + [anon_sym_move] = ACTIONS(502), [anon_sym_try] = ACTIONS(378), [sym_integer_literal] = ACTIONS(99), [aux_sym_string_literal_token1] = ACTIONS(101), @@ -23188,87 +22744,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(58)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1692), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(58), - [sym_block_comment] = STATE(58), - [sym_identifier] = ACTIONS(470), + [56] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1654), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(208), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(56), + [sym_block_comment] = STATE(56), + [sym_identifier] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(392), [anon_sym_LBRACK] = ACTIONS(392), [anon_sym_LBRACE] = ACTIONS(392), [anon_sym_PLUS] = ACTIONS(394), [anon_sym_STAR] = ACTIONS(394), [anon_sym_QMARK] = ACTIONS(392), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), [anon_sym_DASH] = ACTIONS(394), [anon_sym_SLASH] = ACTIONS(394), [anon_sym_PERCENT] = ACTIONS(394), @@ -23301,14 +22857,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(394), [anon_sym_DOT_DOT_DOT] = ACTIONS(392), [anon_sym_DOT_DOT_EQ] = ACTIONS(392), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_COLON_COLON] = ACTIONS(486), [anon_sym_SQUOTE] = ACTIONS(394), [anon_sym_as] = ACTIONS(394), [anon_sym_async] = ACTIONS(512), [anon_sym_break] = ACTIONS(514), [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), + [anon_sym_default] = ACTIONS(492), [anon_sym_for] = ACTIONS(362), [anon_sym_gen] = ACTIONS(518), [anon_sym_if] = ACTIONS(366), @@ -23316,10 +22872,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(370), [anon_sym_return] = ACTIONS(520), [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), + [anon_sym_union] = ACTIONS(492), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), + [anon_sym_raw] = ACTIONS(492), [anon_sym_yield] = ACTIONS(524), [anon_sym_move] = ACTIONS(526), [anon_sym_try] = ACTIONS(378), @@ -23330,269 +22886,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(59)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(59), - [sym_block_comment] = STATE(59), - [sym_identifier] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(402), - [anon_sym_LBRACK] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(402), - [anon_sym_PLUS] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(404), - [anon_sym_QMARK] = ACTIONS(402), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(404), - [anon_sym_SLASH] = ACTIONS(404), - [anon_sym_PERCENT] = ACTIONS(404), - [anon_sym_CARET] = ACTIONS(404), - [anon_sym_BANG] = ACTIONS(510), - [anon_sym_AMP] = ACTIONS(404), - [anon_sym_PIPE] = ACTIONS(404), - [anon_sym_AMP_AMP] = ACTIONS(402), - [anon_sym_PIPE_PIPE] = ACTIONS(402), - [anon_sym_LT_LT] = ACTIONS(404), - [anon_sym_GT_GT] = ACTIONS(404), - [anon_sym_PLUS_EQ] = ACTIONS(402), - [anon_sym_DASH_EQ] = ACTIONS(402), - [anon_sym_STAR_EQ] = ACTIONS(402), - [anon_sym_SLASH_EQ] = ACTIONS(402), - [anon_sym_PERCENT_EQ] = ACTIONS(402), - [anon_sym_CARET_EQ] = ACTIONS(402), - [anon_sym_AMP_EQ] = ACTIONS(402), - [anon_sym_PIPE_EQ] = ACTIONS(402), - [anon_sym_LT_LT_EQ] = ACTIONS(402), - [anon_sym_GT_GT_EQ] = ACTIONS(402), - [anon_sym_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(402), - [anon_sym_BANG_EQ] = ACTIONS(402), - [anon_sym_GT] = ACTIONS(404), - [anon_sym_LT] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(402), - [anon_sym_LT_EQ] = ACTIONS(402), - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_DOT_DOT] = ACTIONS(404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(402), - [anon_sym_DOT_DOT_EQ] = ACTIONS(402), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_SQUOTE] = ACTIONS(404), - [anon_sym_as] = ACTIONS(404), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), - }, - [STATE(60)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1703), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(60), - [sym_block_comment] = STATE(60), - [sym_identifier] = ACTIONS(470), + [57] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1658), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(208), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(57), + [sym_block_comment] = STATE(57), + [sym_identifier] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_PLUS] = ACTIONS(408), [anon_sym_STAR] = ACTIONS(510), - [anon_sym_QMARK] = ACTIONS(380), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), + [anon_sym_QMARK] = ACTIONS(406), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), [anon_sym_DASH] = ACTIONS(510), - [anon_sym_SLASH] = ACTIONS(382), - [anon_sym_PERCENT] = ACTIONS(382), - [anon_sym_CARET] = ACTIONS(382), + [anon_sym_SLASH] = ACTIONS(408), + [anon_sym_PERCENT] = ACTIONS(408), + [anon_sym_CARET] = ACTIONS(408), [anon_sym_BANG] = ACTIONS(510), [anon_sym_AMP] = ACTIONS(528), [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(380), - [anon_sym_PIPE_PIPE] = ACTIONS(380), - [anon_sym_LT_LT] = ACTIONS(382), - [anon_sym_GT_GT] = ACTIONS(382), - [anon_sym_PLUS_EQ] = ACTIONS(380), - [anon_sym_DASH_EQ] = ACTIONS(380), - [anon_sym_STAR_EQ] = ACTIONS(380), - [anon_sym_SLASH_EQ] = ACTIONS(380), - [anon_sym_PERCENT_EQ] = ACTIONS(380), - [anon_sym_CARET_EQ] = ACTIONS(380), - [anon_sym_AMP_EQ] = ACTIONS(380), - [anon_sym_PIPE_EQ] = ACTIONS(380), - [anon_sym_LT_LT_EQ] = ACTIONS(380), - [anon_sym_GT_GT_EQ] = ACTIONS(380), - [anon_sym_EQ] = ACTIONS(382), - [anon_sym_EQ_EQ] = ACTIONS(380), - [anon_sym_BANG_EQ] = ACTIONS(380), - [anon_sym_GT] = ACTIONS(382), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(408), + [anon_sym_GT_GT] = ACTIONS(408), + [anon_sym_PLUS_EQ] = ACTIONS(406), + [anon_sym_DASH_EQ] = ACTIONS(406), + [anon_sym_STAR_EQ] = ACTIONS(406), + [anon_sym_SLASH_EQ] = ACTIONS(406), + [anon_sym_PERCENT_EQ] = ACTIONS(406), + [anon_sym_CARET_EQ] = ACTIONS(406), + [anon_sym_AMP_EQ] = ACTIONS(406), + [anon_sym_PIPE_EQ] = ACTIONS(406), + [anon_sym_LT_LT_EQ] = ACTIONS(406), + [anon_sym_GT_GT_EQ] = ACTIONS(406), + [anon_sym_EQ] = ACTIONS(408), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_GT] = ACTIONS(408), [anon_sym_LT] = ACTIONS(388), - [anon_sym_GT_EQ] = ACTIONS(380), - [anon_sym_LT_EQ] = ACTIONS(380), - [anon_sym_DOT] = ACTIONS(382), + [anon_sym_GT_EQ] = ACTIONS(406), + [anon_sym_LT_EQ] = ACTIONS(406), + [anon_sym_DOT] = ACTIONS(408), [anon_sym_DOT_DOT] = ACTIONS(530), - [anon_sym_DOT_DOT_DOT] = ACTIONS(380), - [anon_sym_DOT_DOT_EQ] = ACTIONS(380), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(406), + [anon_sym_DOT_DOT_EQ] = ACTIONS(406), + [anon_sym_COLON_COLON] = ACTIONS(486), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(382), + [anon_sym_as] = ACTIONS(408), [anon_sym_async] = ACTIONS(512), [anon_sym_break] = ACTIONS(514), [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), + [anon_sym_default] = ACTIONS(492), [anon_sym_for] = ACTIONS(362), [anon_sym_gen] = ACTIONS(518), [anon_sym_if] = ACTIONS(366), @@ -23600,10 +23014,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(370), [anon_sym_return] = ACTIONS(520), [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), + [anon_sym_union] = ACTIONS(492), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), + [anon_sym_raw] = ACTIONS(492), [anon_sym_yield] = ACTIONS(524), [anon_sym_move] = ACTIONS(526), [anon_sym_try] = ACTIONS(378), @@ -23614,282 +23028,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), - }, - [STATE(61)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1829), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(61), - [sym_block_comment] = STATE(61), - [sym_identifier] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(402), - [anon_sym_LBRACK] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(402), - [anon_sym_PLUS] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(404), - [anon_sym_QMARK] = ACTIONS(402), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(404), - [anon_sym_SLASH] = ACTIONS(404), - [anon_sym_PERCENT] = ACTIONS(404), - [anon_sym_CARET] = ACTIONS(404), - [anon_sym_BANG] = ACTIONS(474), - [anon_sym_AMP] = ACTIONS(404), - [anon_sym_PIPE] = ACTIONS(404), - [anon_sym_AMP_AMP] = ACTIONS(402), - [anon_sym_PIPE_PIPE] = ACTIONS(402), - [anon_sym_LT_LT] = ACTIONS(404), - [anon_sym_GT_GT] = ACTIONS(404), - [anon_sym_PLUS_EQ] = ACTIONS(402), - [anon_sym_DASH_EQ] = ACTIONS(402), - [anon_sym_STAR_EQ] = ACTIONS(402), - [anon_sym_SLASH_EQ] = ACTIONS(402), - [anon_sym_PERCENT_EQ] = ACTIONS(402), - [anon_sym_CARET_EQ] = ACTIONS(402), - [anon_sym_AMP_EQ] = ACTIONS(402), - [anon_sym_PIPE_EQ] = ACTIONS(402), - [anon_sym_LT_LT_EQ] = ACTIONS(402), - [anon_sym_GT_GT_EQ] = ACTIONS(402), - [anon_sym_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(402), - [anon_sym_BANG_EQ] = ACTIONS(402), - [anon_sym_GT] = ACTIONS(404), - [anon_sym_LT] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(402), - [anon_sym_LT_EQ] = ACTIONS(402), - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_DOT_DOT] = ACTIONS(404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(402), - [anon_sym_DOT_DOT_EQ] = ACTIONS(402), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(404), - [anon_sym_async] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(484), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(486), - [anon_sym_static] = ACTIONS(488), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_move] = ACTIONS(492), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(62)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1829), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(62), - [sym_block_comment] = STATE(62), - [sym_identifier] = ACTIONS(470), + [58] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1860), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(225), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(58), + [sym_block_comment] = STATE(58), + [sym_identifier] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(402), - [anon_sym_LBRACE] = ACTIONS(402), - [anon_sym_PLUS] = ACTIONS(404), - [anon_sym_STAR] = ACTIONS(404), - [anon_sym_QMARK] = ACTIONS(402), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(404), - [anon_sym_SLASH] = ACTIONS(404), - [anon_sym_PERCENT] = ACTIONS(404), - [anon_sym_CARET] = ACTIONS(404), - [anon_sym_BANG] = ACTIONS(474), - [anon_sym_AMP] = ACTIONS(404), - [anon_sym_PIPE] = ACTIONS(404), - [anon_sym_AMP_AMP] = ACTIONS(402), - [anon_sym_PIPE_PIPE] = ACTIONS(402), - [anon_sym_LT_LT] = ACTIONS(404), - [anon_sym_GT_GT] = ACTIONS(404), - [anon_sym_PLUS_EQ] = ACTIONS(402), - [anon_sym_DASH_EQ] = ACTIONS(402), - [anon_sym_STAR_EQ] = ACTIONS(402), - [anon_sym_SLASH_EQ] = ACTIONS(402), - [anon_sym_PERCENT_EQ] = ACTIONS(402), - [anon_sym_CARET_EQ] = ACTIONS(402), - [anon_sym_AMP_EQ] = ACTIONS(402), - [anon_sym_PIPE_EQ] = ACTIONS(402), - [anon_sym_LT_LT_EQ] = ACTIONS(402), - [anon_sym_GT_GT_EQ] = ACTIONS(402), - [anon_sym_EQ] = ACTIONS(404), - [anon_sym_EQ_EQ] = ACTIONS(402), - [anon_sym_BANG_EQ] = ACTIONS(402), - [anon_sym_GT] = ACTIONS(404), - [anon_sym_LT] = ACTIONS(404), - [anon_sym_GT_EQ] = ACTIONS(402), - [anon_sym_LT_EQ] = ACTIONS(402), - [anon_sym_DOT] = ACTIONS(404), - [anon_sym_DOT_DOT] = ACTIONS(404), - [anon_sym_DOT_DOT_DOT] = ACTIONS(402), - [anon_sym_DOT_DOT_EQ] = ACTIONS(402), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_LBRACK] = ACTIONS(392), + [anon_sym_LBRACE] = ACTIONS(392), + [anon_sym_PLUS] = ACTIONS(394), + [anon_sym_STAR] = ACTIONS(394), + [anon_sym_QMARK] = ACTIONS(392), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(394), + [anon_sym_SLASH] = ACTIONS(394), + [anon_sym_PERCENT] = ACTIONS(394), + [anon_sym_CARET] = ACTIONS(394), + [anon_sym_BANG] = ACTIONS(484), + [anon_sym_AMP] = ACTIONS(394), + [anon_sym_PIPE] = ACTIONS(394), + [anon_sym_AMP_AMP] = ACTIONS(392), + [anon_sym_PIPE_PIPE] = ACTIONS(392), + [anon_sym_LT_LT] = ACTIONS(394), + [anon_sym_GT_GT] = ACTIONS(394), + [anon_sym_PLUS_EQ] = ACTIONS(392), + [anon_sym_DASH_EQ] = ACTIONS(392), + [anon_sym_STAR_EQ] = ACTIONS(392), + [anon_sym_SLASH_EQ] = ACTIONS(392), + [anon_sym_PERCENT_EQ] = ACTIONS(392), + [anon_sym_CARET_EQ] = ACTIONS(392), + [anon_sym_AMP_EQ] = ACTIONS(392), + [anon_sym_PIPE_EQ] = ACTIONS(392), + [anon_sym_LT_LT_EQ] = ACTIONS(392), + [anon_sym_GT_GT_EQ] = ACTIONS(392), + [anon_sym_EQ] = ACTIONS(394), + [anon_sym_EQ_EQ] = ACTIONS(392), + [anon_sym_BANG_EQ] = ACTIONS(392), + [anon_sym_GT] = ACTIONS(394), + [anon_sym_LT] = ACTIONS(394), + [anon_sym_GT_EQ] = ACTIONS(392), + [anon_sym_LT_EQ] = ACTIONS(392), + [anon_sym_DOT] = ACTIONS(394), + [anon_sym_DOT_DOT] = ACTIONS(394), + [anon_sym_DOT_DOT_DOT] = ACTIONS(392), + [anon_sym_DOT_DOT_EQ] = ACTIONS(392), + [anon_sym_COLON_COLON] = ACTIONS(486), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(404), - [anon_sym_async] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), + [anon_sym_as] = ACTIONS(394), + [anon_sym_async] = ACTIONS(488), + [anon_sym_break] = ACTIONS(490), [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(482), + [anon_sym_default] = ACTIONS(492), [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(484), + [anon_sym_gen] = ACTIONS(494), [anon_sym_if] = ACTIONS(366), [anon_sym_loop] = ACTIONS(368), [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(486), - [anon_sym_static] = ACTIONS(488), - [anon_sym_union] = ACTIONS(482), + [anon_sym_return] = ACTIONS(496), + [anon_sym_static] = ACTIONS(498), + [anon_sym_union] = ACTIONS(492), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_move] = ACTIONS(492), + [anon_sym_raw] = ACTIONS(492), + [anon_sym_yield] = ACTIONS(500), + [anon_sym_move] = ACTIONS(502), [anon_sym_try] = ACTIONS(378), [sym_integer_literal] = ACTIONS(99), [aux_sym_string_literal_token1] = ACTIONS(101), @@ -23898,87 +23170,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(63)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1701), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(51), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(63), - [sym_block_comment] = STATE(63), - [sym_identifier] = ACTIONS(470), + [59] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1652), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(208), + [sym_label] = STATE(50), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(59), + [sym_block_comment] = STATE(59), + [sym_identifier] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(396), [anon_sym_LBRACK] = ACTIONS(396), [anon_sym_LBRACE] = ACTIONS(396), [anon_sym_PLUS] = ACTIONS(398), [anon_sym_STAR] = ACTIONS(398), [anon_sym_QMARK] = ACTIONS(396), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), [anon_sym_DASH] = ACTIONS(398), [anon_sym_SLASH] = ACTIONS(398), [anon_sym_PERCENT] = ACTIONS(398), @@ -24011,14 +23283,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(398), [anon_sym_DOT_DOT_DOT] = ACTIONS(396), [anon_sym_DOT_DOT_EQ] = ACTIONS(396), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_COLON_COLON] = ACTIONS(486), [anon_sym_SQUOTE] = ACTIONS(398), [anon_sym_as] = ACTIONS(398), [anon_sym_async] = ACTIONS(512), [anon_sym_break] = ACTIONS(514), [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), + [anon_sym_default] = ACTIONS(492), [anon_sym_for] = ACTIONS(362), [anon_sym_gen] = ACTIONS(518), [anon_sym_if] = ACTIONS(366), @@ -24026,10 +23298,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(370), [anon_sym_return] = ACTIONS(520), [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), + [anon_sym_union] = ACTIONS(492), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), + [anon_sym_raw] = ACTIONS(492), [anon_sym_yield] = ACTIONS(524), [anon_sym_move] = ACTIONS(526), [anon_sym_try] = ACTIONS(378), @@ -24040,140 +23312,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(64)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1857), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(64), - [sym_block_comment] = STATE(64), - [sym_identifier] = ACTIONS(470), + [60] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1707), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(208), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(60), + [sym_block_comment] = STATE(60), + [sym_identifier] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(392), - [anon_sym_LBRACE] = ACTIONS(392), - [anon_sym_PLUS] = ACTIONS(394), - [anon_sym_STAR] = ACTIONS(394), - [anon_sym_QMARK] = ACTIONS(392), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(394), - [anon_sym_SLASH] = ACTIONS(394), - [anon_sym_PERCENT] = ACTIONS(394), - [anon_sym_CARET] = ACTIONS(394), - [anon_sym_BANG] = ACTIONS(474), - [anon_sym_AMP] = ACTIONS(394), - [anon_sym_PIPE] = ACTIONS(394), - [anon_sym_AMP_AMP] = ACTIONS(392), - [anon_sym_PIPE_PIPE] = ACTIONS(392), - [anon_sym_LT_LT] = ACTIONS(394), - [anon_sym_GT_GT] = ACTIONS(394), - [anon_sym_PLUS_EQ] = ACTIONS(392), - [anon_sym_DASH_EQ] = ACTIONS(392), - [anon_sym_STAR_EQ] = ACTIONS(392), - [anon_sym_SLASH_EQ] = ACTIONS(392), - [anon_sym_PERCENT_EQ] = ACTIONS(392), - [anon_sym_CARET_EQ] = ACTIONS(392), - [anon_sym_AMP_EQ] = ACTIONS(392), - [anon_sym_PIPE_EQ] = ACTIONS(392), - [anon_sym_LT_LT_EQ] = ACTIONS(392), - [anon_sym_GT_GT_EQ] = ACTIONS(392), - [anon_sym_EQ] = ACTIONS(394), - [anon_sym_EQ_EQ] = ACTIONS(392), - [anon_sym_BANG_EQ] = ACTIONS(392), - [anon_sym_GT] = ACTIONS(394), - [anon_sym_LT] = ACTIONS(394), - [anon_sym_GT_EQ] = ACTIONS(392), - [anon_sym_LT_EQ] = ACTIONS(392), - [anon_sym_DOT] = ACTIONS(394), - [anon_sym_DOT_DOT] = ACTIONS(394), - [anon_sym_DOT_DOT_DOT] = ACTIONS(392), - [anon_sym_DOT_DOT_EQ] = ACTIONS(392), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_PLUS] = ACTIONS(404), + [anon_sym_STAR] = ACTIONS(510), + [anon_sym_QMARK] = ACTIONS(402), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(510), + [anon_sym_SLASH] = ACTIONS(404), + [anon_sym_PERCENT] = ACTIONS(404), + [anon_sym_CARET] = ACTIONS(404), + [anon_sym_BANG] = ACTIONS(510), + [anon_sym_AMP] = ACTIONS(528), + [anon_sym_PIPE] = ACTIONS(386), + [anon_sym_AMP_AMP] = ACTIONS(402), + [anon_sym_PIPE_PIPE] = ACTIONS(402), + [anon_sym_LT_LT] = ACTIONS(404), + [anon_sym_GT_GT] = ACTIONS(404), + [anon_sym_PLUS_EQ] = ACTIONS(402), + [anon_sym_DASH_EQ] = ACTIONS(402), + [anon_sym_STAR_EQ] = ACTIONS(402), + [anon_sym_SLASH_EQ] = ACTIONS(402), + [anon_sym_PERCENT_EQ] = ACTIONS(402), + [anon_sym_CARET_EQ] = ACTIONS(402), + [anon_sym_AMP_EQ] = ACTIONS(402), + [anon_sym_PIPE_EQ] = ACTIONS(402), + [anon_sym_LT_LT_EQ] = ACTIONS(402), + [anon_sym_GT_GT_EQ] = ACTIONS(402), + [anon_sym_EQ] = ACTIONS(404), + [anon_sym_EQ_EQ] = ACTIONS(402), + [anon_sym_BANG_EQ] = ACTIONS(402), + [anon_sym_GT] = ACTIONS(404), + [anon_sym_LT] = ACTIONS(388), + [anon_sym_GT_EQ] = ACTIONS(402), + [anon_sym_LT_EQ] = ACTIONS(402), + [anon_sym_DOT] = ACTIONS(404), + [anon_sym_DOT_DOT] = ACTIONS(530), + [anon_sym_DOT_DOT_DOT] = ACTIONS(402), + [anon_sym_DOT_DOT_EQ] = ACTIONS(402), + [anon_sym_COLON_COLON] = ACTIONS(486), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(394), - [anon_sym_async] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), + [anon_sym_as] = ACTIONS(404), + [anon_sym_async] = ACTIONS(512), + [anon_sym_break] = ACTIONS(514), [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(482), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_default] = ACTIONS(492), [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(484), + [anon_sym_gen] = ACTIONS(518), [anon_sym_if] = ACTIONS(366), [anon_sym_loop] = ACTIONS(368), [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(486), - [anon_sym_static] = ACTIONS(488), - [anon_sym_union] = ACTIONS(482), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(522), + [anon_sym_union] = ACTIONS(492), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_move] = ACTIONS(492), + [anon_sym_raw] = ACTIONS(492), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_move] = ACTIONS(526), [anon_sym_try] = ACTIONS(378), [sym_integer_literal] = ACTIONS(99), [aux_sym_string_literal_token1] = ACTIONS(101), @@ -24182,92 +23454,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(65)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1830), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(44), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(65), - [sym_block_comment] = STATE(65), - [sym_identifier] = ACTIONS(470), + [61] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1826), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(225), + [sym_label] = STATE(49), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(61), + [sym_block_comment] = STATE(61), + [sym_identifier] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(396), [anon_sym_LBRACK] = ACTIONS(396), [anon_sym_LBRACE] = ACTIONS(396), [anon_sym_PLUS] = ACTIONS(398), [anon_sym_STAR] = ACTIONS(398), [anon_sym_QMARK] = ACTIONS(396), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), [anon_sym_DASH] = ACTIONS(398), [anon_sym_SLASH] = ACTIONS(398), [anon_sym_PERCENT] = ACTIONS(398), [anon_sym_CARET] = ACTIONS(398), - [anon_sym_BANG] = ACTIONS(474), + [anon_sym_BANG] = ACTIONS(484), [anon_sym_AMP] = ACTIONS(398), [anon_sym_PIPE] = ACTIONS(398), [anon_sym_AMP_AMP] = ACTIONS(396), @@ -24295,27 +23567,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(398), [anon_sym_DOT_DOT_DOT] = ACTIONS(396), [anon_sym_DOT_DOT_EQ] = ACTIONS(396), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_COLON_COLON] = ACTIONS(486), [anon_sym_SQUOTE] = ACTIONS(400), [anon_sym_as] = ACTIONS(398), - [anon_sym_async] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), + [anon_sym_async] = ACTIONS(488), + [anon_sym_break] = ACTIONS(490), [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(482), + [anon_sym_default] = ACTIONS(492), [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(484), + [anon_sym_gen] = ACTIONS(494), [anon_sym_if] = ACTIONS(366), [anon_sym_loop] = ACTIONS(368), [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(486), - [anon_sym_static] = ACTIONS(488), - [anon_sym_union] = ACTIONS(482), + [anon_sym_return] = ACTIONS(496), + [anon_sym_static] = ACTIONS(498), + [anon_sym_union] = ACTIONS(492), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_move] = ACTIONS(492), + [anon_sym_raw] = ACTIONS(492), + [anon_sym_yield] = ACTIONS(500), + [anon_sym_move] = ACTIONS(502), [anon_sym_try] = ACTIONS(378), [sym_integer_literal] = ACTIONS(99), [aux_sym_string_literal_token1] = ACTIONS(101), @@ -24324,140 +23596,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(66)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1832), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(66), - [sym_block_comment] = STATE(66), - [sym_identifier] = ACTIONS(470), + [62] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1829), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(225), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(62), + [sym_block_comment] = STATE(62), + [sym_identifier] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_PLUS] = ACTIONS(382), - [anon_sym_STAR] = ACTIONS(474), - [anon_sym_QMARK] = ACTIONS(380), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(474), - [anon_sym_SLASH] = ACTIONS(382), - [anon_sym_PERCENT] = ACTIONS(382), - [anon_sym_CARET] = ACTIONS(382), - [anon_sym_BANG] = ACTIONS(474), + [anon_sym_PLUS] = ACTIONS(408), + [anon_sym_STAR] = ACTIONS(484), + [anon_sym_QMARK] = ACTIONS(406), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_SLASH] = ACTIONS(408), + [anon_sym_PERCENT] = ACTIONS(408), + [anon_sym_CARET] = ACTIONS(408), + [anon_sym_BANG] = ACTIONS(484), [anon_sym_AMP] = ACTIONS(532), [anon_sym_PIPE] = ACTIONS(386), - [anon_sym_AMP_AMP] = ACTIONS(380), - [anon_sym_PIPE_PIPE] = ACTIONS(380), - [anon_sym_LT_LT] = ACTIONS(382), - [anon_sym_GT_GT] = ACTIONS(382), - [anon_sym_PLUS_EQ] = ACTIONS(380), - [anon_sym_DASH_EQ] = ACTIONS(380), - [anon_sym_STAR_EQ] = ACTIONS(380), - [anon_sym_SLASH_EQ] = ACTIONS(380), - [anon_sym_PERCENT_EQ] = ACTIONS(380), - [anon_sym_CARET_EQ] = ACTIONS(380), - [anon_sym_AMP_EQ] = ACTIONS(380), - [anon_sym_PIPE_EQ] = ACTIONS(380), - [anon_sym_LT_LT_EQ] = ACTIONS(380), - [anon_sym_GT_GT_EQ] = ACTIONS(380), - [anon_sym_EQ] = ACTIONS(382), - [anon_sym_EQ_EQ] = ACTIONS(380), - [anon_sym_BANG_EQ] = ACTIONS(380), - [anon_sym_GT] = ACTIONS(382), + [anon_sym_AMP_AMP] = ACTIONS(406), + [anon_sym_PIPE_PIPE] = ACTIONS(406), + [anon_sym_LT_LT] = ACTIONS(408), + [anon_sym_GT_GT] = ACTIONS(408), + [anon_sym_PLUS_EQ] = ACTIONS(406), + [anon_sym_DASH_EQ] = ACTIONS(406), + [anon_sym_STAR_EQ] = ACTIONS(406), + [anon_sym_SLASH_EQ] = ACTIONS(406), + [anon_sym_PERCENT_EQ] = ACTIONS(406), + [anon_sym_CARET_EQ] = ACTIONS(406), + [anon_sym_AMP_EQ] = ACTIONS(406), + [anon_sym_PIPE_EQ] = ACTIONS(406), + [anon_sym_LT_LT_EQ] = ACTIONS(406), + [anon_sym_GT_GT_EQ] = ACTIONS(406), + [anon_sym_EQ] = ACTIONS(408), + [anon_sym_EQ_EQ] = ACTIONS(406), + [anon_sym_BANG_EQ] = ACTIONS(406), + [anon_sym_GT] = ACTIONS(408), [anon_sym_LT] = ACTIONS(388), - [anon_sym_GT_EQ] = ACTIONS(380), - [anon_sym_LT_EQ] = ACTIONS(380), - [anon_sym_DOT] = ACTIONS(382), + [anon_sym_GT_EQ] = ACTIONS(406), + [anon_sym_LT_EQ] = ACTIONS(406), + [anon_sym_DOT] = ACTIONS(408), [anon_sym_DOT_DOT] = ACTIONS(534), - [anon_sym_DOT_DOT_DOT] = ACTIONS(380), - [anon_sym_DOT_DOT_EQ] = ACTIONS(380), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(406), + [anon_sym_DOT_DOT_EQ] = ACTIONS(406), + [anon_sym_COLON_COLON] = ACTIONS(486), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(382), - [anon_sym_async] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), + [anon_sym_as] = ACTIONS(408), + [anon_sym_async] = ACTIONS(488), + [anon_sym_break] = ACTIONS(490), [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(482), + [anon_sym_default] = ACTIONS(492), [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(484), + [anon_sym_gen] = ACTIONS(494), [anon_sym_if] = ACTIONS(366), [anon_sym_loop] = ACTIONS(368), [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(486), - [anon_sym_static] = ACTIONS(488), - [anon_sym_union] = ACTIONS(482), + [anon_sym_return] = ACTIONS(496), + [anon_sym_static] = ACTIONS(498), + [anon_sym_union] = ACTIONS(492), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_move] = ACTIONS(492), + [anon_sym_raw] = ACTIONS(492), + [anon_sym_yield] = ACTIONS(500), + [anon_sym_move] = ACTIONS(502), [anon_sym_try] = ACTIONS(378), [sym_integer_literal] = ACTIONS(99), [aux_sym_string_literal_token1] = ACTIONS(101), @@ -24466,26 +23738,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(67)] = { - [sym__token_pattern] = STATE(186), - [sym_token_tree_pattern] = STATE(184), - [sym_token_binding_pattern] = STATE(184), - [sym_token_repetition_pattern] = STATE(184), - [sym__literal] = STATE(184), - [sym_string_literal] = STATE(188), - [sym_raw_string_literal] = STATE(188), - [sym_boolean_literal] = STATE(188), - [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(164), + [63] = { + [sym__token_pattern] = STATE(193), + [sym_token_tree_pattern] = STATE(191), + [sym_token_binding_pattern] = STATE(191), + [sym_token_repetition_pattern] = STATE(191), + [sym__literal] = STATE(191), + [sym_string_literal] = STATE(194), + [sym_raw_string_literal] = STATE(194), + [sym_boolean_literal] = STATE(194), + [sym_line_comment] = STATE(63), + [sym_block_comment] = STATE(63), + [aux_sym_token_tree_pattern_repeat1] = STATE(63), + [aux_sym__non_special_token_repeat1] = STATE(160), [sym_identifier] = ACTIONS(536), [anon_sym_SEMI] = ACTIONS(539), [anon_sym_LPAREN] = ACTIONS(542), @@ -24599,19 +23871,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(571), [sym_float_literal] = ACTIONS(559), }, - [STATE(68)] = { - [sym__token_pattern] = STATE(186), - [sym_token_tree_pattern] = STATE(184), - [sym_token_binding_pattern] = STATE(184), - [sym_token_repetition_pattern] = STATE(184), - [sym__literal] = STATE(184), - [sym_string_literal] = STATE(188), - [sym_raw_string_literal] = STATE(188), - [sym_boolean_literal] = STATE(188), - [sym_line_comment] = STATE(68), - [sym_block_comment] = STATE(68), - [aux_sym_token_tree_pattern_repeat1] = STATE(72), - [aux_sym__non_special_token_repeat1] = STATE(164), + [64] = { + [sym__token_pattern] = STATE(193), + [sym_token_tree_pattern] = STATE(191), + [sym_token_binding_pattern] = STATE(191), + [sym_token_repetition_pattern] = STATE(191), + [sym__literal] = STATE(191), + [sym_string_literal] = STATE(194), + [sym_raw_string_literal] = STATE(194), + [sym_boolean_literal] = STATE(194), + [sym_line_comment] = STATE(64), + [sym_block_comment] = STATE(64), + [aux_sym_token_tree_pattern_repeat1] = STATE(66), + [aux_sym__non_special_token_repeat1] = STATE(160), [sym_identifier] = ACTIONS(574), [anon_sym_SEMI] = ACTIONS(576), [anon_sym_LPAREN] = ACTIONS(578), @@ -24723,24 +23995,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(598), [sym_float_literal] = ACTIONS(590), }, - [STATE(69)] = { - [sym__token_pattern] = STATE(186), - [sym_token_tree_pattern] = STATE(184), - [sym_token_binding_pattern] = STATE(184), - [sym_token_repetition_pattern] = STATE(184), - [sym__literal] = STATE(184), - [sym_string_literal] = STATE(188), - [sym_raw_string_literal] = STATE(188), - [sym_boolean_literal] = STATE(188), - [sym_line_comment] = STATE(69), - [sym_block_comment] = STATE(69), + [65] = { + [sym__token_pattern] = STATE(193), + [sym_token_tree_pattern] = STATE(191), + [sym_token_binding_pattern] = STATE(191), + [sym_token_repetition_pattern] = STATE(191), + [sym__literal] = STATE(191), + [sym_string_literal] = STATE(194), + [sym_raw_string_literal] = STATE(194), + [sym_boolean_literal] = STATE(194), + [sym_line_comment] = STATE(65), + [sym_block_comment] = STATE(65), [aux_sym_token_tree_pattern_repeat1] = STATE(73), - [aux_sym__non_special_token_repeat1] = STATE(164), + [aux_sym__non_special_token_repeat1] = STATE(160), [sym_identifier] = ACTIONS(574), [anon_sym_SEMI] = ACTIONS(576), [anon_sym_LPAREN] = ACTIONS(578), [anon_sym_LBRACK] = ACTIONS(582), - [anon_sym_RBRACK] = ACTIONS(580), + [anon_sym_RBRACK] = ACTIONS(600), [anon_sym_LBRACE] = ACTIONS(584), [anon_sym_EQ_GT] = ACTIONS(576), [anon_sym_COLON] = ACTIONS(586), @@ -24847,23 +24119,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(598), [sym_float_literal] = ACTIONS(590), }, - [STATE(70)] = { - [sym__token_pattern] = STATE(186), - [sym_token_tree_pattern] = STATE(184), - [sym_token_binding_pattern] = STATE(184), - [sym_token_repetition_pattern] = STATE(184), - [sym__literal] = STATE(184), - [sym_string_literal] = STATE(188), - [sym_raw_string_literal] = STATE(188), - [sym_boolean_literal] = STATE(188), - [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(164), + [66] = { + [sym__token_pattern] = STATE(193), + [sym_token_tree_pattern] = STATE(191), + [sym_token_binding_pattern] = STATE(191), + [sym_token_repetition_pattern] = STATE(191), + [sym__literal] = STATE(191), + [sym_string_literal] = STATE(194), + [sym_raw_string_literal] = STATE(194), + [sym_boolean_literal] = STATE(194), + [sym_line_comment] = STATE(66), + [sym_block_comment] = STATE(66), + [aux_sym_token_tree_pattern_repeat1] = STATE(63), + [aux_sym__non_special_token_repeat1] = STATE(160), [sym_identifier] = ACTIONS(574), [anon_sym_SEMI] = ACTIONS(576), [anon_sym_LPAREN] = ACTIONS(578), - [anon_sym_RPAREN] = ACTIONS(600), + [anon_sym_RPAREN] = ACTIONS(602), [anon_sym_LBRACK] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(584), [anon_sym_EQ_GT] = ACTIONS(576), @@ -24971,24 +24243,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(598), [sym_float_literal] = ACTIONS(590), }, - [STATE(71)] = { - [sym__token_pattern] = STATE(186), - [sym_token_tree_pattern] = STATE(184), - [sym_token_binding_pattern] = STATE(184), - [sym_token_repetition_pattern] = STATE(184), - [sym__literal] = STATE(184), - [sym_string_literal] = STATE(188), - [sym_raw_string_literal] = STATE(188), - [sym_boolean_literal] = STATE(188), - [sym_line_comment] = STATE(71), - [sym_block_comment] = STATE(71), - [aux_sym_token_tree_pattern_repeat1] = STATE(78), - [aux_sym__non_special_token_repeat1] = STATE(164), + [67] = { + [sym__token_pattern] = STATE(193), + [sym_token_tree_pattern] = STATE(191), + [sym_token_binding_pattern] = STATE(191), + [sym_token_repetition_pattern] = STATE(191), + [sym__literal] = STATE(191), + [sym_string_literal] = STATE(194), + [sym_raw_string_literal] = STATE(194), + [sym_boolean_literal] = STATE(194), + [sym_line_comment] = STATE(67), + [sym_block_comment] = STATE(67), + [aux_sym_token_tree_pattern_repeat1] = STATE(63), + [aux_sym__non_special_token_repeat1] = STATE(160), [sym_identifier] = ACTIONS(574), [anon_sym_SEMI] = ACTIONS(576), [anon_sym_LPAREN] = ACTIONS(578), [anon_sym_LBRACK] = ACTIONS(582), - [anon_sym_RBRACK] = ACTIONS(600), + [anon_sym_RBRACK] = ACTIONS(602), [anon_sym_LBRACE] = ACTIONS(584), [anon_sym_EQ_GT] = ACTIONS(576), [anon_sym_COLON] = ACTIONS(586), @@ -25095,24 +24367,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(598), [sym_float_literal] = ACTIONS(590), }, - [STATE(72)] = { - [sym__token_pattern] = STATE(186), - [sym_token_tree_pattern] = STATE(184), - [sym_token_binding_pattern] = STATE(184), - [sym_token_repetition_pattern] = STATE(184), - [sym__literal] = STATE(184), - [sym_string_literal] = STATE(188), - [sym_raw_string_literal] = STATE(188), - [sym_boolean_literal] = STATE(188), - [sym_line_comment] = STATE(72), - [sym_block_comment] = STATE(72), + [68] = { + [sym__token_pattern] = STATE(193), + [sym_token_tree_pattern] = STATE(191), + [sym_token_binding_pattern] = STATE(191), + [sym_token_repetition_pattern] = STATE(191), + [sym__literal] = STATE(191), + [sym_string_literal] = STATE(194), + [sym_raw_string_literal] = STATE(194), + [sym_boolean_literal] = STATE(194), + [sym_line_comment] = STATE(68), + [sym_block_comment] = STATE(68), [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(164), + [aux_sym__non_special_token_repeat1] = STATE(160), [sym_identifier] = ACTIONS(574), [anon_sym_SEMI] = ACTIONS(576), [anon_sym_LPAREN] = ACTIONS(578), - [anon_sym_RPAREN] = ACTIONS(602), [anon_sym_LBRACK] = ACTIONS(582), + [anon_sym_RBRACK] = ACTIONS(580), [anon_sym_LBRACE] = ACTIONS(584), [anon_sym_EQ_GT] = ACTIONS(576), [anon_sym_COLON] = ACTIONS(586), @@ -25219,25 +24491,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(598), [sym_float_literal] = ACTIONS(590), }, - [STATE(73)] = { - [sym__token_pattern] = STATE(186), - [sym_token_tree_pattern] = STATE(184), - [sym_token_binding_pattern] = STATE(184), - [sym_token_repetition_pattern] = STATE(184), - [sym__literal] = STATE(184), - [sym_string_literal] = STATE(188), - [sym_raw_string_literal] = STATE(188), - [sym_boolean_literal] = STATE(188), - [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(164), + [69] = { + [sym__token_pattern] = STATE(193), + [sym_token_tree_pattern] = STATE(191), + [sym_token_binding_pattern] = STATE(191), + [sym_token_repetition_pattern] = STATE(191), + [sym__literal] = STATE(191), + [sym_string_literal] = STATE(194), + [sym_raw_string_literal] = STATE(194), + [sym_boolean_literal] = STATE(194), + [sym_line_comment] = STATE(69), + [sym_block_comment] = STATE(69), + [aux_sym_token_tree_pattern_repeat1] = STATE(74), + [aux_sym__non_special_token_repeat1] = STATE(160), [sym_identifier] = ACTIONS(574), [anon_sym_SEMI] = ACTIONS(576), [anon_sym_LPAREN] = ACTIONS(578), [anon_sym_LBRACK] = ACTIONS(582), - [anon_sym_RBRACK] = ACTIONS(602), [anon_sym_LBRACE] = ACTIONS(584), + [anon_sym_RBRACE] = ACTIONS(600), [anon_sym_EQ_GT] = ACTIONS(576), [anon_sym_COLON] = ACTIONS(586), [anon_sym_DOLLAR] = ACTIONS(588), @@ -25343,19 +24615,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(598), [sym_float_literal] = ACTIONS(590), }, - [STATE(74)] = { - [sym__token_pattern] = STATE(186), - [sym_token_tree_pattern] = STATE(184), - [sym_token_binding_pattern] = STATE(184), - [sym_token_repetition_pattern] = STATE(184), - [sym__literal] = STATE(184), - [sym_string_literal] = STATE(188), - [sym_raw_string_literal] = STATE(188), - [sym_boolean_literal] = STATE(188), - [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(164), + [70] = { + [sym__token_pattern] = STATE(193), + [sym_token_tree_pattern] = STATE(191), + [sym_token_binding_pattern] = STATE(191), + [sym_token_repetition_pattern] = STATE(191), + [sym__literal] = STATE(191), + [sym_string_literal] = STATE(194), + [sym_raw_string_literal] = STATE(194), + [sym_boolean_literal] = STATE(194), + [sym_line_comment] = STATE(70), + [sym_block_comment] = STATE(70), + [aux_sym_token_tree_pattern_repeat1] = STATE(63), + [aux_sym__non_special_token_repeat1] = STATE(160), [sym_identifier] = ACTIONS(574), [anon_sym_SEMI] = ACTIONS(576), [anon_sym_LPAREN] = ACTIONS(578), @@ -25467,25 +24739,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(598), [sym_float_literal] = ACTIONS(590), }, - [STATE(75)] = { - [sym__token_pattern] = STATE(186), - [sym_token_tree_pattern] = STATE(184), - [sym_token_binding_pattern] = STATE(184), - [sym_token_repetition_pattern] = STATE(184), - [sym__literal] = STATE(184), - [sym_string_literal] = STATE(188), - [sym_raw_string_literal] = STATE(188), - [sym_boolean_literal] = STATE(188), - [sym_line_comment] = STATE(75), - [sym_block_comment] = STATE(75), - [aux_sym_token_tree_pattern_repeat1] = STATE(79), - [aux_sym__non_special_token_repeat1] = STATE(164), + [71] = { + [sym__token_pattern] = STATE(193), + [sym_token_tree_pattern] = STATE(191), + [sym_token_binding_pattern] = STATE(191), + [sym_token_repetition_pattern] = STATE(191), + [sym__literal] = STATE(191), + [sym_string_literal] = STATE(194), + [sym_raw_string_literal] = STATE(194), + [sym_boolean_literal] = STATE(194), + [sym_line_comment] = STATE(71), + [sym_block_comment] = STATE(71), + [aux_sym_token_tree_pattern_repeat1] = STATE(70), + [aux_sym__non_special_token_repeat1] = STATE(160), [sym_identifier] = ACTIONS(574), [anon_sym_SEMI] = ACTIONS(576), [anon_sym_LPAREN] = ACTIONS(578), [anon_sym_LBRACK] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(584), - [anon_sym_RBRACE] = ACTIONS(600), + [anon_sym_RBRACE] = ACTIONS(580), [anon_sym_EQ_GT] = ACTIONS(576), [anon_sym_COLON] = ACTIONS(586), [anon_sym_DOLLAR] = ACTIONS(588), @@ -25591,25 +24863,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(598), [sym_float_literal] = ACTIONS(590), }, - [STATE(76)] = { - [sym__token_pattern] = STATE(186), - [sym_token_tree_pattern] = STATE(184), - [sym_token_binding_pattern] = STATE(184), - [sym_token_repetition_pattern] = STATE(184), - [sym__literal] = STATE(184), - [sym_string_literal] = STATE(188), - [sym_raw_string_literal] = STATE(188), - [sym_boolean_literal] = STATE(188), - [sym_line_comment] = STATE(76), - [sym_block_comment] = STATE(76), - [aux_sym_token_tree_pattern_repeat1] = STATE(74), - [aux_sym__non_special_token_repeat1] = STATE(164), + [72] = { + [sym__token_pattern] = STATE(193), + [sym_token_tree_pattern] = STATE(191), + [sym_token_binding_pattern] = STATE(191), + [sym_token_repetition_pattern] = STATE(191), + [sym__literal] = STATE(191), + [sym_string_literal] = STATE(194), + [sym_raw_string_literal] = STATE(194), + [sym_boolean_literal] = STATE(194), + [sym_line_comment] = STATE(72), + [sym_block_comment] = STATE(72), + [aux_sym_token_tree_pattern_repeat1] = STATE(63), + [aux_sym__non_special_token_repeat1] = STATE(160), [sym_identifier] = ACTIONS(574), [anon_sym_SEMI] = ACTIONS(576), [anon_sym_LPAREN] = ACTIONS(578), + [anon_sym_RPAREN] = ACTIONS(604), [anon_sym_LBRACK] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(584), - [anon_sym_RBRACE] = ACTIONS(580), [anon_sym_EQ_GT] = ACTIONS(576), [anon_sym_COLON] = ACTIONS(586), [anon_sym_DOLLAR] = ACTIONS(588), @@ -25715,24 +24987,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(598), [sym_float_literal] = ACTIONS(590), }, - [STATE(77)] = { - [sym__token_pattern] = STATE(186), - [sym_token_tree_pattern] = STATE(184), - [sym_token_binding_pattern] = STATE(184), - [sym_token_repetition_pattern] = STATE(184), - [sym__literal] = STATE(184), - [sym_string_literal] = STATE(188), - [sym_raw_string_literal] = STATE(188), - [sym_boolean_literal] = STATE(188), - [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(164), + [73] = { + [sym__token_pattern] = STATE(193), + [sym_token_tree_pattern] = STATE(191), + [sym_token_binding_pattern] = STATE(191), + [sym_token_repetition_pattern] = STATE(191), + [sym__literal] = STATE(191), + [sym_string_literal] = STATE(194), + [sym_raw_string_literal] = STATE(194), + [sym_boolean_literal] = STATE(194), + [sym_line_comment] = STATE(73), + [sym_block_comment] = STATE(73), + [aux_sym_token_tree_pattern_repeat1] = STATE(63), + [aux_sym__non_special_token_repeat1] = STATE(160), [sym_identifier] = ACTIONS(574), [anon_sym_SEMI] = ACTIONS(576), [anon_sym_LPAREN] = ACTIONS(578), - [anon_sym_RPAREN] = ACTIONS(604), [anon_sym_LBRACK] = ACTIONS(582), + [anon_sym_RBRACK] = ACTIONS(604), [anon_sym_LBRACE] = ACTIONS(584), [anon_sym_EQ_GT] = ACTIONS(576), [anon_sym_COLON] = ACTIONS(586), @@ -25839,25 +25111,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(598), [sym_float_literal] = ACTIONS(590), }, - [STATE(78)] = { - [sym__token_pattern] = STATE(186), - [sym_token_tree_pattern] = STATE(184), - [sym_token_binding_pattern] = STATE(184), - [sym_token_repetition_pattern] = STATE(184), - [sym__literal] = STATE(184), - [sym_string_literal] = STATE(188), - [sym_raw_string_literal] = STATE(188), - [sym_boolean_literal] = STATE(188), - [sym_line_comment] = STATE(78), - [sym_block_comment] = STATE(78), - [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(164), + [74] = { + [sym__token_pattern] = STATE(193), + [sym_token_tree_pattern] = STATE(191), + [sym_token_binding_pattern] = STATE(191), + [sym_token_repetition_pattern] = STATE(191), + [sym__literal] = STATE(191), + [sym_string_literal] = STATE(194), + [sym_raw_string_literal] = STATE(194), + [sym_boolean_literal] = STATE(194), + [sym_line_comment] = STATE(74), + [sym_block_comment] = STATE(74), + [aux_sym_token_tree_pattern_repeat1] = STATE(63), + [aux_sym__non_special_token_repeat1] = STATE(160), [sym_identifier] = ACTIONS(574), [anon_sym_SEMI] = ACTIONS(576), [anon_sym_LPAREN] = ACTIONS(578), [anon_sym_LBRACK] = ACTIONS(582), - [anon_sym_RBRACK] = ACTIONS(604), [anon_sym_LBRACE] = ACTIONS(584), + [anon_sym_RBRACE] = ACTIONS(604), [anon_sym_EQ_GT] = ACTIONS(576), [anon_sym_COLON] = ACTIONS(586), [anon_sym_DOLLAR] = ACTIONS(588), @@ -25963,25 +25235,521 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(598), [sym_float_literal] = ACTIONS(590), }, - [STATE(79)] = { - [sym__token_pattern] = STATE(186), - [sym_token_tree_pattern] = STATE(184), - [sym_token_binding_pattern] = STATE(184), - [sym_token_repetition_pattern] = STATE(184), - [sym__literal] = STATE(184), - [sym_string_literal] = STATE(188), - [sym_raw_string_literal] = STATE(188), - [sym_boolean_literal] = STATE(188), + [75] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(241), + [sym_string_literal] = STATE(221), + [sym_raw_string_literal] = STATE(221), + [sym_boolean_literal] = STATE(221), + [sym_line_comment] = STATE(75), + [sym_block_comment] = STATE(75), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(75), + [sym_identifier] = ACTIONS(606), + [anon_sym_SEMI] = ACTIONS(609), + [anon_sym_LPAREN] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(615), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_RBRACK] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(620), + [anon_sym_RBRACE] = ACTIONS(615), + [anon_sym_EQ_GT] = ACTIONS(609), + [anon_sym_COLON] = ACTIONS(623), + [anon_sym_DOLLAR] = ACTIONS(626), + [anon_sym_PLUS] = ACTIONS(623), + [anon_sym_STAR] = ACTIONS(623), + [anon_sym_QMARK] = ACTIONS(609), + [anon_sym_u8] = ACTIONS(606), + [anon_sym_i8] = ACTIONS(606), + [anon_sym_u16] = ACTIONS(606), + [anon_sym_i16] = ACTIONS(606), + [anon_sym_u32] = ACTIONS(606), + [anon_sym_i32] = ACTIONS(606), + [anon_sym_u64] = ACTIONS(606), + [anon_sym_i64] = ACTIONS(606), + [anon_sym_u128] = ACTIONS(606), + [anon_sym_i128] = ACTIONS(606), + [anon_sym_isize] = ACTIONS(606), + [anon_sym_usize] = ACTIONS(606), + [anon_sym_f32] = ACTIONS(606), + [anon_sym_f64] = ACTIONS(606), + [anon_sym_bool] = ACTIONS(606), + [anon_sym_str] = ACTIONS(606), + [anon_sym_char] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(623), + [anon_sym_SLASH] = ACTIONS(623), + [anon_sym_PERCENT] = ACTIONS(623), + [anon_sym_CARET] = ACTIONS(623), + [anon_sym_BANG] = ACTIONS(623), + [anon_sym_AMP] = ACTIONS(623), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_AMP_AMP] = ACTIONS(609), + [anon_sym_PIPE_PIPE] = ACTIONS(609), + [anon_sym_LT_LT] = ACTIONS(623), + [anon_sym_GT_GT] = ACTIONS(623), + [anon_sym_PLUS_EQ] = ACTIONS(609), + [anon_sym_DASH_EQ] = ACTIONS(609), + [anon_sym_STAR_EQ] = ACTIONS(609), + [anon_sym_SLASH_EQ] = ACTIONS(609), + [anon_sym_PERCENT_EQ] = ACTIONS(609), + [anon_sym_CARET_EQ] = ACTIONS(609), + [anon_sym_AMP_EQ] = ACTIONS(609), + [anon_sym_PIPE_EQ] = ACTIONS(609), + [anon_sym_LT_LT_EQ] = ACTIONS(609), + [anon_sym_GT_GT_EQ] = ACTIONS(609), + [anon_sym_EQ] = ACTIONS(623), + [anon_sym_EQ_EQ] = ACTIONS(609), + [anon_sym_BANG_EQ] = ACTIONS(609), + [anon_sym_GT] = ACTIONS(623), + [anon_sym_LT] = ACTIONS(623), + [anon_sym_GT_EQ] = ACTIONS(609), + [anon_sym_LT_EQ] = ACTIONS(609), + [anon_sym_AT] = ACTIONS(609), + [anon_sym__] = ACTIONS(623), + [anon_sym_DOT] = ACTIONS(623), + [anon_sym_DOT_DOT] = ACTIONS(623), + [anon_sym_DOT_DOT_DOT] = ACTIONS(609), + [anon_sym_DOT_DOT_EQ] = ACTIONS(609), + [anon_sym_COMMA] = ACTIONS(609), + [anon_sym_COLON_COLON] = ACTIONS(609), + [anon_sym_DASH_GT] = ACTIONS(609), + [anon_sym_POUND] = ACTIONS(609), + [anon_sym_SQUOTE] = ACTIONS(606), + [anon_sym_as] = ACTIONS(606), + [anon_sym_async] = ACTIONS(606), + [anon_sym_await] = ACTIONS(606), + [anon_sym_break] = ACTIONS(606), + [anon_sym_const] = ACTIONS(606), + [anon_sym_continue] = ACTIONS(606), + [anon_sym_default] = ACTIONS(606), + [anon_sym_enum] = ACTIONS(606), + [anon_sym_fn] = ACTIONS(606), + [anon_sym_for] = ACTIONS(606), + [anon_sym_gen] = ACTIONS(606), + [anon_sym_if] = ACTIONS(606), + [anon_sym_impl] = ACTIONS(606), + [anon_sym_let] = ACTIONS(606), + [anon_sym_loop] = ACTIONS(606), + [anon_sym_match] = ACTIONS(606), + [anon_sym_mod] = ACTIONS(606), + [anon_sym_pub] = ACTIONS(606), + [anon_sym_return] = ACTIONS(606), + [anon_sym_static] = ACTIONS(606), + [anon_sym_struct] = ACTIONS(606), + [anon_sym_trait] = ACTIONS(606), + [anon_sym_type] = ACTIONS(606), + [anon_sym_union] = ACTIONS(606), + [anon_sym_unsafe] = ACTIONS(606), + [anon_sym_use] = ACTIONS(606), + [anon_sym_where] = ACTIONS(606), + [anon_sym_while] = ACTIONS(606), + [sym_mutable_specifier] = ACTIONS(606), + [sym_integer_literal] = ACTIONS(629), + [aux_sym_string_literal_token1] = ACTIONS(632), + [sym_char_literal] = ACTIONS(629), + [anon_sym_true] = ACTIONS(635), + [anon_sym_false] = ACTIONS(635), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(606), + [sym_super] = ACTIONS(606), + [sym_crate] = ACTIONS(606), + [sym__raw_string_literal_start] = ACTIONS(638), + [sym_float_literal] = ACTIONS(629), + }, + [76] = { + [sym__token_pattern] = STATE(193), + [sym_token_tree_pattern] = STATE(191), + [sym_token_binding_pattern] = STATE(191), + [sym_token_repetition_pattern] = STATE(191), + [sym__literal] = STATE(191), + [sym_string_literal] = STATE(194), + [sym_raw_string_literal] = STATE(194), + [sym_boolean_literal] = STATE(194), + [sym_line_comment] = STATE(76), + [sym_block_comment] = STATE(76), + [aux_sym_token_tree_pattern_repeat1] = STATE(63), + [aux_sym__non_special_token_repeat1] = STATE(160), + [sym_identifier] = ACTIONS(574), + [anon_sym_SEMI] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(578), + [anon_sym_RPAREN] = ACTIONS(641), + [anon_sym_LBRACK] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(584), + [anon_sym_EQ_GT] = ACTIONS(576), + [anon_sym_COLON] = ACTIONS(586), + [anon_sym_DOLLAR] = ACTIONS(588), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(586), + [anon_sym_QMARK] = ACTIONS(576), + [anon_sym_u8] = ACTIONS(574), + [anon_sym_i8] = ACTIONS(574), + [anon_sym_u16] = ACTIONS(574), + [anon_sym_i16] = ACTIONS(574), + [anon_sym_u32] = ACTIONS(574), + [anon_sym_i32] = ACTIONS(574), + [anon_sym_u64] = ACTIONS(574), + [anon_sym_i64] = ACTIONS(574), + [anon_sym_u128] = ACTIONS(574), + [anon_sym_i128] = ACTIONS(574), + [anon_sym_isize] = ACTIONS(574), + [anon_sym_usize] = ACTIONS(574), + [anon_sym_f32] = ACTIONS(574), + [anon_sym_f64] = ACTIONS(574), + [anon_sym_bool] = ACTIONS(574), + [anon_sym_str] = ACTIONS(574), + [anon_sym_char] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_PERCENT] = ACTIONS(586), + [anon_sym_CARET] = ACTIONS(586), + [anon_sym_BANG] = ACTIONS(586), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PIPE] = ACTIONS(586), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS_EQ] = ACTIONS(576), + [anon_sym_DASH_EQ] = ACTIONS(576), + [anon_sym_STAR_EQ] = ACTIONS(576), + [anon_sym_SLASH_EQ] = ACTIONS(576), + [anon_sym_PERCENT_EQ] = ACTIONS(576), + [anon_sym_CARET_EQ] = ACTIONS(576), + [anon_sym_AMP_EQ] = ACTIONS(576), + [anon_sym_PIPE_EQ] = ACTIONS(576), + [anon_sym_LT_LT_EQ] = ACTIONS(576), + [anon_sym_GT_GT_EQ] = ACTIONS(576), + [anon_sym_EQ] = ACTIONS(586), + [anon_sym_EQ_EQ] = ACTIONS(576), + [anon_sym_BANG_EQ] = ACTIONS(576), + [anon_sym_GT] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(586), + [anon_sym_GT_EQ] = ACTIONS(576), + [anon_sym_LT_EQ] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(576), + [anon_sym__] = ACTIONS(586), + [anon_sym_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_DOT] = ACTIONS(576), + [anon_sym_DOT_DOT_EQ] = ACTIONS(576), + [anon_sym_COMMA] = ACTIONS(576), + [anon_sym_COLON_COLON] = ACTIONS(576), + [anon_sym_DASH_GT] = ACTIONS(576), + [anon_sym_POUND] = ACTIONS(576), + [anon_sym_SQUOTE] = ACTIONS(574), + [anon_sym_as] = ACTIONS(574), + [anon_sym_async] = ACTIONS(574), + [anon_sym_await] = ACTIONS(574), + [anon_sym_break] = ACTIONS(574), + [anon_sym_const] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(574), + [anon_sym_default] = ACTIONS(574), + [anon_sym_enum] = ACTIONS(574), + [anon_sym_fn] = ACTIONS(574), + [anon_sym_for] = ACTIONS(574), + [anon_sym_gen] = ACTIONS(574), + [anon_sym_if] = ACTIONS(574), + [anon_sym_impl] = ACTIONS(574), + [anon_sym_let] = ACTIONS(574), + [anon_sym_loop] = ACTIONS(574), + [anon_sym_match] = ACTIONS(574), + [anon_sym_mod] = ACTIONS(574), + [anon_sym_pub] = ACTIONS(574), + [anon_sym_return] = ACTIONS(574), + [anon_sym_static] = ACTIONS(574), + [anon_sym_struct] = ACTIONS(574), + [anon_sym_trait] = ACTIONS(574), + [anon_sym_type] = ACTIONS(574), + [anon_sym_union] = ACTIONS(574), + [anon_sym_unsafe] = ACTIONS(574), + [anon_sym_use] = ACTIONS(574), + [anon_sym_where] = ACTIONS(574), + [anon_sym_while] = ACTIONS(574), + [sym_mutable_specifier] = ACTIONS(574), + [sym_integer_literal] = ACTIONS(590), + [aux_sym_string_literal_token1] = ACTIONS(592), + [sym_char_literal] = ACTIONS(590), + [anon_sym_true] = ACTIONS(594), + [anon_sym_false] = ACTIONS(594), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(574), + [sym_super] = ACTIONS(574), + [sym_crate] = ACTIONS(574), + [sym_metavariable] = ACTIONS(596), + [sym__raw_string_literal_start] = ACTIONS(598), + [sym_float_literal] = ACTIONS(590), + }, + [77] = { + [sym__token_pattern] = STATE(193), + [sym_token_tree_pattern] = STATE(191), + [sym_token_binding_pattern] = STATE(191), + [sym_token_repetition_pattern] = STATE(191), + [sym__literal] = STATE(191), + [sym_string_literal] = STATE(194), + [sym_raw_string_literal] = STATE(194), + [sym_boolean_literal] = STATE(194), + [sym_line_comment] = STATE(77), + [sym_block_comment] = STATE(77), + [aux_sym_token_tree_pattern_repeat1] = STATE(72), + [aux_sym__non_special_token_repeat1] = STATE(160), + [sym_identifier] = ACTIONS(574), + [anon_sym_SEMI] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(578), + [anon_sym_RPAREN] = ACTIONS(600), + [anon_sym_LBRACK] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(584), + [anon_sym_EQ_GT] = ACTIONS(576), + [anon_sym_COLON] = ACTIONS(586), + [anon_sym_DOLLAR] = ACTIONS(588), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(586), + [anon_sym_QMARK] = ACTIONS(576), + [anon_sym_u8] = ACTIONS(574), + [anon_sym_i8] = ACTIONS(574), + [anon_sym_u16] = ACTIONS(574), + [anon_sym_i16] = ACTIONS(574), + [anon_sym_u32] = ACTIONS(574), + [anon_sym_i32] = ACTIONS(574), + [anon_sym_u64] = ACTIONS(574), + [anon_sym_i64] = ACTIONS(574), + [anon_sym_u128] = ACTIONS(574), + [anon_sym_i128] = ACTIONS(574), + [anon_sym_isize] = ACTIONS(574), + [anon_sym_usize] = ACTIONS(574), + [anon_sym_f32] = ACTIONS(574), + [anon_sym_f64] = ACTIONS(574), + [anon_sym_bool] = ACTIONS(574), + [anon_sym_str] = ACTIONS(574), + [anon_sym_char] = ACTIONS(574), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_PERCENT] = ACTIONS(586), + [anon_sym_CARET] = ACTIONS(586), + [anon_sym_BANG] = ACTIONS(586), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PIPE] = ACTIONS(586), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS_EQ] = ACTIONS(576), + [anon_sym_DASH_EQ] = ACTIONS(576), + [anon_sym_STAR_EQ] = ACTIONS(576), + [anon_sym_SLASH_EQ] = ACTIONS(576), + [anon_sym_PERCENT_EQ] = ACTIONS(576), + [anon_sym_CARET_EQ] = ACTIONS(576), + [anon_sym_AMP_EQ] = ACTIONS(576), + [anon_sym_PIPE_EQ] = ACTIONS(576), + [anon_sym_LT_LT_EQ] = ACTIONS(576), + [anon_sym_GT_GT_EQ] = ACTIONS(576), + [anon_sym_EQ] = ACTIONS(586), + [anon_sym_EQ_EQ] = ACTIONS(576), + [anon_sym_BANG_EQ] = ACTIONS(576), + [anon_sym_GT] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(586), + [anon_sym_GT_EQ] = ACTIONS(576), + [anon_sym_LT_EQ] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(576), + [anon_sym__] = ACTIONS(586), + [anon_sym_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_DOT] = ACTIONS(576), + [anon_sym_DOT_DOT_EQ] = ACTIONS(576), + [anon_sym_COMMA] = ACTIONS(576), + [anon_sym_COLON_COLON] = ACTIONS(576), + [anon_sym_DASH_GT] = ACTIONS(576), + [anon_sym_POUND] = ACTIONS(576), + [anon_sym_SQUOTE] = ACTIONS(574), + [anon_sym_as] = ACTIONS(574), + [anon_sym_async] = ACTIONS(574), + [anon_sym_await] = ACTIONS(574), + [anon_sym_break] = ACTIONS(574), + [anon_sym_const] = ACTIONS(574), + [anon_sym_continue] = ACTIONS(574), + [anon_sym_default] = ACTIONS(574), + [anon_sym_enum] = ACTIONS(574), + [anon_sym_fn] = ACTIONS(574), + [anon_sym_for] = ACTIONS(574), + [anon_sym_gen] = ACTIONS(574), + [anon_sym_if] = ACTIONS(574), + [anon_sym_impl] = ACTIONS(574), + [anon_sym_let] = ACTIONS(574), + [anon_sym_loop] = ACTIONS(574), + [anon_sym_match] = ACTIONS(574), + [anon_sym_mod] = ACTIONS(574), + [anon_sym_pub] = ACTIONS(574), + [anon_sym_return] = ACTIONS(574), + [anon_sym_static] = ACTIONS(574), + [anon_sym_struct] = ACTIONS(574), + [anon_sym_trait] = ACTIONS(574), + [anon_sym_type] = ACTIONS(574), + [anon_sym_union] = ACTIONS(574), + [anon_sym_unsafe] = ACTIONS(574), + [anon_sym_use] = ACTIONS(574), + [anon_sym_where] = ACTIONS(574), + [anon_sym_while] = ACTIONS(574), + [sym_mutable_specifier] = ACTIONS(574), + [sym_integer_literal] = ACTIONS(590), + [aux_sym_string_literal_token1] = ACTIONS(592), + [sym_char_literal] = ACTIONS(590), + [anon_sym_true] = ACTIONS(594), + [anon_sym_false] = ACTIONS(594), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(574), + [sym_super] = ACTIONS(574), + [sym_crate] = ACTIONS(574), + [sym_metavariable] = ACTIONS(596), + [sym__raw_string_literal_start] = ACTIONS(598), + [sym_float_literal] = ACTIONS(590), + }, + [78] = { + [sym_token_tree] = STATE(174), + [sym_token_repetition] = STATE(174), + [sym__literal] = STATE(174), + [sym_string_literal] = STATE(194), + [sym_raw_string_literal] = STATE(194), + [sym_boolean_literal] = STATE(194), + [sym_line_comment] = STATE(78), + [sym_block_comment] = STATE(78), + [aux_sym_token_tree_repeat1] = STATE(78), + [aux_sym__non_special_token_repeat1] = STATE(151), + [sym_identifier] = ACTIONS(643), + [anon_sym_SEMI] = ACTIONS(646), + [anon_sym_LPAREN] = ACTIONS(649), + [anon_sym_RPAREN] = ACTIONS(652), + [anon_sym_LBRACK] = ACTIONS(654), + [anon_sym_RBRACK] = ACTIONS(652), + [anon_sym_LBRACE] = ACTIONS(657), + [anon_sym_RBRACE] = ACTIONS(652), + [anon_sym_EQ_GT] = ACTIONS(646), + [anon_sym_COLON] = ACTIONS(660), + [anon_sym_DOLLAR] = ACTIONS(663), + [anon_sym_PLUS] = ACTIONS(660), + [anon_sym_STAR] = ACTIONS(660), + [anon_sym_QMARK] = ACTIONS(646), + [anon_sym_u8] = ACTIONS(643), + [anon_sym_i8] = ACTIONS(643), + [anon_sym_u16] = ACTIONS(643), + [anon_sym_i16] = ACTIONS(643), + [anon_sym_u32] = ACTIONS(643), + [anon_sym_i32] = ACTIONS(643), + [anon_sym_u64] = ACTIONS(643), + [anon_sym_i64] = ACTIONS(643), + [anon_sym_u128] = ACTIONS(643), + [anon_sym_i128] = ACTIONS(643), + [anon_sym_isize] = ACTIONS(643), + [anon_sym_usize] = ACTIONS(643), + [anon_sym_f32] = ACTIONS(643), + [anon_sym_f64] = ACTIONS(643), + [anon_sym_bool] = ACTIONS(643), + [anon_sym_str] = ACTIONS(643), + [anon_sym_char] = ACTIONS(643), + [anon_sym_DASH] = ACTIONS(660), + [anon_sym_SLASH] = ACTIONS(660), + [anon_sym_PERCENT] = ACTIONS(660), + [anon_sym_CARET] = ACTIONS(660), + [anon_sym_BANG] = ACTIONS(660), + [anon_sym_AMP] = ACTIONS(660), + [anon_sym_PIPE] = ACTIONS(660), + [anon_sym_AMP_AMP] = ACTIONS(646), + [anon_sym_PIPE_PIPE] = ACTIONS(646), + [anon_sym_LT_LT] = ACTIONS(660), + [anon_sym_GT_GT] = ACTIONS(660), + [anon_sym_PLUS_EQ] = ACTIONS(646), + [anon_sym_DASH_EQ] = ACTIONS(646), + [anon_sym_STAR_EQ] = ACTIONS(646), + [anon_sym_SLASH_EQ] = ACTIONS(646), + [anon_sym_PERCENT_EQ] = ACTIONS(646), + [anon_sym_CARET_EQ] = ACTIONS(646), + [anon_sym_AMP_EQ] = ACTIONS(646), + [anon_sym_PIPE_EQ] = ACTIONS(646), + [anon_sym_LT_LT_EQ] = ACTIONS(646), + [anon_sym_GT_GT_EQ] = ACTIONS(646), + [anon_sym_EQ] = ACTIONS(660), + [anon_sym_EQ_EQ] = ACTIONS(646), + [anon_sym_BANG_EQ] = ACTIONS(646), + [anon_sym_GT] = ACTIONS(660), + [anon_sym_LT] = ACTIONS(660), + [anon_sym_GT_EQ] = ACTIONS(646), + [anon_sym_LT_EQ] = ACTIONS(646), + [anon_sym_AT] = ACTIONS(646), + [anon_sym__] = ACTIONS(660), + [anon_sym_DOT] = ACTIONS(660), + [anon_sym_DOT_DOT] = ACTIONS(660), + [anon_sym_DOT_DOT_DOT] = ACTIONS(646), + [anon_sym_DOT_DOT_EQ] = ACTIONS(646), + [anon_sym_COMMA] = ACTIONS(646), + [anon_sym_COLON_COLON] = ACTIONS(646), + [anon_sym_DASH_GT] = ACTIONS(646), + [anon_sym_POUND] = ACTIONS(646), + [anon_sym_SQUOTE] = ACTIONS(643), + [anon_sym_as] = ACTIONS(643), + [anon_sym_async] = ACTIONS(643), + [anon_sym_await] = ACTIONS(643), + [anon_sym_break] = ACTIONS(643), + [anon_sym_const] = ACTIONS(643), + [anon_sym_continue] = ACTIONS(643), + [anon_sym_default] = ACTIONS(643), + [anon_sym_enum] = ACTIONS(643), + [anon_sym_fn] = ACTIONS(643), + [anon_sym_for] = ACTIONS(643), + [anon_sym_gen] = ACTIONS(643), + [anon_sym_if] = ACTIONS(643), + [anon_sym_impl] = ACTIONS(643), + [anon_sym_let] = ACTIONS(643), + [anon_sym_loop] = ACTIONS(643), + [anon_sym_match] = ACTIONS(643), + [anon_sym_mod] = ACTIONS(643), + [anon_sym_pub] = ACTIONS(643), + [anon_sym_return] = ACTIONS(643), + [anon_sym_static] = ACTIONS(643), + [anon_sym_struct] = ACTIONS(643), + [anon_sym_trait] = ACTIONS(643), + [anon_sym_type] = ACTIONS(643), + [anon_sym_union] = ACTIONS(643), + [anon_sym_unsafe] = ACTIONS(643), + [anon_sym_use] = ACTIONS(643), + [anon_sym_where] = ACTIONS(643), + [anon_sym_while] = ACTIONS(643), + [sym_mutable_specifier] = ACTIONS(643), + [sym_integer_literal] = ACTIONS(666), + [aux_sym_string_literal_token1] = ACTIONS(669), + [sym_char_literal] = ACTIONS(666), + [anon_sym_true] = ACTIONS(672), + [anon_sym_false] = ACTIONS(672), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(643), + [sym_super] = ACTIONS(643), + [sym_crate] = ACTIONS(643), + [sym_metavariable] = ACTIONS(675), + [sym__raw_string_literal_start] = ACTIONS(678), + [sym_float_literal] = ACTIONS(666), + }, + [79] = { + [sym__token_pattern] = STATE(193), + [sym_token_tree_pattern] = STATE(191), + [sym_token_binding_pattern] = STATE(191), + [sym_token_repetition_pattern] = STATE(191), + [sym__literal] = STATE(191), + [sym_string_literal] = STATE(194), + [sym_raw_string_literal] = STATE(194), + [sym_boolean_literal] = STATE(194), [sym_line_comment] = STATE(79), [sym_block_comment] = STATE(79), - [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(164), + [aux_sym_token_tree_pattern_repeat1] = STATE(76), + [aux_sym__non_special_token_repeat1] = STATE(160), [sym_identifier] = ACTIONS(574), [anon_sym_SEMI] = ACTIONS(576), [anon_sym_LPAREN] = ACTIONS(578), + [anon_sym_RPAREN] = ACTIONS(681), [anon_sym_LBRACK] = ACTIONS(582), [anon_sym_LBRACE] = ACTIONS(584), - [anon_sym_RBRACE] = ACTIONS(604), [anon_sym_EQ_GT] = ACTIONS(576), [anon_sym_COLON] = ACTIONS(586), [anon_sym_DOLLAR] = ACTIONS(588), @@ -26087,48 +25855,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(598), [sym_float_literal] = ACTIONS(590), }, - [STATE(80)] = { - [sym__token_pattern] = STATE(186), - [sym_token_tree_pattern] = STATE(184), - [sym_token_binding_pattern] = STATE(184), - [sym_token_repetition_pattern] = STATE(184), - [sym__literal] = STATE(184), - [sym_string_literal] = STATE(188), - [sym_raw_string_literal] = STATE(188), - [sym_boolean_literal] = STATE(188), + [80] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(241), + [sym_string_literal] = STATE(221), + [sym_raw_string_literal] = STATE(221), + [sym_boolean_literal] = STATE(221), [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(164), - [sym_identifier] = ACTIONS(574), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(123), + [sym_identifier] = ACTIONS(683), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(691), + [anon_sym_RBRACE] = ACTIONS(693), + [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_COLON] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(697), + [anon_sym_PLUS] = ACTIONS(695), + [anon_sym_STAR] = ACTIONS(695), + [anon_sym_QMARK] = ACTIONS(685), + [anon_sym_u8] = ACTIONS(683), + [anon_sym_i8] = ACTIONS(683), + [anon_sym_u16] = ACTIONS(683), + [anon_sym_i16] = ACTIONS(683), + [anon_sym_u32] = ACTIONS(683), + [anon_sym_i32] = ACTIONS(683), + [anon_sym_u64] = ACTIONS(683), + [anon_sym_i64] = ACTIONS(683), + [anon_sym_u128] = ACTIONS(683), + [anon_sym_i128] = ACTIONS(683), + [anon_sym_isize] = ACTIONS(683), + [anon_sym_usize] = ACTIONS(683), + [anon_sym_f32] = ACTIONS(683), + [anon_sym_f64] = ACTIONS(683), + [anon_sym_bool] = ACTIONS(683), + [anon_sym_str] = ACTIONS(683), + [anon_sym_char] = ACTIONS(683), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_SLASH] = ACTIONS(695), + [anon_sym_PERCENT] = ACTIONS(695), + [anon_sym_CARET] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [anon_sym_LT_LT] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_PLUS_EQ] = ACTIONS(685), + [anon_sym_DASH_EQ] = ACTIONS(685), + [anon_sym_STAR_EQ] = ACTIONS(685), + [anon_sym_SLASH_EQ] = ACTIONS(685), + [anon_sym_PERCENT_EQ] = ACTIONS(685), + [anon_sym_CARET_EQ] = ACTIONS(685), + [anon_sym_AMP_EQ] = ACTIONS(685), + [anon_sym_PIPE_EQ] = ACTIONS(685), + [anon_sym_LT_LT_EQ] = ACTIONS(685), + [anon_sym_GT_GT_EQ] = ACTIONS(685), + [anon_sym_EQ] = ACTIONS(695), + [anon_sym_EQ_EQ] = ACTIONS(685), + [anon_sym_BANG_EQ] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(695), + [anon_sym_GT_EQ] = ACTIONS(685), + [anon_sym_LT_EQ] = ACTIONS(685), + [anon_sym_AT] = ACTIONS(685), + [anon_sym__] = ACTIONS(695), + [anon_sym_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT_DOT] = ACTIONS(685), + [anon_sym_DOT_DOT_EQ] = ACTIONS(685), + [anon_sym_COMMA] = ACTIONS(685), + [anon_sym_COLON_COLON] = ACTIONS(685), + [anon_sym_DASH_GT] = ACTIONS(685), + [anon_sym_POUND] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(683), + [anon_sym_as] = ACTIONS(683), + [anon_sym_async] = ACTIONS(683), + [anon_sym_await] = ACTIONS(683), + [anon_sym_break] = ACTIONS(683), + [anon_sym_const] = ACTIONS(683), + [anon_sym_continue] = ACTIONS(683), + [anon_sym_default] = ACTIONS(683), + [anon_sym_enum] = ACTIONS(683), + [anon_sym_fn] = ACTIONS(683), + [anon_sym_for] = ACTIONS(683), + [anon_sym_gen] = ACTIONS(683), + [anon_sym_if] = ACTIONS(683), + [anon_sym_impl] = ACTIONS(683), + [anon_sym_let] = ACTIONS(683), + [anon_sym_loop] = ACTIONS(683), + [anon_sym_match] = ACTIONS(683), + [anon_sym_mod] = ACTIONS(683), + [anon_sym_pub] = ACTIONS(683), + [anon_sym_return] = ACTIONS(683), + [anon_sym_static] = ACTIONS(683), + [anon_sym_struct] = ACTIONS(683), + [anon_sym_trait] = ACTIONS(683), + [anon_sym_type] = ACTIONS(683), + [anon_sym_union] = ACTIONS(683), + [anon_sym_unsafe] = ACTIONS(683), + [anon_sym_use] = ACTIONS(683), + [anon_sym_where] = ACTIONS(683), + [anon_sym_while] = ACTIONS(683), + [sym_mutable_specifier] = ACTIONS(683), + [sym_integer_literal] = ACTIONS(699), + [aux_sym_string_literal_token1] = ACTIONS(701), + [sym_char_literal] = ACTIONS(699), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(683), + [sym_super] = ACTIONS(683), + [sym_crate] = ACTIONS(683), + [sym__raw_string_literal_start] = ACTIONS(705), + [sym_float_literal] = ACTIONS(699), + }, + [81] = { + [sym_token_tree] = STATE(174), + [sym_token_repetition] = STATE(174), + [sym__literal] = STATE(174), + [sym_string_literal] = STATE(194), + [sym_raw_string_literal] = STATE(194), + [sym_boolean_literal] = STATE(194), + [sym_line_comment] = STATE(81), + [sym_block_comment] = STATE(81), + [aux_sym_token_tree_repeat1] = STATE(78), + [aux_sym__non_special_token_repeat1] = STATE(151), + [sym_identifier] = ACTIONS(707), [anon_sym_SEMI] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(578), - [anon_sym_RPAREN] = ACTIONS(606), - [anon_sym_LBRACK] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(584), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_LBRACK] = ACTIONS(711), + [anon_sym_RBRACK] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(715), [anon_sym_EQ_GT] = ACTIONS(576), [anon_sym_COLON] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(588), + [anon_sym_DOLLAR] = ACTIONS(717), [anon_sym_PLUS] = ACTIONS(586), [anon_sym_STAR] = ACTIONS(586), [anon_sym_QMARK] = ACTIONS(576), - [anon_sym_u8] = ACTIONS(574), - [anon_sym_i8] = ACTIONS(574), - [anon_sym_u16] = ACTIONS(574), - [anon_sym_i16] = ACTIONS(574), - [anon_sym_u32] = ACTIONS(574), - [anon_sym_i32] = ACTIONS(574), - [anon_sym_u64] = ACTIONS(574), - [anon_sym_i64] = ACTIONS(574), - [anon_sym_u128] = ACTIONS(574), - [anon_sym_i128] = ACTIONS(574), - [anon_sym_isize] = ACTIONS(574), - [anon_sym_usize] = ACTIONS(574), - [anon_sym_f32] = ACTIONS(574), - [anon_sym_f64] = ACTIONS(574), - [anon_sym_bool] = ACTIONS(574), - [anon_sym_str] = ACTIONS(574), - [anon_sym_char] = ACTIONS(574), + [anon_sym_u8] = ACTIONS(707), + [anon_sym_i8] = ACTIONS(707), + [anon_sym_u16] = ACTIONS(707), + [anon_sym_i16] = ACTIONS(707), + [anon_sym_u32] = ACTIONS(707), + [anon_sym_i32] = ACTIONS(707), + [anon_sym_u64] = ACTIONS(707), + [anon_sym_i64] = ACTIONS(707), + [anon_sym_u128] = ACTIONS(707), + [anon_sym_i128] = ACTIONS(707), + [anon_sym_isize] = ACTIONS(707), + [anon_sym_usize] = ACTIONS(707), + [anon_sym_f32] = ACTIONS(707), + [anon_sym_f64] = ACTIONS(707), + [anon_sym_bool] = ACTIONS(707), + [anon_sym_str] = ACTIONS(707), + [anon_sym_char] = ACTIONS(707), [anon_sym_DASH] = ACTIONS(586), [anon_sym_SLASH] = ACTIONS(586), [anon_sym_PERCENT] = ACTIONS(586), @@ -26167,36 +26055,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(576), [anon_sym_DASH_GT] = ACTIONS(576), [anon_sym_POUND] = ACTIONS(576), - [anon_sym_SQUOTE] = ACTIONS(574), - [anon_sym_as] = ACTIONS(574), - [anon_sym_async] = ACTIONS(574), - [anon_sym_await] = ACTIONS(574), - [anon_sym_break] = ACTIONS(574), - [anon_sym_const] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(574), - [anon_sym_default] = ACTIONS(574), - [anon_sym_enum] = ACTIONS(574), - [anon_sym_fn] = ACTIONS(574), - [anon_sym_for] = ACTIONS(574), - [anon_sym_gen] = ACTIONS(574), - [anon_sym_if] = ACTIONS(574), - [anon_sym_impl] = ACTIONS(574), - [anon_sym_let] = ACTIONS(574), - [anon_sym_loop] = ACTIONS(574), - [anon_sym_match] = ACTIONS(574), - [anon_sym_mod] = ACTIONS(574), - [anon_sym_pub] = ACTIONS(574), - [anon_sym_return] = ACTIONS(574), - [anon_sym_static] = ACTIONS(574), - [anon_sym_struct] = ACTIONS(574), - [anon_sym_trait] = ACTIONS(574), - [anon_sym_type] = ACTIONS(574), - [anon_sym_union] = ACTIONS(574), - [anon_sym_unsafe] = ACTIONS(574), - [anon_sym_use] = ACTIONS(574), - [anon_sym_where] = ACTIONS(574), - [anon_sym_while] = ACTIONS(574), - [sym_mutable_specifier] = ACTIONS(574), + [anon_sym_SQUOTE] = ACTIONS(707), + [anon_sym_as] = ACTIONS(707), + [anon_sym_async] = ACTIONS(707), + [anon_sym_await] = ACTIONS(707), + [anon_sym_break] = ACTIONS(707), + [anon_sym_const] = ACTIONS(707), + [anon_sym_continue] = ACTIONS(707), + [anon_sym_default] = ACTIONS(707), + [anon_sym_enum] = ACTIONS(707), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_for] = ACTIONS(707), + [anon_sym_gen] = ACTIONS(707), + [anon_sym_if] = ACTIONS(707), + [anon_sym_impl] = ACTIONS(707), + [anon_sym_let] = ACTIONS(707), + [anon_sym_loop] = ACTIONS(707), + [anon_sym_match] = ACTIONS(707), + [anon_sym_mod] = ACTIONS(707), + [anon_sym_pub] = ACTIONS(707), + [anon_sym_return] = ACTIONS(707), + [anon_sym_static] = ACTIONS(707), + [anon_sym_struct] = ACTIONS(707), + [anon_sym_trait] = ACTIONS(707), + [anon_sym_type] = ACTIONS(707), + [anon_sym_union] = ACTIONS(707), + [anon_sym_unsafe] = ACTIONS(707), + [anon_sym_use] = ACTIONS(707), + [anon_sym_where] = ACTIONS(707), + [anon_sym_while] = ACTIONS(707), + [sym_mutable_specifier] = ACTIONS(707), [sym_integer_literal] = ACTIONS(590), [aux_sym_string_literal_token1] = ACTIONS(592), [sym_char_literal] = ACTIONS(590), @@ -26204,55 +26092,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(594), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(574), - [sym_super] = ACTIONS(574), - [sym_crate] = ACTIONS(574), - [sym_metavariable] = ACTIONS(596), + [sym_self] = ACTIONS(707), + [sym_super] = ACTIONS(707), + [sym_crate] = ACTIONS(707), + [sym_metavariable] = ACTIONS(719), [sym__raw_string_literal_start] = ACTIONS(598), [sym_float_literal] = ACTIONS(590), }, - [STATE(81)] = { - [sym__token_pattern] = STATE(186), - [sym_token_tree_pattern] = STATE(184), - [sym_token_binding_pattern] = STATE(184), - [sym_token_repetition_pattern] = STATE(184), - [sym__literal] = STATE(184), - [sym_string_literal] = STATE(188), - [sym_raw_string_literal] = STATE(188), - [sym_boolean_literal] = STATE(188), - [sym_line_comment] = STATE(81), - [sym_block_comment] = STATE(81), - [aux_sym_token_tree_pattern_repeat1] = STATE(80), - [aux_sym__non_special_token_repeat1] = STATE(164), - [sym_identifier] = ACTIONS(574), + [82] = { + [sym_token_tree] = STATE(174), + [sym_token_repetition] = STATE(174), + [sym__literal] = STATE(174), + [sym_string_literal] = STATE(194), + [sym_raw_string_literal] = STATE(194), + [sym_boolean_literal] = STATE(194), + [sym_line_comment] = STATE(82), + [sym_block_comment] = STATE(82), + [aux_sym_token_tree_repeat1] = STATE(78), + [aux_sym__non_special_token_repeat1] = STATE(151), + [sym_identifier] = ACTIONS(707), [anon_sym_SEMI] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(578), - [anon_sym_RPAREN] = ACTIONS(608), - [anon_sym_LBRACK] = ACTIONS(582), - [anon_sym_LBRACE] = ACTIONS(584), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_LBRACK] = ACTIONS(711), + [anon_sym_LBRACE] = ACTIONS(715), + [anon_sym_RBRACE] = ACTIONS(713), [anon_sym_EQ_GT] = ACTIONS(576), [anon_sym_COLON] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(588), + [anon_sym_DOLLAR] = ACTIONS(717), [anon_sym_PLUS] = ACTIONS(586), [anon_sym_STAR] = ACTIONS(586), [anon_sym_QMARK] = ACTIONS(576), - [anon_sym_u8] = ACTIONS(574), - [anon_sym_i8] = ACTIONS(574), - [anon_sym_u16] = ACTIONS(574), - [anon_sym_i16] = ACTIONS(574), - [anon_sym_u32] = ACTIONS(574), - [anon_sym_i32] = ACTIONS(574), - [anon_sym_u64] = ACTIONS(574), - [anon_sym_i64] = ACTIONS(574), - [anon_sym_u128] = ACTIONS(574), - [anon_sym_i128] = ACTIONS(574), - [anon_sym_isize] = ACTIONS(574), - [anon_sym_usize] = ACTIONS(574), - [anon_sym_f32] = ACTIONS(574), - [anon_sym_f64] = ACTIONS(574), - [anon_sym_bool] = ACTIONS(574), - [anon_sym_str] = ACTIONS(574), - [anon_sym_char] = ACTIONS(574), + [anon_sym_u8] = ACTIONS(707), + [anon_sym_i8] = ACTIONS(707), + [anon_sym_u16] = ACTIONS(707), + [anon_sym_i16] = ACTIONS(707), + [anon_sym_u32] = ACTIONS(707), + [anon_sym_i32] = ACTIONS(707), + [anon_sym_u64] = ACTIONS(707), + [anon_sym_i64] = ACTIONS(707), + [anon_sym_u128] = ACTIONS(707), + [anon_sym_i128] = ACTIONS(707), + [anon_sym_isize] = ACTIONS(707), + [anon_sym_usize] = ACTIONS(707), + [anon_sym_f32] = ACTIONS(707), + [anon_sym_f64] = ACTIONS(707), + [anon_sym_bool] = ACTIONS(707), + [anon_sym_str] = ACTIONS(707), + [anon_sym_char] = ACTIONS(707), [anon_sym_DASH] = ACTIONS(586), [anon_sym_SLASH] = ACTIONS(586), [anon_sym_PERCENT] = ACTIONS(586), @@ -26291,36 +26177,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(576), [anon_sym_DASH_GT] = ACTIONS(576), [anon_sym_POUND] = ACTIONS(576), - [anon_sym_SQUOTE] = ACTIONS(574), - [anon_sym_as] = ACTIONS(574), - [anon_sym_async] = ACTIONS(574), - [anon_sym_await] = ACTIONS(574), - [anon_sym_break] = ACTIONS(574), - [anon_sym_const] = ACTIONS(574), - [anon_sym_continue] = ACTIONS(574), - [anon_sym_default] = ACTIONS(574), - [anon_sym_enum] = ACTIONS(574), - [anon_sym_fn] = ACTIONS(574), - [anon_sym_for] = ACTIONS(574), - [anon_sym_gen] = ACTIONS(574), - [anon_sym_if] = ACTIONS(574), - [anon_sym_impl] = ACTIONS(574), - [anon_sym_let] = ACTIONS(574), - [anon_sym_loop] = ACTIONS(574), - [anon_sym_match] = ACTIONS(574), - [anon_sym_mod] = ACTIONS(574), - [anon_sym_pub] = ACTIONS(574), - [anon_sym_return] = ACTIONS(574), - [anon_sym_static] = ACTIONS(574), - [anon_sym_struct] = ACTIONS(574), - [anon_sym_trait] = ACTIONS(574), - [anon_sym_type] = ACTIONS(574), - [anon_sym_union] = ACTIONS(574), - [anon_sym_unsafe] = ACTIONS(574), - [anon_sym_use] = ACTIONS(574), - [anon_sym_where] = ACTIONS(574), - [anon_sym_while] = ACTIONS(574), - [sym_mutable_specifier] = ACTIONS(574), + [anon_sym_SQUOTE] = ACTIONS(707), + [anon_sym_as] = ACTIONS(707), + [anon_sym_async] = ACTIONS(707), + [anon_sym_await] = ACTIONS(707), + [anon_sym_break] = ACTIONS(707), + [anon_sym_const] = ACTIONS(707), + [anon_sym_continue] = ACTIONS(707), + [anon_sym_default] = ACTIONS(707), + [anon_sym_enum] = ACTIONS(707), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_for] = ACTIONS(707), + [anon_sym_gen] = ACTIONS(707), + [anon_sym_if] = ACTIONS(707), + [anon_sym_impl] = ACTIONS(707), + [anon_sym_let] = ACTIONS(707), + [anon_sym_loop] = ACTIONS(707), + [anon_sym_match] = ACTIONS(707), + [anon_sym_mod] = ACTIONS(707), + [anon_sym_pub] = ACTIONS(707), + [anon_sym_return] = ACTIONS(707), + [anon_sym_static] = ACTIONS(707), + [anon_sym_struct] = ACTIONS(707), + [anon_sym_trait] = ACTIONS(707), + [anon_sym_type] = ACTIONS(707), + [anon_sym_union] = ACTIONS(707), + [anon_sym_unsafe] = ACTIONS(707), + [anon_sym_use] = ACTIONS(707), + [anon_sym_where] = ACTIONS(707), + [anon_sym_while] = ACTIONS(707), + [sym_mutable_specifier] = ACTIONS(707), [sym_integer_literal] = ACTIONS(590), [aux_sym_string_literal_token1] = ACTIONS(592), [sym_char_literal] = ACTIONS(590), @@ -26328,279 +26214,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(594), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(574), - [sym_super] = ACTIONS(574), - [sym_crate] = ACTIONS(574), - [sym_metavariable] = ACTIONS(596), + [sym_self] = ACTIONS(707), + [sym_super] = ACTIONS(707), + [sym_crate] = ACTIONS(707), + [sym_metavariable] = ACTIONS(719), [sym__raw_string_literal_start] = ACTIONS(598), [sym_float_literal] = ACTIONS(590), }, - [STATE(82)] = { - [sym_token_tree] = STATE(190), - [sym_token_repetition] = STATE(190), - [sym__literal] = STATE(190), - [sym_string_literal] = STATE(188), - [sym_raw_string_literal] = STATE(188), - [sym_boolean_literal] = STATE(188), - [sym_line_comment] = STATE(82), - [sym_block_comment] = STATE(82), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(153), - [sym_identifier] = ACTIONS(610), - [anon_sym_SEMI] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(616), - [anon_sym_RPAREN] = ACTIONS(619), - [anon_sym_LBRACK] = ACTIONS(621), - [anon_sym_RBRACK] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(624), - [anon_sym_RBRACE] = ACTIONS(619), - [anon_sym_EQ_GT] = ACTIONS(613), - [anon_sym_COLON] = ACTIONS(627), - [anon_sym_DOLLAR] = ACTIONS(630), - [anon_sym_PLUS] = ACTIONS(627), - [anon_sym_STAR] = ACTIONS(627), - [anon_sym_QMARK] = ACTIONS(613), - [anon_sym_u8] = ACTIONS(610), - [anon_sym_i8] = ACTIONS(610), - [anon_sym_u16] = ACTIONS(610), - [anon_sym_i16] = ACTIONS(610), - [anon_sym_u32] = ACTIONS(610), - [anon_sym_i32] = ACTIONS(610), - [anon_sym_u64] = ACTIONS(610), - [anon_sym_i64] = ACTIONS(610), - [anon_sym_u128] = ACTIONS(610), - [anon_sym_i128] = ACTIONS(610), - [anon_sym_isize] = ACTIONS(610), - [anon_sym_usize] = ACTIONS(610), - [anon_sym_f32] = ACTIONS(610), - [anon_sym_f64] = ACTIONS(610), - [anon_sym_bool] = ACTIONS(610), - [anon_sym_str] = ACTIONS(610), - [anon_sym_char] = ACTIONS(610), - [anon_sym_DASH] = ACTIONS(627), - [anon_sym_SLASH] = ACTIONS(627), - [anon_sym_PERCENT] = ACTIONS(627), - [anon_sym_CARET] = ACTIONS(627), - [anon_sym_BANG] = ACTIONS(627), - [anon_sym_AMP] = ACTIONS(627), - [anon_sym_PIPE] = ACTIONS(627), - [anon_sym_AMP_AMP] = ACTIONS(613), - [anon_sym_PIPE_PIPE] = ACTIONS(613), - [anon_sym_LT_LT] = ACTIONS(627), - [anon_sym_GT_GT] = ACTIONS(627), - [anon_sym_PLUS_EQ] = ACTIONS(613), - [anon_sym_DASH_EQ] = ACTIONS(613), - [anon_sym_STAR_EQ] = ACTIONS(613), - [anon_sym_SLASH_EQ] = ACTIONS(613), - [anon_sym_PERCENT_EQ] = ACTIONS(613), - [anon_sym_CARET_EQ] = ACTIONS(613), - [anon_sym_AMP_EQ] = ACTIONS(613), - [anon_sym_PIPE_EQ] = ACTIONS(613), - [anon_sym_LT_LT_EQ] = ACTIONS(613), - [anon_sym_GT_GT_EQ] = ACTIONS(613), - [anon_sym_EQ] = ACTIONS(627), - [anon_sym_EQ_EQ] = ACTIONS(613), - [anon_sym_BANG_EQ] = ACTIONS(613), - [anon_sym_GT] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(627), - [anon_sym_GT_EQ] = ACTIONS(613), - [anon_sym_LT_EQ] = ACTIONS(613), - [anon_sym_AT] = ACTIONS(613), - [anon_sym__] = ACTIONS(627), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_DOT_DOT] = ACTIONS(627), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_DOT_DOT_EQ] = ACTIONS(613), - [anon_sym_COMMA] = ACTIONS(613), - [anon_sym_COLON_COLON] = ACTIONS(613), - [anon_sym_DASH_GT] = ACTIONS(613), - [anon_sym_POUND] = ACTIONS(613), - [anon_sym_SQUOTE] = ACTIONS(610), - [anon_sym_as] = ACTIONS(610), - [anon_sym_async] = ACTIONS(610), - [anon_sym_await] = ACTIONS(610), - [anon_sym_break] = ACTIONS(610), - [anon_sym_const] = ACTIONS(610), - [anon_sym_continue] = ACTIONS(610), - [anon_sym_default] = ACTIONS(610), - [anon_sym_enum] = ACTIONS(610), - [anon_sym_fn] = ACTIONS(610), - [anon_sym_for] = ACTIONS(610), - [anon_sym_gen] = ACTIONS(610), - [anon_sym_if] = ACTIONS(610), - [anon_sym_impl] = ACTIONS(610), - [anon_sym_let] = ACTIONS(610), - [anon_sym_loop] = ACTIONS(610), - [anon_sym_match] = ACTIONS(610), - [anon_sym_mod] = ACTIONS(610), - [anon_sym_pub] = ACTIONS(610), - [anon_sym_return] = ACTIONS(610), - [anon_sym_static] = ACTIONS(610), - [anon_sym_struct] = ACTIONS(610), - [anon_sym_trait] = ACTIONS(610), - [anon_sym_type] = ACTIONS(610), - [anon_sym_union] = ACTIONS(610), - [anon_sym_unsafe] = ACTIONS(610), - [anon_sym_use] = ACTIONS(610), - [anon_sym_where] = ACTIONS(610), - [anon_sym_while] = ACTIONS(610), - [sym_mutable_specifier] = ACTIONS(610), - [sym_integer_literal] = ACTIONS(633), - [aux_sym_string_literal_token1] = ACTIONS(636), - [sym_char_literal] = ACTIONS(633), - [anon_sym_true] = ACTIONS(639), - [anon_sym_false] = ACTIONS(639), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(610), - [sym_super] = ACTIONS(610), - [sym_crate] = ACTIONS(610), - [sym_metavariable] = ACTIONS(642), - [sym__raw_string_literal_start] = ACTIONS(645), - [sym_float_literal] = ACTIONS(633), - }, - [STATE(83)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), + [83] = { + [sym_token_tree] = STATE(174), + [sym_token_repetition] = STATE(174), + [sym__literal] = STATE(174), + [sym_string_literal] = STATE(194), + [sym_raw_string_literal] = STATE(194), + [sym_boolean_literal] = STATE(194), [sym_line_comment] = STATE(83), [sym_block_comment] = STATE(83), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(648), - [anon_sym_SEMI] = ACTIONS(651), - [anon_sym_LPAREN] = ACTIONS(654), - [anon_sym_RPAREN] = ACTIONS(657), - [anon_sym_LBRACK] = ACTIONS(659), - [anon_sym_RBRACK] = ACTIONS(657), - [anon_sym_LBRACE] = ACTIONS(662), - [anon_sym_RBRACE] = ACTIONS(657), - [anon_sym_EQ_GT] = ACTIONS(651), - [anon_sym_COLON] = ACTIONS(665), - [anon_sym_DOLLAR] = ACTIONS(668), - [anon_sym_PLUS] = ACTIONS(665), - [anon_sym_STAR] = ACTIONS(665), - [anon_sym_QMARK] = ACTIONS(651), - [anon_sym_u8] = ACTIONS(648), - [anon_sym_i8] = ACTIONS(648), - [anon_sym_u16] = ACTIONS(648), - [anon_sym_i16] = ACTIONS(648), - [anon_sym_u32] = ACTIONS(648), - [anon_sym_i32] = ACTIONS(648), - [anon_sym_u64] = ACTIONS(648), - [anon_sym_i64] = ACTIONS(648), - [anon_sym_u128] = ACTIONS(648), - [anon_sym_i128] = ACTIONS(648), - [anon_sym_isize] = ACTIONS(648), - [anon_sym_usize] = ACTIONS(648), - [anon_sym_f32] = ACTIONS(648), - [anon_sym_f64] = ACTIONS(648), - [anon_sym_bool] = ACTIONS(648), - [anon_sym_str] = ACTIONS(648), - [anon_sym_char] = ACTIONS(648), - [anon_sym_DASH] = ACTIONS(665), - [anon_sym_SLASH] = ACTIONS(665), - [anon_sym_PERCENT] = ACTIONS(665), - [anon_sym_CARET] = ACTIONS(665), - [anon_sym_BANG] = ACTIONS(665), - [anon_sym_AMP] = ACTIONS(665), - [anon_sym_PIPE] = ACTIONS(665), - [anon_sym_AMP_AMP] = ACTIONS(651), - [anon_sym_PIPE_PIPE] = ACTIONS(651), - [anon_sym_LT_LT] = ACTIONS(665), - [anon_sym_GT_GT] = ACTIONS(665), - [anon_sym_PLUS_EQ] = ACTIONS(651), - [anon_sym_DASH_EQ] = ACTIONS(651), - [anon_sym_STAR_EQ] = ACTIONS(651), - [anon_sym_SLASH_EQ] = ACTIONS(651), - [anon_sym_PERCENT_EQ] = ACTIONS(651), - [anon_sym_CARET_EQ] = ACTIONS(651), - [anon_sym_AMP_EQ] = ACTIONS(651), - [anon_sym_PIPE_EQ] = ACTIONS(651), - [anon_sym_LT_LT_EQ] = ACTIONS(651), - [anon_sym_GT_GT_EQ] = ACTIONS(651), - [anon_sym_EQ] = ACTIONS(665), - [anon_sym_EQ_EQ] = ACTIONS(651), - [anon_sym_BANG_EQ] = ACTIONS(651), - [anon_sym_GT] = ACTIONS(665), - [anon_sym_LT] = ACTIONS(665), - [anon_sym_GT_EQ] = ACTIONS(651), - [anon_sym_LT_EQ] = ACTIONS(651), - [anon_sym_AT] = ACTIONS(651), - [anon_sym__] = ACTIONS(665), - [anon_sym_DOT] = ACTIONS(665), - [anon_sym_DOT_DOT] = ACTIONS(665), - [anon_sym_DOT_DOT_DOT] = ACTIONS(651), - [anon_sym_DOT_DOT_EQ] = ACTIONS(651), - [anon_sym_COMMA] = ACTIONS(651), - [anon_sym_COLON_COLON] = ACTIONS(651), - [anon_sym_DASH_GT] = ACTIONS(651), - [anon_sym_POUND] = ACTIONS(651), - [anon_sym_SQUOTE] = ACTIONS(648), - [anon_sym_as] = ACTIONS(648), - [anon_sym_async] = ACTIONS(648), - [anon_sym_await] = ACTIONS(648), - [anon_sym_break] = ACTIONS(648), - [anon_sym_const] = ACTIONS(648), - [anon_sym_continue] = ACTIONS(648), - [anon_sym_default] = ACTIONS(648), - [anon_sym_enum] = ACTIONS(648), - [anon_sym_fn] = ACTIONS(648), - [anon_sym_for] = ACTIONS(648), - [anon_sym_gen] = ACTIONS(648), - [anon_sym_if] = ACTIONS(648), - [anon_sym_impl] = ACTIONS(648), - [anon_sym_let] = ACTIONS(648), - [anon_sym_loop] = ACTIONS(648), - [anon_sym_match] = ACTIONS(648), - [anon_sym_mod] = ACTIONS(648), - [anon_sym_pub] = ACTIONS(648), - [anon_sym_return] = ACTIONS(648), - [anon_sym_static] = ACTIONS(648), - [anon_sym_struct] = ACTIONS(648), - [anon_sym_trait] = ACTIONS(648), - [anon_sym_type] = ACTIONS(648), - [anon_sym_union] = ACTIONS(648), - [anon_sym_unsafe] = ACTIONS(648), - [anon_sym_use] = ACTIONS(648), - [anon_sym_where] = ACTIONS(648), - [anon_sym_while] = ACTIONS(648), - [sym_mutable_specifier] = ACTIONS(648), - [sym_integer_literal] = ACTIONS(671), - [aux_sym_string_literal_token1] = ACTIONS(674), - [sym_char_literal] = ACTIONS(671), - [anon_sym_true] = ACTIONS(677), - [anon_sym_false] = ACTIONS(677), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(648), - [sym_super] = ACTIONS(648), - [sym_crate] = ACTIONS(648), - [sym__raw_string_literal_start] = ACTIONS(680), - [sym_float_literal] = ACTIONS(671), - }, - [STATE(84)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), + [aux_sym_token_tree_repeat1] = STATE(91), + [aux_sym__non_special_token_repeat1] = STATE(151), + [sym_identifier] = ACTIONS(707), + [anon_sym_SEMI] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_RPAREN] = ACTIONS(721), + [anon_sym_LBRACK] = ACTIONS(711), + [anon_sym_LBRACE] = ACTIONS(715), + [anon_sym_EQ_GT] = ACTIONS(576), + [anon_sym_COLON] = ACTIONS(586), + [anon_sym_DOLLAR] = ACTIONS(717), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(586), + [anon_sym_QMARK] = ACTIONS(576), + [anon_sym_u8] = ACTIONS(707), + [anon_sym_i8] = ACTIONS(707), + [anon_sym_u16] = ACTIONS(707), + [anon_sym_i16] = ACTIONS(707), + [anon_sym_u32] = ACTIONS(707), + [anon_sym_i32] = ACTIONS(707), + [anon_sym_u64] = ACTIONS(707), + [anon_sym_i64] = ACTIONS(707), + [anon_sym_u128] = ACTIONS(707), + [anon_sym_i128] = ACTIONS(707), + [anon_sym_isize] = ACTIONS(707), + [anon_sym_usize] = ACTIONS(707), + [anon_sym_f32] = ACTIONS(707), + [anon_sym_f64] = ACTIONS(707), + [anon_sym_bool] = ACTIONS(707), + [anon_sym_str] = ACTIONS(707), + [anon_sym_char] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_PERCENT] = ACTIONS(586), + [anon_sym_CARET] = ACTIONS(586), + [anon_sym_BANG] = ACTIONS(586), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PIPE] = ACTIONS(586), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS_EQ] = ACTIONS(576), + [anon_sym_DASH_EQ] = ACTIONS(576), + [anon_sym_STAR_EQ] = ACTIONS(576), + [anon_sym_SLASH_EQ] = ACTIONS(576), + [anon_sym_PERCENT_EQ] = ACTIONS(576), + [anon_sym_CARET_EQ] = ACTIONS(576), + [anon_sym_AMP_EQ] = ACTIONS(576), + [anon_sym_PIPE_EQ] = ACTIONS(576), + [anon_sym_LT_LT_EQ] = ACTIONS(576), + [anon_sym_GT_GT_EQ] = ACTIONS(576), + [anon_sym_EQ] = ACTIONS(586), + [anon_sym_EQ_EQ] = ACTIONS(576), + [anon_sym_BANG_EQ] = ACTIONS(576), + [anon_sym_GT] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(586), + [anon_sym_GT_EQ] = ACTIONS(576), + [anon_sym_LT_EQ] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(576), + [anon_sym__] = ACTIONS(586), + [anon_sym_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_DOT] = ACTIONS(576), + [anon_sym_DOT_DOT_EQ] = ACTIONS(576), + [anon_sym_COMMA] = ACTIONS(576), + [anon_sym_COLON_COLON] = ACTIONS(576), + [anon_sym_DASH_GT] = ACTIONS(576), + [anon_sym_POUND] = ACTIONS(576), + [anon_sym_SQUOTE] = ACTIONS(707), + [anon_sym_as] = ACTIONS(707), + [anon_sym_async] = ACTIONS(707), + [anon_sym_await] = ACTIONS(707), + [anon_sym_break] = ACTIONS(707), + [anon_sym_const] = ACTIONS(707), + [anon_sym_continue] = ACTIONS(707), + [anon_sym_default] = ACTIONS(707), + [anon_sym_enum] = ACTIONS(707), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_for] = ACTIONS(707), + [anon_sym_gen] = ACTIONS(707), + [anon_sym_if] = ACTIONS(707), + [anon_sym_impl] = ACTIONS(707), + [anon_sym_let] = ACTIONS(707), + [anon_sym_loop] = ACTIONS(707), + [anon_sym_match] = ACTIONS(707), + [anon_sym_mod] = ACTIONS(707), + [anon_sym_pub] = ACTIONS(707), + [anon_sym_return] = ACTIONS(707), + [anon_sym_static] = ACTIONS(707), + [anon_sym_struct] = ACTIONS(707), + [anon_sym_trait] = ACTIONS(707), + [anon_sym_type] = ACTIONS(707), + [anon_sym_union] = ACTIONS(707), + [anon_sym_unsafe] = ACTIONS(707), + [anon_sym_use] = ACTIONS(707), + [anon_sym_where] = ACTIONS(707), + [anon_sym_while] = ACTIONS(707), + [sym_mutable_specifier] = ACTIONS(707), + [sym_integer_literal] = ACTIONS(590), + [aux_sym_string_literal_token1] = ACTIONS(592), + [sym_char_literal] = ACTIONS(590), + [anon_sym_true] = ACTIONS(594), + [anon_sym_false] = ACTIONS(594), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(707), + [sym_super] = ACTIONS(707), + [sym_crate] = ACTIONS(707), + [sym_metavariable] = ACTIONS(719), + [sym__raw_string_literal_start] = ACTIONS(598), + [sym_float_literal] = ACTIONS(590), + }, + [84] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(241), + [sym_string_literal] = STATE(221), + [sym_raw_string_literal] = STATE(221), + [sym_boolean_literal] = STATE(221), [sym_line_comment] = STATE(84), [sym_block_comment] = STATE(84), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(83), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(75), [sym_identifier] = ACTIONS(683), [anon_sym_SEMI] = ACTIONS(685), [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(689), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(691), + [anon_sym_RBRACE] = ACTIONS(723), [anon_sym_EQ_GT] = ACTIONS(685), [anon_sym_COLON] = ACTIONS(695), [anon_sym_DOLLAR] = ACTIONS(697), @@ -26705,412 +26465,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(705), [sym_float_literal] = ACTIONS(699), }, - [STATE(85)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), + [85] = { + [sym_token_tree] = STATE(174), + [sym_token_repetition] = STATE(174), + [sym__literal] = STATE(174), + [sym_string_literal] = STATE(194), + [sym_raw_string_literal] = STATE(194), + [sym_boolean_literal] = STATE(194), [sym_line_comment] = STATE(85), [sym_block_comment] = STATE(85), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(683), - [anon_sym_SEMI] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(707), - [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_COLON] = ACTIONS(695), - [anon_sym_DOLLAR] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_QMARK] = ACTIONS(685), - [anon_sym_u8] = ACTIONS(683), - [anon_sym_i8] = ACTIONS(683), - [anon_sym_u16] = ACTIONS(683), - [anon_sym_i16] = ACTIONS(683), - [anon_sym_u32] = ACTIONS(683), - [anon_sym_i32] = ACTIONS(683), - [anon_sym_u64] = ACTIONS(683), - [anon_sym_i64] = ACTIONS(683), - [anon_sym_u128] = ACTIONS(683), - [anon_sym_i128] = ACTIONS(683), - [anon_sym_isize] = ACTIONS(683), - [anon_sym_usize] = ACTIONS(683), - [anon_sym_f32] = ACTIONS(683), - [anon_sym_f64] = ACTIONS(683), - [anon_sym_bool] = ACTIONS(683), - [anon_sym_str] = ACTIONS(683), - [anon_sym_char] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(695), - [anon_sym_PERCENT] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(695), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_AMP] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(685), - [anon_sym_PIPE_PIPE] = ACTIONS(685), - [anon_sym_LT_LT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(695), - [anon_sym_PLUS_EQ] = ACTIONS(685), - [anon_sym_DASH_EQ] = ACTIONS(685), - [anon_sym_STAR_EQ] = ACTIONS(685), - [anon_sym_SLASH_EQ] = ACTIONS(685), - [anon_sym_PERCENT_EQ] = ACTIONS(685), - [anon_sym_CARET_EQ] = ACTIONS(685), - [anon_sym_AMP_EQ] = ACTIONS(685), - [anon_sym_PIPE_EQ] = ACTIONS(685), - [anon_sym_LT_LT_EQ] = ACTIONS(685), - [anon_sym_GT_GT_EQ] = ACTIONS(685), - [anon_sym_EQ] = ACTIONS(695), - [anon_sym_EQ_EQ] = ACTIONS(685), - [anon_sym_BANG_EQ] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_GT_EQ] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(685), - [anon_sym_AT] = ACTIONS(685), - [anon_sym__] = ACTIONS(695), - [anon_sym_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [anon_sym_DOT_DOT_EQ] = ACTIONS(685), - [anon_sym_COMMA] = ACTIONS(685), - [anon_sym_COLON_COLON] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(685), - [anon_sym_POUND] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(683), - [anon_sym_as] = ACTIONS(683), - [anon_sym_async] = ACTIONS(683), - [anon_sym_await] = ACTIONS(683), - [anon_sym_break] = ACTIONS(683), - [anon_sym_const] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(683), - [anon_sym_default] = ACTIONS(683), - [anon_sym_enum] = ACTIONS(683), - [anon_sym_fn] = ACTIONS(683), - [anon_sym_for] = ACTIONS(683), - [anon_sym_gen] = ACTIONS(683), - [anon_sym_if] = ACTIONS(683), - [anon_sym_impl] = ACTIONS(683), - [anon_sym_let] = ACTIONS(683), - [anon_sym_loop] = ACTIONS(683), - [anon_sym_match] = ACTIONS(683), - [anon_sym_mod] = ACTIONS(683), - [anon_sym_pub] = ACTIONS(683), - [anon_sym_return] = ACTIONS(683), - [anon_sym_static] = ACTIONS(683), - [anon_sym_struct] = ACTIONS(683), - [anon_sym_trait] = ACTIONS(683), - [anon_sym_type] = ACTIONS(683), - [anon_sym_union] = ACTIONS(683), - [anon_sym_unsafe] = ACTIONS(683), - [anon_sym_use] = ACTIONS(683), - [anon_sym_where] = ACTIONS(683), - [anon_sym_while] = ACTIONS(683), - [sym_mutable_specifier] = ACTIONS(683), - [sym_integer_literal] = ACTIONS(699), - [aux_sym_string_literal_token1] = ACTIONS(701), - [sym_char_literal] = ACTIONS(699), - [anon_sym_true] = ACTIONS(703), - [anon_sym_false] = ACTIONS(703), + [aux_sym_token_tree_repeat1] = STATE(88), + [aux_sym__non_special_token_repeat1] = STATE(151), + [sym_identifier] = ACTIONS(707), + [anon_sym_SEMI] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_RPAREN] = ACTIONS(725), + [anon_sym_LBRACK] = ACTIONS(711), + [anon_sym_LBRACE] = ACTIONS(715), + [anon_sym_EQ_GT] = ACTIONS(576), + [anon_sym_COLON] = ACTIONS(586), + [anon_sym_DOLLAR] = ACTIONS(717), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(586), + [anon_sym_QMARK] = ACTIONS(576), + [anon_sym_u8] = ACTIONS(707), + [anon_sym_i8] = ACTIONS(707), + [anon_sym_u16] = ACTIONS(707), + [anon_sym_i16] = ACTIONS(707), + [anon_sym_u32] = ACTIONS(707), + [anon_sym_i32] = ACTIONS(707), + [anon_sym_u64] = ACTIONS(707), + [anon_sym_i64] = ACTIONS(707), + [anon_sym_u128] = ACTIONS(707), + [anon_sym_i128] = ACTIONS(707), + [anon_sym_isize] = ACTIONS(707), + [anon_sym_usize] = ACTIONS(707), + [anon_sym_f32] = ACTIONS(707), + [anon_sym_f64] = ACTIONS(707), + [anon_sym_bool] = ACTIONS(707), + [anon_sym_str] = ACTIONS(707), + [anon_sym_char] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_PERCENT] = ACTIONS(586), + [anon_sym_CARET] = ACTIONS(586), + [anon_sym_BANG] = ACTIONS(586), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PIPE] = ACTIONS(586), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS_EQ] = ACTIONS(576), + [anon_sym_DASH_EQ] = ACTIONS(576), + [anon_sym_STAR_EQ] = ACTIONS(576), + [anon_sym_SLASH_EQ] = ACTIONS(576), + [anon_sym_PERCENT_EQ] = ACTIONS(576), + [anon_sym_CARET_EQ] = ACTIONS(576), + [anon_sym_AMP_EQ] = ACTIONS(576), + [anon_sym_PIPE_EQ] = ACTIONS(576), + [anon_sym_LT_LT_EQ] = ACTIONS(576), + [anon_sym_GT_GT_EQ] = ACTIONS(576), + [anon_sym_EQ] = ACTIONS(586), + [anon_sym_EQ_EQ] = ACTIONS(576), + [anon_sym_BANG_EQ] = ACTIONS(576), + [anon_sym_GT] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(586), + [anon_sym_GT_EQ] = ACTIONS(576), + [anon_sym_LT_EQ] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(576), + [anon_sym__] = ACTIONS(586), + [anon_sym_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_DOT] = ACTIONS(576), + [anon_sym_DOT_DOT_EQ] = ACTIONS(576), + [anon_sym_COMMA] = ACTIONS(576), + [anon_sym_COLON_COLON] = ACTIONS(576), + [anon_sym_DASH_GT] = ACTIONS(576), + [anon_sym_POUND] = ACTIONS(576), + [anon_sym_SQUOTE] = ACTIONS(707), + [anon_sym_as] = ACTIONS(707), + [anon_sym_async] = ACTIONS(707), + [anon_sym_await] = ACTIONS(707), + [anon_sym_break] = ACTIONS(707), + [anon_sym_const] = ACTIONS(707), + [anon_sym_continue] = ACTIONS(707), + [anon_sym_default] = ACTIONS(707), + [anon_sym_enum] = ACTIONS(707), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_for] = ACTIONS(707), + [anon_sym_gen] = ACTIONS(707), + [anon_sym_if] = ACTIONS(707), + [anon_sym_impl] = ACTIONS(707), + [anon_sym_let] = ACTIONS(707), + [anon_sym_loop] = ACTIONS(707), + [anon_sym_match] = ACTIONS(707), + [anon_sym_mod] = ACTIONS(707), + [anon_sym_pub] = ACTIONS(707), + [anon_sym_return] = ACTIONS(707), + [anon_sym_static] = ACTIONS(707), + [anon_sym_struct] = ACTIONS(707), + [anon_sym_trait] = ACTIONS(707), + [anon_sym_type] = ACTIONS(707), + [anon_sym_union] = ACTIONS(707), + [anon_sym_unsafe] = ACTIONS(707), + [anon_sym_use] = ACTIONS(707), + [anon_sym_where] = ACTIONS(707), + [anon_sym_while] = ACTIONS(707), + [sym_mutable_specifier] = ACTIONS(707), + [sym_integer_literal] = ACTIONS(590), + [aux_sym_string_literal_token1] = ACTIONS(592), + [sym_char_literal] = ACTIONS(590), + [anon_sym_true] = ACTIONS(594), + [anon_sym_false] = ACTIONS(594), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(683), - [sym_super] = ACTIONS(683), - [sym_crate] = ACTIONS(683), - [sym__raw_string_literal_start] = ACTIONS(705), - [sym_float_literal] = ACTIONS(699), + [sym_self] = ACTIONS(707), + [sym_super] = ACTIONS(707), + [sym_crate] = ACTIONS(707), + [sym_metavariable] = ACTIONS(719), + [sym__raw_string_literal_start] = ACTIONS(598), + [sym_float_literal] = ACTIONS(590), }, - [STATE(86)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), + [86] = { + [sym_token_tree] = STATE(174), + [sym_token_repetition] = STATE(174), + [sym__literal] = STATE(174), + [sym_string_literal] = STATE(194), + [sym_raw_string_literal] = STATE(194), + [sym_boolean_literal] = STATE(194), [sym_line_comment] = STATE(86), [sym_block_comment] = STATE(86), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(111), - [sym_identifier] = ACTIONS(683), - [anon_sym_SEMI] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_RBRACK] = ACTIONS(709), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_COLON] = ACTIONS(695), - [anon_sym_DOLLAR] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_QMARK] = ACTIONS(685), - [anon_sym_u8] = ACTIONS(683), - [anon_sym_i8] = ACTIONS(683), - [anon_sym_u16] = ACTIONS(683), - [anon_sym_i16] = ACTIONS(683), - [anon_sym_u32] = ACTIONS(683), - [anon_sym_i32] = ACTIONS(683), - [anon_sym_u64] = ACTIONS(683), - [anon_sym_i64] = ACTIONS(683), - [anon_sym_u128] = ACTIONS(683), - [anon_sym_i128] = ACTIONS(683), - [anon_sym_isize] = ACTIONS(683), - [anon_sym_usize] = ACTIONS(683), - [anon_sym_f32] = ACTIONS(683), - [anon_sym_f64] = ACTIONS(683), - [anon_sym_bool] = ACTIONS(683), - [anon_sym_str] = ACTIONS(683), - [anon_sym_char] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(695), - [anon_sym_PERCENT] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(695), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_AMP] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(685), - [anon_sym_PIPE_PIPE] = ACTIONS(685), - [anon_sym_LT_LT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(695), - [anon_sym_PLUS_EQ] = ACTIONS(685), - [anon_sym_DASH_EQ] = ACTIONS(685), - [anon_sym_STAR_EQ] = ACTIONS(685), - [anon_sym_SLASH_EQ] = ACTIONS(685), - [anon_sym_PERCENT_EQ] = ACTIONS(685), - [anon_sym_CARET_EQ] = ACTIONS(685), - [anon_sym_AMP_EQ] = ACTIONS(685), - [anon_sym_PIPE_EQ] = ACTIONS(685), - [anon_sym_LT_LT_EQ] = ACTIONS(685), - [anon_sym_GT_GT_EQ] = ACTIONS(685), - [anon_sym_EQ] = ACTIONS(695), - [anon_sym_EQ_EQ] = ACTIONS(685), - [anon_sym_BANG_EQ] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_GT_EQ] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(685), - [anon_sym_AT] = ACTIONS(685), - [anon_sym__] = ACTIONS(695), - [anon_sym_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [anon_sym_DOT_DOT_EQ] = ACTIONS(685), - [anon_sym_COMMA] = ACTIONS(685), - [anon_sym_COLON_COLON] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(685), - [anon_sym_POUND] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(683), - [anon_sym_as] = ACTIONS(683), - [anon_sym_async] = ACTIONS(683), - [anon_sym_await] = ACTIONS(683), - [anon_sym_break] = ACTIONS(683), - [anon_sym_const] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(683), - [anon_sym_default] = ACTIONS(683), - [anon_sym_enum] = ACTIONS(683), - [anon_sym_fn] = ACTIONS(683), - [anon_sym_for] = ACTIONS(683), - [anon_sym_gen] = ACTIONS(683), - [anon_sym_if] = ACTIONS(683), - [anon_sym_impl] = ACTIONS(683), - [anon_sym_let] = ACTIONS(683), - [anon_sym_loop] = ACTIONS(683), - [anon_sym_match] = ACTIONS(683), - [anon_sym_mod] = ACTIONS(683), - [anon_sym_pub] = ACTIONS(683), - [anon_sym_return] = ACTIONS(683), - [anon_sym_static] = ACTIONS(683), - [anon_sym_struct] = ACTIONS(683), - [anon_sym_trait] = ACTIONS(683), - [anon_sym_type] = ACTIONS(683), - [anon_sym_union] = ACTIONS(683), - [anon_sym_unsafe] = ACTIONS(683), - [anon_sym_use] = ACTIONS(683), - [anon_sym_where] = ACTIONS(683), - [anon_sym_while] = ACTIONS(683), - [sym_mutable_specifier] = ACTIONS(683), - [sym_integer_literal] = ACTIONS(699), - [aux_sym_string_literal_token1] = ACTIONS(701), - [sym_char_literal] = ACTIONS(699), - [anon_sym_true] = ACTIONS(703), - [anon_sym_false] = ACTIONS(703), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(683), - [sym_super] = ACTIONS(683), - [sym_crate] = ACTIONS(683), - [sym__raw_string_literal_start] = ACTIONS(705), - [sym_float_literal] = ACTIONS(699), - }, - [STATE(87)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), - [sym_line_comment] = STATE(87), - [sym_block_comment] = STATE(87), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(130), - [sym_identifier] = ACTIONS(683), - [anon_sym_SEMI] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(709), - [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_COLON] = ACTIONS(695), - [anon_sym_DOLLAR] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_QMARK] = ACTIONS(685), - [anon_sym_u8] = ACTIONS(683), - [anon_sym_i8] = ACTIONS(683), - [anon_sym_u16] = ACTIONS(683), - [anon_sym_i16] = ACTIONS(683), - [anon_sym_u32] = ACTIONS(683), - [anon_sym_i32] = ACTIONS(683), - [anon_sym_u64] = ACTIONS(683), - [anon_sym_i64] = ACTIONS(683), - [anon_sym_u128] = ACTIONS(683), - [anon_sym_i128] = ACTIONS(683), - [anon_sym_isize] = ACTIONS(683), - [anon_sym_usize] = ACTIONS(683), - [anon_sym_f32] = ACTIONS(683), - [anon_sym_f64] = ACTIONS(683), - [anon_sym_bool] = ACTIONS(683), - [anon_sym_str] = ACTIONS(683), - [anon_sym_char] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(695), - [anon_sym_PERCENT] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(695), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_AMP] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(685), - [anon_sym_PIPE_PIPE] = ACTIONS(685), - [anon_sym_LT_LT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(695), - [anon_sym_PLUS_EQ] = ACTIONS(685), - [anon_sym_DASH_EQ] = ACTIONS(685), - [anon_sym_STAR_EQ] = ACTIONS(685), - [anon_sym_SLASH_EQ] = ACTIONS(685), - [anon_sym_PERCENT_EQ] = ACTIONS(685), - [anon_sym_CARET_EQ] = ACTIONS(685), - [anon_sym_AMP_EQ] = ACTIONS(685), - [anon_sym_PIPE_EQ] = ACTIONS(685), - [anon_sym_LT_LT_EQ] = ACTIONS(685), - [anon_sym_GT_GT_EQ] = ACTIONS(685), - [anon_sym_EQ] = ACTIONS(695), - [anon_sym_EQ_EQ] = ACTIONS(685), - [anon_sym_BANG_EQ] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_GT_EQ] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(685), - [anon_sym_AT] = ACTIONS(685), - [anon_sym__] = ACTIONS(695), - [anon_sym_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [anon_sym_DOT_DOT_EQ] = ACTIONS(685), - [anon_sym_COMMA] = ACTIONS(685), - [anon_sym_COLON_COLON] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(685), - [anon_sym_POUND] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(683), - [anon_sym_as] = ACTIONS(683), - [anon_sym_async] = ACTIONS(683), - [anon_sym_await] = ACTIONS(683), - [anon_sym_break] = ACTIONS(683), - [anon_sym_const] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(683), - [anon_sym_default] = ACTIONS(683), - [anon_sym_enum] = ACTIONS(683), - [anon_sym_fn] = ACTIONS(683), - [anon_sym_for] = ACTIONS(683), - [anon_sym_gen] = ACTIONS(683), - [anon_sym_if] = ACTIONS(683), - [anon_sym_impl] = ACTIONS(683), - [anon_sym_let] = ACTIONS(683), - [anon_sym_loop] = ACTIONS(683), - [anon_sym_match] = ACTIONS(683), - [anon_sym_mod] = ACTIONS(683), - [anon_sym_pub] = ACTIONS(683), - [anon_sym_return] = ACTIONS(683), - [anon_sym_static] = ACTIONS(683), - [anon_sym_struct] = ACTIONS(683), - [anon_sym_trait] = ACTIONS(683), - [anon_sym_type] = ACTIONS(683), - [anon_sym_union] = ACTIONS(683), - [anon_sym_unsafe] = ACTIONS(683), - [anon_sym_use] = ACTIONS(683), - [anon_sym_where] = ACTIONS(683), - [anon_sym_while] = ACTIONS(683), - [sym_mutable_specifier] = ACTIONS(683), - [sym_integer_literal] = ACTIONS(699), - [aux_sym_string_literal_token1] = ACTIONS(701), - [sym_char_literal] = ACTIONS(699), - [anon_sym_true] = ACTIONS(703), - [anon_sym_false] = ACTIONS(703), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(683), - [sym_super] = ACTIONS(683), - [sym_crate] = ACTIONS(683), - [sym__raw_string_literal_start] = ACTIONS(705), - [sym_float_literal] = ACTIONS(699), - }, - [STATE(88)] = { - [sym_token_tree] = STATE(190), - [sym_token_repetition] = STATE(190), - [sym__literal] = STATE(190), - [sym_string_literal] = STATE(188), - [sym_raw_string_literal] = STATE(188), - [sym_boolean_literal] = STATE(188), - [sym_line_comment] = STATE(88), - [sym_block_comment] = STATE(88), - [aux_sym_token_tree_repeat1] = STATE(91), - [aux_sym__non_special_token_repeat1] = STATE(153), - [sym_identifier] = ACTIONS(711), + [aux_sym_token_tree_repeat1] = STATE(89), + [aux_sym__non_special_token_repeat1] = STATE(151), + [sym_identifier] = ACTIONS(707), [anon_sym_SEMI] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(713), - [anon_sym_RPAREN] = ACTIONS(715), - [anon_sym_LBRACK] = ACTIONS(717), - [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_LBRACK] = ACTIONS(711), + [anon_sym_RBRACK] = ACTIONS(725), + [anon_sym_LBRACE] = ACTIONS(715), [anon_sym_EQ_GT] = ACTIONS(576), [anon_sym_COLON] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(721), + [anon_sym_DOLLAR] = ACTIONS(717), [anon_sym_PLUS] = ACTIONS(586), [anon_sym_STAR] = ACTIONS(586), [anon_sym_QMARK] = ACTIONS(576), - [anon_sym_u8] = ACTIONS(711), - [anon_sym_i8] = ACTIONS(711), - [anon_sym_u16] = ACTIONS(711), - [anon_sym_i16] = ACTIONS(711), - [anon_sym_u32] = ACTIONS(711), - [anon_sym_i32] = ACTIONS(711), - [anon_sym_u64] = ACTIONS(711), - [anon_sym_i64] = ACTIONS(711), - [anon_sym_u128] = ACTIONS(711), - [anon_sym_i128] = ACTIONS(711), - [anon_sym_isize] = ACTIONS(711), - [anon_sym_usize] = ACTIONS(711), - [anon_sym_f32] = ACTIONS(711), - [anon_sym_f64] = ACTIONS(711), - [anon_sym_bool] = ACTIONS(711), - [anon_sym_str] = ACTIONS(711), - [anon_sym_char] = ACTIONS(711), + [anon_sym_u8] = ACTIONS(707), + [anon_sym_i8] = ACTIONS(707), + [anon_sym_u16] = ACTIONS(707), + [anon_sym_i16] = ACTIONS(707), + [anon_sym_u32] = ACTIONS(707), + [anon_sym_i32] = ACTIONS(707), + [anon_sym_u64] = ACTIONS(707), + [anon_sym_i64] = ACTIONS(707), + [anon_sym_u128] = ACTIONS(707), + [anon_sym_i128] = ACTIONS(707), + [anon_sym_isize] = ACTIONS(707), + [anon_sym_usize] = ACTIONS(707), + [anon_sym_f32] = ACTIONS(707), + [anon_sym_f64] = ACTIONS(707), + [anon_sym_bool] = ACTIONS(707), + [anon_sym_str] = ACTIONS(707), + [anon_sym_char] = ACTIONS(707), [anon_sym_DASH] = ACTIONS(586), [anon_sym_SLASH] = ACTIONS(586), [anon_sym_PERCENT] = ACTIONS(586), @@ -27149,36 +26665,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(576), [anon_sym_DASH_GT] = ACTIONS(576), [anon_sym_POUND] = ACTIONS(576), - [anon_sym_SQUOTE] = ACTIONS(711), - [anon_sym_as] = ACTIONS(711), - [anon_sym_async] = ACTIONS(711), - [anon_sym_await] = ACTIONS(711), - [anon_sym_break] = ACTIONS(711), - [anon_sym_const] = ACTIONS(711), - [anon_sym_continue] = ACTIONS(711), - [anon_sym_default] = ACTIONS(711), - [anon_sym_enum] = ACTIONS(711), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_for] = ACTIONS(711), - [anon_sym_gen] = ACTIONS(711), - [anon_sym_if] = ACTIONS(711), - [anon_sym_impl] = ACTIONS(711), - [anon_sym_let] = ACTIONS(711), - [anon_sym_loop] = ACTIONS(711), - [anon_sym_match] = ACTIONS(711), - [anon_sym_mod] = ACTIONS(711), - [anon_sym_pub] = ACTIONS(711), - [anon_sym_return] = ACTIONS(711), - [anon_sym_static] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(711), - [anon_sym_trait] = ACTIONS(711), - [anon_sym_type] = ACTIONS(711), - [anon_sym_union] = ACTIONS(711), - [anon_sym_unsafe] = ACTIONS(711), - [anon_sym_use] = ACTIONS(711), - [anon_sym_where] = ACTIONS(711), - [anon_sym_while] = ACTIONS(711), - [sym_mutable_specifier] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(707), + [anon_sym_as] = ACTIONS(707), + [anon_sym_async] = ACTIONS(707), + [anon_sym_await] = ACTIONS(707), + [anon_sym_break] = ACTIONS(707), + [anon_sym_const] = ACTIONS(707), + [anon_sym_continue] = ACTIONS(707), + [anon_sym_default] = ACTIONS(707), + [anon_sym_enum] = ACTIONS(707), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_for] = ACTIONS(707), + [anon_sym_gen] = ACTIONS(707), + [anon_sym_if] = ACTIONS(707), + [anon_sym_impl] = ACTIONS(707), + [anon_sym_let] = ACTIONS(707), + [anon_sym_loop] = ACTIONS(707), + [anon_sym_match] = ACTIONS(707), + [anon_sym_mod] = ACTIONS(707), + [anon_sym_pub] = ACTIONS(707), + [anon_sym_return] = ACTIONS(707), + [anon_sym_static] = ACTIONS(707), + [anon_sym_struct] = ACTIONS(707), + [anon_sym_trait] = ACTIONS(707), + [anon_sym_type] = ACTIONS(707), + [anon_sym_union] = ACTIONS(707), + [anon_sym_unsafe] = ACTIONS(707), + [anon_sym_use] = ACTIONS(707), + [anon_sym_where] = ACTIONS(707), + [anon_sym_while] = ACTIONS(707), + [sym_mutable_specifier] = ACTIONS(707), [sym_integer_literal] = ACTIONS(590), [aux_sym_string_literal_token1] = ACTIONS(592), [sym_char_literal] = ACTIONS(590), @@ -27186,53 +26702,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(594), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(711), - [sym_super] = ACTIONS(711), - [sym_crate] = ACTIONS(711), - [sym_metavariable] = ACTIONS(723), + [sym_self] = ACTIONS(707), + [sym_super] = ACTIONS(707), + [sym_crate] = ACTIONS(707), + [sym_metavariable] = ACTIONS(719), [sym__raw_string_literal_start] = ACTIONS(598), [sym_float_literal] = ACTIONS(590), }, - [STATE(89)] = { - [sym_token_tree] = STATE(190), - [sym_token_repetition] = STATE(190), - [sym__literal] = STATE(190), - [sym_string_literal] = STATE(188), - [sym_raw_string_literal] = STATE(188), - [sym_boolean_literal] = STATE(188), - [sym_line_comment] = STATE(89), - [sym_block_comment] = STATE(89), - [aux_sym_token_tree_repeat1] = STATE(92), - [aux_sym__non_special_token_repeat1] = STATE(153), - [sym_identifier] = ACTIONS(711), + [87] = { + [sym_token_tree] = STATE(174), + [sym_token_repetition] = STATE(174), + [sym__literal] = STATE(174), + [sym_string_literal] = STATE(194), + [sym_raw_string_literal] = STATE(194), + [sym_boolean_literal] = STATE(194), + [sym_line_comment] = STATE(87), + [sym_block_comment] = STATE(87), + [aux_sym_token_tree_repeat1] = STATE(90), + [aux_sym__non_special_token_repeat1] = STATE(151), + [sym_identifier] = ACTIONS(707), [anon_sym_SEMI] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(713), - [anon_sym_LBRACK] = ACTIONS(717), - [anon_sym_RBRACK] = ACTIONS(715), - [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_LBRACK] = ACTIONS(711), + [anon_sym_LBRACE] = ACTIONS(715), + [anon_sym_RBRACE] = ACTIONS(725), [anon_sym_EQ_GT] = ACTIONS(576), [anon_sym_COLON] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(721), + [anon_sym_DOLLAR] = ACTIONS(717), [anon_sym_PLUS] = ACTIONS(586), [anon_sym_STAR] = ACTIONS(586), [anon_sym_QMARK] = ACTIONS(576), - [anon_sym_u8] = ACTIONS(711), - [anon_sym_i8] = ACTIONS(711), - [anon_sym_u16] = ACTIONS(711), - [anon_sym_i16] = ACTIONS(711), - [anon_sym_u32] = ACTIONS(711), - [anon_sym_i32] = ACTIONS(711), - [anon_sym_u64] = ACTIONS(711), - [anon_sym_i64] = ACTIONS(711), - [anon_sym_u128] = ACTIONS(711), - [anon_sym_i128] = ACTIONS(711), - [anon_sym_isize] = ACTIONS(711), - [anon_sym_usize] = ACTIONS(711), - [anon_sym_f32] = ACTIONS(711), - [anon_sym_f64] = ACTIONS(711), - [anon_sym_bool] = ACTIONS(711), - [anon_sym_str] = ACTIONS(711), - [anon_sym_char] = ACTIONS(711), + [anon_sym_u8] = ACTIONS(707), + [anon_sym_i8] = ACTIONS(707), + [anon_sym_u16] = ACTIONS(707), + [anon_sym_i16] = ACTIONS(707), + [anon_sym_u32] = ACTIONS(707), + [anon_sym_i32] = ACTIONS(707), + [anon_sym_u64] = ACTIONS(707), + [anon_sym_i64] = ACTIONS(707), + [anon_sym_u128] = ACTIONS(707), + [anon_sym_i128] = ACTIONS(707), + [anon_sym_isize] = ACTIONS(707), + [anon_sym_usize] = ACTIONS(707), + [anon_sym_f32] = ACTIONS(707), + [anon_sym_f64] = ACTIONS(707), + [anon_sym_bool] = ACTIONS(707), + [anon_sym_str] = ACTIONS(707), + [anon_sym_char] = ACTIONS(707), [anon_sym_DASH] = ACTIONS(586), [anon_sym_SLASH] = ACTIONS(586), [anon_sym_PERCENT] = ACTIONS(586), @@ -27271,36 +26787,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(576), [anon_sym_DASH_GT] = ACTIONS(576), [anon_sym_POUND] = ACTIONS(576), - [anon_sym_SQUOTE] = ACTIONS(711), - [anon_sym_as] = ACTIONS(711), - [anon_sym_async] = ACTIONS(711), - [anon_sym_await] = ACTIONS(711), - [anon_sym_break] = ACTIONS(711), - [anon_sym_const] = ACTIONS(711), - [anon_sym_continue] = ACTIONS(711), - [anon_sym_default] = ACTIONS(711), - [anon_sym_enum] = ACTIONS(711), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_for] = ACTIONS(711), - [anon_sym_gen] = ACTIONS(711), - [anon_sym_if] = ACTIONS(711), - [anon_sym_impl] = ACTIONS(711), - [anon_sym_let] = ACTIONS(711), - [anon_sym_loop] = ACTIONS(711), - [anon_sym_match] = ACTIONS(711), - [anon_sym_mod] = ACTIONS(711), - [anon_sym_pub] = ACTIONS(711), - [anon_sym_return] = ACTIONS(711), - [anon_sym_static] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(711), - [anon_sym_trait] = ACTIONS(711), - [anon_sym_type] = ACTIONS(711), - [anon_sym_union] = ACTIONS(711), - [anon_sym_unsafe] = ACTIONS(711), - [anon_sym_use] = ACTIONS(711), - [anon_sym_where] = ACTIONS(711), - [anon_sym_while] = ACTIONS(711), - [sym_mutable_specifier] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(707), + [anon_sym_as] = ACTIONS(707), + [anon_sym_async] = ACTIONS(707), + [anon_sym_await] = ACTIONS(707), + [anon_sym_break] = ACTIONS(707), + [anon_sym_const] = ACTIONS(707), + [anon_sym_continue] = ACTIONS(707), + [anon_sym_default] = ACTIONS(707), + [anon_sym_enum] = ACTIONS(707), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_for] = ACTIONS(707), + [anon_sym_gen] = ACTIONS(707), + [anon_sym_if] = ACTIONS(707), + [anon_sym_impl] = ACTIONS(707), + [anon_sym_let] = ACTIONS(707), + [anon_sym_loop] = ACTIONS(707), + [anon_sym_match] = ACTIONS(707), + [anon_sym_mod] = ACTIONS(707), + [anon_sym_pub] = ACTIONS(707), + [anon_sym_return] = ACTIONS(707), + [anon_sym_static] = ACTIONS(707), + [anon_sym_struct] = ACTIONS(707), + [anon_sym_trait] = ACTIONS(707), + [anon_sym_type] = ACTIONS(707), + [anon_sym_union] = ACTIONS(707), + [anon_sym_unsafe] = ACTIONS(707), + [anon_sym_use] = ACTIONS(707), + [anon_sym_where] = ACTIONS(707), + [anon_sym_while] = ACTIONS(707), + [sym_mutable_specifier] = ACTIONS(707), [sym_integer_literal] = ACTIONS(590), [aux_sym_string_literal_token1] = ACTIONS(592), [sym_char_literal] = ACTIONS(590), @@ -27308,53 +26824,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(594), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(711), - [sym_super] = ACTIONS(711), - [sym_crate] = ACTIONS(711), - [sym_metavariable] = ACTIONS(723), + [sym_self] = ACTIONS(707), + [sym_super] = ACTIONS(707), + [sym_crate] = ACTIONS(707), + [sym_metavariable] = ACTIONS(719), [sym__raw_string_literal_start] = ACTIONS(598), [sym_float_literal] = ACTIONS(590), }, - [STATE(90)] = { - [sym_token_tree] = STATE(190), - [sym_token_repetition] = STATE(190), - [sym__literal] = STATE(190), - [sym_string_literal] = STATE(188), - [sym_raw_string_literal] = STATE(188), - [sym_boolean_literal] = STATE(188), - [sym_line_comment] = STATE(90), - [sym_block_comment] = STATE(90), - [aux_sym_token_tree_repeat1] = STATE(93), - [aux_sym__non_special_token_repeat1] = STATE(153), - [sym_identifier] = ACTIONS(711), + [88] = { + [sym_token_tree] = STATE(174), + [sym_token_repetition] = STATE(174), + [sym__literal] = STATE(174), + [sym_string_literal] = STATE(194), + [sym_raw_string_literal] = STATE(194), + [sym_boolean_literal] = STATE(194), + [sym_line_comment] = STATE(88), + [sym_block_comment] = STATE(88), + [aux_sym_token_tree_repeat1] = STATE(78), + [aux_sym__non_special_token_repeat1] = STATE(151), + [sym_identifier] = ACTIONS(707), [anon_sym_SEMI] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(713), - [anon_sym_LBRACK] = ACTIONS(717), - [anon_sym_LBRACE] = ACTIONS(719), - [anon_sym_RBRACE] = ACTIONS(715), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_RPAREN] = ACTIONS(727), + [anon_sym_LBRACK] = ACTIONS(711), + [anon_sym_LBRACE] = ACTIONS(715), [anon_sym_EQ_GT] = ACTIONS(576), [anon_sym_COLON] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(721), + [anon_sym_DOLLAR] = ACTIONS(717), [anon_sym_PLUS] = ACTIONS(586), [anon_sym_STAR] = ACTIONS(586), [anon_sym_QMARK] = ACTIONS(576), - [anon_sym_u8] = ACTIONS(711), - [anon_sym_i8] = ACTIONS(711), - [anon_sym_u16] = ACTIONS(711), - [anon_sym_i16] = ACTIONS(711), - [anon_sym_u32] = ACTIONS(711), - [anon_sym_i32] = ACTIONS(711), - [anon_sym_u64] = ACTIONS(711), - [anon_sym_i64] = ACTIONS(711), - [anon_sym_u128] = ACTIONS(711), - [anon_sym_i128] = ACTIONS(711), - [anon_sym_isize] = ACTIONS(711), - [anon_sym_usize] = ACTIONS(711), - [anon_sym_f32] = ACTIONS(711), - [anon_sym_f64] = ACTIONS(711), - [anon_sym_bool] = ACTIONS(711), - [anon_sym_str] = ACTIONS(711), - [anon_sym_char] = ACTIONS(711), + [anon_sym_u8] = ACTIONS(707), + [anon_sym_i8] = ACTIONS(707), + [anon_sym_u16] = ACTIONS(707), + [anon_sym_i16] = ACTIONS(707), + [anon_sym_u32] = ACTIONS(707), + [anon_sym_i32] = ACTIONS(707), + [anon_sym_u64] = ACTIONS(707), + [anon_sym_i64] = ACTIONS(707), + [anon_sym_u128] = ACTIONS(707), + [anon_sym_i128] = ACTIONS(707), + [anon_sym_isize] = ACTIONS(707), + [anon_sym_usize] = ACTIONS(707), + [anon_sym_f32] = ACTIONS(707), + [anon_sym_f64] = ACTIONS(707), + [anon_sym_bool] = ACTIONS(707), + [anon_sym_str] = ACTIONS(707), + [anon_sym_char] = ACTIONS(707), [anon_sym_DASH] = ACTIONS(586), [anon_sym_SLASH] = ACTIONS(586), [anon_sym_PERCENT] = ACTIONS(586), @@ -27393,36 +26909,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(576), [anon_sym_DASH_GT] = ACTIONS(576), [anon_sym_POUND] = ACTIONS(576), - [anon_sym_SQUOTE] = ACTIONS(711), - [anon_sym_as] = ACTIONS(711), - [anon_sym_async] = ACTIONS(711), - [anon_sym_await] = ACTIONS(711), - [anon_sym_break] = ACTIONS(711), - [anon_sym_const] = ACTIONS(711), - [anon_sym_continue] = ACTIONS(711), - [anon_sym_default] = ACTIONS(711), - [anon_sym_enum] = ACTIONS(711), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_for] = ACTIONS(711), - [anon_sym_gen] = ACTIONS(711), - [anon_sym_if] = ACTIONS(711), - [anon_sym_impl] = ACTIONS(711), - [anon_sym_let] = ACTIONS(711), - [anon_sym_loop] = ACTIONS(711), - [anon_sym_match] = ACTIONS(711), - [anon_sym_mod] = ACTIONS(711), - [anon_sym_pub] = ACTIONS(711), - [anon_sym_return] = ACTIONS(711), - [anon_sym_static] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(711), - [anon_sym_trait] = ACTIONS(711), - [anon_sym_type] = ACTIONS(711), - [anon_sym_union] = ACTIONS(711), - [anon_sym_unsafe] = ACTIONS(711), - [anon_sym_use] = ACTIONS(711), - [anon_sym_where] = ACTIONS(711), - [anon_sym_while] = ACTIONS(711), - [sym_mutable_specifier] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(707), + [anon_sym_as] = ACTIONS(707), + [anon_sym_async] = ACTIONS(707), + [anon_sym_await] = ACTIONS(707), + [anon_sym_break] = ACTIONS(707), + [anon_sym_const] = ACTIONS(707), + [anon_sym_continue] = ACTIONS(707), + [anon_sym_default] = ACTIONS(707), + [anon_sym_enum] = ACTIONS(707), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_for] = ACTIONS(707), + [anon_sym_gen] = ACTIONS(707), + [anon_sym_if] = ACTIONS(707), + [anon_sym_impl] = ACTIONS(707), + [anon_sym_let] = ACTIONS(707), + [anon_sym_loop] = ACTIONS(707), + [anon_sym_match] = ACTIONS(707), + [anon_sym_mod] = ACTIONS(707), + [anon_sym_pub] = ACTIONS(707), + [anon_sym_return] = ACTIONS(707), + [anon_sym_static] = ACTIONS(707), + [anon_sym_struct] = ACTIONS(707), + [anon_sym_trait] = ACTIONS(707), + [anon_sym_type] = ACTIONS(707), + [anon_sym_union] = ACTIONS(707), + [anon_sym_unsafe] = ACTIONS(707), + [anon_sym_use] = ACTIONS(707), + [anon_sym_where] = ACTIONS(707), + [anon_sym_while] = ACTIONS(707), + [sym_mutable_specifier] = ACTIONS(707), [sym_integer_literal] = ACTIONS(590), [aux_sym_string_literal_token1] = ACTIONS(592), [sym_char_literal] = ACTIONS(590), @@ -27430,53 +26946,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(594), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(711), - [sym_super] = ACTIONS(711), - [sym_crate] = ACTIONS(711), - [sym_metavariable] = ACTIONS(723), + [sym_self] = ACTIONS(707), + [sym_super] = ACTIONS(707), + [sym_crate] = ACTIONS(707), + [sym_metavariable] = ACTIONS(719), [sym__raw_string_literal_start] = ACTIONS(598), [sym_float_literal] = ACTIONS(590), }, - [STATE(91)] = { - [sym_token_tree] = STATE(190), - [sym_token_repetition] = STATE(190), - [sym__literal] = STATE(190), - [sym_string_literal] = STATE(188), - [sym_raw_string_literal] = STATE(188), - [sym_boolean_literal] = STATE(188), - [sym_line_comment] = STATE(91), - [sym_block_comment] = STATE(91), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(153), - [sym_identifier] = ACTIONS(711), + [89] = { + [sym_token_tree] = STATE(174), + [sym_token_repetition] = STATE(174), + [sym__literal] = STATE(174), + [sym_string_literal] = STATE(194), + [sym_raw_string_literal] = STATE(194), + [sym_boolean_literal] = STATE(194), + [sym_line_comment] = STATE(89), + [sym_block_comment] = STATE(89), + [aux_sym_token_tree_repeat1] = STATE(78), + [aux_sym__non_special_token_repeat1] = STATE(151), + [sym_identifier] = ACTIONS(707), [anon_sym_SEMI] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(713), - [anon_sym_RPAREN] = ACTIONS(725), - [anon_sym_LBRACK] = ACTIONS(717), - [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_LBRACK] = ACTIONS(711), + [anon_sym_RBRACK] = ACTIONS(727), + [anon_sym_LBRACE] = ACTIONS(715), [anon_sym_EQ_GT] = ACTIONS(576), [anon_sym_COLON] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(721), + [anon_sym_DOLLAR] = ACTIONS(717), [anon_sym_PLUS] = ACTIONS(586), [anon_sym_STAR] = ACTIONS(586), [anon_sym_QMARK] = ACTIONS(576), - [anon_sym_u8] = ACTIONS(711), - [anon_sym_i8] = ACTIONS(711), - [anon_sym_u16] = ACTIONS(711), - [anon_sym_i16] = ACTIONS(711), - [anon_sym_u32] = ACTIONS(711), - [anon_sym_i32] = ACTIONS(711), - [anon_sym_u64] = ACTIONS(711), - [anon_sym_i64] = ACTIONS(711), - [anon_sym_u128] = ACTIONS(711), - [anon_sym_i128] = ACTIONS(711), - [anon_sym_isize] = ACTIONS(711), - [anon_sym_usize] = ACTIONS(711), - [anon_sym_f32] = ACTIONS(711), - [anon_sym_f64] = ACTIONS(711), - [anon_sym_bool] = ACTIONS(711), - [anon_sym_str] = ACTIONS(711), - [anon_sym_char] = ACTIONS(711), + [anon_sym_u8] = ACTIONS(707), + [anon_sym_i8] = ACTIONS(707), + [anon_sym_u16] = ACTIONS(707), + [anon_sym_i16] = ACTIONS(707), + [anon_sym_u32] = ACTIONS(707), + [anon_sym_i32] = ACTIONS(707), + [anon_sym_u64] = ACTIONS(707), + [anon_sym_i64] = ACTIONS(707), + [anon_sym_u128] = ACTIONS(707), + [anon_sym_i128] = ACTIONS(707), + [anon_sym_isize] = ACTIONS(707), + [anon_sym_usize] = ACTIONS(707), + [anon_sym_f32] = ACTIONS(707), + [anon_sym_f64] = ACTIONS(707), + [anon_sym_bool] = ACTIONS(707), + [anon_sym_str] = ACTIONS(707), + [anon_sym_char] = ACTIONS(707), [anon_sym_DASH] = ACTIONS(586), [anon_sym_SLASH] = ACTIONS(586), [anon_sym_PERCENT] = ACTIONS(586), @@ -27515,36 +27031,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(576), [anon_sym_DASH_GT] = ACTIONS(576), [anon_sym_POUND] = ACTIONS(576), - [anon_sym_SQUOTE] = ACTIONS(711), - [anon_sym_as] = ACTIONS(711), - [anon_sym_async] = ACTIONS(711), - [anon_sym_await] = ACTIONS(711), - [anon_sym_break] = ACTIONS(711), - [anon_sym_const] = ACTIONS(711), - [anon_sym_continue] = ACTIONS(711), - [anon_sym_default] = ACTIONS(711), - [anon_sym_enum] = ACTIONS(711), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_for] = ACTIONS(711), - [anon_sym_gen] = ACTIONS(711), - [anon_sym_if] = ACTIONS(711), - [anon_sym_impl] = ACTIONS(711), - [anon_sym_let] = ACTIONS(711), - [anon_sym_loop] = ACTIONS(711), - [anon_sym_match] = ACTIONS(711), - [anon_sym_mod] = ACTIONS(711), - [anon_sym_pub] = ACTIONS(711), - [anon_sym_return] = ACTIONS(711), - [anon_sym_static] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(711), - [anon_sym_trait] = ACTIONS(711), - [anon_sym_type] = ACTIONS(711), - [anon_sym_union] = ACTIONS(711), - [anon_sym_unsafe] = ACTIONS(711), - [anon_sym_use] = ACTIONS(711), - [anon_sym_where] = ACTIONS(711), - [anon_sym_while] = ACTIONS(711), - [sym_mutable_specifier] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(707), + [anon_sym_as] = ACTIONS(707), + [anon_sym_async] = ACTIONS(707), + [anon_sym_await] = ACTIONS(707), + [anon_sym_break] = ACTIONS(707), + [anon_sym_const] = ACTIONS(707), + [anon_sym_continue] = ACTIONS(707), + [anon_sym_default] = ACTIONS(707), + [anon_sym_enum] = ACTIONS(707), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_for] = ACTIONS(707), + [anon_sym_gen] = ACTIONS(707), + [anon_sym_if] = ACTIONS(707), + [anon_sym_impl] = ACTIONS(707), + [anon_sym_let] = ACTIONS(707), + [anon_sym_loop] = ACTIONS(707), + [anon_sym_match] = ACTIONS(707), + [anon_sym_mod] = ACTIONS(707), + [anon_sym_pub] = ACTIONS(707), + [anon_sym_return] = ACTIONS(707), + [anon_sym_static] = ACTIONS(707), + [anon_sym_struct] = ACTIONS(707), + [anon_sym_trait] = ACTIONS(707), + [anon_sym_type] = ACTIONS(707), + [anon_sym_union] = ACTIONS(707), + [anon_sym_unsafe] = ACTIONS(707), + [anon_sym_use] = ACTIONS(707), + [anon_sym_where] = ACTIONS(707), + [anon_sym_while] = ACTIONS(707), + [sym_mutable_specifier] = ACTIONS(707), [sym_integer_literal] = ACTIONS(590), [aux_sym_string_literal_token1] = ACTIONS(592), [sym_char_literal] = ACTIONS(590), @@ -27552,53 +27068,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(594), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(711), - [sym_super] = ACTIONS(711), - [sym_crate] = ACTIONS(711), - [sym_metavariable] = ACTIONS(723), + [sym_self] = ACTIONS(707), + [sym_super] = ACTIONS(707), + [sym_crate] = ACTIONS(707), + [sym_metavariable] = ACTIONS(719), [sym__raw_string_literal_start] = ACTIONS(598), [sym_float_literal] = ACTIONS(590), }, - [STATE(92)] = { - [sym_token_tree] = STATE(190), - [sym_token_repetition] = STATE(190), - [sym__literal] = STATE(190), - [sym_string_literal] = STATE(188), - [sym_raw_string_literal] = STATE(188), - [sym_boolean_literal] = STATE(188), - [sym_line_comment] = STATE(92), - [sym_block_comment] = STATE(92), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(153), - [sym_identifier] = ACTIONS(711), + [90] = { + [sym_token_tree] = STATE(174), + [sym_token_repetition] = STATE(174), + [sym__literal] = STATE(174), + [sym_string_literal] = STATE(194), + [sym_raw_string_literal] = STATE(194), + [sym_boolean_literal] = STATE(194), + [sym_line_comment] = STATE(90), + [sym_block_comment] = STATE(90), + [aux_sym_token_tree_repeat1] = STATE(78), + [aux_sym__non_special_token_repeat1] = STATE(151), + [sym_identifier] = ACTIONS(707), [anon_sym_SEMI] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(713), - [anon_sym_LBRACK] = ACTIONS(717), - [anon_sym_RBRACK] = ACTIONS(725), - [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_LBRACK] = ACTIONS(711), + [anon_sym_LBRACE] = ACTIONS(715), + [anon_sym_RBRACE] = ACTIONS(727), [anon_sym_EQ_GT] = ACTIONS(576), [anon_sym_COLON] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(721), + [anon_sym_DOLLAR] = ACTIONS(717), [anon_sym_PLUS] = ACTIONS(586), [anon_sym_STAR] = ACTIONS(586), [anon_sym_QMARK] = ACTIONS(576), - [anon_sym_u8] = ACTIONS(711), - [anon_sym_i8] = ACTIONS(711), - [anon_sym_u16] = ACTIONS(711), - [anon_sym_i16] = ACTIONS(711), - [anon_sym_u32] = ACTIONS(711), - [anon_sym_i32] = ACTIONS(711), - [anon_sym_u64] = ACTIONS(711), - [anon_sym_i64] = ACTIONS(711), - [anon_sym_u128] = ACTIONS(711), - [anon_sym_i128] = ACTIONS(711), - [anon_sym_isize] = ACTIONS(711), - [anon_sym_usize] = ACTIONS(711), - [anon_sym_f32] = ACTIONS(711), - [anon_sym_f64] = ACTIONS(711), - [anon_sym_bool] = ACTIONS(711), - [anon_sym_str] = ACTIONS(711), - [anon_sym_char] = ACTIONS(711), + [anon_sym_u8] = ACTIONS(707), + [anon_sym_i8] = ACTIONS(707), + [anon_sym_u16] = ACTIONS(707), + [anon_sym_i16] = ACTIONS(707), + [anon_sym_u32] = ACTIONS(707), + [anon_sym_i32] = ACTIONS(707), + [anon_sym_u64] = ACTIONS(707), + [anon_sym_i64] = ACTIONS(707), + [anon_sym_u128] = ACTIONS(707), + [anon_sym_i128] = ACTIONS(707), + [anon_sym_isize] = ACTIONS(707), + [anon_sym_usize] = ACTIONS(707), + [anon_sym_f32] = ACTIONS(707), + [anon_sym_f64] = ACTIONS(707), + [anon_sym_bool] = ACTIONS(707), + [anon_sym_str] = ACTIONS(707), + [anon_sym_char] = ACTIONS(707), [anon_sym_DASH] = ACTIONS(586), [anon_sym_SLASH] = ACTIONS(586), [anon_sym_PERCENT] = ACTIONS(586), @@ -27637,36 +27153,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(576), [anon_sym_DASH_GT] = ACTIONS(576), [anon_sym_POUND] = ACTIONS(576), - [anon_sym_SQUOTE] = ACTIONS(711), - [anon_sym_as] = ACTIONS(711), - [anon_sym_async] = ACTIONS(711), - [anon_sym_await] = ACTIONS(711), - [anon_sym_break] = ACTIONS(711), - [anon_sym_const] = ACTIONS(711), - [anon_sym_continue] = ACTIONS(711), - [anon_sym_default] = ACTIONS(711), - [anon_sym_enum] = ACTIONS(711), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_for] = ACTIONS(711), - [anon_sym_gen] = ACTIONS(711), - [anon_sym_if] = ACTIONS(711), - [anon_sym_impl] = ACTIONS(711), - [anon_sym_let] = ACTIONS(711), - [anon_sym_loop] = ACTIONS(711), - [anon_sym_match] = ACTIONS(711), - [anon_sym_mod] = ACTIONS(711), - [anon_sym_pub] = ACTIONS(711), - [anon_sym_return] = ACTIONS(711), - [anon_sym_static] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(711), - [anon_sym_trait] = ACTIONS(711), - [anon_sym_type] = ACTIONS(711), - [anon_sym_union] = ACTIONS(711), - [anon_sym_unsafe] = ACTIONS(711), - [anon_sym_use] = ACTIONS(711), - [anon_sym_where] = ACTIONS(711), - [anon_sym_while] = ACTIONS(711), - [sym_mutable_specifier] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(707), + [anon_sym_as] = ACTIONS(707), + [anon_sym_async] = ACTIONS(707), + [anon_sym_await] = ACTIONS(707), + [anon_sym_break] = ACTIONS(707), + [anon_sym_const] = ACTIONS(707), + [anon_sym_continue] = ACTIONS(707), + [anon_sym_default] = ACTIONS(707), + [anon_sym_enum] = ACTIONS(707), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_for] = ACTIONS(707), + [anon_sym_gen] = ACTIONS(707), + [anon_sym_if] = ACTIONS(707), + [anon_sym_impl] = ACTIONS(707), + [anon_sym_let] = ACTIONS(707), + [anon_sym_loop] = ACTIONS(707), + [anon_sym_match] = ACTIONS(707), + [anon_sym_mod] = ACTIONS(707), + [anon_sym_pub] = ACTIONS(707), + [anon_sym_return] = ACTIONS(707), + [anon_sym_static] = ACTIONS(707), + [anon_sym_struct] = ACTIONS(707), + [anon_sym_trait] = ACTIONS(707), + [anon_sym_type] = ACTIONS(707), + [anon_sym_union] = ACTIONS(707), + [anon_sym_unsafe] = ACTIONS(707), + [anon_sym_use] = ACTIONS(707), + [anon_sym_where] = ACTIONS(707), + [anon_sym_while] = ACTIONS(707), + [sym_mutable_specifier] = ACTIONS(707), [sym_integer_literal] = ACTIONS(590), [aux_sym_string_literal_token1] = ACTIONS(592), [sym_char_literal] = ACTIONS(590), @@ -27674,53 +27190,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(594), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(711), - [sym_super] = ACTIONS(711), - [sym_crate] = ACTIONS(711), - [sym_metavariable] = ACTIONS(723), + [sym_self] = ACTIONS(707), + [sym_super] = ACTIONS(707), + [sym_crate] = ACTIONS(707), + [sym_metavariable] = ACTIONS(719), [sym__raw_string_literal_start] = ACTIONS(598), [sym_float_literal] = ACTIONS(590), }, - [STATE(93)] = { - [sym_token_tree] = STATE(190), - [sym_token_repetition] = STATE(190), - [sym__literal] = STATE(190), - [sym_string_literal] = STATE(188), - [sym_raw_string_literal] = STATE(188), - [sym_boolean_literal] = STATE(188), - [sym_line_comment] = STATE(93), - [sym_block_comment] = STATE(93), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(153), - [sym_identifier] = ACTIONS(711), + [91] = { + [sym_token_tree] = STATE(174), + [sym_token_repetition] = STATE(174), + [sym__literal] = STATE(174), + [sym_string_literal] = STATE(194), + [sym_raw_string_literal] = STATE(194), + [sym_boolean_literal] = STATE(194), + [sym_line_comment] = STATE(91), + [sym_block_comment] = STATE(91), + [aux_sym_token_tree_repeat1] = STATE(78), + [aux_sym__non_special_token_repeat1] = STATE(151), + [sym_identifier] = ACTIONS(707), [anon_sym_SEMI] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(713), - [anon_sym_LBRACK] = ACTIONS(717), - [anon_sym_LBRACE] = ACTIONS(719), - [anon_sym_RBRACE] = ACTIONS(725), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_RPAREN] = ACTIONS(729), + [anon_sym_LBRACK] = ACTIONS(711), + [anon_sym_LBRACE] = ACTIONS(715), [anon_sym_EQ_GT] = ACTIONS(576), [anon_sym_COLON] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(721), + [anon_sym_DOLLAR] = ACTIONS(717), [anon_sym_PLUS] = ACTIONS(586), [anon_sym_STAR] = ACTIONS(586), [anon_sym_QMARK] = ACTIONS(576), - [anon_sym_u8] = ACTIONS(711), - [anon_sym_i8] = ACTIONS(711), - [anon_sym_u16] = ACTIONS(711), - [anon_sym_i16] = ACTIONS(711), - [anon_sym_u32] = ACTIONS(711), - [anon_sym_i32] = ACTIONS(711), - [anon_sym_u64] = ACTIONS(711), - [anon_sym_i64] = ACTIONS(711), - [anon_sym_u128] = ACTIONS(711), - [anon_sym_i128] = ACTIONS(711), - [anon_sym_isize] = ACTIONS(711), - [anon_sym_usize] = ACTIONS(711), - [anon_sym_f32] = ACTIONS(711), - [anon_sym_f64] = ACTIONS(711), - [anon_sym_bool] = ACTIONS(711), - [anon_sym_str] = ACTIONS(711), - [anon_sym_char] = ACTIONS(711), + [anon_sym_u8] = ACTIONS(707), + [anon_sym_i8] = ACTIONS(707), + [anon_sym_u16] = ACTIONS(707), + [anon_sym_i16] = ACTIONS(707), + [anon_sym_u32] = ACTIONS(707), + [anon_sym_i32] = ACTIONS(707), + [anon_sym_u64] = ACTIONS(707), + [anon_sym_i64] = ACTIONS(707), + [anon_sym_u128] = ACTIONS(707), + [anon_sym_i128] = ACTIONS(707), + [anon_sym_isize] = ACTIONS(707), + [anon_sym_usize] = ACTIONS(707), + [anon_sym_f32] = ACTIONS(707), + [anon_sym_f64] = ACTIONS(707), + [anon_sym_bool] = ACTIONS(707), + [anon_sym_str] = ACTIONS(707), + [anon_sym_char] = ACTIONS(707), [anon_sym_DASH] = ACTIONS(586), [anon_sym_SLASH] = ACTIONS(586), [anon_sym_PERCENT] = ACTIONS(586), @@ -27759,36 +27275,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(576), [anon_sym_DASH_GT] = ACTIONS(576), [anon_sym_POUND] = ACTIONS(576), - [anon_sym_SQUOTE] = ACTIONS(711), - [anon_sym_as] = ACTIONS(711), - [anon_sym_async] = ACTIONS(711), - [anon_sym_await] = ACTIONS(711), - [anon_sym_break] = ACTIONS(711), - [anon_sym_const] = ACTIONS(711), - [anon_sym_continue] = ACTIONS(711), - [anon_sym_default] = ACTIONS(711), - [anon_sym_enum] = ACTIONS(711), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_for] = ACTIONS(711), - [anon_sym_gen] = ACTIONS(711), - [anon_sym_if] = ACTIONS(711), - [anon_sym_impl] = ACTIONS(711), - [anon_sym_let] = ACTIONS(711), - [anon_sym_loop] = ACTIONS(711), - [anon_sym_match] = ACTIONS(711), - [anon_sym_mod] = ACTIONS(711), - [anon_sym_pub] = ACTIONS(711), - [anon_sym_return] = ACTIONS(711), - [anon_sym_static] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(711), - [anon_sym_trait] = ACTIONS(711), - [anon_sym_type] = ACTIONS(711), - [anon_sym_union] = ACTIONS(711), - [anon_sym_unsafe] = ACTIONS(711), - [anon_sym_use] = ACTIONS(711), - [anon_sym_where] = ACTIONS(711), - [anon_sym_while] = ACTIONS(711), - [sym_mutable_specifier] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(707), + [anon_sym_as] = ACTIONS(707), + [anon_sym_async] = ACTIONS(707), + [anon_sym_await] = ACTIONS(707), + [anon_sym_break] = ACTIONS(707), + [anon_sym_const] = ACTIONS(707), + [anon_sym_continue] = ACTIONS(707), + [anon_sym_default] = ACTIONS(707), + [anon_sym_enum] = ACTIONS(707), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_for] = ACTIONS(707), + [anon_sym_gen] = ACTIONS(707), + [anon_sym_if] = ACTIONS(707), + [anon_sym_impl] = ACTIONS(707), + [anon_sym_let] = ACTIONS(707), + [anon_sym_loop] = ACTIONS(707), + [anon_sym_match] = ACTIONS(707), + [anon_sym_mod] = ACTIONS(707), + [anon_sym_pub] = ACTIONS(707), + [anon_sym_return] = ACTIONS(707), + [anon_sym_static] = ACTIONS(707), + [anon_sym_struct] = ACTIONS(707), + [anon_sym_trait] = ACTIONS(707), + [anon_sym_type] = ACTIONS(707), + [anon_sym_union] = ACTIONS(707), + [anon_sym_unsafe] = ACTIONS(707), + [anon_sym_use] = ACTIONS(707), + [anon_sym_where] = ACTIONS(707), + [anon_sym_while] = ACTIONS(707), + [sym_mutable_specifier] = ACTIONS(707), [sym_integer_literal] = ACTIONS(590), [aux_sym_string_literal_token1] = ACTIONS(592), [sym_char_literal] = ACTIONS(590), @@ -27796,31 +27312,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(594), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(711), - [sym_super] = ACTIONS(711), - [sym_crate] = ACTIONS(711), - [sym_metavariable] = ACTIONS(723), + [sym_self] = ACTIONS(707), + [sym_super] = ACTIONS(707), + [sym_crate] = ACTIONS(707), + [sym_metavariable] = ACTIONS(719), [sym__raw_string_literal_start] = ACTIONS(598), [sym_float_literal] = ACTIONS(590), }, - [STATE(94)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), - [sym_line_comment] = STATE(94), - [sym_block_comment] = STATE(94), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(98), + [92] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(241), + [sym_string_literal] = STATE(221), + [sym_raw_string_literal] = STATE(221), + [sym_boolean_literal] = STATE(221), + [sym_line_comment] = STATE(92), + [sym_block_comment] = STATE(92), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(125), [sym_identifier] = ACTIONS(683), [anon_sym_SEMI] = ACTIONS(685), [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(709), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_RBRACK] = ACTIONS(731), + [anon_sym_LBRACE] = ACTIONS(691), [anon_sym_EQ_GT] = ACTIONS(685), [anon_sym_COLON] = ACTIONS(695), [anon_sym_DOLLAR] = ACTIONS(697), @@ -27925,24 +27441,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(705), [sym_float_literal] = ACTIONS(699), }, - [STATE(95)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), - [sym_line_comment] = STATE(95), - [sym_block_comment] = STATE(95), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(99), + [93] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(241), + [sym_string_literal] = STATE(221), + [sym_raw_string_literal] = STATE(221), + [sym_boolean_literal] = STATE(221), + [sym_line_comment] = STATE(93), + [sym_block_comment] = STATE(93), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(84), [sym_identifier] = ACTIONS(683), [anon_sym_SEMI] = ACTIONS(685), [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(727), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(691), + [anon_sym_RBRACE] = ACTIONS(731), [anon_sym_EQ_GT] = ACTIONS(685), [anon_sym_COLON] = ACTIONS(695), [anon_sym_DOLLAR] = ACTIONS(697), @@ -28047,24 +27563,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(705), [sym_float_literal] = ACTIONS(699), }, - [STATE(96)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), - [sym_line_comment] = STATE(96), - [sym_block_comment] = STATE(96), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(100), + [94] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(241), + [sym_string_literal] = STATE(221), + [sym_raw_string_literal] = STATE(221), + [sym_boolean_literal] = STATE(221), + [sym_line_comment] = STATE(94), + [sym_block_comment] = STATE(94), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(97), [sym_identifier] = ACTIONS(683), [anon_sym_SEMI] = ACTIONS(685), [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_RBRACK] = ACTIONS(727), - [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_RPAREN] = ACTIONS(733), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(691), [anon_sym_EQ_GT] = ACTIONS(685), [anon_sym_COLON] = ACTIONS(695), [anon_sym_DOLLAR] = ACTIONS(697), @@ -28169,24 +27685,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(705), [sym_float_literal] = ACTIONS(699), }, - [STATE(97)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), - [sym_line_comment] = STATE(97), - [sym_block_comment] = STATE(97), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(101), + [95] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(241), + [sym_string_literal] = STATE(221), + [sym_raw_string_literal] = STATE(221), + [sym_boolean_literal] = STATE(221), + [sym_line_comment] = STATE(95), + [sym_block_comment] = STATE(95), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(98), [sym_identifier] = ACTIONS(683), [anon_sym_SEMI] = ACTIONS(685), [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(727), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_RBRACK] = ACTIONS(733), + [anon_sym_LBRACE] = ACTIONS(691), [anon_sym_EQ_GT] = ACTIONS(685), [anon_sym_COLON] = ACTIONS(695), [anon_sym_DOLLAR] = ACTIONS(697), @@ -28291,24 +27807,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(705), [sym_float_literal] = ACTIONS(699), }, - [STATE(98)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), - [sym_line_comment] = STATE(98), - [sym_block_comment] = STATE(98), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(83), + [96] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(241), + [sym_string_literal] = STATE(221), + [sym_raw_string_literal] = STATE(221), + [sym_boolean_literal] = STATE(221), + [sym_line_comment] = STATE(96), + [sym_block_comment] = STATE(96), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(99), [sym_identifier] = ACTIONS(683), [anon_sym_SEMI] = ACTIONS(685), [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(729), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(691), + [anon_sym_RBRACE] = ACTIONS(733), [anon_sym_EQ_GT] = ACTIONS(685), [anon_sym_COLON] = ACTIONS(695), [anon_sym_DOLLAR] = ACTIONS(697), @@ -28413,24 +27929,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(705), [sym_float_literal] = ACTIONS(699), }, - [STATE(99)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), - [sym_line_comment] = STATE(99), - [sym_block_comment] = STATE(99), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(83), + [97] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(241), + [sym_string_literal] = STATE(221), + [sym_raw_string_literal] = STATE(221), + [sym_boolean_literal] = STATE(221), + [sym_line_comment] = STATE(97), + [sym_block_comment] = STATE(97), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(75), [sym_identifier] = ACTIONS(683), [anon_sym_SEMI] = ACTIONS(685), [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(731), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_RPAREN] = ACTIONS(735), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(691), [anon_sym_EQ_GT] = ACTIONS(685), [anon_sym_COLON] = ACTIONS(695), [anon_sym_DOLLAR] = ACTIONS(697), @@ -28535,24 +28051,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(705), [sym_float_literal] = ACTIONS(699), }, - [STATE(100)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), - [sym_line_comment] = STATE(100), - [sym_block_comment] = STATE(100), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(83), + [98] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(241), + [sym_string_literal] = STATE(221), + [sym_raw_string_literal] = STATE(221), + [sym_boolean_literal] = STATE(221), + [sym_line_comment] = STATE(98), + [sym_block_comment] = STATE(98), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(75), [sym_identifier] = ACTIONS(683), [anon_sym_SEMI] = ACTIONS(685), [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_RBRACK] = ACTIONS(731), - [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_RBRACK] = ACTIONS(735), + [anon_sym_LBRACE] = ACTIONS(691), [anon_sym_EQ_GT] = ACTIONS(685), [anon_sym_COLON] = ACTIONS(695), [anon_sym_DOLLAR] = ACTIONS(697), @@ -28657,24 +28173,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(705), [sym_float_literal] = ACTIONS(699), }, - [STATE(101)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), - [sym_line_comment] = STATE(101), - [sym_block_comment] = STATE(101), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(83), + [99] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(241), + [sym_string_literal] = STATE(221), + [sym_raw_string_literal] = STATE(221), + [sym_boolean_literal] = STATE(221), + [sym_line_comment] = STATE(99), + [sym_block_comment] = STATE(99), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(75), [sym_identifier] = ACTIONS(683), [anon_sym_SEMI] = ACTIONS(685), [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(731), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(691), + [anon_sym_RBRACE] = ACTIONS(735), [anon_sym_EQ_GT] = ACTIONS(685), [anon_sym_COLON] = ACTIONS(695), [anon_sym_DOLLAR] = ACTIONS(697), @@ -28779,390 +28295,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(705), [sym_float_literal] = ACTIONS(699), }, - [STATE(102)] = { - [sym_token_tree] = STATE(190), - [sym_token_repetition] = STATE(190), - [sym__literal] = STATE(190), - [sym_string_literal] = STATE(188), - [sym_raw_string_literal] = STATE(188), - [sym_boolean_literal] = STATE(188), - [sym_line_comment] = STATE(102), - [sym_block_comment] = STATE(102), - [aux_sym_token_tree_repeat1] = STATE(112), - [aux_sym__non_special_token_repeat1] = STATE(153), - [sym_identifier] = ACTIONS(711), - [anon_sym_SEMI] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(713), - [anon_sym_RPAREN] = ACTIONS(733), - [anon_sym_LBRACK] = ACTIONS(717), - [anon_sym_LBRACE] = ACTIONS(719), - [anon_sym_EQ_GT] = ACTIONS(576), - [anon_sym_COLON] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(721), - [anon_sym_PLUS] = ACTIONS(586), - [anon_sym_STAR] = ACTIONS(586), - [anon_sym_QMARK] = ACTIONS(576), - [anon_sym_u8] = ACTIONS(711), - [anon_sym_i8] = ACTIONS(711), - [anon_sym_u16] = ACTIONS(711), - [anon_sym_i16] = ACTIONS(711), - [anon_sym_u32] = ACTIONS(711), - [anon_sym_i32] = ACTIONS(711), - [anon_sym_u64] = ACTIONS(711), - [anon_sym_i64] = ACTIONS(711), - [anon_sym_u128] = ACTIONS(711), - [anon_sym_i128] = ACTIONS(711), - [anon_sym_isize] = ACTIONS(711), - [anon_sym_usize] = ACTIONS(711), - [anon_sym_f32] = ACTIONS(711), - [anon_sym_f64] = ACTIONS(711), - [anon_sym_bool] = ACTIONS(711), - [anon_sym_str] = ACTIONS(711), - [anon_sym_char] = ACTIONS(711), - [anon_sym_DASH] = ACTIONS(586), - [anon_sym_SLASH] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PIPE] = ACTIONS(586), - [anon_sym_AMP_AMP] = ACTIONS(576), - [anon_sym_PIPE_PIPE] = ACTIONS(576), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(576), - [anon_sym_DASH_EQ] = ACTIONS(576), - [anon_sym_STAR_EQ] = ACTIONS(576), - [anon_sym_SLASH_EQ] = ACTIONS(576), - [anon_sym_PERCENT_EQ] = ACTIONS(576), - [anon_sym_CARET_EQ] = ACTIONS(576), - [anon_sym_AMP_EQ] = ACTIONS(576), - [anon_sym_PIPE_EQ] = ACTIONS(576), - [anon_sym_LT_LT_EQ] = ACTIONS(576), - [anon_sym_GT_GT_EQ] = ACTIONS(576), - [anon_sym_EQ] = ACTIONS(586), - [anon_sym_EQ_EQ] = ACTIONS(576), - [anon_sym_BANG_EQ] = ACTIONS(576), - [anon_sym_GT] = ACTIONS(586), - [anon_sym_LT] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(576), - [anon_sym_LT_EQ] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(576), - [anon_sym__] = ACTIONS(586), - [anon_sym_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT_DOT] = ACTIONS(576), - [anon_sym_DOT_DOT_EQ] = ACTIONS(576), - [anon_sym_COMMA] = ACTIONS(576), - [anon_sym_COLON_COLON] = ACTIONS(576), - [anon_sym_DASH_GT] = ACTIONS(576), - [anon_sym_POUND] = ACTIONS(576), - [anon_sym_SQUOTE] = ACTIONS(711), - [anon_sym_as] = ACTIONS(711), - [anon_sym_async] = ACTIONS(711), - [anon_sym_await] = ACTIONS(711), - [anon_sym_break] = ACTIONS(711), - [anon_sym_const] = ACTIONS(711), - [anon_sym_continue] = ACTIONS(711), - [anon_sym_default] = ACTIONS(711), - [anon_sym_enum] = ACTIONS(711), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_for] = ACTIONS(711), - [anon_sym_gen] = ACTIONS(711), - [anon_sym_if] = ACTIONS(711), - [anon_sym_impl] = ACTIONS(711), - [anon_sym_let] = ACTIONS(711), - [anon_sym_loop] = ACTIONS(711), - [anon_sym_match] = ACTIONS(711), - [anon_sym_mod] = ACTIONS(711), - [anon_sym_pub] = ACTIONS(711), - [anon_sym_return] = ACTIONS(711), - [anon_sym_static] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(711), - [anon_sym_trait] = ACTIONS(711), - [anon_sym_type] = ACTIONS(711), - [anon_sym_union] = ACTIONS(711), - [anon_sym_unsafe] = ACTIONS(711), - [anon_sym_use] = ACTIONS(711), - [anon_sym_where] = ACTIONS(711), - [anon_sym_while] = ACTIONS(711), - [sym_mutable_specifier] = ACTIONS(711), - [sym_integer_literal] = ACTIONS(590), - [aux_sym_string_literal_token1] = ACTIONS(592), - [sym_char_literal] = ACTIONS(590), - [anon_sym_true] = ACTIONS(594), - [anon_sym_false] = ACTIONS(594), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(711), - [sym_super] = ACTIONS(711), - [sym_crate] = ACTIONS(711), - [sym_metavariable] = ACTIONS(723), - [sym__raw_string_literal_start] = ACTIONS(598), - [sym_float_literal] = ACTIONS(590), - }, - [STATE(103)] = { - [sym_token_tree] = STATE(190), - [sym_token_repetition] = STATE(190), - [sym__literal] = STATE(190), - [sym_string_literal] = STATE(188), - [sym_raw_string_literal] = STATE(188), - [sym_boolean_literal] = STATE(188), - [sym_line_comment] = STATE(103), - [sym_block_comment] = STATE(103), - [aux_sym_token_tree_repeat1] = STATE(119), - [aux_sym__non_special_token_repeat1] = STATE(153), - [sym_identifier] = ACTIONS(711), - [anon_sym_SEMI] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(713), - [anon_sym_LBRACK] = ACTIONS(717), - [anon_sym_RBRACK] = ACTIONS(733), - [anon_sym_LBRACE] = ACTIONS(719), - [anon_sym_EQ_GT] = ACTIONS(576), - [anon_sym_COLON] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(721), - [anon_sym_PLUS] = ACTIONS(586), - [anon_sym_STAR] = ACTIONS(586), - [anon_sym_QMARK] = ACTIONS(576), - [anon_sym_u8] = ACTIONS(711), - [anon_sym_i8] = ACTIONS(711), - [anon_sym_u16] = ACTIONS(711), - [anon_sym_i16] = ACTIONS(711), - [anon_sym_u32] = ACTIONS(711), - [anon_sym_i32] = ACTIONS(711), - [anon_sym_u64] = ACTIONS(711), - [anon_sym_i64] = ACTIONS(711), - [anon_sym_u128] = ACTIONS(711), - [anon_sym_i128] = ACTIONS(711), - [anon_sym_isize] = ACTIONS(711), - [anon_sym_usize] = ACTIONS(711), - [anon_sym_f32] = ACTIONS(711), - [anon_sym_f64] = ACTIONS(711), - [anon_sym_bool] = ACTIONS(711), - [anon_sym_str] = ACTIONS(711), - [anon_sym_char] = ACTIONS(711), - [anon_sym_DASH] = ACTIONS(586), - [anon_sym_SLASH] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PIPE] = ACTIONS(586), - [anon_sym_AMP_AMP] = ACTIONS(576), - [anon_sym_PIPE_PIPE] = ACTIONS(576), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(576), - [anon_sym_DASH_EQ] = ACTIONS(576), - [anon_sym_STAR_EQ] = ACTIONS(576), - [anon_sym_SLASH_EQ] = ACTIONS(576), - [anon_sym_PERCENT_EQ] = ACTIONS(576), - [anon_sym_CARET_EQ] = ACTIONS(576), - [anon_sym_AMP_EQ] = ACTIONS(576), - [anon_sym_PIPE_EQ] = ACTIONS(576), - [anon_sym_LT_LT_EQ] = ACTIONS(576), - [anon_sym_GT_GT_EQ] = ACTIONS(576), - [anon_sym_EQ] = ACTIONS(586), - [anon_sym_EQ_EQ] = ACTIONS(576), - [anon_sym_BANG_EQ] = ACTIONS(576), - [anon_sym_GT] = ACTIONS(586), - [anon_sym_LT] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(576), - [anon_sym_LT_EQ] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(576), - [anon_sym__] = ACTIONS(586), - [anon_sym_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT_DOT] = ACTIONS(576), - [anon_sym_DOT_DOT_EQ] = ACTIONS(576), - [anon_sym_COMMA] = ACTIONS(576), - [anon_sym_COLON_COLON] = ACTIONS(576), - [anon_sym_DASH_GT] = ACTIONS(576), - [anon_sym_POUND] = ACTIONS(576), - [anon_sym_SQUOTE] = ACTIONS(711), - [anon_sym_as] = ACTIONS(711), - [anon_sym_async] = ACTIONS(711), - [anon_sym_await] = ACTIONS(711), - [anon_sym_break] = ACTIONS(711), - [anon_sym_const] = ACTIONS(711), - [anon_sym_continue] = ACTIONS(711), - [anon_sym_default] = ACTIONS(711), - [anon_sym_enum] = ACTIONS(711), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_for] = ACTIONS(711), - [anon_sym_gen] = ACTIONS(711), - [anon_sym_if] = ACTIONS(711), - [anon_sym_impl] = ACTIONS(711), - [anon_sym_let] = ACTIONS(711), - [anon_sym_loop] = ACTIONS(711), - [anon_sym_match] = ACTIONS(711), - [anon_sym_mod] = ACTIONS(711), - [anon_sym_pub] = ACTIONS(711), - [anon_sym_return] = ACTIONS(711), - [anon_sym_static] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(711), - [anon_sym_trait] = ACTIONS(711), - [anon_sym_type] = ACTIONS(711), - [anon_sym_union] = ACTIONS(711), - [anon_sym_unsafe] = ACTIONS(711), - [anon_sym_use] = ACTIONS(711), - [anon_sym_where] = ACTIONS(711), - [anon_sym_while] = ACTIONS(711), - [sym_mutable_specifier] = ACTIONS(711), - [sym_integer_literal] = ACTIONS(590), - [aux_sym_string_literal_token1] = ACTIONS(592), - [sym_char_literal] = ACTIONS(590), - [anon_sym_true] = ACTIONS(594), - [anon_sym_false] = ACTIONS(594), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(711), - [sym_super] = ACTIONS(711), - [sym_crate] = ACTIONS(711), - [sym_metavariable] = ACTIONS(723), - [sym__raw_string_literal_start] = ACTIONS(598), - [sym_float_literal] = ACTIONS(590), - }, - [STATE(104)] = { - [sym_token_tree] = STATE(190), - [sym_token_repetition] = STATE(190), - [sym__literal] = STATE(190), - [sym_string_literal] = STATE(188), - [sym_raw_string_literal] = STATE(188), - [sym_boolean_literal] = STATE(188), - [sym_line_comment] = STATE(104), - [sym_block_comment] = STATE(104), - [aux_sym_token_tree_repeat1] = STATE(128), - [aux_sym__non_special_token_repeat1] = STATE(153), - [sym_identifier] = ACTIONS(711), - [anon_sym_SEMI] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(713), - [anon_sym_LBRACK] = ACTIONS(717), - [anon_sym_LBRACE] = ACTIONS(719), - [anon_sym_RBRACE] = ACTIONS(733), - [anon_sym_EQ_GT] = ACTIONS(576), - [anon_sym_COLON] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(721), - [anon_sym_PLUS] = ACTIONS(586), - [anon_sym_STAR] = ACTIONS(586), - [anon_sym_QMARK] = ACTIONS(576), - [anon_sym_u8] = ACTIONS(711), - [anon_sym_i8] = ACTIONS(711), - [anon_sym_u16] = ACTIONS(711), - [anon_sym_i16] = ACTIONS(711), - [anon_sym_u32] = ACTIONS(711), - [anon_sym_i32] = ACTIONS(711), - [anon_sym_u64] = ACTIONS(711), - [anon_sym_i64] = ACTIONS(711), - [anon_sym_u128] = ACTIONS(711), - [anon_sym_i128] = ACTIONS(711), - [anon_sym_isize] = ACTIONS(711), - [anon_sym_usize] = ACTIONS(711), - [anon_sym_f32] = ACTIONS(711), - [anon_sym_f64] = ACTIONS(711), - [anon_sym_bool] = ACTIONS(711), - [anon_sym_str] = ACTIONS(711), - [anon_sym_char] = ACTIONS(711), - [anon_sym_DASH] = ACTIONS(586), - [anon_sym_SLASH] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PIPE] = ACTIONS(586), - [anon_sym_AMP_AMP] = ACTIONS(576), - [anon_sym_PIPE_PIPE] = ACTIONS(576), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(576), - [anon_sym_DASH_EQ] = ACTIONS(576), - [anon_sym_STAR_EQ] = ACTIONS(576), - [anon_sym_SLASH_EQ] = ACTIONS(576), - [anon_sym_PERCENT_EQ] = ACTIONS(576), - [anon_sym_CARET_EQ] = ACTIONS(576), - [anon_sym_AMP_EQ] = ACTIONS(576), - [anon_sym_PIPE_EQ] = ACTIONS(576), - [anon_sym_LT_LT_EQ] = ACTIONS(576), - [anon_sym_GT_GT_EQ] = ACTIONS(576), - [anon_sym_EQ] = ACTIONS(586), - [anon_sym_EQ_EQ] = ACTIONS(576), - [anon_sym_BANG_EQ] = ACTIONS(576), - [anon_sym_GT] = ACTIONS(586), - [anon_sym_LT] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(576), - [anon_sym_LT_EQ] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(576), - [anon_sym__] = ACTIONS(586), - [anon_sym_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT_DOT] = ACTIONS(576), - [anon_sym_DOT_DOT_EQ] = ACTIONS(576), - [anon_sym_COMMA] = ACTIONS(576), - [anon_sym_COLON_COLON] = ACTIONS(576), - [anon_sym_DASH_GT] = ACTIONS(576), - [anon_sym_POUND] = ACTIONS(576), - [anon_sym_SQUOTE] = ACTIONS(711), - [anon_sym_as] = ACTIONS(711), - [anon_sym_async] = ACTIONS(711), - [anon_sym_await] = ACTIONS(711), - [anon_sym_break] = ACTIONS(711), - [anon_sym_const] = ACTIONS(711), - [anon_sym_continue] = ACTIONS(711), - [anon_sym_default] = ACTIONS(711), - [anon_sym_enum] = ACTIONS(711), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_for] = ACTIONS(711), - [anon_sym_gen] = ACTIONS(711), - [anon_sym_if] = ACTIONS(711), - [anon_sym_impl] = ACTIONS(711), - [anon_sym_let] = ACTIONS(711), - [anon_sym_loop] = ACTIONS(711), - [anon_sym_match] = ACTIONS(711), - [anon_sym_mod] = ACTIONS(711), - [anon_sym_pub] = ACTIONS(711), - [anon_sym_return] = ACTIONS(711), - [anon_sym_static] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(711), - [anon_sym_trait] = ACTIONS(711), - [anon_sym_type] = ACTIONS(711), - [anon_sym_union] = ACTIONS(711), - [anon_sym_unsafe] = ACTIONS(711), - [anon_sym_use] = ACTIONS(711), - [anon_sym_where] = ACTIONS(711), - [anon_sym_while] = ACTIONS(711), - [sym_mutable_specifier] = ACTIONS(711), - [sym_integer_literal] = ACTIONS(590), - [aux_sym_string_literal_token1] = ACTIONS(592), - [sym_char_literal] = ACTIONS(590), - [anon_sym_true] = ACTIONS(594), - [anon_sym_false] = ACTIONS(594), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(711), - [sym_super] = ACTIONS(711), - [sym_crate] = ACTIONS(711), - [sym_metavariable] = ACTIONS(723), - [sym__raw_string_literal_start] = ACTIONS(598), - [sym_float_literal] = ACTIONS(590), - }, - [STATE(105)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), - [sym_line_comment] = STATE(105), - [sym_block_comment] = STATE(105), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(133), + [100] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(241), + [sym_string_literal] = STATE(221), + [sym_raw_string_literal] = STATE(221), + [sym_boolean_literal] = STATE(221), + [sym_line_comment] = STATE(100), + [sym_block_comment] = STATE(100), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(129), [sym_identifier] = ACTIONS(683), [anon_sym_SEMI] = ACTIONS(685), [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(735), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_RPAREN] = ACTIONS(737), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(691), [anon_sym_EQ_GT] = ACTIONS(685), [anon_sym_COLON] = ACTIONS(695), [anon_sym_DOLLAR] = ACTIONS(697), @@ -29267,24 +28417,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(705), [sym_float_literal] = ACTIONS(699), }, - [STATE(106)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), - [sym_line_comment] = STATE(106), - [sym_block_comment] = STATE(106), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(109), + [101] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(241), + [sym_string_literal] = STATE(221), + [sym_raw_string_literal] = STATE(221), + [sym_boolean_literal] = STATE(221), + [sym_line_comment] = STATE(101), + [sym_block_comment] = STATE(101), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(105), [sym_identifier] = ACTIONS(683), [anon_sym_SEMI] = ACTIONS(685), [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_RBRACK] = ACTIONS(735), - [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_RBRACK] = ACTIONS(737), + [anon_sym_LBRACE] = ACTIONS(691), [anon_sym_EQ_GT] = ACTIONS(685), [anon_sym_COLON] = ACTIONS(695), [anon_sym_DOLLAR] = ACTIONS(697), @@ -29389,24 +28539,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(705), [sym_float_literal] = ACTIONS(699), }, - [STATE(107)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), - [sym_line_comment] = STATE(107), - [sym_block_comment] = STATE(107), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(110), + [102] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(241), + [sym_string_literal] = STATE(221), + [sym_raw_string_literal] = STATE(221), + [sym_boolean_literal] = STATE(221), + [sym_line_comment] = STATE(102), + [sym_block_comment] = STATE(102), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(106), [sym_identifier] = ACTIONS(683), [anon_sym_SEMI] = ACTIONS(685), [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(735), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(691), + [anon_sym_RBRACE] = ACTIONS(737), [anon_sym_EQ_GT] = ACTIONS(685), [anon_sym_COLON] = ACTIONS(695), [anon_sym_DOLLAR] = ACTIONS(697), @@ -29511,24 +28661,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(705), [sym_float_literal] = ACTIONS(699), }, - [STATE(108)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), - [sym_line_comment] = STATE(108), - [sym_block_comment] = STATE(108), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(83), + [103] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(241), + [sym_string_literal] = STATE(221), + [sym_raw_string_literal] = STATE(221), + [sym_boolean_literal] = STATE(221), + [sym_line_comment] = STATE(103), + [sym_block_comment] = STATE(103), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(107), [sym_identifier] = ACTIONS(683), [anon_sym_SEMI] = ACTIONS(685), [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_RBRACK] = ACTIONS(707), - [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_RPAREN] = ACTIONS(731), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(691), [anon_sym_EQ_GT] = ACTIONS(685), [anon_sym_COLON] = ACTIONS(695), [anon_sym_DOLLAR] = ACTIONS(697), @@ -29633,24 +28783,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(705), [sym_float_literal] = ACTIONS(699), }, - [STATE(109)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), - [sym_line_comment] = STATE(109), - [sym_block_comment] = STATE(109), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(83), + [104] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(241), + [sym_string_literal] = STATE(221), + [sym_raw_string_literal] = STATE(221), + [sym_boolean_literal] = STATE(221), + [sym_line_comment] = STATE(104), + [sym_block_comment] = STATE(104), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(75), [sym_identifier] = ACTIONS(683), [anon_sym_SEMI] = ACTIONS(685), [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_RBRACK] = ACTIONS(737), - [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(691), + [anon_sym_RBRACE] = ACTIONS(739), [anon_sym_EQ_GT] = ACTIONS(685), [anon_sym_COLON] = ACTIONS(695), [anon_sym_DOLLAR] = ACTIONS(697), @@ -29755,24 +28905,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(705), [sym_float_literal] = ACTIONS(699), }, - [STATE(110)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), - [sym_line_comment] = STATE(110), - [sym_block_comment] = STATE(110), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(83), + [105] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(241), + [sym_string_literal] = STATE(221), + [sym_raw_string_literal] = STATE(221), + [sym_boolean_literal] = STATE(221), + [sym_line_comment] = STATE(105), + [sym_block_comment] = STATE(105), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(75), [sym_identifier] = ACTIONS(683), [anon_sym_SEMI] = ACTIONS(685), [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(737), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_RBRACK] = ACTIONS(741), + [anon_sym_LBRACE] = ACTIONS(691), [anon_sym_EQ_GT] = ACTIONS(685), [anon_sym_COLON] = ACTIONS(695), [anon_sym_DOLLAR] = ACTIONS(697), @@ -29877,24 +29027,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(705), [sym_float_literal] = ACTIONS(699), }, - [STATE(111)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), - [sym_line_comment] = STATE(111), - [sym_block_comment] = STATE(111), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(83), + [106] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(241), + [sym_string_literal] = STATE(221), + [sym_raw_string_literal] = STATE(221), + [sym_boolean_literal] = STATE(221), + [sym_line_comment] = STATE(106), + [sym_block_comment] = STATE(106), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(75), [sym_identifier] = ACTIONS(683), [anon_sym_SEMI] = ACTIONS(685), [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_RBRACK] = ACTIONS(729), - [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(691), + [anon_sym_RBRACE] = ACTIONS(741), [anon_sym_EQ_GT] = ACTIONS(685), [anon_sym_COLON] = ACTIONS(695), [anon_sym_DOLLAR] = ACTIONS(697), @@ -29999,146 +29149,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(705), [sym_float_literal] = ACTIONS(699), }, - [STATE(112)] = { - [sym_token_tree] = STATE(190), - [sym_token_repetition] = STATE(190), - [sym__literal] = STATE(190), - [sym_string_literal] = STATE(188), - [sym_raw_string_literal] = STATE(188), - [sym_boolean_literal] = STATE(188), - [sym_line_comment] = STATE(112), - [sym_block_comment] = STATE(112), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(153), - [sym_identifier] = ACTIONS(711), - [anon_sym_SEMI] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(713), - [anon_sym_RPAREN] = ACTIONS(739), - [anon_sym_LBRACK] = ACTIONS(717), - [anon_sym_LBRACE] = ACTIONS(719), - [anon_sym_EQ_GT] = ACTIONS(576), - [anon_sym_COLON] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(721), - [anon_sym_PLUS] = ACTIONS(586), - [anon_sym_STAR] = ACTIONS(586), - [anon_sym_QMARK] = ACTIONS(576), - [anon_sym_u8] = ACTIONS(711), - [anon_sym_i8] = ACTIONS(711), - [anon_sym_u16] = ACTIONS(711), - [anon_sym_i16] = ACTIONS(711), - [anon_sym_u32] = ACTIONS(711), - [anon_sym_i32] = ACTIONS(711), - [anon_sym_u64] = ACTIONS(711), - [anon_sym_i64] = ACTIONS(711), - [anon_sym_u128] = ACTIONS(711), - [anon_sym_i128] = ACTIONS(711), - [anon_sym_isize] = ACTIONS(711), - [anon_sym_usize] = ACTIONS(711), - [anon_sym_f32] = ACTIONS(711), - [anon_sym_f64] = ACTIONS(711), - [anon_sym_bool] = ACTIONS(711), - [anon_sym_str] = ACTIONS(711), - [anon_sym_char] = ACTIONS(711), - [anon_sym_DASH] = ACTIONS(586), - [anon_sym_SLASH] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PIPE] = ACTIONS(586), - [anon_sym_AMP_AMP] = ACTIONS(576), - [anon_sym_PIPE_PIPE] = ACTIONS(576), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(576), - [anon_sym_DASH_EQ] = ACTIONS(576), - [anon_sym_STAR_EQ] = ACTIONS(576), - [anon_sym_SLASH_EQ] = ACTIONS(576), - [anon_sym_PERCENT_EQ] = ACTIONS(576), - [anon_sym_CARET_EQ] = ACTIONS(576), - [anon_sym_AMP_EQ] = ACTIONS(576), - [anon_sym_PIPE_EQ] = ACTIONS(576), - [anon_sym_LT_LT_EQ] = ACTIONS(576), - [anon_sym_GT_GT_EQ] = ACTIONS(576), - [anon_sym_EQ] = ACTIONS(586), - [anon_sym_EQ_EQ] = ACTIONS(576), - [anon_sym_BANG_EQ] = ACTIONS(576), - [anon_sym_GT] = ACTIONS(586), - [anon_sym_LT] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(576), - [anon_sym_LT_EQ] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(576), - [anon_sym__] = ACTIONS(586), - [anon_sym_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT_DOT] = ACTIONS(576), - [anon_sym_DOT_DOT_EQ] = ACTIONS(576), - [anon_sym_COMMA] = ACTIONS(576), - [anon_sym_COLON_COLON] = ACTIONS(576), - [anon_sym_DASH_GT] = ACTIONS(576), - [anon_sym_POUND] = ACTIONS(576), - [anon_sym_SQUOTE] = ACTIONS(711), - [anon_sym_as] = ACTIONS(711), - [anon_sym_async] = ACTIONS(711), - [anon_sym_await] = ACTIONS(711), - [anon_sym_break] = ACTIONS(711), - [anon_sym_const] = ACTIONS(711), - [anon_sym_continue] = ACTIONS(711), - [anon_sym_default] = ACTIONS(711), - [anon_sym_enum] = ACTIONS(711), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_for] = ACTIONS(711), - [anon_sym_gen] = ACTIONS(711), - [anon_sym_if] = ACTIONS(711), - [anon_sym_impl] = ACTIONS(711), - [anon_sym_let] = ACTIONS(711), - [anon_sym_loop] = ACTIONS(711), - [anon_sym_match] = ACTIONS(711), - [anon_sym_mod] = ACTIONS(711), - [anon_sym_pub] = ACTIONS(711), - [anon_sym_return] = ACTIONS(711), - [anon_sym_static] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(711), - [anon_sym_trait] = ACTIONS(711), - [anon_sym_type] = ACTIONS(711), - [anon_sym_union] = ACTIONS(711), - [anon_sym_unsafe] = ACTIONS(711), - [anon_sym_use] = ACTIONS(711), - [anon_sym_where] = ACTIONS(711), - [anon_sym_while] = ACTIONS(711), - [sym_mutable_specifier] = ACTIONS(711), - [sym_integer_literal] = ACTIONS(590), - [aux_sym_string_literal_token1] = ACTIONS(592), - [sym_char_literal] = ACTIONS(590), - [anon_sym_true] = ACTIONS(594), - [anon_sym_false] = ACTIONS(594), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(711), - [sym_super] = ACTIONS(711), - [sym_crate] = ACTIONS(711), - [sym_metavariable] = ACTIONS(723), - [sym__raw_string_literal_start] = ACTIONS(598), - [sym_float_literal] = ACTIONS(590), - }, - [STATE(113)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), - [sym_line_comment] = STATE(113), - [sym_block_comment] = STATE(113), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(116), + [107] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(241), + [sym_string_literal] = STATE(221), + [sym_raw_string_literal] = STATE(221), + [sym_boolean_literal] = STATE(221), + [sym_line_comment] = STATE(107), + [sym_block_comment] = STATE(107), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(75), [sym_identifier] = ACTIONS(683), [anon_sym_SEMI] = ACTIONS(685), [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(741), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_RPAREN] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(691), [anon_sym_EQ_GT] = ACTIONS(685), [anon_sym_COLON] = ACTIONS(695), [anon_sym_DOLLAR] = ACTIONS(697), @@ -30243,24 +29271,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(705), [sym_float_literal] = ACTIONS(699), }, - [STATE(114)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), - [sym_line_comment] = STATE(114), - [sym_block_comment] = STATE(114), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(117), + [108] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(241), + [sym_string_literal] = STATE(221), + [sym_raw_string_literal] = STATE(221), + [sym_boolean_literal] = STATE(221), + [sym_line_comment] = STATE(108), + [sym_block_comment] = STATE(108), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(112), [sym_identifier] = ACTIONS(683), [anon_sym_SEMI] = ACTIONS(685), [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_RBRACK] = ACTIONS(741), - [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_RPAREN] = ACTIONS(743), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(691), [anon_sym_EQ_GT] = ACTIONS(685), [anon_sym_COLON] = ACTIONS(695), [anon_sym_DOLLAR] = ACTIONS(697), @@ -30365,24 +29393,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(705), [sym_float_literal] = ACTIONS(699), }, - [STATE(115)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), - [sym_line_comment] = STATE(115), - [sym_block_comment] = STATE(115), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(118), + [109] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(241), + [sym_string_literal] = STATE(221), + [sym_raw_string_literal] = STATE(221), + [sym_boolean_literal] = STATE(221), + [sym_line_comment] = STATE(109), + [sym_block_comment] = STATE(109), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(113), [sym_identifier] = ACTIONS(683), [anon_sym_SEMI] = ACTIONS(685), [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(741), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_RBRACK] = ACTIONS(743), + [anon_sym_LBRACE] = ACTIONS(691), [anon_sym_EQ_GT] = ACTIONS(685), [anon_sym_COLON] = ACTIONS(695), [anon_sym_DOLLAR] = ACTIONS(697), @@ -30487,24 +29515,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(705), [sym_float_literal] = ACTIONS(699), }, - [STATE(116)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), - [sym_line_comment] = STATE(116), - [sym_block_comment] = STATE(116), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(83), + [110] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(241), + [sym_string_literal] = STATE(221), + [sym_raw_string_literal] = STATE(221), + [sym_boolean_literal] = STATE(221), + [sym_line_comment] = STATE(110), + [sym_block_comment] = STATE(110), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(114), [sym_identifier] = ACTIONS(683), [anon_sym_SEMI] = ACTIONS(685), [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(743), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(691), + [anon_sym_RBRACE] = ACTIONS(743), [anon_sym_EQ_GT] = ACTIONS(685), [anon_sym_COLON] = ACTIONS(695), [anon_sym_DOLLAR] = ACTIONS(697), @@ -30609,146 +29637,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(705), [sym_float_literal] = ACTIONS(699), }, - [STATE(117)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), - [sym_line_comment] = STATE(117), - [sym_block_comment] = STATE(117), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(683), - [anon_sym_SEMI] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_RBRACK] = ACTIONS(743), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_COLON] = ACTIONS(695), - [anon_sym_DOLLAR] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_QMARK] = ACTIONS(685), - [anon_sym_u8] = ACTIONS(683), - [anon_sym_i8] = ACTIONS(683), - [anon_sym_u16] = ACTIONS(683), - [anon_sym_i16] = ACTIONS(683), - [anon_sym_u32] = ACTIONS(683), - [anon_sym_i32] = ACTIONS(683), - [anon_sym_u64] = ACTIONS(683), - [anon_sym_i64] = ACTIONS(683), - [anon_sym_u128] = ACTIONS(683), - [anon_sym_i128] = ACTIONS(683), - [anon_sym_isize] = ACTIONS(683), - [anon_sym_usize] = ACTIONS(683), - [anon_sym_f32] = ACTIONS(683), - [anon_sym_f64] = ACTIONS(683), - [anon_sym_bool] = ACTIONS(683), - [anon_sym_str] = ACTIONS(683), - [anon_sym_char] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(695), - [anon_sym_PERCENT] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(695), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_AMP] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(685), - [anon_sym_PIPE_PIPE] = ACTIONS(685), - [anon_sym_LT_LT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(695), - [anon_sym_PLUS_EQ] = ACTIONS(685), - [anon_sym_DASH_EQ] = ACTIONS(685), - [anon_sym_STAR_EQ] = ACTIONS(685), - [anon_sym_SLASH_EQ] = ACTIONS(685), - [anon_sym_PERCENT_EQ] = ACTIONS(685), - [anon_sym_CARET_EQ] = ACTIONS(685), - [anon_sym_AMP_EQ] = ACTIONS(685), - [anon_sym_PIPE_EQ] = ACTIONS(685), - [anon_sym_LT_LT_EQ] = ACTIONS(685), - [anon_sym_GT_GT_EQ] = ACTIONS(685), - [anon_sym_EQ] = ACTIONS(695), - [anon_sym_EQ_EQ] = ACTIONS(685), - [anon_sym_BANG_EQ] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_GT_EQ] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(685), - [anon_sym_AT] = ACTIONS(685), - [anon_sym__] = ACTIONS(695), - [anon_sym_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [anon_sym_DOT_DOT_EQ] = ACTIONS(685), - [anon_sym_COMMA] = ACTIONS(685), - [anon_sym_COLON_COLON] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(685), - [anon_sym_POUND] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(683), - [anon_sym_as] = ACTIONS(683), - [anon_sym_async] = ACTIONS(683), - [anon_sym_await] = ACTIONS(683), - [anon_sym_break] = ACTIONS(683), - [anon_sym_const] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(683), - [anon_sym_default] = ACTIONS(683), - [anon_sym_enum] = ACTIONS(683), - [anon_sym_fn] = ACTIONS(683), - [anon_sym_for] = ACTIONS(683), - [anon_sym_gen] = ACTIONS(683), - [anon_sym_if] = ACTIONS(683), - [anon_sym_impl] = ACTIONS(683), - [anon_sym_let] = ACTIONS(683), - [anon_sym_loop] = ACTIONS(683), - [anon_sym_match] = ACTIONS(683), - [anon_sym_mod] = ACTIONS(683), - [anon_sym_pub] = ACTIONS(683), - [anon_sym_return] = ACTIONS(683), - [anon_sym_static] = ACTIONS(683), - [anon_sym_struct] = ACTIONS(683), - [anon_sym_trait] = ACTIONS(683), - [anon_sym_type] = ACTIONS(683), - [anon_sym_union] = ACTIONS(683), - [anon_sym_unsafe] = ACTIONS(683), - [anon_sym_use] = ACTIONS(683), - [anon_sym_where] = ACTIONS(683), - [anon_sym_while] = ACTIONS(683), - [sym_mutable_specifier] = ACTIONS(683), - [sym_integer_literal] = ACTIONS(699), - [aux_sym_string_literal_token1] = ACTIONS(701), - [sym_char_literal] = ACTIONS(699), - [anon_sym_true] = ACTIONS(703), - [anon_sym_false] = ACTIONS(703), + [111] = { + [sym_token_tree] = STATE(174), + [sym_token_repetition] = STATE(174), + [sym__literal] = STATE(174), + [sym_string_literal] = STATE(194), + [sym_raw_string_literal] = STATE(194), + [sym_boolean_literal] = STATE(194), + [sym_line_comment] = STATE(111), + [sym_block_comment] = STATE(111), + [aux_sym_token_tree_repeat1] = STATE(126), + [aux_sym__non_special_token_repeat1] = STATE(151), + [sym_identifier] = ACTIONS(707), + [anon_sym_SEMI] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_RPAREN] = ACTIONS(745), + [anon_sym_LBRACK] = ACTIONS(711), + [anon_sym_LBRACE] = ACTIONS(715), + [anon_sym_EQ_GT] = ACTIONS(576), + [anon_sym_COLON] = ACTIONS(586), + [anon_sym_DOLLAR] = ACTIONS(717), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(586), + [anon_sym_QMARK] = ACTIONS(576), + [anon_sym_u8] = ACTIONS(707), + [anon_sym_i8] = ACTIONS(707), + [anon_sym_u16] = ACTIONS(707), + [anon_sym_i16] = ACTIONS(707), + [anon_sym_u32] = ACTIONS(707), + [anon_sym_i32] = ACTIONS(707), + [anon_sym_u64] = ACTIONS(707), + [anon_sym_i64] = ACTIONS(707), + [anon_sym_u128] = ACTIONS(707), + [anon_sym_i128] = ACTIONS(707), + [anon_sym_isize] = ACTIONS(707), + [anon_sym_usize] = ACTIONS(707), + [anon_sym_f32] = ACTIONS(707), + [anon_sym_f64] = ACTIONS(707), + [anon_sym_bool] = ACTIONS(707), + [anon_sym_str] = ACTIONS(707), + [anon_sym_char] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_PERCENT] = ACTIONS(586), + [anon_sym_CARET] = ACTIONS(586), + [anon_sym_BANG] = ACTIONS(586), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PIPE] = ACTIONS(586), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS_EQ] = ACTIONS(576), + [anon_sym_DASH_EQ] = ACTIONS(576), + [anon_sym_STAR_EQ] = ACTIONS(576), + [anon_sym_SLASH_EQ] = ACTIONS(576), + [anon_sym_PERCENT_EQ] = ACTIONS(576), + [anon_sym_CARET_EQ] = ACTIONS(576), + [anon_sym_AMP_EQ] = ACTIONS(576), + [anon_sym_PIPE_EQ] = ACTIONS(576), + [anon_sym_LT_LT_EQ] = ACTIONS(576), + [anon_sym_GT_GT_EQ] = ACTIONS(576), + [anon_sym_EQ] = ACTIONS(586), + [anon_sym_EQ_EQ] = ACTIONS(576), + [anon_sym_BANG_EQ] = ACTIONS(576), + [anon_sym_GT] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(586), + [anon_sym_GT_EQ] = ACTIONS(576), + [anon_sym_LT_EQ] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(576), + [anon_sym__] = ACTIONS(586), + [anon_sym_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_DOT] = ACTIONS(576), + [anon_sym_DOT_DOT_EQ] = ACTIONS(576), + [anon_sym_COMMA] = ACTIONS(576), + [anon_sym_COLON_COLON] = ACTIONS(576), + [anon_sym_DASH_GT] = ACTIONS(576), + [anon_sym_POUND] = ACTIONS(576), + [anon_sym_SQUOTE] = ACTIONS(707), + [anon_sym_as] = ACTIONS(707), + [anon_sym_async] = ACTIONS(707), + [anon_sym_await] = ACTIONS(707), + [anon_sym_break] = ACTIONS(707), + [anon_sym_const] = ACTIONS(707), + [anon_sym_continue] = ACTIONS(707), + [anon_sym_default] = ACTIONS(707), + [anon_sym_enum] = ACTIONS(707), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_for] = ACTIONS(707), + [anon_sym_gen] = ACTIONS(707), + [anon_sym_if] = ACTIONS(707), + [anon_sym_impl] = ACTIONS(707), + [anon_sym_let] = ACTIONS(707), + [anon_sym_loop] = ACTIONS(707), + [anon_sym_match] = ACTIONS(707), + [anon_sym_mod] = ACTIONS(707), + [anon_sym_pub] = ACTIONS(707), + [anon_sym_return] = ACTIONS(707), + [anon_sym_static] = ACTIONS(707), + [anon_sym_struct] = ACTIONS(707), + [anon_sym_trait] = ACTIONS(707), + [anon_sym_type] = ACTIONS(707), + [anon_sym_union] = ACTIONS(707), + [anon_sym_unsafe] = ACTIONS(707), + [anon_sym_use] = ACTIONS(707), + [anon_sym_where] = ACTIONS(707), + [anon_sym_while] = ACTIONS(707), + [sym_mutable_specifier] = ACTIONS(707), + [sym_integer_literal] = ACTIONS(590), + [aux_sym_string_literal_token1] = ACTIONS(592), + [sym_char_literal] = ACTIONS(590), + [anon_sym_true] = ACTIONS(594), + [anon_sym_false] = ACTIONS(594), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(683), - [sym_super] = ACTIONS(683), - [sym_crate] = ACTIONS(683), - [sym__raw_string_literal_start] = ACTIONS(705), - [sym_float_literal] = ACTIONS(699), + [sym_self] = ACTIONS(707), + [sym_super] = ACTIONS(707), + [sym_crate] = ACTIONS(707), + [sym_metavariable] = ACTIONS(719), + [sym__raw_string_literal_start] = ACTIONS(598), + [sym_float_literal] = ACTIONS(590), }, - [STATE(118)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), - [sym_line_comment] = STATE(118), - [sym_block_comment] = STATE(118), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(83), + [112] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(241), + [sym_string_literal] = STATE(221), + [sym_raw_string_literal] = STATE(221), + [sym_boolean_literal] = STATE(221), + [sym_line_comment] = STATE(112), + [sym_block_comment] = STATE(112), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(75), [sym_identifier] = ACTIONS(683), [anon_sym_SEMI] = ACTIONS(685), [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(743), + [anon_sym_RPAREN] = ACTIONS(747), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(691), [anon_sym_EQ_GT] = ACTIONS(685), [anon_sym_COLON] = ACTIONS(695), [anon_sym_DOLLAR] = ACTIONS(697), @@ -30853,146 +29881,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(705), [sym_float_literal] = ACTIONS(699), }, - [STATE(119)] = { - [sym_token_tree] = STATE(190), - [sym_token_repetition] = STATE(190), - [sym__literal] = STATE(190), - [sym_string_literal] = STATE(188), - [sym_raw_string_literal] = STATE(188), - [sym_boolean_literal] = STATE(188), - [sym_line_comment] = STATE(119), - [sym_block_comment] = STATE(119), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(153), - [sym_identifier] = ACTIONS(711), - [anon_sym_SEMI] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(713), - [anon_sym_LBRACK] = ACTIONS(717), - [anon_sym_RBRACK] = ACTIONS(739), - [anon_sym_LBRACE] = ACTIONS(719), - [anon_sym_EQ_GT] = ACTIONS(576), - [anon_sym_COLON] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(721), - [anon_sym_PLUS] = ACTIONS(586), - [anon_sym_STAR] = ACTIONS(586), - [anon_sym_QMARK] = ACTIONS(576), - [anon_sym_u8] = ACTIONS(711), - [anon_sym_i8] = ACTIONS(711), - [anon_sym_u16] = ACTIONS(711), - [anon_sym_i16] = ACTIONS(711), - [anon_sym_u32] = ACTIONS(711), - [anon_sym_i32] = ACTIONS(711), - [anon_sym_u64] = ACTIONS(711), - [anon_sym_i64] = ACTIONS(711), - [anon_sym_u128] = ACTIONS(711), - [anon_sym_i128] = ACTIONS(711), - [anon_sym_isize] = ACTIONS(711), - [anon_sym_usize] = ACTIONS(711), - [anon_sym_f32] = ACTIONS(711), - [anon_sym_f64] = ACTIONS(711), - [anon_sym_bool] = ACTIONS(711), - [anon_sym_str] = ACTIONS(711), - [anon_sym_char] = ACTIONS(711), - [anon_sym_DASH] = ACTIONS(586), - [anon_sym_SLASH] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PIPE] = ACTIONS(586), - [anon_sym_AMP_AMP] = ACTIONS(576), - [anon_sym_PIPE_PIPE] = ACTIONS(576), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(576), - [anon_sym_DASH_EQ] = ACTIONS(576), - [anon_sym_STAR_EQ] = ACTIONS(576), - [anon_sym_SLASH_EQ] = ACTIONS(576), - [anon_sym_PERCENT_EQ] = ACTIONS(576), - [anon_sym_CARET_EQ] = ACTIONS(576), - [anon_sym_AMP_EQ] = ACTIONS(576), - [anon_sym_PIPE_EQ] = ACTIONS(576), - [anon_sym_LT_LT_EQ] = ACTIONS(576), - [anon_sym_GT_GT_EQ] = ACTIONS(576), - [anon_sym_EQ] = ACTIONS(586), - [anon_sym_EQ_EQ] = ACTIONS(576), - [anon_sym_BANG_EQ] = ACTIONS(576), - [anon_sym_GT] = ACTIONS(586), - [anon_sym_LT] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(576), - [anon_sym_LT_EQ] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(576), - [anon_sym__] = ACTIONS(586), - [anon_sym_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT_DOT] = ACTIONS(576), - [anon_sym_DOT_DOT_EQ] = ACTIONS(576), - [anon_sym_COMMA] = ACTIONS(576), - [anon_sym_COLON_COLON] = ACTIONS(576), - [anon_sym_DASH_GT] = ACTIONS(576), - [anon_sym_POUND] = ACTIONS(576), - [anon_sym_SQUOTE] = ACTIONS(711), - [anon_sym_as] = ACTIONS(711), - [anon_sym_async] = ACTIONS(711), - [anon_sym_await] = ACTIONS(711), - [anon_sym_break] = ACTIONS(711), - [anon_sym_const] = ACTIONS(711), - [anon_sym_continue] = ACTIONS(711), - [anon_sym_default] = ACTIONS(711), - [anon_sym_enum] = ACTIONS(711), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_for] = ACTIONS(711), - [anon_sym_gen] = ACTIONS(711), - [anon_sym_if] = ACTIONS(711), - [anon_sym_impl] = ACTIONS(711), - [anon_sym_let] = ACTIONS(711), - [anon_sym_loop] = ACTIONS(711), - [anon_sym_match] = ACTIONS(711), - [anon_sym_mod] = ACTIONS(711), - [anon_sym_pub] = ACTIONS(711), - [anon_sym_return] = ACTIONS(711), - [anon_sym_static] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(711), - [anon_sym_trait] = ACTIONS(711), - [anon_sym_type] = ACTIONS(711), - [anon_sym_union] = ACTIONS(711), - [anon_sym_unsafe] = ACTIONS(711), - [anon_sym_use] = ACTIONS(711), - [anon_sym_where] = ACTIONS(711), - [anon_sym_while] = ACTIONS(711), - [sym_mutable_specifier] = ACTIONS(711), - [sym_integer_literal] = ACTIONS(590), - [aux_sym_string_literal_token1] = ACTIONS(592), - [sym_char_literal] = ACTIONS(590), - [anon_sym_true] = ACTIONS(594), - [anon_sym_false] = ACTIONS(594), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(711), - [sym_super] = ACTIONS(711), - [sym_crate] = ACTIONS(711), - [sym_metavariable] = ACTIONS(723), - [sym__raw_string_literal_start] = ACTIONS(598), - [sym_float_literal] = ACTIONS(590), - }, - [STATE(120)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), - [sym_line_comment] = STATE(120), - [sym_block_comment] = STATE(120), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(132), + [113] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(241), + [sym_string_literal] = STATE(221), + [sym_raw_string_literal] = STATE(221), + [sym_boolean_literal] = STATE(221), + [sym_line_comment] = STATE(113), + [sym_block_comment] = STATE(113), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(75), [sym_identifier] = ACTIONS(683), [anon_sym_SEMI] = ACTIONS(685), [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(745), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_RBRACK] = ACTIONS(747), + [anon_sym_LBRACE] = ACTIONS(691), [anon_sym_EQ_GT] = ACTIONS(685), [anon_sym_COLON] = ACTIONS(695), [anon_sym_DOLLAR] = ACTIONS(697), @@ -31097,24 +30003,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(705), [sym_float_literal] = ACTIONS(699), }, - [STATE(121)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), - [sym_line_comment] = STATE(121), - [sym_block_comment] = STATE(121), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(108), + [114] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(241), + [sym_string_literal] = STATE(221), + [sym_raw_string_literal] = STATE(221), + [sym_boolean_literal] = STATE(221), + [sym_line_comment] = STATE(114), + [sym_block_comment] = STATE(114), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(75), [sym_identifier] = ACTIONS(683), [anon_sym_SEMI] = ACTIONS(685), [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_RBRACK] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(691), + [anon_sym_RBRACE] = ACTIONS(747), [anon_sym_EQ_GT] = ACTIONS(685), [anon_sym_COLON] = ACTIONS(695), [anon_sym_DOLLAR] = ACTIONS(697), @@ -31219,146 +30125,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(705), [sym_float_literal] = ACTIONS(699), }, - [STATE(122)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), - [sym_line_comment] = STATE(122), - [sym_block_comment] = STATE(122), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(84), - [sym_identifier] = ACTIONS(683), - [anon_sym_SEMI] = ACTIONS(685), - [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(747), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_COLON] = ACTIONS(695), - [anon_sym_DOLLAR] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_QMARK] = ACTIONS(685), - [anon_sym_u8] = ACTIONS(683), - [anon_sym_i8] = ACTIONS(683), - [anon_sym_u16] = ACTIONS(683), - [anon_sym_i16] = ACTIONS(683), - [anon_sym_u32] = ACTIONS(683), - [anon_sym_i32] = ACTIONS(683), - [anon_sym_u64] = ACTIONS(683), - [anon_sym_i64] = ACTIONS(683), - [anon_sym_u128] = ACTIONS(683), - [anon_sym_i128] = ACTIONS(683), - [anon_sym_isize] = ACTIONS(683), - [anon_sym_usize] = ACTIONS(683), - [anon_sym_f32] = ACTIONS(683), - [anon_sym_f64] = ACTIONS(683), - [anon_sym_bool] = ACTIONS(683), - [anon_sym_str] = ACTIONS(683), - [anon_sym_char] = ACTIONS(683), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(695), - [anon_sym_PERCENT] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(695), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_AMP] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(685), - [anon_sym_PIPE_PIPE] = ACTIONS(685), - [anon_sym_LT_LT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(695), - [anon_sym_PLUS_EQ] = ACTIONS(685), - [anon_sym_DASH_EQ] = ACTIONS(685), - [anon_sym_STAR_EQ] = ACTIONS(685), - [anon_sym_SLASH_EQ] = ACTIONS(685), - [anon_sym_PERCENT_EQ] = ACTIONS(685), - [anon_sym_CARET_EQ] = ACTIONS(685), - [anon_sym_AMP_EQ] = ACTIONS(685), - [anon_sym_PIPE_EQ] = ACTIONS(685), - [anon_sym_LT_LT_EQ] = ACTIONS(685), - [anon_sym_GT_GT_EQ] = ACTIONS(685), - [anon_sym_EQ] = ACTIONS(695), - [anon_sym_EQ_EQ] = ACTIONS(685), - [anon_sym_BANG_EQ] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_GT_EQ] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(685), - [anon_sym_AT] = ACTIONS(685), - [anon_sym__] = ACTIONS(695), - [anon_sym_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [anon_sym_DOT_DOT_EQ] = ACTIONS(685), - [anon_sym_COMMA] = ACTIONS(685), - [anon_sym_COLON_COLON] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(685), - [anon_sym_POUND] = ACTIONS(685), - [anon_sym_SQUOTE] = ACTIONS(683), - [anon_sym_as] = ACTIONS(683), - [anon_sym_async] = ACTIONS(683), - [anon_sym_await] = ACTIONS(683), - [anon_sym_break] = ACTIONS(683), - [anon_sym_const] = ACTIONS(683), - [anon_sym_continue] = ACTIONS(683), - [anon_sym_default] = ACTIONS(683), - [anon_sym_enum] = ACTIONS(683), - [anon_sym_fn] = ACTIONS(683), - [anon_sym_for] = ACTIONS(683), - [anon_sym_gen] = ACTIONS(683), - [anon_sym_if] = ACTIONS(683), - [anon_sym_impl] = ACTIONS(683), - [anon_sym_let] = ACTIONS(683), - [anon_sym_loop] = ACTIONS(683), - [anon_sym_match] = ACTIONS(683), - [anon_sym_mod] = ACTIONS(683), - [anon_sym_pub] = ACTIONS(683), - [anon_sym_return] = ACTIONS(683), - [anon_sym_static] = ACTIONS(683), - [anon_sym_struct] = ACTIONS(683), - [anon_sym_trait] = ACTIONS(683), - [anon_sym_type] = ACTIONS(683), - [anon_sym_union] = ACTIONS(683), - [anon_sym_unsafe] = ACTIONS(683), - [anon_sym_use] = ACTIONS(683), - [anon_sym_where] = ACTIONS(683), - [anon_sym_while] = ACTIONS(683), - [sym_mutable_specifier] = ACTIONS(683), - [sym_integer_literal] = ACTIONS(699), - [aux_sym_string_literal_token1] = ACTIONS(701), - [sym_char_literal] = ACTIONS(699), - [anon_sym_true] = ACTIONS(703), - [anon_sym_false] = ACTIONS(703), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(683), - [sym_super] = ACTIONS(683), - [sym_crate] = ACTIONS(683), - [sym__raw_string_literal_start] = ACTIONS(705), - [sym_float_literal] = ACTIONS(699), - }, - [STATE(123)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), - [sym_line_comment] = STATE(123), - [sym_block_comment] = STATE(123), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(126), + [115] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(241), + [sym_string_literal] = STATE(221), + [sym_raw_string_literal] = STATE(221), + [sym_boolean_literal] = STATE(221), + [sym_line_comment] = STATE(115), + [sym_block_comment] = STATE(115), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(127), [sym_identifier] = ACTIONS(683), [anon_sym_SEMI] = ACTIONS(685), [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_RBRACK] = ACTIONS(747), - [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_RPAREN] = ACTIONS(749), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(691), [anon_sym_EQ_GT] = ACTIONS(685), [anon_sym_COLON] = ACTIONS(695), [anon_sym_DOLLAR] = ACTIONS(697), @@ -31463,24 +30247,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(705), [sym_float_literal] = ACTIONS(699), }, - [STATE(124)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), - [sym_line_comment] = STATE(124), - [sym_block_comment] = STATE(124), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(127), + [116] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(241), + [sym_string_literal] = STATE(221), + [sym_raw_string_literal] = STATE(221), + [sym_boolean_literal] = STATE(221), + [sym_line_comment] = STATE(116), + [sym_block_comment] = STATE(116), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(128), [sym_identifier] = ACTIONS(683), [anon_sym_SEMI] = ACTIONS(685), [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(747), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_RBRACK] = ACTIONS(749), + [anon_sym_LBRACE] = ACTIONS(691), [anon_sym_EQ_GT] = ACTIONS(685), [anon_sym_COLON] = ACTIONS(695), [anon_sym_DOLLAR] = ACTIONS(697), @@ -31585,24 +30369,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(705), [sym_float_literal] = ACTIONS(699), }, - [STATE(125)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), - [sym_line_comment] = STATE(125), - [sym_block_comment] = STATE(125), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(85), + [117] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(241), + [sym_string_literal] = STATE(221), + [sym_raw_string_literal] = STATE(221), + [sym_boolean_literal] = STATE(221), + [sym_line_comment] = STATE(117), + [sym_block_comment] = STATE(117), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(104), [sym_identifier] = ACTIONS(683), [anon_sym_SEMI] = ACTIONS(685), [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(745), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(691), + [anon_sym_RBRACE] = ACTIONS(749), [anon_sym_EQ_GT] = ACTIONS(685), [anon_sym_COLON] = ACTIONS(695), [anon_sym_DOLLAR] = ACTIONS(697), @@ -31707,24 +30491,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(705), [sym_float_literal] = ACTIONS(699), }, - [STATE(126)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), - [sym_line_comment] = STATE(126), - [sym_block_comment] = STATE(126), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(83), + [118] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(241), + [sym_string_literal] = STATE(221), + [sym_raw_string_literal] = STATE(221), + [sym_boolean_literal] = STATE(221), + [sym_line_comment] = STATE(118), + [sym_block_comment] = STATE(118), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(121), [sym_identifier] = ACTIONS(683), [anon_sym_SEMI] = ACTIONS(685), [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_RBRACK] = ACTIONS(689), - [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_RPAREN] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(691), [anon_sym_EQ_GT] = ACTIONS(685), [anon_sym_COLON] = ACTIONS(695), [anon_sym_DOLLAR] = ACTIONS(697), @@ -31829,24 +30613,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(705), [sym_float_literal] = ACTIONS(699), }, - [STATE(127)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), - [sym_line_comment] = STATE(127), - [sym_block_comment] = STATE(127), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(83), + [119] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(241), + [sym_string_literal] = STATE(221), + [sym_raw_string_literal] = STATE(221), + [sym_boolean_literal] = STATE(221), + [sym_line_comment] = STATE(119), + [sym_block_comment] = STATE(119), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(122), [sym_identifier] = ACTIONS(683), [anon_sym_SEMI] = ACTIONS(685), [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(689), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_RBRACK] = ACTIONS(693), + [anon_sym_LBRACE] = ACTIONS(691), [anon_sym_EQ_GT] = ACTIONS(685), [anon_sym_COLON] = ACTIONS(695), [anon_sym_DOLLAR] = ACTIONS(697), @@ -31951,168 +30735,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(705), [sym_float_literal] = ACTIONS(699), }, - [STATE(128)] = { - [sym_token_tree] = STATE(190), - [sym_token_repetition] = STATE(190), - [sym__literal] = STATE(190), - [sym_string_literal] = STATE(188), - [sym_raw_string_literal] = STATE(188), - [sym_boolean_literal] = STATE(188), - [sym_line_comment] = STATE(128), - [sym_block_comment] = STATE(128), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(153), - [sym_identifier] = ACTIONS(711), - [anon_sym_SEMI] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(713), - [anon_sym_LBRACK] = ACTIONS(717), - [anon_sym_LBRACE] = ACTIONS(719), - [anon_sym_RBRACE] = ACTIONS(739), - [anon_sym_EQ_GT] = ACTIONS(576), - [anon_sym_COLON] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(721), - [anon_sym_PLUS] = ACTIONS(586), - [anon_sym_STAR] = ACTIONS(586), - [anon_sym_QMARK] = ACTIONS(576), - [anon_sym_u8] = ACTIONS(711), - [anon_sym_i8] = ACTIONS(711), - [anon_sym_u16] = ACTIONS(711), - [anon_sym_i16] = ACTIONS(711), - [anon_sym_u32] = ACTIONS(711), - [anon_sym_i32] = ACTIONS(711), - [anon_sym_u64] = ACTIONS(711), - [anon_sym_i64] = ACTIONS(711), - [anon_sym_u128] = ACTIONS(711), - [anon_sym_i128] = ACTIONS(711), - [anon_sym_isize] = ACTIONS(711), - [anon_sym_usize] = ACTIONS(711), - [anon_sym_f32] = ACTIONS(711), - [anon_sym_f64] = ACTIONS(711), - [anon_sym_bool] = ACTIONS(711), - [anon_sym_str] = ACTIONS(711), - [anon_sym_char] = ACTIONS(711), - [anon_sym_DASH] = ACTIONS(586), - [anon_sym_SLASH] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PIPE] = ACTIONS(586), - [anon_sym_AMP_AMP] = ACTIONS(576), - [anon_sym_PIPE_PIPE] = ACTIONS(576), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(576), - [anon_sym_DASH_EQ] = ACTIONS(576), - [anon_sym_STAR_EQ] = ACTIONS(576), - [anon_sym_SLASH_EQ] = ACTIONS(576), - [anon_sym_PERCENT_EQ] = ACTIONS(576), - [anon_sym_CARET_EQ] = ACTIONS(576), - [anon_sym_AMP_EQ] = ACTIONS(576), - [anon_sym_PIPE_EQ] = ACTIONS(576), - [anon_sym_LT_LT_EQ] = ACTIONS(576), - [anon_sym_GT_GT_EQ] = ACTIONS(576), - [anon_sym_EQ] = ACTIONS(586), - [anon_sym_EQ_EQ] = ACTIONS(576), - [anon_sym_BANG_EQ] = ACTIONS(576), - [anon_sym_GT] = ACTIONS(586), - [anon_sym_LT] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(576), - [anon_sym_LT_EQ] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(576), - [anon_sym__] = ACTIONS(586), - [anon_sym_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT_DOT] = ACTIONS(576), - [anon_sym_DOT_DOT_EQ] = ACTIONS(576), - [anon_sym_COMMA] = ACTIONS(576), - [anon_sym_COLON_COLON] = ACTIONS(576), - [anon_sym_DASH_GT] = ACTIONS(576), - [anon_sym_POUND] = ACTIONS(576), - [anon_sym_SQUOTE] = ACTIONS(711), - [anon_sym_as] = ACTIONS(711), - [anon_sym_async] = ACTIONS(711), - [anon_sym_await] = ACTIONS(711), - [anon_sym_break] = ACTIONS(711), - [anon_sym_const] = ACTIONS(711), - [anon_sym_continue] = ACTIONS(711), - [anon_sym_default] = ACTIONS(711), - [anon_sym_enum] = ACTIONS(711), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_for] = ACTIONS(711), - [anon_sym_gen] = ACTIONS(711), - [anon_sym_if] = ACTIONS(711), - [anon_sym_impl] = ACTIONS(711), - [anon_sym_let] = ACTIONS(711), - [anon_sym_loop] = ACTIONS(711), - [anon_sym_match] = ACTIONS(711), - [anon_sym_mod] = ACTIONS(711), - [anon_sym_pub] = ACTIONS(711), - [anon_sym_return] = ACTIONS(711), - [anon_sym_static] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(711), - [anon_sym_trait] = ACTIONS(711), - [anon_sym_type] = ACTIONS(711), - [anon_sym_union] = ACTIONS(711), - [anon_sym_unsafe] = ACTIONS(711), - [anon_sym_use] = ACTIONS(711), - [anon_sym_where] = ACTIONS(711), - [anon_sym_while] = ACTIONS(711), - [sym_mutable_specifier] = ACTIONS(711), - [sym_integer_literal] = ACTIONS(590), - [aux_sym_string_literal_token1] = ACTIONS(592), - [sym_char_literal] = ACTIONS(590), - [anon_sym_true] = ACTIONS(594), - [anon_sym_false] = ACTIONS(594), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(711), - [sym_super] = ACTIONS(711), - [sym_crate] = ACTIONS(711), - [sym_metavariable] = ACTIONS(723), - [sym__raw_string_literal_start] = ACTIONS(598), - [sym_float_literal] = ACTIONS(590), - }, - [STATE(129)] = { - [sym_token_tree] = STATE(190), - [sym_token_repetition] = STATE(190), - [sym__literal] = STATE(190), - [sym_string_literal] = STATE(188), - [sym_raw_string_literal] = STATE(188), - [sym_boolean_literal] = STATE(188), - [sym_line_comment] = STATE(129), - [sym_block_comment] = STATE(129), - [aux_sym_token_tree_repeat1] = STATE(131), - [aux_sym__non_special_token_repeat1] = STATE(153), - [sym_identifier] = ACTIONS(711), + [120] = { + [sym_token_tree] = STATE(174), + [sym_token_repetition] = STATE(174), + [sym__literal] = STATE(174), + [sym_string_literal] = STATE(194), + [sym_raw_string_literal] = STATE(194), + [sym_boolean_literal] = STATE(194), + [sym_line_comment] = STATE(120), + [sym_block_comment] = STATE(120), + [aux_sym_token_tree_repeat1] = STATE(81), + [aux_sym__non_special_token_repeat1] = STATE(151), + [sym_identifier] = ACTIONS(707), [anon_sym_SEMI] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(713), - [anon_sym_RPAREN] = ACTIONS(749), - [anon_sym_LBRACK] = ACTIONS(717), - [anon_sym_LBRACE] = ACTIONS(719), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_LBRACK] = ACTIONS(711), + [anon_sym_RBRACK] = ACTIONS(745), + [anon_sym_LBRACE] = ACTIONS(715), [anon_sym_EQ_GT] = ACTIONS(576), [anon_sym_COLON] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(721), + [anon_sym_DOLLAR] = ACTIONS(717), [anon_sym_PLUS] = ACTIONS(586), [anon_sym_STAR] = ACTIONS(586), [anon_sym_QMARK] = ACTIONS(576), - [anon_sym_u8] = ACTIONS(711), - [anon_sym_i8] = ACTIONS(711), - [anon_sym_u16] = ACTIONS(711), - [anon_sym_i16] = ACTIONS(711), - [anon_sym_u32] = ACTIONS(711), - [anon_sym_i32] = ACTIONS(711), - [anon_sym_u64] = ACTIONS(711), - [anon_sym_i64] = ACTIONS(711), - [anon_sym_u128] = ACTIONS(711), - [anon_sym_i128] = ACTIONS(711), - [anon_sym_isize] = ACTIONS(711), - [anon_sym_usize] = ACTIONS(711), - [anon_sym_f32] = ACTIONS(711), - [anon_sym_f64] = ACTIONS(711), - [anon_sym_bool] = ACTIONS(711), - [anon_sym_str] = ACTIONS(711), - [anon_sym_char] = ACTIONS(711), + [anon_sym_u8] = ACTIONS(707), + [anon_sym_i8] = ACTIONS(707), + [anon_sym_u16] = ACTIONS(707), + [anon_sym_i16] = ACTIONS(707), + [anon_sym_u32] = ACTIONS(707), + [anon_sym_i32] = ACTIONS(707), + [anon_sym_u64] = ACTIONS(707), + [anon_sym_i64] = ACTIONS(707), + [anon_sym_u128] = ACTIONS(707), + [anon_sym_i128] = ACTIONS(707), + [anon_sym_isize] = ACTIONS(707), + [anon_sym_usize] = ACTIONS(707), + [anon_sym_f32] = ACTIONS(707), + [anon_sym_f64] = ACTIONS(707), + [anon_sym_bool] = ACTIONS(707), + [anon_sym_str] = ACTIONS(707), + [anon_sym_char] = ACTIONS(707), [anon_sym_DASH] = ACTIONS(586), [anon_sym_SLASH] = ACTIONS(586), [anon_sym_PERCENT] = ACTIONS(586), @@ -32151,36 +30813,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(576), [anon_sym_DASH_GT] = ACTIONS(576), [anon_sym_POUND] = ACTIONS(576), - [anon_sym_SQUOTE] = ACTIONS(711), - [anon_sym_as] = ACTIONS(711), - [anon_sym_async] = ACTIONS(711), - [anon_sym_await] = ACTIONS(711), - [anon_sym_break] = ACTIONS(711), - [anon_sym_const] = ACTIONS(711), - [anon_sym_continue] = ACTIONS(711), - [anon_sym_default] = ACTIONS(711), - [anon_sym_enum] = ACTIONS(711), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_for] = ACTIONS(711), - [anon_sym_gen] = ACTIONS(711), - [anon_sym_if] = ACTIONS(711), - [anon_sym_impl] = ACTIONS(711), - [anon_sym_let] = ACTIONS(711), - [anon_sym_loop] = ACTIONS(711), - [anon_sym_match] = ACTIONS(711), - [anon_sym_mod] = ACTIONS(711), - [anon_sym_pub] = ACTIONS(711), - [anon_sym_return] = ACTIONS(711), - [anon_sym_static] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(711), - [anon_sym_trait] = ACTIONS(711), - [anon_sym_type] = ACTIONS(711), - [anon_sym_union] = ACTIONS(711), - [anon_sym_unsafe] = ACTIONS(711), - [anon_sym_use] = ACTIONS(711), - [anon_sym_where] = ACTIONS(711), - [anon_sym_while] = ACTIONS(711), - [sym_mutable_specifier] = ACTIONS(711), + [anon_sym_SQUOTE] = ACTIONS(707), + [anon_sym_as] = ACTIONS(707), + [anon_sym_async] = ACTIONS(707), + [anon_sym_await] = ACTIONS(707), + [anon_sym_break] = ACTIONS(707), + [anon_sym_const] = ACTIONS(707), + [anon_sym_continue] = ACTIONS(707), + [anon_sym_default] = ACTIONS(707), + [anon_sym_enum] = ACTIONS(707), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_for] = ACTIONS(707), + [anon_sym_gen] = ACTIONS(707), + [anon_sym_if] = ACTIONS(707), + [anon_sym_impl] = ACTIONS(707), + [anon_sym_let] = ACTIONS(707), + [anon_sym_loop] = ACTIONS(707), + [anon_sym_match] = ACTIONS(707), + [anon_sym_mod] = ACTIONS(707), + [anon_sym_pub] = ACTIONS(707), + [anon_sym_return] = ACTIONS(707), + [anon_sym_static] = ACTIONS(707), + [anon_sym_struct] = ACTIONS(707), + [anon_sym_trait] = ACTIONS(707), + [anon_sym_type] = ACTIONS(707), + [anon_sym_union] = ACTIONS(707), + [anon_sym_unsafe] = ACTIONS(707), + [anon_sym_use] = ACTIONS(707), + [anon_sym_where] = ACTIONS(707), + [anon_sym_while] = ACTIONS(707), + [sym_mutable_specifier] = ACTIONS(707), [sym_integer_literal] = ACTIONS(590), [aux_sym_string_literal_token1] = ACTIONS(592), [sym_char_literal] = ACTIONS(590), @@ -32188,31 +30850,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(594), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(711), - [sym_super] = ACTIONS(711), - [sym_crate] = ACTIONS(711), - [sym_metavariable] = ACTIONS(723), + [sym_self] = ACTIONS(707), + [sym_super] = ACTIONS(707), + [sym_crate] = ACTIONS(707), + [sym_metavariable] = ACTIONS(719), [sym__raw_string_literal_start] = ACTIONS(598), [sym_float_literal] = ACTIONS(590), }, - [STATE(130)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), - [sym_line_comment] = STATE(130), - [sym_block_comment] = STATE(130), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(83), + [121] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(241), + [sym_string_literal] = STATE(221), + [sym_raw_string_literal] = STATE(221), + [sym_boolean_literal] = STATE(221), + [sym_line_comment] = STATE(121), + [sym_block_comment] = STATE(121), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(75), [sym_identifier] = ACTIONS(683), [anon_sym_SEMI] = ACTIONS(685), [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(729), + [anon_sym_RPAREN] = ACTIONS(751), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(691), [anon_sym_EQ_GT] = ACTIONS(685), [anon_sym_COLON] = ACTIONS(695), [anon_sym_DOLLAR] = ACTIONS(697), @@ -32317,146 +30979,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(705), [sym_float_literal] = ACTIONS(699), }, - [STATE(131)] = { - [sym_token_tree] = STATE(190), - [sym_token_repetition] = STATE(190), - [sym__literal] = STATE(190), - [sym_string_literal] = STATE(188), - [sym_raw_string_literal] = STATE(188), - [sym_boolean_literal] = STATE(188), - [sym_line_comment] = STATE(131), - [sym_block_comment] = STATE(131), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(153), - [sym_identifier] = ACTIONS(711), - [anon_sym_SEMI] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(713), - [anon_sym_RPAREN] = ACTIONS(751), - [anon_sym_LBRACK] = ACTIONS(717), - [anon_sym_LBRACE] = ACTIONS(719), - [anon_sym_EQ_GT] = ACTIONS(576), - [anon_sym_COLON] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(721), - [anon_sym_PLUS] = ACTIONS(586), - [anon_sym_STAR] = ACTIONS(586), - [anon_sym_QMARK] = ACTIONS(576), - [anon_sym_u8] = ACTIONS(711), - [anon_sym_i8] = ACTIONS(711), - [anon_sym_u16] = ACTIONS(711), - [anon_sym_i16] = ACTIONS(711), - [anon_sym_u32] = ACTIONS(711), - [anon_sym_i32] = ACTIONS(711), - [anon_sym_u64] = ACTIONS(711), - [anon_sym_i64] = ACTIONS(711), - [anon_sym_u128] = ACTIONS(711), - [anon_sym_i128] = ACTIONS(711), - [anon_sym_isize] = ACTIONS(711), - [anon_sym_usize] = ACTIONS(711), - [anon_sym_f32] = ACTIONS(711), - [anon_sym_f64] = ACTIONS(711), - [anon_sym_bool] = ACTIONS(711), - [anon_sym_str] = ACTIONS(711), - [anon_sym_char] = ACTIONS(711), - [anon_sym_DASH] = ACTIONS(586), - [anon_sym_SLASH] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PIPE] = ACTIONS(586), - [anon_sym_AMP_AMP] = ACTIONS(576), - [anon_sym_PIPE_PIPE] = ACTIONS(576), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(576), - [anon_sym_DASH_EQ] = ACTIONS(576), - [anon_sym_STAR_EQ] = ACTIONS(576), - [anon_sym_SLASH_EQ] = ACTIONS(576), - [anon_sym_PERCENT_EQ] = ACTIONS(576), - [anon_sym_CARET_EQ] = ACTIONS(576), - [anon_sym_AMP_EQ] = ACTIONS(576), - [anon_sym_PIPE_EQ] = ACTIONS(576), - [anon_sym_LT_LT_EQ] = ACTIONS(576), - [anon_sym_GT_GT_EQ] = ACTIONS(576), - [anon_sym_EQ] = ACTIONS(586), - [anon_sym_EQ_EQ] = ACTIONS(576), - [anon_sym_BANG_EQ] = ACTIONS(576), - [anon_sym_GT] = ACTIONS(586), - [anon_sym_LT] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(576), - [anon_sym_LT_EQ] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(576), - [anon_sym__] = ACTIONS(586), - [anon_sym_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT_DOT] = ACTIONS(576), - [anon_sym_DOT_DOT_EQ] = ACTIONS(576), - [anon_sym_COMMA] = ACTIONS(576), - [anon_sym_COLON_COLON] = ACTIONS(576), - [anon_sym_DASH_GT] = ACTIONS(576), - [anon_sym_POUND] = ACTIONS(576), - [anon_sym_SQUOTE] = ACTIONS(711), - [anon_sym_as] = ACTIONS(711), - [anon_sym_async] = ACTIONS(711), - [anon_sym_await] = ACTIONS(711), - [anon_sym_break] = ACTIONS(711), - [anon_sym_const] = ACTIONS(711), - [anon_sym_continue] = ACTIONS(711), - [anon_sym_default] = ACTIONS(711), - [anon_sym_enum] = ACTIONS(711), - [anon_sym_fn] = ACTIONS(711), - [anon_sym_for] = ACTIONS(711), - [anon_sym_gen] = ACTIONS(711), - [anon_sym_if] = ACTIONS(711), - [anon_sym_impl] = ACTIONS(711), - [anon_sym_let] = ACTIONS(711), - [anon_sym_loop] = ACTIONS(711), - [anon_sym_match] = ACTIONS(711), - [anon_sym_mod] = ACTIONS(711), - [anon_sym_pub] = ACTIONS(711), - [anon_sym_return] = ACTIONS(711), - [anon_sym_static] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(711), - [anon_sym_trait] = ACTIONS(711), - [anon_sym_type] = ACTIONS(711), - [anon_sym_union] = ACTIONS(711), - [anon_sym_unsafe] = ACTIONS(711), - [anon_sym_use] = ACTIONS(711), - [anon_sym_where] = ACTIONS(711), - [anon_sym_while] = ACTIONS(711), - [sym_mutable_specifier] = ACTIONS(711), - [sym_integer_literal] = ACTIONS(590), - [aux_sym_string_literal_token1] = ACTIONS(592), - [sym_char_literal] = ACTIONS(590), - [anon_sym_true] = ACTIONS(594), - [anon_sym_false] = ACTIONS(594), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(711), - [sym_super] = ACTIONS(711), - [sym_crate] = ACTIONS(711), - [sym_metavariable] = ACTIONS(723), - [sym__raw_string_literal_start] = ACTIONS(598), - [sym_float_literal] = ACTIONS(590), - }, - [STATE(132)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), - [sym_line_comment] = STATE(132), - [sym_block_comment] = STATE(132), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(83), + [122] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(241), + [sym_string_literal] = STATE(221), + [sym_raw_string_literal] = STATE(221), + [sym_boolean_literal] = STATE(221), + [sym_line_comment] = STATE(122), + [sym_block_comment] = STATE(122), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(75), [sym_identifier] = ACTIONS(683), [anon_sym_SEMI] = ACTIONS(685), [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(707), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_RBRACK] = ACTIONS(751), + [anon_sym_LBRACE] = ACTIONS(691), [anon_sym_EQ_GT] = ACTIONS(685), [anon_sym_COLON] = ACTIONS(695), [anon_sym_DOLLAR] = ACTIONS(697), @@ -32561,24 +31101,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(705), [sym_float_literal] = ACTIONS(699), }, - [STATE(133)] = { - [sym_delim_token_tree] = STATE(205), - [sym__delim_tokens] = STATE(204), - [sym__non_delim_token] = STATE(205), - [sym__literal] = STATE(246), - [sym_string_literal] = STATE(226), - [sym_raw_string_literal] = STATE(226), - [sym_boolean_literal] = STATE(226), - [sym_line_comment] = STATE(133), - [sym_block_comment] = STATE(133), - [aux_sym__non_special_token_repeat1] = STATE(175), - [aux_sym_delim_token_tree_repeat1] = STATE(83), + [123] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(241), + [sym_string_literal] = STATE(221), + [sym_raw_string_literal] = STATE(221), + [sym_boolean_literal] = STATE(221), + [sym_line_comment] = STATE(123), + [sym_block_comment] = STATE(123), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(75), [sym_identifier] = ACTIONS(683), [anon_sym_SEMI] = ACTIONS(685), [anon_sym_LPAREN] = ACTIONS(687), - [anon_sym_RPAREN] = ACTIONS(737), - [anon_sym_LBRACK] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(691), + [anon_sym_RBRACE] = ACTIONS(751), [anon_sym_EQ_GT] = ACTIONS(685), [anon_sym_COLON] = ACTIONS(695), [anon_sym_DOLLAR] = ACTIONS(697), @@ -32683,58 +31223,790 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(705), [sym_float_literal] = ACTIONS(699), }, - [STATE(134)] = { - [sym_attribute_item] = STATE(1060), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1643), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(134), - [sym_block_comment] = STATE(134), - [aux_sym_enum_variant_list_repeat1] = STATE(136), + [124] = { + [sym_token_tree] = STATE(174), + [sym_token_repetition] = STATE(174), + [sym__literal] = STATE(174), + [sym_string_literal] = STATE(194), + [sym_raw_string_literal] = STATE(194), + [sym_boolean_literal] = STATE(194), + [sym_line_comment] = STATE(124), + [sym_block_comment] = STATE(124), + [aux_sym_token_tree_repeat1] = STATE(82), + [aux_sym__non_special_token_repeat1] = STATE(151), + [sym_identifier] = ACTIONS(707), + [anon_sym_SEMI] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_LBRACK] = ACTIONS(711), + [anon_sym_LBRACE] = ACTIONS(715), + [anon_sym_RBRACE] = ACTIONS(745), + [anon_sym_EQ_GT] = ACTIONS(576), + [anon_sym_COLON] = ACTIONS(586), + [anon_sym_DOLLAR] = ACTIONS(717), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(586), + [anon_sym_QMARK] = ACTIONS(576), + [anon_sym_u8] = ACTIONS(707), + [anon_sym_i8] = ACTIONS(707), + [anon_sym_u16] = ACTIONS(707), + [anon_sym_i16] = ACTIONS(707), + [anon_sym_u32] = ACTIONS(707), + [anon_sym_i32] = ACTIONS(707), + [anon_sym_u64] = ACTIONS(707), + [anon_sym_i64] = ACTIONS(707), + [anon_sym_u128] = ACTIONS(707), + [anon_sym_i128] = ACTIONS(707), + [anon_sym_isize] = ACTIONS(707), + [anon_sym_usize] = ACTIONS(707), + [anon_sym_f32] = ACTIONS(707), + [anon_sym_f64] = ACTIONS(707), + [anon_sym_bool] = ACTIONS(707), + [anon_sym_str] = ACTIONS(707), + [anon_sym_char] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_PERCENT] = ACTIONS(586), + [anon_sym_CARET] = ACTIONS(586), + [anon_sym_BANG] = ACTIONS(586), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PIPE] = ACTIONS(586), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS_EQ] = ACTIONS(576), + [anon_sym_DASH_EQ] = ACTIONS(576), + [anon_sym_STAR_EQ] = ACTIONS(576), + [anon_sym_SLASH_EQ] = ACTIONS(576), + [anon_sym_PERCENT_EQ] = ACTIONS(576), + [anon_sym_CARET_EQ] = ACTIONS(576), + [anon_sym_AMP_EQ] = ACTIONS(576), + [anon_sym_PIPE_EQ] = ACTIONS(576), + [anon_sym_LT_LT_EQ] = ACTIONS(576), + [anon_sym_GT_GT_EQ] = ACTIONS(576), + [anon_sym_EQ] = ACTIONS(586), + [anon_sym_EQ_EQ] = ACTIONS(576), + [anon_sym_BANG_EQ] = ACTIONS(576), + [anon_sym_GT] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(586), + [anon_sym_GT_EQ] = ACTIONS(576), + [anon_sym_LT_EQ] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(576), + [anon_sym__] = ACTIONS(586), + [anon_sym_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_DOT] = ACTIONS(576), + [anon_sym_DOT_DOT_EQ] = ACTIONS(576), + [anon_sym_COMMA] = ACTIONS(576), + [anon_sym_COLON_COLON] = ACTIONS(576), + [anon_sym_DASH_GT] = ACTIONS(576), + [anon_sym_POUND] = ACTIONS(576), + [anon_sym_SQUOTE] = ACTIONS(707), + [anon_sym_as] = ACTIONS(707), + [anon_sym_async] = ACTIONS(707), + [anon_sym_await] = ACTIONS(707), + [anon_sym_break] = ACTIONS(707), + [anon_sym_const] = ACTIONS(707), + [anon_sym_continue] = ACTIONS(707), + [anon_sym_default] = ACTIONS(707), + [anon_sym_enum] = ACTIONS(707), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_for] = ACTIONS(707), + [anon_sym_gen] = ACTIONS(707), + [anon_sym_if] = ACTIONS(707), + [anon_sym_impl] = ACTIONS(707), + [anon_sym_let] = ACTIONS(707), + [anon_sym_loop] = ACTIONS(707), + [anon_sym_match] = ACTIONS(707), + [anon_sym_mod] = ACTIONS(707), + [anon_sym_pub] = ACTIONS(707), + [anon_sym_return] = ACTIONS(707), + [anon_sym_static] = ACTIONS(707), + [anon_sym_struct] = ACTIONS(707), + [anon_sym_trait] = ACTIONS(707), + [anon_sym_type] = ACTIONS(707), + [anon_sym_union] = ACTIONS(707), + [anon_sym_unsafe] = ACTIONS(707), + [anon_sym_use] = ACTIONS(707), + [anon_sym_where] = ACTIONS(707), + [anon_sym_while] = ACTIONS(707), + [sym_mutable_specifier] = ACTIONS(707), + [sym_integer_literal] = ACTIONS(590), + [aux_sym_string_literal_token1] = ACTIONS(592), + [sym_char_literal] = ACTIONS(590), + [anon_sym_true] = ACTIONS(594), + [anon_sym_false] = ACTIONS(594), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(707), + [sym_super] = ACTIONS(707), + [sym_crate] = ACTIONS(707), + [sym_metavariable] = ACTIONS(719), + [sym__raw_string_literal_start] = ACTIONS(598), + [sym_float_literal] = ACTIONS(590), + }, + [125] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(241), + [sym_string_literal] = STATE(221), + [sym_raw_string_literal] = STATE(221), + [sym_boolean_literal] = STATE(221), + [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(75), + [sym_identifier] = ACTIONS(683), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_RBRACK] = ACTIONS(723), + [anon_sym_LBRACE] = ACTIONS(691), + [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_COLON] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(697), + [anon_sym_PLUS] = ACTIONS(695), + [anon_sym_STAR] = ACTIONS(695), + [anon_sym_QMARK] = ACTIONS(685), + [anon_sym_u8] = ACTIONS(683), + [anon_sym_i8] = ACTIONS(683), + [anon_sym_u16] = ACTIONS(683), + [anon_sym_i16] = ACTIONS(683), + [anon_sym_u32] = ACTIONS(683), + [anon_sym_i32] = ACTIONS(683), + [anon_sym_u64] = ACTIONS(683), + [anon_sym_i64] = ACTIONS(683), + [anon_sym_u128] = ACTIONS(683), + [anon_sym_i128] = ACTIONS(683), + [anon_sym_isize] = ACTIONS(683), + [anon_sym_usize] = ACTIONS(683), + [anon_sym_f32] = ACTIONS(683), + [anon_sym_f64] = ACTIONS(683), + [anon_sym_bool] = ACTIONS(683), + [anon_sym_str] = ACTIONS(683), + [anon_sym_char] = ACTIONS(683), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_SLASH] = ACTIONS(695), + [anon_sym_PERCENT] = ACTIONS(695), + [anon_sym_CARET] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [anon_sym_LT_LT] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_PLUS_EQ] = ACTIONS(685), + [anon_sym_DASH_EQ] = ACTIONS(685), + [anon_sym_STAR_EQ] = ACTIONS(685), + [anon_sym_SLASH_EQ] = ACTIONS(685), + [anon_sym_PERCENT_EQ] = ACTIONS(685), + [anon_sym_CARET_EQ] = ACTIONS(685), + [anon_sym_AMP_EQ] = ACTIONS(685), + [anon_sym_PIPE_EQ] = ACTIONS(685), + [anon_sym_LT_LT_EQ] = ACTIONS(685), + [anon_sym_GT_GT_EQ] = ACTIONS(685), + [anon_sym_EQ] = ACTIONS(695), + [anon_sym_EQ_EQ] = ACTIONS(685), + [anon_sym_BANG_EQ] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(695), + [anon_sym_GT_EQ] = ACTIONS(685), + [anon_sym_LT_EQ] = ACTIONS(685), + [anon_sym_AT] = ACTIONS(685), + [anon_sym__] = ACTIONS(695), + [anon_sym_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT_DOT] = ACTIONS(685), + [anon_sym_DOT_DOT_EQ] = ACTIONS(685), + [anon_sym_COMMA] = ACTIONS(685), + [anon_sym_COLON_COLON] = ACTIONS(685), + [anon_sym_DASH_GT] = ACTIONS(685), + [anon_sym_POUND] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(683), + [anon_sym_as] = ACTIONS(683), + [anon_sym_async] = ACTIONS(683), + [anon_sym_await] = ACTIONS(683), + [anon_sym_break] = ACTIONS(683), + [anon_sym_const] = ACTIONS(683), + [anon_sym_continue] = ACTIONS(683), + [anon_sym_default] = ACTIONS(683), + [anon_sym_enum] = ACTIONS(683), + [anon_sym_fn] = ACTIONS(683), + [anon_sym_for] = ACTIONS(683), + [anon_sym_gen] = ACTIONS(683), + [anon_sym_if] = ACTIONS(683), + [anon_sym_impl] = ACTIONS(683), + [anon_sym_let] = ACTIONS(683), + [anon_sym_loop] = ACTIONS(683), + [anon_sym_match] = ACTIONS(683), + [anon_sym_mod] = ACTIONS(683), + [anon_sym_pub] = ACTIONS(683), + [anon_sym_return] = ACTIONS(683), + [anon_sym_static] = ACTIONS(683), + [anon_sym_struct] = ACTIONS(683), + [anon_sym_trait] = ACTIONS(683), + [anon_sym_type] = ACTIONS(683), + [anon_sym_union] = ACTIONS(683), + [anon_sym_unsafe] = ACTIONS(683), + [anon_sym_use] = ACTIONS(683), + [anon_sym_where] = ACTIONS(683), + [anon_sym_while] = ACTIONS(683), + [sym_mutable_specifier] = ACTIONS(683), + [sym_integer_literal] = ACTIONS(699), + [aux_sym_string_literal_token1] = ACTIONS(701), + [sym_char_literal] = ACTIONS(699), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(683), + [sym_super] = ACTIONS(683), + [sym_crate] = ACTIONS(683), + [sym__raw_string_literal_start] = ACTIONS(705), + [sym_float_literal] = ACTIONS(699), + }, + [126] = { + [sym_token_tree] = STATE(174), + [sym_token_repetition] = STATE(174), + [sym__literal] = STATE(174), + [sym_string_literal] = STATE(194), + [sym_raw_string_literal] = STATE(194), + [sym_boolean_literal] = STATE(194), + [sym_line_comment] = STATE(126), + [sym_block_comment] = STATE(126), + [aux_sym_token_tree_repeat1] = STATE(78), + [aux_sym__non_special_token_repeat1] = STATE(151), + [sym_identifier] = ACTIONS(707), + [anon_sym_SEMI] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(709), + [anon_sym_RPAREN] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(711), + [anon_sym_LBRACE] = ACTIONS(715), + [anon_sym_EQ_GT] = ACTIONS(576), + [anon_sym_COLON] = ACTIONS(586), + [anon_sym_DOLLAR] = ACTIONS(717), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(586), + [anon_sym_QMARK] = ACTIONS(576), + [anon_sym_u8] = ACTIONS(707), + [anon_sym_i8] = ACTIONS(707), + [anon_sym_u16] = ACTIONS(707), + [anon_sym_i16] = ACTIONS(707), + [anon_sym_u32] = ACTIONS(707), + [anon_sym_i32] = ACTIONS(707), + [anon_sym_u64] = ACTIONS(707), + [anon_sym_i64] = ACTIONS(707), + [anon_sym_u128] = ACTIONS(707), + [anon_sym_i128] = ACTIONS(707), + [anon_sym_isize] = ACTIONS(707), + [anon_sym_usize] = ACTIONS(707), + [anon_sym_f32] = ACTIONS(707), + [anon_sym_f64] = ACTIONS(707), + [anon_sym_bool] = ACTIONS(707), + [anon_sym_str] = ACTIONS(707), + [anon_sym_char] = ACTIONS(707), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_PERCENT] = ACTIONS(586), + [anon_sym_CARET] = ACTIONS(586), + [anon_sym_BANG] = ACTIONS(586), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PIPE] = ACTIONS(586), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS_EQ] = ACTIONS(576), + [anon_sym_DASH_EQ] = ACTIONS(576), + [anon_sym_STAR_EQ] = ACTIONS(576), + [anon_sym_SLASH_EQ] = ACTIONS(576), + [anon_sym_PERCENT_EQ] = ACTIONS(576), + [anon_sym_CARET_EQ] = ACTIONS(576), + [anon_sym_AMP_EQ] = ACTIONS(576), + [anon_sym_PIPE_EQ] = ACTIONS(576), + [anon_sym_LT_LT_EQ] = ACTIONS(576), + [anon_sym_GT_GT_EQ] = ACTIONS(576), + [anon_sym_EQ] = ACTIONS(586), + [anon_sym_EQ_EQ] = ACTIONS(576), + [anon_sym_BANG_EQ] = ACTIONS(576), + [anon_sym_GT] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(586), + [anon_sym_GT_EQ] = ACTIONS(576), + [anon_sym_LT_EQ] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(576), + [anon_sym__] = ACTIONS(586), + [anon_sym_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_DOT] = ACTIONS(576), + [anon_sym_DOT_DOT_EQ] = ACTIONS(576), + [anon_sym_COMMA] = ACTIONS(576), + [anon_sym_COLON_COLON] = ACTIONS(576), + [anon_sym_DASH_GT] = ACTIONS(576), + [anon_sym_POUND] = ACTIONS(576), + [anon_sym_SQUOTE] = ACTIONS(707), + [anon_sym_as] = ACTIONS(707), + [anon_sym_async] = ACTIONS(707), + [anon_sym_await] = ACTIONS(707), + [anon_sym_break] = ACTIONS(707), + [anon_sym_const] = ACTIONS(707), + [anon_sym_continue] = ACTIONS(707), + [anon_sym_default] = ACTIONS(707), + [anon_sym_enum] = ACTIONS(707), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_for] = ACTIONS(707), + [anon_sym_gen] = ACTIONS(707), + [anon_sym_if] = ACTIONS(707), + [anon_sym_impl] = ACTIONS(707), + [anon_sym_let] = ACTIONS(707), + [anon_sym_loop] = ACTIONS(707), + [anon_sym_match] = ACTIONS(707), + [anon_sym_mod] = ACTIONS(707), + [anon_sym_pub] = ACTIONS(707), + [anon_sym_return] = ACTIONS(707), + [anon_sym_static] = ACTIONS(707), + [anon_sym_struct] = ACTIONS(707), + [anon_sym_trait] = ACTIONS(707), + [anon_sym_type] = ACTIONS(707), + [anon_sym_union] = ACTIONS(707), + [anon_sym_unsafe] = ACTIONS(707), + [anon_sym_use] = ACTIONS(707), + [anon_sym_where] = ACTIONS(707), + [anon_sym_while] = ACTIONS(707), + [sym_mutable_specifier] = ACTIONS(707), + [sym_integer_literal] = ACTIONS(590), + [aux_sym_string_literal_token1] = ACTIONS(592), + [sym_char_literal] = ACTIONS(590), + [anon_sym_true] = ACTIONS(594), + [anon_sym_false] = ACTIONS(594), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(707), + [sym_super] = ACTIONS(707), + [sym_crate] = ACTIONS(707), + [sym_metavariable] = ACTIONS(719), + [sym__raw_string_literal_start] = ACTIONS(598), + [sym_float_literal] = ACTIONS(590), + }, + [127] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(241), + [sym_string_literal] = STATE(221), + [sym_raw_string_literal] = STATE(221), + [sym_boolean_literal] = STATE(221), + [sym_line_comment] = STATE(127), + [sym_block_comment] = STATE(127), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(75), + [sym_identifier] = ACTIONS(683), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_RPAREN] = ACTIONS(739), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(691), + [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_COLON] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(697), + [anon_sym_PLUS] = ACTIONS(695), + [anon_sym_STAR] = ACTIONS(695), + [anon_sym_QMARK] = ACTIONS(685), + [anon_sym_u8] = ACTIONS(683), + [anon_sym_i8] = ACTIONS(683), + [anon_sym_u16] = ACTIONS(683), + [anon_sym_i16] = ACTIONS(683), + [anon_sym_u32] = ACTIONS(683), + [anon_sym_i32] = ACTIONS(683), + [anon_sym_u64] = ACTIONS(683), + [anon_sym_i64] = ACTIONS(683), + [anon_sym_u128] = ACTIONS(683), + [anon_sym_i128] = ACTIONS(683), + [anon_sym_isize] = ACTIONS(683), + [anon_sym_usize] = ACTIONS(683), + [anon_sym_f32] = ACTIONS(683), + [anon_sym_f64] = ACTIONS(683), + [anon_sym_bool] = ACTIONS(683), + [anon_sym_str] = ACTIONS(683), + [anon_sym_char] = ACTIONS(683), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_SLASH] = ACTIONS(695), + [anon_sym_PERCENT] = ACTIONS(695), + [anon_sym_CARET] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [anon_sym_LT_LT] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_PLUS_EQ] = ACTIONS(685), + [anon_sym_DASH_EQ] = ACTIONS(685), + [anon_sym_STAR_EQ] = ACTIONS(685), + [anon_sym_SLASH_EQ] = ACTIONS(685), + [anon_sym_PERCENT_EQ] = ACTIONS(685), + [anon_sym_CARET_EQ] = ACTIONS(685), + [anon_sym_AMP_EQ] = ACTIONS(685), + [anon_sym_PIPE_EQ] = ACTIONS(685), + [anon_sym_LT_LT_EQ] = ACTIONS(685), + [anon_sym_GT_GT_EQ] = ACTIONS(685), + [anon_sym_EQ] = ACTIONS(695), + [anon_sym_EQ_EQ] = ACTIONS(685), + [anon_sym_BANG_EQ] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(695), + [anon_sym_GT_EQ] = ACTIONS(685), + [anon_sym_LT_EQ] = ACTIONS(685), + [anon_sym_AT] = ACTIONS(685), + [anon_sym__] = ACTIONS(695), + [anon_sym_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT_DOT] = ACTIONS(685), + [anon_sym_DOT_DOT_EQ] = ACTIONS(685), + [anon_sym_COMMA] = ACTIONS(685), + [anon_sym_COLON_COLON] = ACTIONS(685), + [anon_sym_DASH_GT] = ACTIONS(685), + [anon_sym_POUND] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(683), + [anon_sym_as] = ACTIONS(683), + [anon_sym_async] = ACTIONS(683), + [anon_sym_await] = ACTIONS(683), + [anon_sym_break] = ACTIONS(683), + [anon_sym_const] = ACTIONS(683), + [anon_sym_continue] = ACTIONS(683), + [anon_sym_default] = ACTIONS(683), + [anon_sym_enum] = ACTIONS(683), + [anon_sym_fn] = ACTIONS(683), + [anon_sym_for] = ACTIONS(683), + [anon_sym_gen] = ACTIONS(683), + [anon_sym_if] = ACTIONS(683), + [anon_sym_impl] = ACTIONS(683), + [anon_sym_let] = ACTIONS(683), + [anon_sym_loop] = ACTIONS(683), + [anon_sym_match] = ACTIONS(683), + [anon_sym_mod] = ACTIONS(683), + [anon_sym_pub] = ACTIONS(683), + [anon_sym_return] = ACTIONS(683), + [anon_sym_static] = ACTIONS(683), + [anon_sym_struct] = ACTIONS(683), + [anon_sym_trait] = ACTIONS(683), + [anon_sym_type] = ACTIONS(683), + [anon_sym_union] = ACTIONS(683), + [anon_sym_unsafe] = ACTIONS(683), + [anon_sym_use] = ACTIONS(683), + [anon_sym_where] = ACTIONS(683), + [anon_sym_while] = ACTIONS(683), + [sym_mutable_specifier] = ACTIONS(683), + [sym_integer_literal] = ACTIONS(699), + [aux_sym_string_literal_token1] = ACTIONS(701), + [sym_char_literal] = ACTIONS(699), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(683), + [sym_super] = ACTIONS(683), + [sym_crate] = ACTIONS(683), + [sym__raw_string_literal_start] = ACTIONS(705), + [sym_float_literal] = ACTIONS(699), + }, + [128] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(241), + [sym_string_literal] = STATE(221), + [sym_raw_string_literal] = STATE(221), + [sym_boolean_literal] = STATE(221), + [sym_line_comment] = STATE(128), + [sym_block_comment] = STATE(128), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(75), + [sym_identifier] = ACTIONS(683), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_RBRACK] = ACTIONS(739), + [anon_sym_LBRACE] = ACTIONS(691), + [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_COLON] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(697), + [anon_sym_PLUS] = ACTIONS(695), + [anon_sym_STAR] = ACTIONS(695), + [anon_sym_QMARK] = ACTIONS(685), + [anon_sym_u8] = ACTIONS(683), + [anon_sym_i8] = ACTIONS(683), + [anon_sym_u16] = ACTIONS(683), + [anon_sym_i16] = ACTIONS(683), + [anon_sym_u32] = ACTIONS(683), + [anon_sym_i32] = ACTIONS(683), + [anon_sym_u64] = ACTIONS(683), + [anon_sym_i64] = ACTIONS(683), + [anon_sym_u128] = ACTIONS(683), + [anon_sym_i128] = ACTIONS(683), + [anon_sym_isize] = ACTIONS(683), + [anon_sym_usize] = ACTIONS(683), + [anon_sym_f32] = ACTIONS(683), + [anon_sym_f64] = ACTIONS(683), + [anon_sym_bool] = ACTIONS(683), + [anon_sym_str] = ACTIONS(683), + [anon_sym_char] = ACTIONS(683), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_SLASH] = ACTIONS(695), + [anon_sym_PERCENT] = ACTIONS(695), + [anon_sym_CARET] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [anon_sym_LT_LT] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_PLUS_EQ] = ACTIONS(685), + [anon_sym_DASH_EQ] = ACTIONS(685), + [anon_sym_STAR_EQ] = ACTIONS(685), + [anon_sym_SLASH_EQ] = ACTIONS(685), + [anon_sym_PERCENT_EQ] = ACTIONS(685), + [anon_sym_CARET_EQ] = ACTIONS(685), + [anon_sym_AMP_EQ] = ACTIONS(685), + [anon_sym_PIPE_EQ] = ACTIONS(685), + [anon_sym_LT_LT_EQ] = ACTIONS(685), + [anon_sym_GT_GT_EQ] = ACTIONS(685), + [anon_sym_EQ] = ACTIONS(695), + [anon_sym_EQ_EQ] = ACTIONS(685), + [anon_sym_BANG_EQ] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(695), + [anon_sym_GT_EQ] = ACTIONS(685), + [anon_sym_LT_EQ] = ACTIONS(685), + [anon_sym_AT] = ACTIONS(685), + [anon_sym__] = ACTIONS(695), + [anon_sym_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT_DOT] = ACTIONS(685), + [anon_sym_DOT_DOT_EQ] = ACTIONS(685), + [anon_sym_COMMA] = ACTIONS(685), + [anon_sym_COLON_COLON] = ACTIONS(685), + [anon_sym_DASH_GT] = ACTIONS(685), + [anon_sym_POUND] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(683), + [anon_sym_as] = ACTIONS(683), + [anon_sym_async] = ACTIONS(683), + [anon_sym_await] = ACTIONS(683), + [anon_sym_break] = ACTIONS(683), + [anon_sym_const] = ACTIONS(683), + [anon_sym_continue] = ACTIONS(683), + [anon_sym_default] = ACTIONS(683), + [anon_sym_enum] = ACTIONS(683), + [anon_sym_fn] = ACTIONS(683), + [anon_sym_for] = ACTIONS(683), + [anon_sym_gen] = ACTIONS(683), + [anon_sym_if] = ACTIONS(683), + [anon_sym_impl] = ACTIONS(683), + [anon_sym_let] = ACTIONS(683), + [anon_sym_loop] = ACTIONS(683), + [anon_sym_match] = ACTIONS(683), + [anon_sym_mod] = ACTIONS(683), + [anon_sym_pub] = ACTIONS(683), + [anon_sym_return] = ACTIONS(683), + [anon_sym_static] = ACTIONS(683), + [anon_sym_struct] = ACTIONS(683), + [anon_sym_trait] = ACTIONS(683), + [anon_sym_type] = ACTIONS(683), + [anon_sym_union] = ACTIONS(683), + [anon_sym_unsafe] = ACTIONS(683), + [anon_sym_use] = ACTIONS(683), + [anon_sym_where] = ACTIONS(683), + [anon_sym_while] = ACTIONS(683), + [sym_mutable_specifier] = ACTIONS(683), + [sym_integer_literal] = ACTIONS(699), + [aux_sym_string_literal_token1] = ACTIONS(701), + [sym_char_literal] = ACTIONS(699), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(683), + [sym_super] = ACTIONS(683), + [sym_crate] = ACTIONS(683), + [sym__raw_string_literal_start] = ACTIONS(705), + [sym_float_literal] = ACTIONS(699), + }, + [129] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(205), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(241), + [sym_string_literal] = STATE(221), + [sym_raw_string_literal] = STATE(221), + [sym_boolean_literal] = STATE(221), + [sym_line_comment] = STATE(129), + [sym_block_comment] = STATE(129), + [aux_sym__non_special_token_repeat1] = STATE(184), + [aux_sym_delim_token_tree_repeat1] = STATE(75), + [sym_identifier] = ACTIONS(683), + [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_RPAREN] = ACTIONS(741), + [anon_sym_LBRACK] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(691), + [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_COLON] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(697), + [anon_sym_PLUS] = ACTIONS(695), + [anon_sym_STAR] = ACTIONS(695), + [anon_sym_QMARK] = ACTIONS(685), + [anon_sym_u8] = ACTIONS(683), + [anon_sym_i8] = ACTIONS(683), + [anon_sym_u16] = ACTIONS(683), + [anon_sym_i16] = ACTIONS(683), + [anon_sym_u32] = ACTIONS(683), + [anon_sym_i32] = ACTIONS(683), + [anon_sym_u64] = ACTIONS(683), + [anon_sym_i64] = ACTIONS(683), + [anon_sym_u128] = ACTIONS(683), + [anon_sym_i128] = ACTIONS(683), + [anon_sym_isize] = ACTIONS(683), + [anon_sym_usize] = ACTIONS(683), + [anon_sym_f32] = ACTIONS(683), + [anon_sym_f64] = ACTIONS(683), + [anon_sym_bool] = ACTIONS(683), + [anon_sym_str] = ACTIONS(683), + [anon_sym_char] = ACTIONS(683), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_SLASH] = ACTIONS(695), + [anon_sym_PERCENT] = ACTIONS(695), + [anon_sym_CARET] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [anon_sym_LT_LT] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_PLUS_EQ] = ACTIONS(685), + [anon_sym_DASH_EQ] = ACTIONS(685), + [anon_sym_STAR_EQ] = ACTIONS(685), + [anon_sym_SLASH_EQ] = ACTIONS(685), + [anon_sym_PERCENT_EQ] = ACTIONS(685), + [anon_sym_CARET_EQ] = ACTIONS(685), + [anon_sym_AMP_EQ] = ACTIONS(685), + [anon_sym_PIPE_EQ] = ACTIONS(685), + [anon_sym_LT_LT_EQ] = ACTIONS(685), + [anon_sym_GT_GT_EQ] = ACTIONS(685), + [anon_sym_EQ] = ACTIONS(695), + [anon_sym_EQ_EQ] = ACTIONS(685), + [anon_sym_BANG_EQ] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(695), + [anon_sym_GT_EQ] = ACTIONS(685), + [anon_sym_LT_EQ] = ACTIONS(685), + [anon_sym_AT] = ACTIONS(685), + [anon_sym__] = ACTIONS(695), + [anon_sym_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT_DOT] = ACTIONS(685), + [anon_sym_DOT_DOT_EQ] = ACTIONS(685), + [anon_sym_COMMA] = ACTIONS(685), + [anon_sym_COLON_COLON] = ACTIONS(685), + [anon_sym_DASH_GT] = ACTIONS(685), + [anon_sym_POUND] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(683), + [anon_sym_as] = ACTIONS(683), + [anon_sym_async] = ACTIONS(683), + [anon_sym_await] = ACTIONS(683), + [anon_sym_break] = ACTIONS(683), + [anon_sym_const] = ACTIONS(683), + [anon_sym_continue] = ACTIONS(683), + [anon_sym_default] = ACTIONS(683), + [anon_sym_enum] = ACTIONS(683), + [anon_sym_fn] = ACTIONS(683), + [anon_sym_for] = ACTIONS(683), + [anon_sym_gen] = ACTIONS(683), + [anon_sym_if] = ACTIONS(683), + [anon_sym_impl] = ACTIONS(683), + [anon_sym_let] = ACTIONS(683), + [anon_sym_loop] = ACTIONS(683), + [anon_sym_match] = ACTIONS(683), + [anon_sym_mod] = ACTIONS(683), + [anon_sym_pub] = ACTIONS(683), + [anon_sym_return] = ACTIONS(683), + [anon_sym_static] = ACTIONS(683), + [anon_sym_struct] = ACTIONS(683), + [anon_sym_trait] = ACTIONS(683), + [anon_sym_type] = ACTIONS(683), + [anon_sym_union] = ACTIONS(683), + [anon_sym_unsafe] = ACTIONS(683), + [anon_sym_use] = ACTIONS(683), + [anon_sym_where] = ACTIONS(683), + [anon_sym_while] = ACTIONS(683), + [sym_mutable_specifier] = ACTIONS(683), + [sym_integer_literal] = ACTIONS(699), + [aux_sym_string_literal_token1] = ACTIONS(701), + [sym_char_literal] = ACTIONS(699), + [anon_sym_true] = ACTIONS(703), + [anon_sym_false] = ACTIONS(703), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(683), + [sym_super] = ACTIONS(683), + [sym_crate] = ACTIONS(683), + [sym__raw_string_literal_start] = ACTIONS(705), + [sym_float_literal] = ACTIONS(699), + }, + [130] = { + [sym_attribute_item] = STATE(1052), + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1629), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(130), + [sym_block_comment] = STATE(130), + [aux_sym_enum_variant_list_repeat1] = STATE(131), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -32801,62 +32073,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(135)] = { - [sym_attribute_item] = STATE(1060), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1670), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(135), - [sym_block_comment] = STATE(135), - [aux_sym_enum_variant_list_repeat1] = STATE(196), + [131] = { + [sym_attribute_item] = STATE(1052), + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1647), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(131), + [sym_block_comment] = STATE(131), + [aux_sym_enum_variant_list_repeat1] = STATE(137), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(759), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(759), [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -32919,62 +32191,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(136)] = { - [sym_attribute_item] = STATE(1060), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1657), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(136), - [sym_block_comment] = STATE(136), - [aux_sym_enum_variant_list_repeat1] = STATE(141), + [132] = { + [sym_attribute_item] = STATE(1052), + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1712), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(132), + [sym_block_comment] = STATE(132), + [aux_sym_enum_variant_list_repeat1] = STATE(1050), + [sym_identifier] = ACTIONS(763), + [anon_sym_LPAREN] = ACTIONS(766), + [anon_sym_LBRACK] = ACTIONS(769), + [anon_sym_RBRACK] = ACTIONS(772), + [anon_sym_LBRACE] = ACTIONS(774), + [anon_sym_STAR] = ACTIONS(777), + [anon_sym_u8] = ACTIONS(780), + [anon_sym_i8] = ACTIONS(780), + [anon_sym_u16] = ACTIONS(780), + [anon_sym_i16] = ACTIONS(780), + [anon_sym_u32] = ACTIONS(780), + [anon_sym_i32] = ACTIONS(780), + [anon_sym_u64] = ACTIONS(780), + [anon_sym_i64] = ACTIONS(780), + [anon_sym_u128] = ACTIONS(780), + [anon_sym_i128] = ACTIONS(780), + [anon_sym_isize] = ACTIONS(780), + [anon_sym_usize] = ACTIONS(780), + [anon_sym_f32] = ACTIONS(780), + [anon_sym_f64] = ACTIONS(780), + [anon_sym_bool] = ACTIONS(780), + [anon_sym_str] = ACTIONS(780), + [anon_sym_char] = ACTIONS(780), + [anon_sym_DASH] = ACTIONS(777), + [anon_sym_BANG] = ACTIONS(777), + [anon_sym_AMP] = ACTIONS(783), + [anon_sym_PIPE] = ACTIONS(786), + [anon_sym_LT] = ACTIONS(789), + [anon_sym_DOT_DOT] = ACTIONS(792), + [anon_sym_COMMA] = ACTIONS(772), + [anon_sym_COLON_COLON] = ACTIONS(795), + [anon_sym_POUND] = ACTIONS(798), + [anon_sym_SQUOTE] = ACTIONS(801), + [anon_sym_async] = ACTIONS(804), + [anon_sym_break] = ACTIONS(807), + [anon_sym_const] = ACTIONS(810), + [anon_sym_continue] = ACTIONS(813), + [anon_sym_default] = ACTIONS(816), + [anon_sym_for] = ACTIONS(819), + [anon_sym_gen] = ACTIONS(822), + [anon_sym_if] = ACTIONS(825), + [anon_sym_loop] = ACTIONS(828), + [anon_sym_match] = ACTIONS(831), + [anon_sym_return] = ACTIONS(834), + [anon_sym_static] = ACTIONS(837), + [anon_sym_union] = ACTIONS(816), + [anon_sym_unsafe] = ACTIONS(840), + [anon_sym_while] = ACTIONS(843), + [anon_sym_raw] = ACTIONS(816), + [anon_sym_yield] = ACTIONS(846), + [anon_sym_move] = ACTIONS(849), + [anon_sym_try] = ACTIONS(852), + [sym_integer_literal] = ACTIONS(855), + [aux_sym_string_literal_token1] = ACTIONS(858), + [sym_char_literal] = ACTIONS(855), + [anon_sym_true] = ACTIONS(861), + [anon_sym_false] = ACTIONS(861), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(864), + [sym_super] = ACTIONS(867), + [sym_crate] = ACTIONS(867), + [sym_metavariable] = ACTIONS(870), + [sym__raw_string_literal_start] = ACTIONS(873), + [sym_float_literal] = ACTIONS(855), + }, + [133] = { + [sym_attribute_item] = STATE(1052), + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1678), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(133), + [sym_block_comment] = STATE(133), + [aux_sym_enum_variant_list_repeat1] = STATE(198), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(876), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(763), [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -33000,7 +32390,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(765), + [anon_sym_COMMA] = ACTIONS(878), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_POUND] = ACTIONS(757), [anon_sym_SQUOTE] = ACTIONS(37), @@ -33037,176 +32427,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(137)] = { - [sym_attribute_item] = STATE(1060), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1707), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(137), - [sym_block_comment] = STATE(137), - [aux_sym_enum_variant_list_repeat1] = STATE(1058), - [sym_identifier] = ACTIONS(767), - [anon_sym_LPAREN] = ACTIONS(770), - [anon_sym_LBRACK] = ACTIONS(773), - [anon_sym_RBRACK] = ACTIONS(776), - [anon_sym_LBRACE] = ACTIONS(778), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_u8] = ACTIONS(784), - [anon_sym_i8] = ACTIONS(784), - [anon_sym_u16] = ACTIONS(784), - [anon_sym_i16] = ACTIONS(784), - [anon_sym_u32] = ACTIONS(784), - [anon_sym_i32] = ACTIONS(784), - [anon_sym_u64] = ACTIONS(784), - [anon_sym_i64] = ACTIONS(784), - [anon_sym_u128] = ACTIONS(784), - [anon_sym_i128] = ACTIONS(784), - [anon_sym_isize] = ACTIONS(784), - [anon_sym_usize] = ACTIONS(784), - [anon_sym_f32] = ACTIONS(784), - [anon_sym_f64] = ACTIONS(784), - [anon_sym_bool] = ACTIONS(784), - [anon_sym_str] = ACTIONS(784), - [anon_sym_char] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_BANG] = ACTIONS(781), - [anon_sym_AMP] = ACTIONS(787), - [anon_sym_PIPE] = ACTIONS(790), - [anon_sym_LT] = ACTIONS(793), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_COMMA] = ACTIONS(776), - [anon_sym_COLON_COLON] = ACTIONS(799), - [anon_sym_POUND] = ACTIONS(802), - [anon_sym_SQUOTE] = ACTIONS(805), - [anon_sym_async] = ACTIONS(808), - [anon_sym_break] = ACTIONS(811), - [anon_sym_const] = ACTIONS(814), - [anon_sym_continue] = ACTIONS(817), - [anon_sym_default] = ACTIONS(820), - [anon_sym_for] = ACTIONS(823), - [anon_sym_gen] = ACTIONS(826), - [anon_sym_if] = ACTIONS(829), - [anon_sym_loop] = ACTIONS(832), - [anon_sym_match] = ACTIONS(835), - [anon_sym_return] = ACTIONS(838), - [anon_sym_static] = ACTIONS(841), - [anon_sym_union] = ACTIONS(820), - [anon_sym_unsafe] = ACTIONS(844), - [anon_sym_while] = ACTIONS(847), - [anon_sym_raw] = ACTIONS(820), - [anon_sym_yield] = ACTIONS(850), - [anon_sym_move] = ACTIONS(853), - [anon_sym_try] = ACTIONS(856), - [sym_integer_literal] = ACTIONS(859), - [aux_sym_string_literal_token1] = ACTIONS(862), - [sym_char_literal] = ACTIONS(859), - [anon_sym_true] = ACTIONS(865), - [anon_sym_false] = ACTIONS(865), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(868), - [sym_super] = ACTIONS(871), - [sym_crate] = ACTIONS(871), - [sym_metavariable] = ACTIONS(874), - [sym__raw_string_literal_start] = ACTIONS(877), - [sym_float_literal] = ACTIONS(859), - }, - [STATE(138)] = { - [sym_attribute_item] = STATE(1060), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1636), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(138), - [sym_block_comment] = STATE(138), - [aux_sym_enum_variant_list_repeat1] = STATE(137), + [134] = { + [sym_attribute_item] = STATE(1052), + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1633), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(134), + [sym_block_comment] = STATE(134), + [aux_sym_enum_variant_list_repeat1] = STATE(135), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -33273,62 +32545,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(139)] = { - [sym_attribute_item] = STATE(1060), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1698), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(139), - [sym_block_comment] = STATE(139), - [aux_sym_enum_variant_list_repeat1] = STATE(199), + [135] = { + [sym_attribute_item] = STATE(1052), + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1632), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(135), + [sym_block_comment] = STATE(135), + [aux_sym_enum_variant_list_repeat1] = STATE(132), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(884), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(884), [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -33391,62 +32663,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(140)] = { - [sym_attribute_item] = STATE(1060), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1649), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(140), - [sym_block_comment] = STATE(140), - [aux_sym_enum_variant_list_repeat1] = STATE(138), + [136] = { + [sym_attribute_item] = STATE(1052), + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1660), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(136), + [sym_block_comment] = STATE(136), + [aux_sym_enum_variant_list_repeat1] = STATE(190), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(888), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(888), [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -33509,176 +32781,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(141)] = { - [sym_attribute_item] = STATE(1060), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1719), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(141), - [sym_block_comment] = STATE(141), - [aux_sym_enum_variant_list_repeat1] = STATE(1058), - [sym_identifier] = ACTIONS(767), - [anon_sym_LPAREN] = ACTIONS(770), - [anon_sym_LBRACK] = ACTIONS(773), - [anon_sym_RBRACK] = ACTIONS(776), - [anon_sym_LBRACE] = ACTIONS(778), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_u8] = ACTIONS(784), - [anon_sym_i8] = ACTIONS(784), - [anon_sym_u16] = ACTIONS(784), - [anon_sym_i16] = ACTIONS(784), - [anon_sym_u32] = ACTIONS(784), - [anon_sym_i32] = ACTIONS(784), - [anon_sym_u64] = ACTIONS(784), - [anon_sym_i64] = ACTIONS(784), - [anon_sym_u128] = ACTIONS(784), - [anon_sym_i128] = ACTIONS(784), - [anon_sym_isize] = ACTIONS(784), - [anon_sym_usize] = ACTIONS(784), - [anon_sym_f32] = ACTIONS(784), - [anon_sym_f64] = ACTIONS(784), - [anon_sym_bool] = ACTIONS(784), - [anon_sym_str] = ACTIONS(784), - [anon_sym_char] = ACTIONS(784), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_BANG] = ACTIONS(781), - [anon_sym_AMP] = ACTIONS(787), - [anon_sym_PIPE] = ACTIONS(790), - [anon_sym_LT] = ACTIONS(793), - [anon_sym_DOT_DOT] = ACTIONS(796), - [anon_sym_COMMA] = ACTIONS(776), - [anon_sym_COLON_COLON] = ACTIONS(799), - [anon_sym_POUND] = ACTIONS(802), - [anon_sym_SQUOTE] = ACTIONS(805), - [anon_sym_async] = ACTIONS(808), - [anon_sym_break] = ACTIONS(811), - [anon_sym_const] = ACTIONS(814), - [anon_sym_continue] = ACTIONS(817), - [anon_sym_default] = ACTIONS(820), - [anon_sym_for] = ACTIONS(823), - [anon_sym_gen] = ACTIONS(826), - [anon_sym_if] = ACTIONS(829), - [anon_sym_loop] = ACTIONS(832), - [anon_sym_match] = ACTIONS(835), - [anon_sym_return] = ACTIONS(838), - [anon_sym_static] = ACTIONS(841), - [anon_sym_union] = ACTIONS(820), - [anon_sym_unsafe] = ACTIONS(844), - [anon_sym_while] = ACTIONS(847), - [anon_sym_raw] = ACTIONS(820), - [anon_sym_yield] = ACTIONS(850), - [anon_sym_move] = ACTIONS(853), - [anon_sym_try] = ACTIONS(856), - [sym_integer_literal] = ACTIONS(859), - [aux_sym_string_literal_token1] = ACTIONS(862), - [sym_char_literal] = ACTIONS(859), - [anon_sym_true] = ACTIONS(865), - [anon_sym_false] = ACTIONS(865), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(868), - [sym_super] = ACTIONS(871), - [sym_crate] = ACTIONS(871), - [sym_metavariable] = ACTIONS(874), - [sym__raw_string_literal_start] = ACTIONS(877), - [sym_float_literal] = ACTIONS(859), - }, - [STATE(142)] = { - [sym_attribute_item] = STATE(1060), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1943), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(142), - [sym_block_comment] = STATE(142), - [aux_sym_enum_variant_list_repeat1] = STATE(187), + [137] = { + [sym_attribute_item] = STATE(1052), + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1683), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(137), + [sym_block_comment] = STATE(137), + [aux_sym_enum_variant_list_repeat1] = STATE(1050), + [sym_identifier] = ACTIONS(763), + [anon_sym_LPAREN] = ACTIONS(766), + [anon_sym_LBRACK] = ACTIONS(769), + [anon_sym_RBRACK] = ACTIONS(772), + [anon_sym_LBRACE] = ACTIONS(774), + [anon_sym_STAR] = ACTIONS(777), + [anon_sym_u8] = ACTIONS(780), + [anon_sym_i8] = ACTIONS(780), + [anon_sym_u16] = ACTIONS(780), + [anon_sym_i16] = ACTIONS(780), + [anon_sym_u32] = ACTIONS(780), + [anon_sym_i32] = ACTIONS(780), + [anon_sym_u64] = ACTIONS(780), + [anon_sym_i64] = ACTIONS(780), + [anon_sym_u128] = ACTIONS(780), + [anon_sym_i128] = ACTIONS(780), + [anon_sym_isize] = ACTIONS(780), + [anon_sym_usize] = ACTIONS(780), + [anon_sym_f32] = ACTIONS(780), + [anon_sym_f64] = ACTIONS(780), + [anon_sym_bool] = ACTIONS(780), + [anon_sym_str] = ACTIONS(780), + [anon_sym_char] = ACTIONS(780), + [anon_sym_DASH] = ACTIONS(777), + [anon_sym_BANG] = ACTIONS(777), + [anon_sym_AMP] = ACTIONS(783), + [anon_sym_PIPE] = ACTIONS(786), + [anon_sym_LT] = ACTIONS(789), + [anon_sym_DOT_DOT] = ACTIONS(792), + [anon_sym_COMMA] = ACTIONS(772), + [anon_sym_COLON_COLON] = ACTIONS(795), + [anon_sym_POUND] = ACTIONS(798), + [anon_sym_SQUOTE] = ACTIONS(801), + [anon_sym_async] = ACTIONS(804), + [anon_sym_break] = ACTIONS(807), + [anon_sym_const] = ACTIONS(810), + [anon_sym_continue] = ACTIONS(813), + [anon_sym_default] = ACTIONS(816), + [anon_sym_for] = ACTIONS(819), + [anon_sym_gen] = ACTIONS(822), + [anon_sym_if] = ACTIONS(825), + [anon_sym_loop] = ACTIONS(828), + [anon_sym_match] = ACTIONS(831), + [anon_sym_return] = ACTIONS(834), + [anon_sym_static] = ACTIONS(837), + [anon_sym_union] = ACTIONS(816), + [anon_sym_unsafe] = ACTIONS(840), + [anon_sym_while] = ACTIONS(843), + [anon_sym_raw] = ACTIONS(816), + [anon_sym_yield] = ACTIONS(846), + [anon_sym_move] = ACTIONS(849), + [anon_sym_try] = ACTIONS(852), + [sym_integer_literal] = ACTIONS(855), + [aux_sym_string_literal_token1] = ACTIONS(858), + [sym_char_literal] = ACTIONS(855), + [anon_sym_true] = ACTIONS(861), + [anon_sym_false] = ACTIONS(861), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(864), + [sym_super] = ACTIONS(867), + [sym_crate] = ACTIONS(867), + [sym_metavariable] = ACTIONS(870), + [sym__raw_string_literal_start] = ACTIONS(873), + [sym_float_literal] = ACTIONS(855), + }, + [138] = { + [sym_attribute_item] = STATE(1052), + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1938), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(138), + [sym_block_comment] = STATE(138), + [aux_sym_enum_variant_list_repeat1] = STATE(195), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_RPAREN] = ACTIONS(892), @@ -33744,94 +33016,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(143)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), + [139] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), [sym__expression] = STATE(1935), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_let_condition] = STATE(3122), - [sym__let_chain] = STATE(3128), - [sym__condition] = STATE(2701), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(143), - [sym_block_comment] = STATE(143), - [sym_identifier] = ACTIONS(470), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_let_condition] = STATE(3081), + [sym__let_chain] = STATE(3102), + [sym__condition] = STATE(2783), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(208), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(139), + [sym_block_comment] = STATE(139), + [sym_identifier] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), [anon_sym_DASH] = ACTIONS(894), [anon_sym_BANG] = ACTIONS(894), [anon_sym_AMP] = ACTIONS(896), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(898), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_COLON_COLON] = ACTIONS(486), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(512), [anon_sym_break] = ACTIONS(514), [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), + [anon_sym_default] = ACTIONS(492), [anon_sym_for] = ACTIONS(362), [anon_sym_gen] = ACTIONS(518), [anon_sym_if] = ACTIONS(366), @@ -33840,10 +33112,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(370), [anon_sym_return] = ACTIONS(520), [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), + [anon_sym_union] = ACTIONS(492), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), + [anon_sym_raw] = ACTIONS(492), [anon_sym_yield] = ACTIONS(524), [anon_sym_move] = ACTIONS(526), [anon_sym_try] = ACTIONS(378), @@ -33854,65 +33126,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(144)] = { - [sym_attribute_item] = STATE(1060), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1704), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(144), - [sym_block_comment] = STATE(144), - [aux_sym_enum_variant_list_repeat1] = STATE(200), + [140] = { + [sym_attribute_item] = STATE(1052), + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1710), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(140), + [sym_block_comment] = STATE(140), + [aux_sym_enum_variant_list_repeat1] = STATE(175), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -33978,64 +33250,181 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(145)] = { - [sym_bracketed_type] = STATE(3669), - [sym_generic_function] = STATE(1894), - [sym_generic_type_with_turbofish] = STATE(3057), - [sym__expression_except_range] = STATE(1672), - [sym__expression] = STATE(1977), - [sym_macro_invocation] = STATE(1901), - [sym_scoped_identifier] = STATE(1644), - [sym_scoped_type_identifier_in_expression_position] = STATE(3253), - [sym_range_expression] = STATE(1897), - [sym_unary_expression] = STATE(1894), - [sym_try_expression] = STATE(1894), - [sym_reference_expression] = STATE(1894), - [sym_binary_expression] = STATE(1894), - [sym_assignment_expression] = STATE(1894), - [sym_compound_assignment_expr] = STATE(1894), - [sym_type_cast_expression] = STATE(1894), - [sym_return_expression] = STATE(1894), - [sym_yield_expression] = STATE(1894), - [sym_call_expression] = STATE(1894), - [sym_array_expression] = STATE(1894), - [sym_parenthesized_expression] = STATE(1894), - [sym_tuple_expression] = STATE(1894), - [sym_unit_expression] = STATE(1894), - [sym_struct_expression] = STATE(1894), - [sym_if_expression] = STATE(1894), - [sym_let_condition] = STATE(3301), - [sym__let_chain] = STATE(3302), - [sym__condition] = STATE(3557), - [sym_match_expression] = STATE(1894), - [sym_while_expression] = STATE(1894), - [sym_loop_expression] = STATE(1894), - [sym_for_expression] = STATE(1894), - [sym_const_block] = STATE(1894), - [sym_closure_expression] = STATE(1894), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3777), - [sym_break_expression] = STATE(1894), - [sym_continue_expression] = STATE(1894), - [sym_index_expression] = STATE(1894), - [sym_await_expression] = STATE(1894), - [sym_field_expression] = STATE(1674), - [sym_unsafe_block] = STATE(1894), - [sym_async_block] = STATE(1894), - [sym_gen_block] = STATE(1894), - [sym_try_block] = STATE(1894), - [sym_block] = STATE(1894), - [sym__literal] = STATE(1894), - [sym_string_literal] = STATE(1768), - [sym_raw_string_literal] = STATE(1768), - [sym_boolean_literal] = STATE(1768), - [sym_line_comment] = STATE(145), - [sym_block_comment] = STATE(145), + [141] = { + [sym_attribute_item] = STATE(1052), + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1789), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(141), + [sym_block_comment] = STATE(141), + [aux_sym_enum_variant_list_repeat1] = STATE(197), + [sym_identifier] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(904), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [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(757), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(360), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(364), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_raw] = ACTIONS(360), + [anon_sym_yield] = ACTIONS(93), + [anon_sym_move] = ACTIONS(95), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(111), + [sym_super] = ACTIONS(113), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(117), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [142] = { + [sym_bracketed_type] = STATE(3659), + [sym_generic_function] = STATE(1714), + [sym_generic_type_with_turbofish] = STATE(2899), + [sym__expression_except_range] = STATE(1670), + [sym__expression] = STATE(1967), + [sym_macro_invocation] = STATE(1893), + [sym_scoped_identifier] = STATE(1650), + [sym_scoped_type_identifier_in_expression_position] = STATE(3266), + [sym_range_expression] = STATE(1889), + [sym_unary_expression] = STATE(1714), + [sym_try_expression] = STATE(1714), + [sym_reference_expression] = STATE(1714), + [sym_binary_expression] = STATE(1714), + [sym_assignment_expression] = STATE(1714), + [sym_compound_assignment_expr] = STATE(1714), + [sym_type_cast_expression] = STATE(1714), + [sym_return_expression] = STATE(1714), + [sym_yield_expression] = STATE(1714), + [sym_call_expression] = STATE(1714), + [sym_array_expression] = STATE(1714), + [sym_parenthesized_expression] = STATE(1714), + [sym_tuple_expression] = STATE(1714), + [sym_unit_expression] = STATE(1714), + [sym_struct_expression] = STATE(1714), + [sym_if_expression] = STATE(1714), + [sym_let_condition] = STATE(3424), + [sym__let_chain] = STATE(3426), + [sym__condition] = STATE(3555), + [sym_match_expression] = STATE(1714), + [sym_while_expression] = STATE(1714), + [sym_loop_expression] = STATE(1714), + [sym_for_expression] = STATE(1714), + [sym_const_block] = STATE(1714), + [sym_closure_expression] = STATE(1714), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1714), + [sym_continue_expression] = STATE(1714), + [sym_index_expression] = STATE(1714), + [sym_await_expression] = STATE(1714), + [sym_field_expression] = STATE(1672), + [sym_unsafe_block] = STATE(1714), + [sym_async_block] = STATE(1714), + [sym_gen_block] = STATE(1714), + [sym_try_block] = STATE(1714), + [sym_block] = STATE(1714), + [sym__literal] = STATE(1714), + [sym_string_literal] = STATE(1766), + [sym_raw_string_literal] = STATE(1766), + [sym_boolean_literal] = STATE(1766), + [sym_line_comment] = STATE(142), + [sym_block_comment] = STATE(142), [sym_identifier] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(502), + [anon_sym_LPAREN] = ACTIONS(470), + [anon_sym_LBRACK] = ACTIONS(472), [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_STAR] = ACTIONS(904), + [anon_sym_STAR] = ACTIONS(906), [anon_sym_u8] = ACTIONS(416), [anon_sym_i8] = ACTIONS(416), [anon_sym_u16] = ACTIONS(416), @@ -34053,12 +33442,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(416), [anon_sym_str] = ACTIONS(416), [anon_sym_char] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(904), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), + [anon_sym_DASH] = ACTIONS(906), + [anon_sym_BANG] = ACTIONS(906), + [anon_sym_AMP] = ACTIONS(908), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(908), + [anon_sym_DOT_DOT] = ACTIONS(910), [anon_sym_COLON_COLON] = ACTIONS(420), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(422), @@ -34069,7 +33458,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(432), [anon_sym_gen] = ACTIONS(434), [anon_sym_if] = ACTIONS(436), - [anon_sym_let] = ACTIONS(910), + [anon_sym_let] = ACTIONS(912), [anon_sym_loop] = ACTIONS(438), [anon_sym_match] = ACTIONS(440), [anon_sym_return] = ACTIONS(442), @@ -34095,61 +33484,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(468), [sym_float_literal] = ACTIONS(456), }, - [STATE(146)] = { - [sym_attribute_item] = STATE(1060), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1704), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(146), - [sym_block_comment] = STATE(146), - [aux_sym_enum_variant_list_repeat1] = STATE(200), + [143] = { + [sym_attribute_item] = STATE(1052), + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1710), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(143), + [sym_block_comment] = STATE(143), + [aux_sym_enum_variant_list_repeat1] = STATE(175), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(912), + [anon_sym_RPAREN] = ACTIONS(914), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), @@ -34212,62 +33601,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(147)] = { - [sym_attribute_item] = STATE(1060), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1792), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(147), - [sym_block_comment] = STATE(147), - [aux_sym_enum_variant_list_repeat1] = STATE(198), + [144] = { + [sym_attribute_item] = STATE(1052), + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1710), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(144), + [sym_block_comment] = STATE(144), + [aux_sym_enum_variant_list_repeat1] = STATE(175), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(914), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(916), [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -34329,94 +33718,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(148)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), + [145] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), [sym__expression] = STATE(1935), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_let_condition] = STATE(3122), - [sym__let_chain] = STATE(3128), - [sym__condition] = STATE(2798), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(148), - [sym_block_comment] = STATE(148), - [sym_identifier] = ACTIONS(470), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_let_condition] = STATE(3081), + [sym__let_chain] = STATE(3102), + [sym__condition] = STATE(2708), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(208), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(145), + [sym_block_comment] = STATE(145), + [sym_identifier] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), [anon_sym_DASH] = ACTIONS(894), [anon_sym_BANG] = ACTIONS(894), [anon_sym_AMP] = ACTIONS(896), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(898), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_COLON_COLON] = ACTIONS(486), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(512), [anon_sym_break] = ACTIONS(514), [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), + [anon_sym_default] = ACTIONS(492), [anon_sym_for] = ACTIONS(362), [anon_sym_gen] = ACTIONS(518), [anon_sym_if] = ACTIONS(366), @@ -34425,10 +33814,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(370), [anon_sym_return] = ACTIONS(520), [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), + [anon_sym_union] = ACTIONS(492), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), + [anon_sym_raw] = ACTIONS(492), [anon_sym_yield] = ACTIONS(524), [anon_sym_move] = ACTIONS(526), [anon_sym_try] = ACTIONS(378), @@ -34439,182 +33828,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), - }, - [STATE(149)] = { - [sym_attribute_item] = STATE(1060), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1704), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(149), - [sym_block_comment] = STATE(149), - [aux_sym_enum_variant_list_repeat1] = STATE(200), - [sym_identifier] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(916), - [anon_sym_LBRACE] = ACTIONS(348), - [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(757), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(150)] = { - [sym_attribute_item] = STATE(1060), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1704), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(150), - [sym_block_comment] = STATE(150), - [aux_sym_enum_variant_list_repeat1] = STATE(200), + [146] = { + [sym_attribute_item] = STATE(1052), + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1710), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(146), + [sym_block_comment] = STATE(146), + [aux_sym_enum_variant_list_repeat1] = STATE(175), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -34680,58 +33952,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(151)] = { - [sym_attribute_item] = STATE(1060), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1704), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(151), - [sym_block_comment] = STATE(151), - [aux_sym_enum_variant_list_repeat1] = STATE(200), + [147] = { + [sym_attribute_item] = STATE(1052), + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1710), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(147), + [sym_block_comment] = STATE(147), + [aux_sym_enum_variant_list_repeat1] = STATE(175), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_RPAREN] = ACTIONS(920), @@ -34797,58 +34069,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(152)] = { - [sym_attribute_item] = STATE(1060), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1704), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(152), - [sym_block_comment] = STATE(152), - [aux_sym_enum_variant_list_repeat1] = STATE(200), + [148] = { + [sym_attribute_item] = STATE(1052), + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1710), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(148), + [sym_block_comment] = STATE(148), + [aux_sym_enum_variant_list_repeat1] = STATE(175), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -34914,179 +34186,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(153)] = { - [sym_line_comment] = STATE(153), - [sym_block_comment] = STATE(153), - [aux_sym__non_special_token_repeat1] = STATE(161), - [sym_identifier] = ACTIONS(924), - [anon_sym_SEMI] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(926), - [anon_sym_RPAREN] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(926), - [anon_sym_RBRACK] = ACTIONS(926), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_RBRACE] = ACTIONS(926), - [anon_sym_EQ_GT] = ACTIONS(576), - [anon_sym_COLON] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(586), - [anon_sym_STAR] = ACTIONS(586), - [anon_sym_QMARK] = ACTIONS(576), - [anon_sym_u8] = ACTIONS(924), - [anon_sym_i8] = ACTIONS(924), - [anon_sym_u16] = ACTIONS(924), - [anon_sym_i16] = ACTIONS(924), - [anon_sym_u32] = ACTIONS(924), - [anon_sym_i32] = ACTIONS(924), - [anon_sym_u64] = ACTIONS(924), - [anon_sym_i64] = ACTIONS(924), - [anon_sym_u128] = ACTIONS(924), - [anon_sym_i128] = ACTIONS(924), - [anon_sym_isize] = ACTIONS(924), - [anon_sym_usize] = ACTIONS(924), - [anon_sym_f32] = ACTIONS(924), - [anon_sym_f64] = ACTIONS(924), - [anon_sym_bool] = ACTIONS(924), - [anon_sym_str] = ACTIONS(924), - [anon_sym_char] = ACTIONS(924), - [anon_sym_DASH] = ACTIONS(586), - [anon_sym_SLASH] = ACTIONS(586), - [anon_sym_PERCENT] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(586), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PIPE] = ACTIONS(586), - [anon_sym_AMP_AMP] = ACTIONS(576), - [anon_sym_PIPE_PIPE] = ACTIONS(576), - [anon_sym_LT_LT] = ACTIONS(586), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_PLUS_EQ] = ACTIONS(576), - [anon_sym_DASH_EQ] = ACTIONS(576), - [anon_sym_STAR_EQ] = ACTIONS(576), - [anon_sym_SLASH_EQ] = ACTIONS(576), - [anon_sym_PERCENT_EQ] = ACTIONS(576), - [anon_sym_CARET_EQ] = ACTIONS(576), - [anon_sym_AMP_EQ] = ACTIONS(576), - [anon_sym_PIPE_EQ] = ACTIONS(576), - [anon_sym_LT_LT_EQ] = ACTIONS(576), - [anon_sym_GT_GT_EQ] = ACTIONS(576), - [anon_sym_EQ] = ACTIONS(586), - [anon_sym_EQ_EQ] = ACTIONS(576), - [anon_sym_BANG_EQ] = ACTIONS(576), - [anon_sym_GT] = ACTIONS(586), - [anon_sym_LT] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(576), - [anon_sym_LT_EQ] = ACTIONS(576), - [anon_sym_AT] = ACTIONS(576), - [anon_sym__] = ACTIONS(586), - [anon_sym_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT] = ACTIONS(586), - [anon_sym_DOT_DOT_DOT] = ACTIONS(576), - [anon_sym_DOT_DOT_EQ] = ACTIONS(576), - [anon_sym_COMMA] = ACTIONS(576), - [anon_sym_COLON_COLON] = ACTIONS(576), - [anon_sym_DASH_GT] = ACTIONS(576), - [anon_sym_POUND] = ACTIONS(576), - [anon_sym_SQUOTE] = ACTIONS(924), - [anon_sym_as] = ACTIONS(924), - [anon_sym_async] = ACTIONS(924), - [anon_sym_await] = ACTIONS(924), - [anon_sym_break] = ACTIONS(924), - [anon_sym_const] = ACTIONS(924), - [anon_sym_continue] = ACTIONS(924), - [anon_sym_default] = ACTIONS(924), - [anon_sym_enum] = ACTIONS(924), - [anon_sym_fn] = ACTIONS(924), - [anon_sym_for] = ACTIONS(924), - [anon_sym_gen] = ACTIONS(924), - [anon_sym_if] = ACTIONS(924), - [anon_sym_impl] = ACTIONS(924), - [anon_sym_let] = ACTIONS(924), - [anon_sym_loop] = ACTIONS(924), - [anon_sym_match] = ACTIONS(924), - [anon_sym_mod] = ACTIONS(924), - [anon_sym_pub] = ACTIONS(924), - [anon_sym_return] = ACTIONS(924), - [anon_sym_static] = ACTIONS(924), - [anon_sym_struct] = ACTIONS(924), - [anon_sym_trait] = ACTIONS(924), - [anon_sym_type] = ACTIONS(924), - [anon_sym_union] = ACTIONS(924), - [anon_sym_unsafe] = ACTIONS(924), - [anon_sym_use] = ACTIONS(924), - [anon_sym_where] = ACTIONS(924), - [anon_sym_while] = ACTIONS(924), - [sym_mutable_specifier] = ACTIONS(924), - [sym_integer_literal] = ACTIONS(926), - [aux_sym_string_literal_token1] = ACTIONS(926), - [sym_char_literal] = ACTIONS(926), - [anon_sym_true] = ACTIONS(924), - [anon_sym_false] = ACTIONS(924), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(924), - [sym_super] = ACTIONS(924), - [sym_crate] = ACTIONS(924), - [sym_metavariable] = ACTIONS(926), - [sym__raw_string_literal_start] = ACTIONS(926), - [sym_float_literal] = ACTIONS(926), - }, - [STATE(154)] = { - [sym_attribute_item] = STATE(1060), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1704), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(154), - [sym_block_comment] = STATE(154), - [aux_sym_enum_variant_list_repeat1] = STATE(200), + [149] = { + [sym_attribute_item] = STATE(1052), + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1710), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(149), + [sym_block_comment] = STATE(149), + [aux_sym_enum_variant_list_repeat1] = STATE(175), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(928), + [anon_sym_RBRACK] = ACTIONS(924), [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -35148,61 +34303,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(155)] = { - [sym_attribute_item] = STATE(1060), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1704), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(155), - [sym_block_comment] = STATE(155), - [aux_sym_enum_variant_list_repeat1] = STATE(200), + [150] = { + [sym_attribute_item] = STATE(1052), + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1710), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(150), + [sym_block_comment] = STATE(150), + [aux_sym_enum_variant_list_repeat1] = STATE(175), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(930), + [anon_sym_RPAREN] = ACTIONS(926), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), @@ -35265,58 +34420,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(156)] = { - [sym_attribute_item] = STATE(1060), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1704), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(156), - [sym_block_comment] = STATE(156), - [aux_sym_enum_variant_list_repeat1] = STATE(200), + [151] = { + [sym_line_comment] = STATE(151), + [sym_block_comment] = STATE(151), + [aux_sym__non_special_token_repeat1] = STATE(157), + [sym_identifier] = ACTIONS(928), + [anon_sym_SEMI] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(930), + [anon_sym_RPAREN] = ACTIONS(930), + [anon_sym_LBRACK] = ACTIONS(930), + [anon_sym_RBRACK] = ACTIONS(930), + [anon_sym_LBRACE] = ACTIONS(930), + [anon_sym_RBRACE] = ACTIONS(930), + [anon_sym_EQ_GT] = ACTIONS(576), + [anon_sym_COLON] = ACTIONS(586), + [anon_sym_DOLLAR] = ACTIONS(928), + [anon_sym_PLUS] = ACTIONS(586), + [anon_sym_STAR] = ACTIONS(586), + [anon_sym_QMARK] = ACTIONS(576), + [anon_sym_u8] = ACTIONS(928), + [anon_sym_i8] = ACTIONS(928), + [anon_sym_u16] = ACTIONS(928), + [anon_sym_i16] = ACTIONS(928), + [anon_sym_u32] = ACTIONS(928), + [anon_sym_i32] = ACTIONS(928), + [anon_sym_u64] = ACTIONS(928), + [anon_sym_i64] = ACTIONS(928), + [anon_sym_u128] = ACTIONS(928), + [anon_sym_i128] = ACTIONS(928), + [anon_sym_isize] = ACTIONS(928), + [anon_sym_usize] = ACTIONS(928), + [anon_sym_f32] = ACTIONS(928), + [anon_sym_f64] = ACTIONS(928), + [anon_sym_bool] = ACTIONS(928), + [anon_sym_str] = ACTIONS(928), + [anon_sym_char] = ACTIONS(928), + [anon_sym_DASH] = ACTIONS(586), + [anon_sym_SLASH] = ACTIONS(586), + [anon_sym_PERCENT] = ACTIONS(586), + [anon_sym_CARET] = ACTIONS(586), + [anon_sym_BANG] = ACTIONS(586), + [anon_sym_AMP] = ACTIONS(586), + [anon_sym_PIPE] = ACTIONS(586), + [anon_sym_AMP_AMP] = ACTIONS(576), + [anon_sym_PIPE_PIPE] = ACTIONS(576), + [anon_sym_LT_LT] = ACTIONS(586), + [anon_sym_GT_GT] = ACTIONS(586), + [anon_sym_PLUS_EQ] = ACTIONS(576), + [anon_sym_DASH_EQ] = ACTIONS(576), + [anon_sym_STAR_EQ] = ACTIONS(576), + [anon_sym_SLASH_EQ] = ACTIONS(576), + [anon_sym_PERCENT_EQ] = ACTIONS(576), + [anon_sym_CARET_EQ] = ACTIONS(576), + [anon_sym_AMP_EQ] = ACTIONS(576), + [anon_sym_PIPE_EQ] = ACTIONS(576), + [anon_sym_LT_LT_EQ] = ACTIONS(576), + [anon_sym_GT_GT_EQ] = ACTIONS(576), + [anon_sym_EQ] = ACTIONS(586), + [anon_sym_EQ_EQ] = ACTIONS(576), + [anon_sym_BANG_EQ] = ACTIONS(576), + [anon_sym_GT] = ACTIONS(586), + [anon_sym_LT] = ACTIONS(586), + [anon_sym_GT_EQ] = ACTIONS(576), + [anon_sym_LT_EQ] = ACTIONS(576), + [anon_sym_AT] = ACTIONS(576), + [anon_sym__] = ACTIONS(586), + [anon_sym_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT] = ACTIONS(586), + [anon_sym_DOT_DOT_DOT] = ACTIONS(576), + [anon_sym_DOT_DOT_EQ] = ACTIONS(576), + [anon_sym_COMMA] = ACTIONS(576), + [anon_sym_COLON_COLON] = ACTIONS(576), + [anon_sym_DASH_GT] = ACTIONS(576), + [anon_sym_POUND] = ACTIONS(576), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_as] = ACTIONS(928), + [anon_sym_async] = ACTIONS(928), + [anon_sym_await] = ACTIONS(928), + [anon_sym_break] = ACTIONS(928), + [anon_sym_const] = ACTIONS(928), + [anon_sym_continue] = ACTIONS(928), + [anon_sym_default] = ACTIONS(928), + [anon_sym_enum] = ACTIONS(928), + [anon_sym_fn] = ACTIONS(928), + [anon_sym_for] = ACTIONS(928), + [anon_sym_gen] = ACTIONS(928), + [anon_sym_if] = ACTIONS(928), + [anon_sym_impl] = ACTIONS(928), + [anon_sym_let] = ACTIONS(928), + [anon_sym_loop] = ACTIONS(928), + [anon_sym_match] = ACTIONS(928), + [anon_sym_mod] = ACTIONS(928), + [anon_sym_pub] = ACTIONS(928), + [anon_sym_return] = ACTIONS(928), + [anon_sym_static] = ACTIONS(928), + [anon_sym_struct] = ACTIONS(928), + [anon_sym_trait] = ACTIONS(928), + [anon_sym_type] = ACTIONS(928), + [anon_sym_union] = ACTIONS(928), + [anon_sym_unsafe] = ACTIONS(928), + [anon_sym_use] = ACTIONS(928), + [anon_sym_where] = ACTIONS(928), + [anon_sym_while] = ACTIONS(928), + [sym_mutable_specifier] = ACTIONS(928), + [sym_integer_literal] = ACTIONS(930), + [aux_sym_string_literal_token1] = ACTIONS(930), + [sym_char_literal] = ACTIONS(930), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(928), + [sym_super] = ACTIONS(928), + [sym_crate] = ACTIONS(928), + [sym_metavariable] = ACTIONS(930), + [sym__raw_string_literal_start] = ACTIONS(930), + [sym_float_literal] = ACTIONS(930), + }, + [152] = { + [sym_attribute_item] = STATE(1052), + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1710), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(152), + [sym_block_comment] = STATE(152), + [aux_sym_enum_variant_list_repeat1] = STATE(175), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -35382,62 +34654,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(157)] = { - [sym_attribute_item] = STATE(1060), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1704), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(157), - [sym_block_comment] = STATE(157), - [aux_sym_enum_variant_list_repeat1] = STATE(200), + [153] = { + [sym_attribute_item] = STATE(1052), + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1710), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(153), + [sym_block_comment] = STATE(153), + [aux_sym_enum_variant_list_repeat1] = STATE(175), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(934), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(934), [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -35499,62 +34771,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(158)] = { - [sym_attribute_item] = STATE(1060), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1704), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(158), - [sym_block_comment] = STATE(158), - [aux_sym_enum_variant_list_repeat1] = STATE(200), + [154] = { + [sym_attribute_item] = STATE(1052), + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1710), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(154), + [sym_block_comment] = STATE(154), + [aux_sym_enum_variant_list_repeat1] = STATE(175), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(936), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(936), [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -35616,58 +34888,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(159)] = { - [sym_attribute_item] = STATE(1060), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1704), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(159), - [sym_block_comment] = STATE(159), - [aux_sym_enum_variant_list_repeat1] = STATE(200), + [155] = { + [sym_attribute_item] = STATE(1052), + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1710), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(155), + [sym_block_comment] = STATE(155), + [aux_sym_enum_variant_list_repeat1] = STATE(175), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -35733,58 +35005,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(160)] = { - [sym_attribute_item] = STATE(1060), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1704), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(160), - [sym_block_comment] = STATE(160), - [aux_sym_enum_variant_list_repeat1] = STATE(200), + [156] = { + [sym_attribute_item] = STATE(1052), + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1710), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(156), + [sym_block_comment] = STATE(156), + [aux_sym_enum_variant_list_repeat1] = STATE(175), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_RPAREN] = ACTIONS(940), @@ -35850,10 +35122,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(161)] = { - [sym_line_comment] = STATE(161), - [sym_block_comment] = STATE(161), - [aux_sym__non_special_token_repeat1] = STATE(161), + [157] = { + [sym_line_comment] = STATE(157), + [sym_block_comment] = STATE(157), + [aux_sym__non_special_token_repeat1] = STATE(157), [sym_identifier] = ACTIONS(942), [anon_sym_SEMI] = ACTIONS(944), [anon_sym_LPAREN] = ACTIONS(947), @@ -35967,58 +35239,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(947), [sym_float_literal] = ACTIONS(947), }, - [STATE(162)] = { - [sym_attribute_item] = STATE(1060), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1704), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(162), - [sym_block_comment] = STATE(162), - [aux_sym_enum_variant_list_repeat1] = STATE(200), + [158] = { + [sym_attribute_item] = STATE(1052), + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1710), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(158), + [sym_block_comment] = STATE(158), + [aux_sym_enum_variant_list_repeat1] = STATE(175), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_RPAREN] = ACTIONS(952), @@ -36084,94 +35356,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(163)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), + [159] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), [sym__expression] = STATE(1935), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_let_condition] = STATE(3122), - [sym__let_chain] = STATE(3128), - [sym__condition] = STATE(2822), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(163), - [sym_block_comment] = STATE(163), - [sym_identifier] = ACTIONS(470), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_let_condition] = STATE(3081), + [sym__let_chain] = STATE(3102), + [sym__condition] = STATE(2843), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(208), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(159), + [sym_block_comment] = STATE(159), + [sym_identifier] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), [anon_sym_DASH] = ACTIONS(894), [anon_sym_BANG] = ACTIONS(894), [anon_sym_AMP] = ACTIONS(896), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(898), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_COLON_COLON] = ACTIONS(486), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(512), [anon_sym_break] = ACTIONS(514), [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), + [anon_sym_default] = ACTIONS(492), [anon_sym_for] = ACTIONS(362), [anon_sym_gen] = ACTIONS(518), [anon_sym_if] = ACTIONS(366), @@ -36180,10 +35452,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(370), [anon_sym_return] = ACTIONS(520), [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), + [anon_sym_union] = ACTIONS(492), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), + [anon_sym_raw] = ACTIONS(492), [anon_sym_yield] = ACTIONS(524), [anon_sym_move] = ACTIONS(526), [anon_sym_try] = ACTIONS(378), @@ -36194,17 +35466,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(164)] = { - [sym_line_comment] = STATE(164), - [sym_block_comment] = STATE(164), - [aux_sym__non_special_token_repeat1] = STATE(161), + [160] = { + [sym_line_comment] = STATE(160), + [sym_block_comment] = STATE(160), + [aux_sym__non_special_token_repeat1] = STATE(157), [sym_identifier] = ACTIONS(954), [anon_sym_SEMI] = ACTIONS(576), [anon_sym_LPAREN] = ACTIONS(956), @@ -36318,94 +35590,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(956), [sym_float_literal] = ACTIONS(956), }, - [STATE(165)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), + [161] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), [sym__expression] = STATE(1935), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_let_condition] = STATE(3122), - [sym__let_chain] = STATE(3128), - [sym__condition] = STATE(2828), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(165), - [sym_block_comment] = STATE(165), - [sym_identifier] = ACTIONS(470), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_let_condition] = STATE(3081), + [sym__let_chain] = STATE(3102), + [sym__condition] = STATE(2663), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(208), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(161), + [sym_block_comment] = STATE(161), + [sym_identifier] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), [anon_sym_DASH] = ACTIONS(894), [anon_sym_BANG] = ACTIONS(894), [anon_sym_AMP] = ACTIONS(896), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(898), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_COLON_COLON] = ACTIONS(486), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(512), [anon_sym_break] = ACTIONS(514), [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), + [anon_sym_default] = ACTIONS(492), [anon_sym_for] = ACTIONS(362), [anon_sym_gen] = ACTIONS(518), [anon_sym_if] = ACTIONS(366), @@ -36414,10 +35686,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(370), [anon_sym_return] = ACTIONS(520), [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), + [anon_sym_union] = ACTIONS(492), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), + [anon_sym_raw] = ACTIONS(492), [anon_sym_yield] = ACTIONS(524), [anon_sym_move] = ACTIONS(526), [anon_sym_try] = ACTIONS(378), @@ -36428,101 +35700,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(166)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), + [162] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), [sym__expression] = STATE(1935), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_let_condition] = STATE(3122), - [sym__let_chain] = STATE(3128), - [sym__condition] = STATE(2775), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(166), - [sym_block_comment] = STATE(166), - [sym_identifier] = ACTIONS(470), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_let_condition] = STATE(3081), + [sym__let_chain] = STATE(3102), + [sym__condition] = STATE(2636), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(208), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(162), + [sym_block_comment] = STATE(162), + [sym_identifier] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), [anon_sym_DASH] = ACTIONS(894), [anon_sym_BANG] = ACTIONS(894), [anon_sym_AMP] = ACTIONS(896), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(898), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_COLON_COLON] = ACTIONS(486), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(512), [anon_sym_break] = ACTIONS(514), [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), + [anon_sym_default] = ACTIONS(492), [anon_sym_for] = ACTIONS(362), [anon_sym_gen] = ACTIONS(518), [anon_sym_if] = ACTIONS(366), @@ -36531,10 +35803,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(370), [anon_sym_return] = ACTIONS(520), [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), + [anon_sym_union] = ACTIONS(492), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), + [anon_sym_raw] = ACTIONS(492), [anon_sym_yield] = ACTIONS(524), [anon_sym_move] = ACTIONS(526), [anon_sym_try] = ACTIONS(378), @@ -36545,101 +35817,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(167)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), + [163] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), [sym__expression] = STATE(1935), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_let_condition] = STATE(3122), - [sym__let_chain] = STATE(3128), - [sym__condition] = STATE(2783), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(167), - [sym_block_comment] = STATE(167), - [sym_identifier] = ACTIONS(470), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_let_condition] = STATE(3081), + [sym__let_chain] = STATE(3102), + [sym__condition] = STATE(2639), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(208), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(163), + [sym_block_comment] = STATE(163), + [sym_identifier] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), [anon_sym_DASH] = ACTIONS(894), [anon_sym_BANG] = ACTIONS(894), [anon_sym_AMP] = ACTIONS(896), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(898), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_COLON_COLON] = ACTIONS(486), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(512), [anon_sym_break] = ACTIONS(514), [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), + [anon_sym_default] = ACTIONS(492), [anon_sym_for] = ACTIONS(362), [anon_sym_gen] = ACTIONS(518), [anon_sym_if] = ACTIONS(366), @@ -36648,10 +35920,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(370), [anon_sym_return] = ACTIONS(520), [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), + [anon_sym_union] = ACTIONS(492), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), + [anon_sym_raw] = ACTIONS(492), [anon_sym_yield] = ACTIONS(524), [anon_sym_move] = ACTIONS(526), [anon_sym_try] = ACTIONS(378), @@ -36662,101 +35934,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(168)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), + [164] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), [sym__expression] = STATE(1935), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_let_condition] = STATE(3122), - [sym__let_chain] = STATE(3128), - [sym__condition] = STATE(2626), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(168), - [sym_block_comment] = STATE(168), - [sym_identifier] = ACTIONS(470), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_let_condition] = STATE(3081), + [sym__let_chain] = STATE(3102), + [sym__condition] = STATE(2691), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(208), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(164), + [sym_block_comment] = STATE(164), + [sym_identifier] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), [anon_sym_DASH] = ACTIONS(894), [anon_sym_BANG] = ACTIONS(894), [anon_sym_AMP] = ACTIONS(896), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(898), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_COLON_COLON] = ACTIONS(486), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(512), [anon_sym_break] = ACTIONS(514), [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), + [anon_sym_default] = ACTIONS(492), [anon_sym_for] = ACTIONS(362), [anon_sym_gen] = ACTIONS(518), [anon_sym_if] = ACTIONS(366), @@ -36765,10 +36037,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(370), [anon_sym_return] = ACTIONS(520), [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), + [anon_sym_union] = ACTIONS(492), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), + [anon_sym_raw] = ACTIONS(492), [anon_sym_yield] = ACTIONS(524), [anon_sym_move] = ACTIONS(526), [anon_sym_try] = ACTIONS(378), @@ -36779,101 +36051,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(169)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), + [165] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), [sym__expression] = STATE(1935), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_let_condition] = STATE(3122), - [sym__let_chain] = STATE(3128), - [sym__condition] = STATE(2652), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(169), - [sym_block_comment] = STATE(169), - [sym_identifier] = ACTIONS(470), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_let_condition] = STATE(3081), + [sym__let_chain] = STATE(3102), + [sym__condition] = STATE(2736), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(208), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(165), + [sym_block_comment] = STATE(165), + [sym_identifier] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), [anon_sym_DASH] = ACTIONS(894), [anon_sym_BANG] = ACTIONS(894), [anon_sym_AMP] = ACTIONS(896), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(898), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_COLON_COLON] = ACTIONS(486), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(512), [anon_sym_break] = ACTIONS(514), [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), + [anon_sym_default] = ACTIONS(492), [anon_sym_for] = ACTIONS(362), [anon_sym_gen] = ACTIONS(518), [anon_sym_if] = ACTIONS(366), @@ -36882,10 +36154,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(370), [anon_sym_return] = ACTIONS(520), [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), + [anon_sym_union] = ACTIONS(492), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), + [anon_sym_raw] = ACTIONS(492), [anon_sym_yield] = ACTIONS(524), [anon_sym_move] = ACTIONS(526), [anon_sym_try] = ACTIONS(378), @@ -36896,101 +36168,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(170)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), + [166] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), [sym__expression] = STATE(1935), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_let_condition] = STATE(3122), - [sym__let_chain] = STATE(3128), - [sym__condition] = STATE(2654), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(170), - [sym_block_comment] = STATE(170), - [sym_identifier] = ACTIONS(470), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_let_condition] = STATE(3081), + [sym__let_chain] = STATE(3102), + [sym__condition] = STATE(2738), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(208), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(166), + [sym_block_comment] = STATE(166), + [sym_identifier] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), [anon_sym_DASH] = ACTIONS(894), [anon_sym_BANG] = ACTIONS(894), [anon_sym_AMP] = ACTIONS(896), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(898), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_COLON_COLON] = ACTIONS(486), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(512), [anon_sym_break] = ACTIONS(514), [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), + [anon_sym_default] = ACTIONS(492), [anon_sym_for] = ACTIONS(362), [anon_sym_gen] = ACTIONS(518), [anon_sym_if] = ACTIONS(366), @@ -36999,10 +36271,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(370), [anon_sym_return] = ACTIONS(520), [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), + [anon_sym_union] = ACTIONS(492), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), + [anon_sym_raw] = ACTIONS(492), [anon_sym_yield] = ACTIONS(524), [anon_sym_move] = ACTIONS(526), [anon_sym_try] = ACTIONS(378), @@ -37013,101 +36285,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(171)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), + [167] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), [sym__expression] = STATE(1935), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_let_condition] = STATE(3122), - [sym__let_chain] = STATE(3128), - [sym__condition] = STATE(2680), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(171), - [sym_block_comment] = STATE(171), - [sym_identifier] = ACTIONS(470), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_let_condition] = STATE(3081), + [sym__let_chain] = STATE(3102), + [sym__condition] = STATE(2754), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(208), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(167), + [sym_block_comment] = STATE(167), + [sym_identifier] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), [anon_sym_DASH] = ACTIONS(894), [anon_sym_BANG] = ACTIONS(894), [anon_sym_AMP] = ACTIONS(896), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(898), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_COLON_COLON] = ACTIONS(486), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(512), [anon_sym_break] = ACTIONS(514), [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), + [anon_sym_default] = ACTIONS(492), [anon_sym_for] = ACTIONS(362), [anon_sym_gen] = ACTIONS(518), [anon_sym_if] = ACTIONS(366), @@ -37116,10 +36388,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(370), [anon_sym_return] = ACTIONS(520), [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), + [anon_sym_union] = ACTIONS(492), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), + [anon_sym_raw] = ACTIONS(492), [anon_sym_yield] = ACTIONS(524), [anon_sym_move] = ACTIONS(526), [anon_sym_try] = ACTIONS(378), @@ -37130,101 +36402,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(172)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), + [168] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), [sym__expression] = STATE(1935), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_let_condition] = STATE(3122), - [sym__let_chain] = STATE(3128), - [sym__condition] = STATE(2700), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(172), - [sym_block_comment] = STATE(172), - [sym_identifier] = ACTIONS(470), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_let_condition] = STATE(3081), + [sym__let_chain] = STATE(3102), + [sym__condition] = STATE(2772), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(208), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(168), + [sym_block_comment] = STATE(168), + [sym_identifier] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), [anon_sym_DASH] = ACTIONS(894), [anon_sym_BANG] = ACTIONS(894), [anon_sym_AMP] = ACTIONS(896), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(898), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_COLON_COLON] = ACTIONS(486), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(512), [anon_sym_break] = ACTIONS(514), [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), + [anon_sym_default] = ACTIONS(492), [anon_sym_for] = ACTIONS(362), [anon_sym_gen] = ACTIONS(518), [anon_sym_if] = ACTIONS(366), @@ -37233,10 +36505,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(370), [anon_sym_return] = ACTIONS(520), [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), + [anon_sym_union] = ACTIONS(492), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), + [anon_sym_raw] = ACTIONS(492), [anon_sym_yield] = ACTIONS(524), [anon_sym_move] = ACTIONS(526), [anon_sym_try] = ACTIONS(378), @@ -37247,101 +36519,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(173)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), + [169] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), [sym__expression] = STATE(1935), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_let_condition] = STATE(3122), - [sym__let_chain] = STATE(3128), - [sym__condition] = STATE(2717), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(173), - [sym_block_comment] = STATE(173), - [sym_identifier] = ACTIONS(470), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_let_condition] = STATE(3081), + [sym__let_chain] = STATE(3102), + [sym__condition] = STATE(2774), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(208), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(169), + [sym_block_comment] = STATE(169), + [sym_identifier] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), [anon_sym_DASH] = ACTIONS(894), [anon_sym_BANG] = ACTIONS(894), [anon_sym_AMP] = ACTIONS(896), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(898), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_COLON_COLON] = ACTIONS(486), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(512), [anon_sym_break] = ACTIONS(514), [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), + [anon_sym_default] = ACTIONS(492), [anon_sym_for] = ACTIONS(362), [anon_sym_gen] = ACTIONS(518), [anon_sym_if] = ACTIONS(366), @@ -37350,10 +36622,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(370), [anon_sym_return] = ACTIONS(520), [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), + [anon_sym_union] = ACTIONS(492), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), + [anon_sym_raw] = ACTIONS(492), [anon_sym_yield] = ACTIONS(524), [anon_sym_move] = ACTIONS(526), [anon_sym_try] = ACTIONS(378), @@ -37364,16 +36636,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(174)] = { - [sym_line_comment] = STATE(174), - [sym_block_comment] = STATE(174), + [170] = { + [sym_line_comment] = STATE(170), + [sym_block_comment] = STATE(170), [sym_identifier] = ACTIONS(958), [anon_sym_SEMI] = ACTIONS(960), [anon_sym_LPAREN] = ACTIONS(960), @@ -37487,24 +36759,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(960), [sym_float_literal] = ACTIONS(960), }, - [STATE(175)] = { - [sym_line_comment] = STATE(175), - [sym_block_comment] = STATE(175), - [aux_sym__non_special_token_repeat1] = STATE(193), + [171] = { + [sym_line_comment] = STATE(171), + [sym_block_comment] = STATE(171), [sym_identifier] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(685), + [anon_sym_SEMI] = ACTIONS(964), [anon_sym_LPAREN] = ACTIONS(964), [anon_sym_RPAREN] = ACTIONS(964), [anon_sym_LBRACK] = ACTIONS(964), [anon_sym_RBRACK] = ACTIONS(964), [anon_sym_LBRACE] = ACTIONS(964), [anon_sym_RBRACE] = ACTIONS(964), - [anon_sym_EQ_GT] = ACTIONS(685), - [anon_sym_COLON] = ACTIONS(695), - [anon_sym_DOLLAR] = ACTIONS(964), - [anon_sym_PLUS] = ACTIONS(695), - [anon_sym_STAR] = ACTIONS(695), - [anon_sym_QMARK] = ACTIONS(685), + [anon_sym_EQ_GT] = ACTIONS(964), + [anon_sym_COLON] = ACTIONS(962), + [anon_sym_DOLLAR] = ACTIONS(962), + [anon_sym_PLUS] = ACTIONS(962), + [anon_sym_STAR] = ACTIONS(962), + [anon_sym_QMARK] = ACTIONS(964), [anon_sym_u8] = ACTIONS(962), [anon_sym_i8] = ACTIONS(962), [anon_sym_u16] = ACTIONS(962), @@ -37522,44 +36793,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(962), [anon_sym_str] = ACTIONS(962), [anon_sym_char] = ACTIONS(962), - [anon_sym_DASH] = ACTIONS(695), - [anon_sym_SLASH] = ACTIONS(695), - [anon_sym_PERCENT] = ACTIONS(695), - [anon_sym_CARET] = ACTIONS(695), - [anon_sym_BANG] = ACTIONS(695), - [anon_sym_AMP] = ACTIONS(695), - [anon_sym_PIPE] = ACTIONS(695), - [anon_sym_AMP_AMP] = ACTIONS(685), - [anon_sym_PIPE_PIPE] = ACTIONS(685), - [anon_sym_LT_LT] = ACTIONS(695), - [anon_sym_GT_GT] = ACTIONS(695), - [anon_sym_PLUS_EQ] = ACTIONS(685), - [anon_sym_DASH_EQ] = ACTIONS(685), - [anon_sym_STAR_EQ] = ACTIONS(685), - [anon_sym_SLASH_EQ] = ACTIONS(685), - [anon_sym_PERCENT_EQ] = ACTIONS(685), - [anon_sym_CARET_EQ] = ACTIONS(685), - [anon_sym_AMP_EQ] = ACTIONS(685), - [anon_sym_PIPE_EQ] = ACTIONS(685), - [anon_sym_LT_LT_EQ] = ACTIONS(685), - [anon_sym_GT_GT_EQ] = ACTIONS(685), - [anon_sym_EQ] = ACTIONS(695), - [anon_sym_EQ_EQ] = ACTIONS(685), - [anon_sym_BANG_EQ] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(695), - [anon_sym_LT] = ACTIONS(695), - [anon_sym_GT_EQ] = ACTIONS(685), - [anon_sym_LT_EQ] = ACTIONS(685), - [anon_sym_AT] = ACTIONS(685), - [anon_sym__] = ACTIONS(695), - [anon_sym_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT] = ACTIONS(695), - [anon_sym_DOT_DOT_DOT] = ACTIONS(685), - [anon_sym_DOT_DOT_EQ] = ACTIONS(685), - [anon_sym_COMMA] = ACTIONS(685), - [anon_sym_COLON_COLON] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(685), - [anon_sym_POUND] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(962), + [anon_sym_SLASH] = ACTIONS(962), + [anon_sym_PERCENT] = ACTIONS(962), + [anon_sym_CARET] = ACTIONS(962), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_AMP] = ACTIONS(962), + [anon_sym_PIPE] = ACTIONS(962), + [anon_sym_AMP_AMP] = ACTIONS(964), + [anon_sym_PIPE_PIPE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(962), + [anon_sym_GT_GT] = ACTIONS(962), + [anon_sym_PLUS_EQ] = ACTIONS(964), + [anon_sym_DASH_EQ] = ACTIONS(964), + [anon_sym_STAR_EQ] = ACTIONS(964), + [anon_sym_SLASH_EQ] = ACTIONS(964), + [anon_sym_PERCENT_EQ] = ACTIONS(964), + [anon_sym_CARET_EQ] = ACTIONS(964), + [anon_sym_AMP_EQ] = ACTIONS(964), + [anon_sym_PIPE_EQ] = ACTIONS(964), + [anon_sym_LT_LT_EQ] = ACTIONS(964), + [anon_sym_GT_GT_EQ] = ACTIONS(964), + [anon_sym_EQ] = ACTIONS(962), + [anon_sym_EQ_EQ] = ACTIONS(964), + [anon_sym_BANG_EQ] = ACTIONS(964), + [anon_sym_GT] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(962), + [anon_sym_GT_EQ] = ACTIONS(964), + [anon_sym_LT_EQ] = ACTIONS(964), + [anon_sym_AT] = ACTIONS(964), + [anon_sym__] = ACTIONS(962), + [anon_sym_DOT] = ACTIONS(962), + [anon_sym_DOT_DOT] = ACTIONS(962), + [anon_sym_DOT_DOT_DOT] = ACTIONS(964), + [anon_sym_DOT_DOT_EQ] = ACTIONS(964), + [anon_sym_COMMA] = ACTIONS(964), + [anon_sym_COLON_COLON] = ACTIONS(964), + [anon_sym_DASH_GT] = ACTIONS(964), + [anon_sym_POUND] = ACTIONS(964), [anon_sym_SQUOTE] = ACTIONS(962), [anon_sym_as] = ACTIONS(962), [anon_sym_async] = ACTIONS(962), @@ -37600,12 +36871,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_self] = ACTIONS(962), [sym_super] = ACTIONS(962), [sym_crate] = ACTIONS(962), + [sym_metavariable] = ACTIONS(964), [sym__raw_string_literal_start] = ACTIONS(964), [sym_float_literal] = ACTIONS(964), }, - [STATE(176)] = { - [sym_line_comment] = STATE(176), - [sym_block_comment] = STATE(176), + [172] = { + [sym_line_comment] = STATE(172), + [sym_block_comment] = STATE(172), [sym_identifier] = ACTIONS(966), [anon_sym_SEMI] = ACTIONS(968), [anon_sym_LPAREN] = ACTIONS(968), @@ -37719,9 +36991,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(968), [sym_float_literal] = ACTIONS(968), }, - [STATE(177)] = { - [sym_line_comment] = STATE(177), - [sym_block_comment] = STATE(177), + [173] = { + [sym_line_comment] = STATE(173), + [sym_block_comment] = STATE(173), [sym_identifier] = ACTIONS(970), [anon_sym_SEMI] = ACTIONS(972), [anon_sym_LPAREN] = ACTIONS(972), @@ -37835,937 +37107,937 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(972), [sym_float_literal] = ACTIONS(972), }, - [STATE(178)] = { + [174] = { + [sym_line_comment] = STATE(174), + [sym_block_comment] = STATE(174), + [sym_identifier] = ACTIONS(928), + [anon_sym_SEMI] = ACTIONS(930), + [anon_sym_LPAREN] = ACTIONS(930), + [anon_sym_RPAREN] = ACTIONS(930), + [anon_sym_LBRACK] = ACTIONS(930), + [anon_sym_RBRACK] = ACTIONS(930), + [anon_sym_LBRACE] = ACTIONS(930), + [anon_sym_RBRACE] = ACTIONS(930), + [anon_sym_EQ_GT] = ACTIONS(930), + [anon_sym_COLON] = ACTIONS(928), + [anon_sym_DOLLAR] = ACTIONS(928), + [anon_sym_PLUS] = ACTIONS(928), + [anon_sym_STAR] = ACTIONS(928), + [anon_sym_QMARK] = ACTIONS(930), + [anon_sym_u8] = ACTIONS(928), + [anon_sym_i8] = ACTIONS(928), + [anon_sym_u16] = ACTIONS(928), + [anon_sym_i16] = ACTIONS(928), + [anon_sym_u32] = ACTIONS(928), + [anon_sym_i32] = ACTIONS(928), + [anon_sym_u64] = ACTIONS(928), + [anon_sym_i64] = ACTIONS(928), + [anon_sym_u128] = ACTIONS(928), + [anon_sym_i128] = ACTIONS(928), + [anon_sym_isize] = ACTIONS(928), + [anon_sym_usize] = ACTIONS(928), + [anon_sym_f32] = ACTIONS(928), + [anon_sym_f64] = ACTIONS(928), + [anon_sym_bool] = ACTIONS(928), + [anon_sym_str] = ACTIONS(928), + [anon_sym_char] = ACTIONS(928), + [anon_sym_DASH] = ACTIONS(928), + [anon_sym_SLASH] = ACTIONS(928), + [anon_sym_PERCENT] = ACTIONS(928), + [anon_sym_CARET] = ACTIONS(928), + [anon_sym_BANG] = ACTIONS(928), + [anon_sym_AMP] = ACTIONS(928), + [anon_sym_PIPE] = ACTIONS(928), + [anon_sym_AMP_AMP] = ACTIONS(930), + [anon_sym_PIPE_PIPE] = ACTIONS(930), + [anon_sym_LT_LT] = ACTIONS(928), + [anon_sym_GT_GT] = ACTIONS(928), + [anon_sym_PLUS_EQ] = ACTIONS(930), + [anon_sym_DASH_EQ] = ACTIONS(930), + [anon_sym_STAR_EQ] = ACTIONS(930), + [anon_sym_SLASH_EQ] = ACTIONS(930), + [anon_sym_PERCENT_EQ] = ACTIONS(930), + [anon_sym_CARET_EQ] = ACTIONS(930), + [anon_sym_AMP_EQ] = ACTIONS(930), + [anon_sym_PIPE_EQ] = ACTIONS(930), + [anon_sym_LT_LT_EQ] = ACTIONS(930), + [anon_sym_GT_GT_EQ] = ACTIONS(930), + [anon_sym_EQ] = ACTIONS(928), + [anon_sym_EQ_EQ] = ACTIONS(930), + [anon_sym_BANG_EQ] = ACTIONS(930), + [anon_sym_GT] = ACTIONS(928), + [anon_sym_LT] = ACTIONS(928), + [anon_sym_GT_EQ] = ACTIONS(930), + [anon_sym_LT_EQ] = ACTIONS(930), + [anon_sym_AT] = ACTIONS(930), + [anon_sym__] = ACTIONS(928), + [anon_sym_DOT] = ACTIONS(928), + [anon_sym_DOT_DOT] = ACTIONS(928), + [anon_sym_DOT_DOT_DOT] = ACTIONS(930), + [anon_sym_DOT_DOT_EQ] = ACTIONS(930), + [anon_sym_COMMA] = ACTIONS(930), + [anon_sym_COLON_COLON] = ACTIONS(930), + [anon_sym_DASH_GT] = ACTIONS(930), + [anon_sym_POUND] = ACTIONS(930), + [anon_sym_SQUOTE] = ACTIONS(928), + [anon_sym_as] = ACTIONS(928), + [anon_sym_async] = ACTIONS(928), + [anon_sym_await] = ACTIONS(928), + [anon_sym_break] = ACTIONS(928), + [anon_sym_const] = ACTIONS(928), + [anon_sym_continue] = ACTIONS(928), + [anon_sym_default] = ACTIONS(928), + [anon_sym_enum] = ACTIONS(928), + [anon_sym_fn] = ACTIONS(928), + [anon_sym_for] = ACTIONS(928), + [anon_sym_gen] = ACTIONS(928), + [anon_sym_if] = ACTIONS(928), + [anon_sym_impl] = ACTIONS(928), + [anon_sym_let] = ACTIONS(928), + [anon_sym_loop] = ACTIONS(928), + [anon_sym_match] = ACTIONS(928), + [anon_sym_mod] = ACTIONS(928), + [anon_sym_pub] = ACTIONS(928), + [anon_sym_return] = ACTIONS(928), + [anon_sym_static] = ACTIONS(928), + [anon_sym_struct] = ACTIONS(928), + [anon_sym_trait] = ACTIONS(928), + [anon_sym_type] = ACTIONS(928), + [anon_sym_union] = ACTIONS(928), + [anon_sym_unsafe] = ACTIONS(928), + [anon_sym_use] = ACTIONS(928), + [anon_sym_where] = ACTIONS(928), + [anon_sym_while] = ACTIONS(928), + [sym_mutable_specifier] = ACTIONS(928), + [sym_integer_literal] = ACTIONS(930), + [aux_sym_string_literal_token1] = ACTIONS(930), + [sym_char_literal] = ACTIONS(930), + [anon_sym_true] = ACTIONS(928), + [anon_sym_false] = ACTIONS(928), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(928), + [sym_super] = ACTIONS(928), + [sym_crate] = ACTIONS(928), + [sym_metavariable] = ACTIONS(930), + [sym__raw_string_literal_start] = ACTIONS(930), + [sym_float_literal] = ACTIONS(930), + }, + [175] = { + [sym_attribute_item] = STATE(1052), + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1675), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(175), + [sym_block_comment] = STATE(175), + [aux_sym_enum_variant_list_repeat1] = STATE(1050), + [sym_identifier] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [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(757), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(360), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(364), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_raw] = ACTIONS(360), + [anon_sym_yield] = ACTIONS(93), + [anon_sym_move] = ACTIONS(95), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(111), + [sym_super] = ACTIONS(113), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(117), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [176] = { + [sym_line_comment] = STATE(176), + [sym_block_comment] = STATE(176), + [aux_sym__non_special_token_repeat1] = STATE(176), + [sym_identifier] = ACTIONS(942), + [anon_sym_SEMI] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(947), + [anon_sym_RPAREN] = ACTIONS(947), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_RBRACK] = ACTIONS(947), + [anon_sym_LBRACE] = ACTIONS(947), + [anon_sym_RBRACE] = ACTIONS(947), + [anon_sym_EQ_GT] = ACTIONS(974), + [anon_sym_COLON] = ACTIONS(977), + [anon_sym_DOLLAR] = ACTIONS(947), + [anon_sym_PLUS] = ACTIONS(977), + [anon_sym_STAR] = ACTIONS(977), + [anon_sym_QMARK] = ACTIONS(974), + [anon_sym_u8] = ACTIONS(942), + [anon_sym_i8] = ACTIONS(942), + [anon_sym_u16] = ACTIONS(942), + [anon_sym_i16] = ACTIONS(942), + [anon_sym_u32] = ACTIONS(942), + [anon_sym_i32] = ACTIONS(942), + [anon_sym_u64] = ACTIONS(942), + [anon_sym_i64] = ACTIONS(942), + [anon_sym_u128] = ACTIONS(942), + [anon_sym_i128] = ACTIONS(942), + [anon_sym_isize] = ACTIONS(942), + [anon_sym_usize] = ACTIONS(942), + [anon_sym_f32] = ACTIONS(942), + [anon_sym_f64] = ACTIONS(942), + [anon_sym_bool] = ACTIONS(942), + [anon_sym_str] = ACTIONS(942), + [anon_sym_char] = ACTIONS(942), + [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(974), + [anon_sym_PIPE_PIPE] = ACTIONS(974), + [anon_sym_LT_LT] = ACTIONS(977), + [anon_sym_GT_GT] = ACTIONS(977), + [anon_sym_PLUS_EQ] = ACTIONS(974), + [anon_sym_DASH_EQ] = ACTIONS(974), + [anon_sym_STAR_EQ] = ACTIONS(974), + [anon_sym_SLASH_EQ] = ACTIONS(974), + [anon_sym_PERCENT_EQ] = ACTIONS(974), + [anon_sym_CARET_EQ] = ACTIONS(974), + [anon_sym_AMP_EQ] = ACTIONS(974), + [anon_sym_PIPE_EQ] = ACTIONS(974), + [anon_sym_LT_LT_EQ] = ACTIONS(974), + [anon_sym_GT_GT_EQ] = ACTIONS(974), + [anon_sym_EQ] = ACTIONS(977), + [anon_sym_EQ_EQ] = ACTIONS(974), + [anon_sym_BANG_EQ] = ACTIONS(974), + [anon_sym_GT] = ACTIONS(977), + [anon_sym_LT] = ACTIONS(977), + [anon_sym_GT_EQ] = ACTIONS(974), + [anon_sym_LT_EQ] = ACTIONS(974), + [anon_sym_AT] = ACTIONS(974), + [anon_sym__] = ACTIONS(977), + [anon_sym_DOT] = ACTIONS(977), + [anon_sym_DOT_DOT] = ACTIONS(977), + [anon_sym_DOT_DOT_DOT] = ACTIONS(974), + [anon_sym_DOT_DOT_EQ] = ACTIONS(974), + [anon_sym_COMMA] = ACTIONS(974), + [anon_sym_COLON_COLON] = ACTIONS(974), + [anon_sym_DASH_GT] = ACTIONS(974), + [anon_sym_POUND] = ACTIONS(974), + [anon_sym_SQUOTE] = ACTIONS(942), + [anon_sym_as] = ACTIONS(942), + [anon_sym_async] = ACTIONS(942), + [anon_sym_await] = ACTIONS(942), + [anon_sym_break] = ACTIONS(942), + [anon_sym_const] = ACTIONS(942), + [anon_sym_continue] = ACTIONS(942), + [anon_sym_default] = ACTIONS(942), + [anon_sym_enum] = ACTIONS(942), + [anon_sym_fn] = ACTIONS(942), + [anon_sym_for] = ACTIONS(942), + [anon_sym_gen] = ACTIONS(942), + [anon_sym_if] = ACTIONS(942), + [anon_sym_impl] = ACTIONS(942), + [anon_sym_let] = ACTIONS(942), + [anon_sym_loop] = ACTIONS(942), + [anon_sym_match] = ACTIONS(942), + [anon_sym_mod] = ACTIONS(942), + [anon_sym_pub] = ACTIONS(942), + [anon_sym_return] = ACTIONS(942), + [anon_sym_static] = ACTIONS(942), + [anon_sym_struct] = ACTIONS(942), + [anon_sym_trait] = ACTIONS(942), + [anon_sym_type] = ACTIONS(942), + [anon_sym_union] = ACTIONS(942), + [anon_sym_unsafe] = ACTIONS(942), + [anon_sym_use] = ACTIONS(942), + [anon_sym_where] = ACTIONS(942), + [anon_sym_while] = ACTIONS(942), + [sym_mutable_specifier] = ACTIONS(942), + [sym_integer_literal] = ACTIONS(947), + [aux_sym_string_literal_token1] = ACTIONS(947), + [sym_char_literal] = ACTIONS(947), + [anon_sym_true] = ACTIONS(942), + [anon_sym_false] = ACTIONS(942), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(942), + [sym_super] = ACTIONS(942), + [sym_crate] = ACTIONS(942), + [sym__raw_string_literal_start] = ACTIONS(947), + [sym_float_literal] = ACTIONS(947), + }, + [177] = { + [sym_line_comment] = STATE(177), + [sym_block_comment] = STATE(177), + [sym_identifier] = ACTIONS(980), + [anon_sym_SEMI] = ACTIONS(982), + [anon_sym_LPAREN] = ACTIONS(982), + [anon_sym_RPAREN] = ACTIONS(982), + [anon_sym_LBRACK] = ACTIONS(982), + [anon_sym_RBRACK] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(982), + [anon_sym_RBRACE] = ACTIONS(982), + [anon_sym_EQ_GT] = ACTIONS(982), + [anon_sym_COLON] = ACTIONS(980), + [anon_sym_DOLLAR] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(980), + [anon_sym_STAR] = ACTIONS(980), + [anon_sym_QMARK] = ACTIONS(982), + [anon_sym_u8] = ACTIONS(980), + [anon_sym_i8] = ACTIONS(980), + [anon_sym_u16] = ACTIONS(980), + [anon_sym_i16] = ACTIONS(980), + [anon_sym_u32] = ACTIONS(980), + [anon_sym_i32] = ACTIONS(980), + [anon_sym_u64] = ACTIONS(980), + [anon_sym_i64] = ACTIONS(980), + [anon_sym_u128] = ACTIONS(980), + [anon_sym_i128] = ACTIONS(980), + [anon_sym_isize] = ACTIONS(980), + [anon_sym_usize] = ACTIONS(980), + [anon_sym_f32] = ACTIONS(980), + [anon_sym_f64] = ACTIONS(980), + [anon_sym_bool] = ACTIONS(980), + [anon_sym_str] = ACTIONS(980), + [anon_sym_char] = ACTIONS(980), + [anon_sym_DASH] = ACTIONS(980), + [anon_sym_SLASH] = ACTIONS(980), + [anon_sym_PERCENT] = ACTIONS(980), + [anon_sym_CARET] = ACTIONS(980), + [anon_sym_BANG] = ACTIONS(980), + [anon_sym_AMP] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(980), + [anon_sym_AMP_AMP] = ACTIONS(982), + [anon_sym_PIPE_PIPE] = ACTIONS(982), + [anon_sym_LT_LT] = ACTIONS(980), + [anon_sym_GT_GT] = ACTIONS(980), + [anon_sym_PLUS_EQ] = ACTIONS(982), + [anon_sym_DASH_EQ] = ACTIONS(982), + [anon_sym_STAR_EQ] = ACTIONS(982), + [anon_sym_SLASH_EQ] = ACTIONS(982), + [anon_sym_PERCENT_EQ] = ACTIONS(982), + [anon_sym_CARET_EQ] = ACTIONS(982), + [anon_sym_AMP_EQ] = ACTIONS(982), + [anon_sym_PIPE_EQ] = ACTIONS(982), + [anon_sym_LT_LT_EQ] = ACTIONS(982), + [anon_sym_GT_GT_EQ] = ACTIONS(982), + [anon_sym_EQ] = ACTIONS(980), + [anon_sym_EQ_EQ] = ACTIONS(982), + [anon_sym_BANG_EQ] = ACTIONS(982), + [anon_sym_GT] = ACTIONS(980), + [anon_sym_LT] = ACTIONS(980), + [anon_sym_GT_EQ] = ACTIONS(982), + [anon_sym_LT_EQ] = ACTIONS(982), + [anon_sym_AT] = ACTIONS(982), + [anon_sym__] = ACTIONS(980), + [anon_sym_DOT] = ACTIONS(980), + [anon_sym_DOT_DOT] = ACTIONS(980), + [anon_sym_DOT_DOT_DOT] = ACTIONS(982), + [anon_sym_DOT_DOT_EQ] = ACTIONS(982), + [anon_sym_COMMA] = ACTIONS(982), + [anon_sym_COLON_COLON] = ACTIONS(982), + [anon_sym_DASH_GT] = ACTIONS(982), + [anon_sym_POUND] = ACTIONS(982), + [anon_sym_SQUOTE] = ACTIONS(980), + [anon_sym_as] = ACTIONS(980), + [anon_sym_async] = ACTIONS(980), + [anon_sym_await] = ACTIONS(980), + [anon_sym_break] = ACTIONS(980), + [anon_sym_const] = ACTIONS(980), + [anon_sym_continue] = ACTIONS(980), + [anon_sym_default] = ACTIONS(980), + [anon_sym_enum] = ACTIONS(980), + [anon_sym_fn] = ACTIONS(980), + [anon_sym_for] = ACTIONS(980), + [anon_sym_gen] = ACTIONS(980), + [anon_sym_if] = ACTIONS(980), + [anon_sym_impl] = ACTIONS(980), + [anon_sym_let] = ACTIONS(980), + [anon_sym_loop] = ACTIONS(980), + [anon_sym_match] = ACTIONS(980), + [anon_sym_mod] = ACTIONS(980), + [anon_sym_pub] = ACTIONS(980), + [anon_sym_return] = ACTIONS(980), + [anon_sym_static] = ACTIONS(980), + [anon_sym_struct] = ACTIONS(980), + [anon_sym_trait] = ACTIONS(980), + [anon_sym_type] = ACTIONS(980), + [anon_sym_union] = ACTIONS(980), + [anon_sym_unsafe] = ACTIONS(980), + [anon_sym_use] = ACTIONS(980), + [anon_sym_where] = ACTIONS(980), + [anon_sym_while] = ACTIONS(980), + [sym_mutable_specifier] = ACTIONS(980), + [sym_integer_literal] = ACTIONS(982), + [aux_sym_string_literal_token1] = ACTIONS(982), + [sym_char_literal] = ACTIONS(982), + [anon_sym_true] = ACTIONS(980), + [anon_sym_false] = ACTIONS(980), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(980), + [sym_super] = ACTIONS(980), + [sym_crate] = ACTIONS(980), + [sym_metavariable] = ACTIONS(982), + [sym__raw_string_literal_start] = ACTIONS(982), + [sym_float_literal] = ACTIONS(982), + }, + [178] = { [sym_line_comment] = STATE(178), [sym_block_comment] = STATE(178), - [sym_identifier] = ACTIONS(974), - [anon_sym_SEMI] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(976), - [anon_sym_RPAREN] = ACTIONS(976), - [anon_sym_LBRACK] = ACTIONS(976), - [anon_sym_RBRACK] = ACTIONS(976), - [anon_sym_LBRACE] = ACTIONS(976), - [anon_sym_RBRACE] = ACTIONS(976), - [anon_sym_EQ_GT] = ACTIONS(976), - [anon_sym_COLON] = ACTIONS(974), - [anon_sym_DOLLAR] = ACTIONS(974), - [anon_sym_PLUS] = ACTIONS(974), - [anon_sym_STAR] = ACTIONS(974), - [anon_sym_QMARK] = ACTIONS(976), - [anon_sym_u8] = ACTIONS(974), - [anon_sym_i8] = ACTIONS(974), - [anon_sym_u16] = ACTIONS(974), - [anon_sym_i16] = ACTIONS(974), - [anon_sym_u32] = ACTIONS(974), - [anon_sym_i32] = ACTIONS(974), - [anon_sym_u64] = ACTIONS(974), - [anon_sym_i64] = ACTIONS(974), - [anon_sym_u128] = ACTIONS(974), - [anon_sym_i128] = ACTIONS(974), - [anon_sym_isize] = ACTIONS(974), - [anon_sym_usize] = ACTIONS(974), - [anon_sym_f32] = ACTIONS(974), - [anon_sym_f64] = ACTIONS(974), - [anon_sym_bool] = ACTIONS(974), - [anon_sym_str] = ACTIONS(974), - [anon_sym_char] = ACTIONS(974), - [anon_sym_DASH] = ACTIONS(974), - [anon_sym_SLASH] = ACTIONS(974), - [anon_sym_PERCENT] = ACTIONS(974), - [anon_sym_CARET] = ACTIONS(974), - [anon_sym_BANG] = ACTIONS(974), - [anon_sym_AMP] = ACTIONS(974), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_AMP_AMP] = ACTIONS(976), - [anon_sym_PIPE_PIPE] = ACTIONS(976), - [anon_sym_LT_LT] = ACTIONS(974), - [anon_sym_GT_GT] = ACTIONS(974), - [anon_sym_PLUS_EQ] = ACTIONS(976), - [anon_sym_DASH_EQ] = ACTIONS(976), - [anon_sym_STAR_EQ] = ACTIONS(976), - [anon_sym_SLASH_EQ] = ACTIONS(976), - [anon_sym_PERCENT_EQ] = ACTIONS(976), - [anon_sym_CARET_EQ] = ACTIONS(976), - [anon_sym_AMP_EQ] = ACTIONS(976), - [anon_sym_PIPE_EQ] = ACTIONS(976), - [anon_sym_LT_LT_EQ] = ACTIONS(976), - [anon_sym_GT_GT_EQ] = ACTIONS(976), - [anon_sym_EQ] = ACTIONS(974), - [anon_sym_EQ_EQ] = ACTIONS(976), - [anon_sym_BANG_EQ] = ACTIONS(976), - [anon_sym_GT] = ACTIONS(974), - [anon_sym_LT] = ACTIONS(974), - [anon_sym_GT_EQ] = ACTIONS(976), - [anon_sym_LT_EQ] = ACTIONS(976), - [anon_sym_AT] = ACTIONS(976), - [anon_sym__] = ACTIONS(974), - [anon_sym_DOT] = ACTIONS(974), - [anon_sym_DOT_DOT] = ACTIONS(974), - [anon_sym_DOT_DOT_DOT] = ACTIONS(976), - [anon_sym_DOT_DOT_EQ] = ACTIONS(976), - [anon_sym_COMMA] = ACTIONS(976), - [anon_sym_COLON_COLON] = ACTIONS(976), - [anon_sym_DASH_GT] = ACTIONS(976), - [anon_sym_POUND] = ACTIONS(976), - [anon_sym_SQUOTE] = ACTIONS(974), - [anon_sym_as] = ACTIONS(974), - [anon_sym_async] = ACTIONS(974), - [anon_sym_await] = ACTIONS(974), - [anon_sym_break] = ACTIONS(974), - [anon_sym_const] = ACTIONS(974), - [anon_sym_continue] = ACTIONS(974), - [anon_sym_default] = ACTIONS(974), - [anon_sym_enum] = ACTIONS(974), - [anon_sym_fn] = ACTIONS(974), - [anon_sym_for] = ACTIONS(974), - [anon_sym_gen] = ACTIONS(974), - [anon_sym_if] = ACTIONS(974), - [anon_sym_impl] = ACTIONS(974), - [anon_sym_let] = ACTIONS(974), - [anon_sym_loop] = ACTIONS(974), - [anon_sym_match] = ACTIONS(974), - [anon_sym_mod] = ACTIONS(974), - [anon_sym_pub] = ACTIONS(974), - [anon_sym_return] = ACTIONS(974), - [anon_sym_static] = ACTIONS(974), - [anon_sym_struct] = ACTIONS(974), - [anon_sym_trait] = ACTIONS(974), - [anon_sym_type] = ACTIONS(974), - [anon_sym_union] = ACTIONS(974), - [anon_sym_unsafe] = ACTIONS(974), - [anon_sym_use] = ACTIONS(974), - [anon_sym_where] = ACTIONS(974), - [anon_sym_while] = ACTIONS(974), - [sym_mutable_specifier] = ACTIONS(974), - [sym_integer_literal] = ACTIONS(976), - [aux_sym_string_literal_token1] = ACTIONS(976), - [sym_char_literal] = ACTIONS(976), - [anon_sym_true] = ACTIONS(974), - [anon_sym_false] = ACTIONS(974), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(974), - [sym_super] = ACTIONS(974), - [sym_crate] = ACTIONS(974), - [sym_metavariable] = ACTIONS(976), - [sym__raw_string_literal_start] = ACTIONS(976), - [sym_float_literal] = ACTIONS(976), - }, - [STATE(179)] = { + [sym_identifier] = ACTIONS(984), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_RPAREN] = ACTIONS(986), + [anon_sym_LBRACK] = ACTIONS(986), + [anon_sym_RBRACK] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(986), + [anon_sym_RBRACE] = ACTIONS(986), + [anon_sym_EQ_GT] = ACTIONS(986), + [anon_sym_COLON] = ACTIONS(984), + [anon_sym_DOLLAR] = ACTIONS(984), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_STAR] = ACTIONS(984), + [anon_sym_QMARK] = ACTIONS(986), + [anon_sym_u8] = ACTIONS(984), + [anon_sym_i8] = ACTIONS(984), + [anon_sym_u16] = ACTIONS(984), + [anon_sym_i16] = ACTIONS(984), + [anon_sym_u32] = ACTIONS(984), + [anon_sym_i32] = ACTIONS(984), + [anon_sym_u64] = ACTIONS(984), + [anon_sym_i64] = ACTIONS(984), + [anon_sym_u128] = ACTIONS(984), + [anon_sym_i128] = ACTIONS(984), + [anon_sym_isize] = ACTIONS(984), + [anon_sym_usize] = ACTIONS(984), + [anon_sym_f32] = ACTIONS(984), + [anon_sym_f64] = ACTIONS(984), + [anon_sym_bool] = ACTIONS(984), + [anon_sym_str] = ACTIONS(984), + [anon_sym_char] = ACTIONS(984), + [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(986), + [anon_sym_PIPE_PIPE] = ACTIONS(986), + [anon_sym_LT_LT] = ACTIONS(984), + [anon_sym_GT_GT] = ACTIONS(984), + [anon_sym_PLUS_EQ] = ACTIONS(986), + [anon_sym_DASH_EQ] = ACTIONS(986), + [anon_sym_STAR_EQ] = ACTIONS(986), + [anon_sym_SLASH_EQ] = ACTIONS(986), + [anon_sym_PERCENT_EQ] = ACTIONS(986), + [anon_sym_CARET_EQ] = ACTIONS(986), + [anon_sym_AMP_EQ] = ACTIONS(986), + [anon_sym_PIPE_EQ] = ACTIONS(986), + [anon_sym_LT_LT_EQ] = ACTIONS(986), + [anon_sym_GT_GT_EQ] = ACTIONS(986), + [anon_sym_EQ] = ACTIONS(984), + [anon_sym_EQ_EQ] = ACTIONS(986), + [anon_sym_BANG_EQ] = ACTIONS(986), + [anon_sym_GT] = ACTIONS(984), + [anon_sym_LT] = ACTIONS(984), + [anon_sym_GT_EQ] = ACTIONS(986), + [anon_sym_LT_EQ] = ACTIONS(986), + [anon_sym_AT] = ACTIONS(986), + [anon_sym__] = ACTIONS(984), + [anon_sym_DOT] = ACTIONS(984), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DOT_DOT_DOT] = ACTIONS(986), + [anon_sym_DOT_DOT_EQ] = ACTIONS(986), + [anon_sym_COMMA] = ACTIONS(986), + [anon_sym_COLON_COLON] = ACTIONS(986), + [anon_sym_DASH_GT] = ACTIONS(986), + [anon_sym_POUND] = ACTIONS(986), + [anon_sym_SQUOTE] = ACTIONS(984), + [anon_sym_as] = ACTIONS(984), + [anon_sym_async] = ACTIONS(984), + [anon_sym_await] = ACTIONS(984), + [anon_sym_break] = ACTIONS(984), + [anon_sym_const] = ACTIONS(984), + [anon_sym_continue] = ACTIONS(984), + [anon_sym_default] = ACTIONS(984), + [anon_sym_enum] = ACTIONS(984), + [anon_sym_fn] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_gen] = ACTIONS(984), + [anon_sym_if] = ACTIONS(984), + [anon_sym_impl] = ACTIONS(984), + [anon_sym_let] = ACTIONS(984), + [anon_sym_loop] = ACTIONS(984), + [anon_sym_match] = ACTIONS(984), + [anon_sym_mod] = ACTIONS(984), + [anon_sym_pub] = ACTIONS(984), + [anon_sym_return] = ACTIONS(984), + [anon_sym_static] = ACTIONS(984), + [anon_sym_struct] = ACTIONS(984), + [anon_sym_trait] = ACTIONS(984), + [anon_sym_type] = ACTIONS(984), + [anon_sym_union] = ACTIONS(984), + [anon_sym_unsafe] = ACTIONS(984), + [anon_sym_use] = ACTIONS(984), + [anon_sym_where] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [sym_mutable_specifier] = ACTIONS(984), + [sym_integer_literal] = ACTIONS(986), + [aux_sym_string_literal_token1] = ACTIONS(986), + [sym_char_literal] = ACTIONS(986), + [anon_sym_true] = ACTIONS(984), + [anon_sym_false] = ACTIONS(984), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(984), + [sym_super] = ACTIONS(984), + [sym_crate] = ACTIONS(984), + [sym_metavariable] = ACTIONS(986), + [sym__raw_string_literal_start] = ACTIONS(986), + [sym_float_literal] = ACTIONS(986), + }, + [179] = { [sym_line_comment] = STATE(179), [sym_block_comment] = STATE(179), - [sym_identifier] = ACTIONS(978), - [anon_sym_SEMI] = ACTIONS(980), - [anon_sym_LPAREN] = ACTIONS(980), - [anon_sym_RPAREN] = ACTIONS(980), - [anon_sym_LBRACK] = ACTIONS(980), - [anon_sym_RBRACK] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(980), - [anon_sym_RBRACE] = ACTIONS(980), - [anon_sym_EQ_GT] = ACTIONS(980), - [anon_sym_COLON] = ACTIONS(978), - [anon_sym_DOLLAR] = ACTIONS(978), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_STAR] = ACTIONS(978), - [anon_sym_QMARK] = ACTIONS(980), - [anon_sym_u8] = ACTIONS(978), - [anon_sym_i8] = ACTIONS(978), - [anon_sym_u16] = ACTIONS(978), - [anon_sym_i16] = ACTIONS(978), - [anon_sym_u32] = ACTIONS(978), - [anon_sym_i32] = ACTIONS(978), - [anon_sym_u64] = ACTIONS(978), - [anon_sym_i64] = ACTIONS(978), - [anon_sym_u128] = ACTIONS(978), - [anon_sym_i128] = ACTIONS(978), - [anon_sym_isize] = ACTIONS(978), - [anon_sym_usize] = ACTIONS(978), - [anon_sym_f32] = ACTIONS(978), - [anon_sym_f64] = ACTIONS(978), - [anon_sym_bool] = ACTIONS(978), - [anon_sym_str] = ACTIONS(978), - [anon_sym_char] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(978), - [anon_sym_SLASH] = ACTIONS(978), - [anon_sym_PERCENT] = ACTIONS(978), - [anon_sym_CARET] = ACTIONS(978), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_AMP] = ACTIONS(978), - [anon_sym_PIPE] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(980), - [anon_sym_PIPE_PIPE] = ACTIONS(980), - [anon_sym_LT_LT] = ACTIONS(978), - [anon_sym_GT_GT] = ACTIONS(978), - [anon_sym_PLUS_EQ] = ACTIONS(980), - [anon_sym_DASH_EQ] = ACTIONS(980), - [anon_sym_STAR_EQ] = ACTIONS(980), - [anon_sym_SLASH_EQ] = ACTIONS(980), - [anon_sym_PERCENT_EQ] = ACTIONS(980), - [anon_sym_CARET_EQ] = ACTIONS(980), - [anon_sym_AMP_EQ] = ACTIONS(980), - [anon_sym_PIPE_EQ] = ACTIONS(980), - [anon_sym_LT_LT_EQ] = ACTIONS(980), - [anon_sym_GT_GT_EQ] = ACTIONS(980), - [anon_sym_EQ] = ACTIONS(978), - [anon_sym_EQ_EQ] = ACTIONS(980), - [anon_sym_BANG_EQ] = ACTIONS(980), - [anon_sym_GT] = ACTIONS(978), - [anon_sym_LT] = ACTIONS(978), - [anon_sym_GT_EQ] = ACTIONS(980), - [anon_sym_LT_EQ] = ACTIONS(980), - [anon_sym_AT] = ACTIONS(980), - [anon_sym__] = ACTIONS(978), - [anon_sym_DOT] = ACTIONS(978), - [anon_sym_DOT_DOT] = ACTIONS(978), - [anon_sym_DOT_DOT_DOT] = ACTIONS(980), - [anon_sym_DOT_DOT_EQ] = ACTIONS(980), - [anon_sym_COMMA] = ACTIONS(980), - [anon_sym_COLON_COLON] = ACTIONS(980), - [anon_sym_DASH_GT] = ACTIONS(980), - [anon_sym_POUND] = ACTIONS(980), - [anon_sym_SQUOTE] = ACTIONS(978), - [anon_sym_as] = ACTIONS(978), - [anon_sym_async] = ACTIONS(978), - [anon_sym_await] = ACTIONS(978), - [anon_sym_break] = ACTIONS(978), - [anon_sym_const] = ACTIONS(978), - [anon_sym_continue] = ACTIONS(978), - [anon_sym_default] = ACTIONS(978), - [anon_sym_enum] = ACTIONS(978), - [anon_sym_fn] = ACTIONS(978), - [anon_sym_for] = ACTIONS(978), - [anon_sym_gen] = ACTIONS(978), - [anon_sym_if] = ACTIONS(978), - [anon_sym_impl] = ACTIONS(978), - [anon_sym_let] = ACTIONS(978), - [anon_sym_loop] = ACTIONS(978), - [anon_sym_match] = ACTIONS(978), - [anon_sym_mod] = ACTIONS(978), - [anon_sym_pub] = ACTIONS(978), - [anon_sym_return] = ACTIONS(978), - [anon_sym_static] = ACTIONS(978), - [anon_sym_struct] = ACTIONS(978), - [anon_sym_trait] = ACTIONS(978), - [anon_sym_type] = ACTIONS(978), - [anon_sym_union] = ACTIONS(978), - [anon_sym_unsafe] = ACTIONS(978), - [anon_sym_use] = ACTIONS(978), - [anon_sym_where] = ACTIONS(978), - [anon_sym_while] = ACTIONS(978), - [sym_mutable_specifier] = ACTIONS(978), - [sym_integer_literal] = ACTIONS(980), - [aux_sym_string_literal_token1] = ACTIONS(980), - [sym_char_literal] = ACTIONS(980), - [anon_sym_true] = ACTIONS(978), - [anon_sym_false] = ACTIONS(978), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(978), - [sym_super] = ACTIONS(978), - [sym_crate] = ACTIONS(978), - [sym_metavariable] = ACTIONS(980), - [sym__raw_string_literal_start] = ACTIONS(980), - [sym_float_literal] = ACTIONS(980), - }, - [STATE(180)] = { + [sym_identifier] = ACTIONS(988), + [anon_sym_SEMI] = ACTIONS(990), + [anon_sym_LPAREN] = ACTIONS(990), + [anon_sym_RPAREN] = ACTIONS(990), + [anon_sym_LBRACK] = ACTIONS(990), + [anon_sym_RBRACK] = ACTIONS(990), + [anon_sym_LBRACE] = ACTIONS(990), + [anon_sym_RBRACE] = ACTIONS(990), + [anon_sym_EQ_GT] = ACTIONS(990), + [anon_sym_COLON] = ACTIONS(988), + [anon_sym_DOLLAR] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(988), + [anon_sym_STAR] = ACTIONS(988), + [anon_sym_QMARK] = ACTIONS(990), + [anon_sym_u8] = ACTIONS(988), + [anon_sym_i8] = ACTIONS(988), + [anon_sym_u16] = ACTIONS(988), + [anon_sym_i16] = ACTIONS(988), + [anon_sym_u32] = ACTIONS(988), + [anon_sym_i32] = ACTIONS(988), + [anon_sym_u64] = ACTIONS(988), + [anon_sym_i64] = ACTIONS(988), + [anon_sym_u128] = ACTIONS(988), + [anon_sym_i128] = ACTIONS(988), + [anon_sym_isize] = ACTIONS(988), + [anon_sym_usize] = ACTIONS(988), + [anon_sym_f32] = ACTIONS(988), + [anon_sym_f64] = ACTIONS(988), + [anon_sym_bool] = ACTIONS(988), + [anon_sym_str] = ACTIONS(988), + [anon_sym_char] = ACTIONS(988), + [anon_sym_DASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_PERCENT] = ACTIONS(988), + [anon_sym_CARET] = ACTIONS(988), + [anon_sym_BANG] = ACTIONS(988), + [anon_sym_AMP] = ACTIONS(988), + [anon_sym_PIPE] = ACTIONS(988), + [anon_sym_AMP_AMP] = ACTIONS(990), + [anon_sym_PIPE_PIPE] = ACTIONS(990), + [anon_sym_LT_LT] = ACTIONS(988), + [anon_sym_GT_GT] = ACTIONS(988), + [anon_sym_PLUS_EQ] = ACTIONS(990), + [anon_sym_DASH_EQ] = ACTIONS(990), + [anon_sym_STAR_EQ] = ACTIONS(990), + [anon_sym_SLASH_EQ] = ACTIONS(990), + [anon_sym_PERCENT_EQ] = ACTIONS(990), + [anon_sym_CARET_EQ] = ACTIONS(990), + [anon_sym_AMP_EQ] = ACTIONS(990), + [anon_sym_PIPE_EQ] = ACTIONS(990), + [anon_sym_LT_LT_EQ] = ACTIONS(990), + [anon_sym_GT_GT_EQ] = ACTIONS(990), + [anon_sym_EQ] = ACTIONS(988), + [anon_sym_EQ_EQ] = ACTIONS(990), + [anon_sym_BANG_EQ] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(988), + [anon_sym_GT_EQ] = ACTIONS(990), + [anon_sym_LT_EQ] = ACTIONS(990), + [anon_sym_AT] = ACTIONS(990), + [anon_sym__] = ACTIONS(988), + [anon_sym_DOT] = ACTIONS(988), + [anon_sym_DOT_DOT] = ACTIONS(988), + [anon_sym_DOT_DOT_DOT] = ACTIONS(990), + [anon_sym_DOT_DOT_EQ] = ACTIONS(990), + [anon_sym_COMMA] = ACTIONS(990), + [anon_sym_COLON_COLON] = ACTIONS(990), + [anon_sym_DASH_GT] = ACTIONS(990), + [anon_sym_POUND] = ACTIONS(990), + [anon_sym_SQUOTE] = ACTIONS(988), + [anon_sym_as] = ACTIONS(988), + [anon_sym_async] = ACTIONS(988), + [anon_sym_await] = ACTIONS(988), + [anon_sym_break] = ACTIONS(988), + [anon_sym_const] = ACTIONS(988), + [anon_sym_continue] = ACTIONS(988), + [anon_sym_default] = ACTIONS(988), + [anon_sym_enum] = ACTIONS(988), + [anon_sym_fn] = ACTIONS(988), + [anon_sym_for] = ACTIONS(988), + [anon_sym_gen] = ACTIONS(988), + [anon_sym_if] = ACTIONS(988), + [anon_sym_impl] = ACTIONS(988), + [anon_sym_let] = ACTIONS(988), + [anon_sym_loop] = ACTIONS(988), + [anon_sym_match] = ACTIONS(988), + [anon_sym_mod] = ACTIONS(988), + [anon_sym_pub] = ACTIONS(988), + [anon_sym_return] = ACTIONS(988), + [anon_sym_static] = ACTIONS(988), + [anon_sym_struct] = ACTIONS(988), + [anon_sym_trait] = ACTIONS(988), + [anon_sym_type] = ACTIONS(988), + [anon_sym_union] = ACTIONS(988), + [anon_sym_unsafe] = ACTIONS(988), + [anon_sym_use] = ACTIONS(988), + [anon_sym_where] = ACTIONS(988), + [anon_sym_while] = ACTIONS(988), + [sym_mutable_specifier] = ACTIONS(988), + [sym_integer_literal] = ACTIONS(990), + [aux_sym_string_literal_token1] = ACTIONS(990), + [sym_char_literal] = ACTIONS(990), + [anon_sym_true] = ACTIONS(988), + [anon_sym_false] = ACTIONS(988), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(988), + [sym_super] = ACTIONS(988), + [sym_crate] = ACTIONS(988), + [sym_metavariable] = ACTIONS(990), + [sym__raw_string_literal_start] = ACTIONS(990), + [sym_float_literal] = ACTIONS(990), + }, + [180] = { [sym_line_comment] = STATE(180), [sym_block_comment] = STATE(180), - [sym_identifier] = ACTIONS(982), - [anon_sym_SEMI] = ACTIONS(984), - [anon_sym_LPAREN] = ACTIONS(984), - [anon_sym_RPAREN] = ACTIONS(984), - [anon_sym_LBRACK] = ACTIONS(984), - [anon_sym_RBRACK] = ACTIONS(984), - [anon_sym_LBRACE] = ACTIONS(984), - [anon_sym_RBRACE] = ACTIONS(984), - [anon_sym_EQ_GT] = ACTIONS(984), - [anon_sym_COLON] = ACTIONS(982), - [anon_sym_DOLLAR] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_STAR] = ACTIONS(982), - [anon_sym_QMARK] = ACTIONS(984), - [anon_sym_u8] = ACTIONS(982), - [anon_sym_i8] = ACTIONS(982), - [anon_sym_u16] = ACTIONS(982), - [anon_sym_i16] = ACTIONS(982), - [anon_sym_u32] = ACTIONS(982), - [anon_sym_i32] = ACTIONS(982), - [anon_sym_u64] = ACTIONS(982), - [anon_sym_i64] = ACTIONS(982), - [anon_sym_u128] = ACTIONS(982), - [anon_sym_i128] = ACTIONS(982), - [anon_sym_isize] = ACTIONS(982), - [anon_sym_usize] = ACTIONS(982), - [anon_sym_f32] = ACTIONS(982), - [anon_sym_f64] = ACTIONS(982), - [anon_sym_bool] = ACTIONS(982), - [anon_sym_str] = ACTIONS(982), - [anon_sym_char] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_SLASH] = ACTIONS(982), - [anon_sym_PERCENT] = ACTIONS(982), - [anon_sym_CARET] = ACTIONS(982), - [anon_sym_BANG] = ACTIONS(982), - [anon_sym_AMP] = ACTIONS(982), - [anon_sym_PIPE] = ACTIONS(982), - [anon_sym_AMP_AMP] = ACTIONS(984), - [anon_sym_PIPE_PIPE] = ACTIONS(984), - [anon_sym_LT_LT] = ACTIONS(982), - [anon_sym_GT_GT] = ACTIONS(982), - [anon_sym_PLUS_EQ] = ACTIONS(984), - [anon_sym_DASH_EQ] = ACTIONS(984), - [anon_sym_STAR_EQ] = ACTIONS(984), - [anon_sym_SLASH_EQ] = ACTIONS(984), - [anon_sym_PERCENT_EQ] = ACTIONS(984), - [anon_sym_CARET_EQ] = ACTIONS(984), - [anon_sym_AMP_EQ] = ACTIONS(984), - [anon_sym_PIPE_EQ] = ACTIONS(984), - [anon_sym_LT_LT_EQ] = ACTIONS(984), - [anon_sym_GT_GT_EQ] = ACTIONS(984), - [anon_sym_EQ] = ACTIONS(982), - [anon_sym_EQ_EQ] = ACTIONS(984), - [anon_sym_BANG_EQ] = ACTIONS(984), - [anon_sym_GT] = ACTIONS(982), - [anon_sym_LT] = ACTIONS(982), - [anon_sym_GT_EQ] = ACTIONS(984), - [anon_sym_LT_EQ] = ACTIONS(984), - [anon_sym_AT] = ACTIONS(984), - [anon_sym__] = ACTIONS(982), - [anon_sym_DOT] = ACTIONS(982), - [anon_sym_DOT_DOT] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(984), - [anon_sym_DOT_DOT_EQ] = ACTIONS(984), - [anon_sym_COMMA] = ACTIONS(984), - [anon_sym_COLON_COLON] = ACTIONS(984), - [anon_sym_DASH_GT] = ACTIONS(984), - [anon_sym_POUND] = ACTIONS(984), - [anon_sym_SQUOTE] = ACTIONS(982), - [anon_sym_as] = ACTIONS(982), - [anon_sym_async] = ACTIONS(982), - [anon_sym_await] = ACTIONS(982), - [anon_sym_break] = ACTIONS(982), - [anon_sym_const] = ACTIONS(982), - [anon_sym_continue] = ACTIONS(982), - [anon_sym_default] = ACTIONS(982), - [anon_sym_enum] = ACTIONS(982), - [anon_sym_fn] = ACTIONS(982), - [anon_sym_for] = ACTIONS(982), - [anon_sym_gen] = ACTIONS(982), - [anon_sym_if] = ACTIONS(982), - [anon_sym_impl] = ACTIONS(982), - [anon_sym_let] = ACTIONS(982), - [anon_sym_loop] = ACTIONS(982), - [anon_sym_match] = ACTIONS(982), - [anon_sym_mod] = ACTIONS(982), - [anon_sym_pub] = ACTIONS(982), - [anon_sym_return] = ACTIONS(982), - [anon_sym_static] = ACTIONS(982), - [anon_sym_struct] = ACTIONS(982), - [anon_sym_trait] = ACTIONS(982), - [anon_sym_type] = ACTIONS(982), - [anon_sym_union] = ACTIONS(982), - [anon_sym_unsafe] = ACTIONS(982), - [anon_sym_use] = ACTIONS(982), - [anon_sym_where] = ACTIONS(982), - [anon_sym_while] = ACTIONS(982), - [sym_mutable_specifier] = ACTIONS(982), - [sym_integer_literal] = ACTIONS(984), - [aux_sym_string_literal_token1] = ACTIONS(984), - [sym_char_literal] = ACTIONS(984), - [anon_sym_true] = ACTIONS(982), - [anon_sym_false] = ACTIONS(982), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(982), - [sym_super] = ACTIONS(982), - [sym_crate] = ACTIONS(982), - [sym_metavariable] = ACTIONS(984), - [sym__raw_string_literal_start] = ACTIONS(984), - [sym_float_literal] = ACTIONS(984), - }, - [STATE(181)] = { + [sym_identifier] = ACTIONS(992), + [anon_sym_SEMI] = ACTIONS(994), + [anon_sym_LPAREN] = ACTIONS(994), + [anon_sym_RPAREN] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(994), + [anon_sym_RBRACK] = ACTIONS(994), + [anon_sym_LBRACE] = ACTIONS(994), + [anon_sym_RBRACE] = ACTIONS(994), + [anon_sym_EQ_GT] = ACTIONS(994), + [anon_sym_COLON] = ACTIONS(992), + [anon_sym_DOLLAR] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(992), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_QMARK] = ACTIONS(994), + [anon_sym_u8] = ACTIONS(992), + [anon_sym_i8] = ACTIONS(992), + [anon_sym_u16] = ACTIONS(992), + [anon_sym_i16] = ACTIONS(992), + [anon_sym_u32] = ACTIONS(992), + [anon_sym_i32] = ACTIONS(992), + [anon_sym_u64] = ACTIONS(992), + [anon_sym_i64] = ACTIONS(992), + [anon_sym_u128] = ACTIONS(992), + [anon_sym_i128] = ACTIONS(992), + [anon_sym_isize] = ACTIONS(992), + [anon_sym_usize] = ACTIONS(992), + [anon_sym_f32] = ACTIONS(992), + [anon_sym_f64] = ACTIONS(992), + [anon_sym_bool] = ACTIONS(992), + [anon_sym_str] = ACTIONS(992), + [anon_sym_char] = ACTIONS(992), + [anon_sym_DASH] = ACTIONS(992), + [anon_sym_SLASH] = ACTIONS(992), + [anon_sym_PERCENT] = ACTIONS(992), + [anon_sym_CARET] = ACTIONS(992), + [anon_sym_BANG] = ACTIONS(992), + [anon_sym_AMP] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(992), + [anon_sym_AMP_AMP] = ACTIONS(994), + [anon_sym_PIPE_PIPE] = ACTIONS(994), + [anon_sym_LT_LT] = ACTIONS(992), + [anon_sym_GT_GT] = ACTIONS(992), + [anon_sym_PLUS_EQ] = ACTIONS(994), + [anon_sym_DASH_EQ] = ACTIONS(994), + [anon_sym_STAR_EQ] = ACTIONS(994), + [anon_sym_SLASH_EQ] = ACTIONS(994), + [anon_sym_PERCENT_EQ] = ACTIONS(994), + [anon_sym_CARET_EQ] = ACTIONS(994), + [anon_sym_AMP_EQ] = ACTIONS(994), + [anon_sym_PIPE_EQ] = ACTIONS(994), + [anon_sym_LT_LT_EQ] = ACTIONS(994), + [anon_sym_GT_GT_EQ] = ACTIONS(994), + [anon_sym_EQ] = ACTIONS(992), + [anon_sym_EQ_EQ] = ACTIONS(994), + [anon_sym_BANG_EQ] = ACTIONS(994), + [anon_sym_GT] = ACTIONS(992), + [anon_sym_LT] = ACTIONS(992), + [anon_sym_GT_EQ] = ACTIONS(994), + [anon_sym_LT_EQ] = ACTIONS(994), + [anon_sym_AT] = ACTIONS(994), + [anon_sym__] = ACTIONS(992), + [anon_sym_DOT] = ACTIONS(992), + [anon_sym_DOT_DOT] = ACTIONS(992), + [anon_sym_DOT_DOT_DOT] = ACTIONS(994), + [anon_sym_DOT_DOT_EQ] = ACTIONS(994), + [anon_sym_COMMA] = ACTIONS(994), + [anon_sym_COLON_COLON] = ACTIONS(994), + [anon_sym_DASH_GT] = ACTIONS(994), + [anon_sym_POUND] = ACTIONS(994), + [anon_sym_SQUOTE] = ACTIONS(992), + [anon_sym_as] = ACTIONS(992), + [anon_sym_async] = ACTIONS(992), + [anon_sym_await] = ACTIONS(992), + [anon_sym_break] = ACTIONS(992), + [anon_sym_const] = ACTIONS(992), + [anon_sym_continue] = ACTIONS(992), + [anon_sym_default] = ACTIONS(992), + [anon_sym_enum] = ACTIONS(992), + [anon_sym_fn] = ACTIONS(992), + [anon_sym_for] = ACTIONS(992), + [anon_sym_gen] = ACTIONS(992), + [anon_sym_if] = ACTIONS(992), + [anon_sym_impl] = ACTIONS(992), + [anon_sym_let] = ACTIONS(992), + [anon_sym_loop] = ACTIONS(992), + [anon_sym_match] = ACTIONS(992), + [anon_sym_mod] = ACTIONS(992), + [anon_sym_pub] = ACTIONS(992), + [anon_sym_return] = ACTIONS(992), + [anon_sym_static] = ACTIONS(992), + [anon_sym_struct] = ACTIONS(992), + [anon_sym_trait] = ACTIONS(992), + [anon_sym_type] = ACTIONS(992), + [anon_sym_union] = ACTIONS(992), + [anon_sym_unsafe] = ACTIONS(992), + [anon_sym_use] = ACTIONS(992), + [anon_sym_where] = ACTIONS(992), + [anon_sym_while] = ACTIONS(992), + [sym_mutable_specifier] = ACTIONS(992), + [sym_integer_literal] = ACTIONS(994), + [aux_sym_string_literal_token1] = ACTIONS(994), + [sym_char_literal] = ACTIONS(994), + [anon_sym_true] = ACTIONS(992), + [anon_sym_false] = ACTIONS(992), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(992), + [sym_super] = ACTIONS(992), + [sym_crate] = ACTIONS(992), + [sym_metavariable] = ACTIONS(994), + [sym__raw_string_literal_start] = ACTIONS(994), + [sym_float_literal] = ACTIONS(994), + }, + [181] = { [sym_line_comment] = STATE(181), [sym_block_comment] = STATE(181), - [sym_identifier] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(988), - [anon_sym_LPAREN] = ACTIONS(988), - [anon_sym_RPAREN] = ACTIONS(988), - [anon_sym_LBRACK] = ACTIONS(988), - [anon_sym_RBRACK] = ACTIONS(988), - [anon_sym_LBRACE] = ACTIONS(988), - [anon_sym_RBRACE] = ACTIONS(988), - [anon_sym_EQ_GT] = ACTIONS(988), - [anon_sym_COLON] = ACTIONS(986), - [anon_sym_DOLLAR] = ACTIONS(986), - [anon_sym_PLUS] = ACTIONS(986), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_QMARK] = ACTIONS(988), - [anon_sym_u8] = ACTIONS(986), - [anon_sym_i8] = ACTIONS(986), - [anon_sym_u16] = ACTIONS(986), - [anon_sym_i16] = ACTIONS(986), - [anon_sym_u32] = ACTIONS(986), - [anon_sym_i32] = ACTIONS(986), - [anon_sym_u64] = ACTIONS(986), - [anon_sym_i64] = ACTIONS(986), - [anon_sym_u128] = ACTIONS(986), - [anon_sym_i128] = ACTIONS(986), - [anon_sym_isize] = ACTIONS(986), - [anon_sym_usize] = ACTIONS(986), - [anon_sym_f32] = ACTIONS(986), - [anon_sym_f64] = ACTIONS(986), - [anon_sym_bool] = ACTIONS(986), - [anon_sym_str] = ACTIONS(986), - [anon_sym_char] = ACTIONS(986), - [anon_sym_DASH] = ACTIONS(986), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_PERCENT] = ACTIONS(986), - [anon_sym_CARET] = ACTIONS(986), - [anon_sym_BANG] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_PIPE] = ACTIONS(986), - [anon_sym_AMP_AMP] = ACTIONS(988), - [anon_sym_PIPE_PIPE] = ACTIONS(988), - [anon_sym_LT_LT] = ACTIONS(986), - [anon_sym_GT_GT] = ACTIONS(986), - [anon_sym_PLUS_EQ] = ACTIONS(988), - [anon_sym_DASH_EQ] = ACTIONS(988), - [anon_sym_STAR_EQ] = ACTIONS(988), - [anon_sym_SLASH_EQ] = ACTIONS(988), - [anon_sym_PERCENT_EQ] = ACTIONS(988), - [anon_sym_CARET_EQ] = ACTIONS(988), - [anon_sym_AMP_EQ] = ACTIONS(988), - [anon_sym_PIPE_EQ] = ACTIONS(988), - [anon_sym_LT_LT_EQ] = ACTIONS(988), - [anon_sym_GT_GT_EQ] = ACTIONS(988), - [anon_sym_EQ] = ACTIONS(986), - [anon_sym_EQ_EQ] = ACTIONS(988), - [anon_sym_BANG_EQ] = ACTIONS(988), - [anon_sym_GT] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(986), - [anon_sym_GT_EQ] = ACTIONS(988), - [anon_sym_LT_EQ] = ACTIONS(988), - [anon_sym_AT] = ACTIONS(988), - [anon_sym__] = ACTIONS(986), - [anon_sym_DOT] = ACTIONS(986), - [anon_sym_DOT_DOT] = ACTIONS(986), - [anon_sym_DOT_DOT_DOT] = ACTIONS(988), - [anon_sym_DOT_DOT_EQ] = ACTIONS(988), - [anon_sym_COMMA] = ACTIONS(988), - [anon_sym_COLON_COLON] = ACTIONS(988), - [anon_sym_DASH_GT] = ACTIONS(988), - [anon_sym_POUND] = ACTIONS(988), - [anon_sym_SQUOTE] = ACTIONS(986), - [anon_sym_as] = ACTIONS(986), - [anon_sym_async] = ACTIONS(986), - [anon_sym_await] = ACTIONS(986), - [anon_sym_break] = ACTIONS(986), - [anon_sym_const] = ACTIONS(986), - [anon_sym_continue] = ACTIONS(986), - [anon_sym_default] = ACTIONS(986), - [anon_sym_enum] = ACTIONS(986), - [anon_sym_fn] = ACTIONS(986), - [anon_sym_for] = ACTIONS(986), - [anon_sym_gen] = ACTIONS(986), - [anon_sym_if] = ACTIONS(986), - [anon_sym_impl] = ACTIONS(986), - [anon_sym_let] = ACTIONS(986), - [anon_sym_loop] = ACTIONS(986), - [anon_sym_match] = ACTIONS(986), - [anon_sym_mod] = ACTIONS(986), - [anon_sym_pub] = ACTIONS(986), - [anon_sym_return] = ACTIONS(986), - [anon_sym_static] = ACTIONS(986), - [anon_sym_struct] = ACTIONS(986), - [anon_sym_trait] = ACTIONS(986), - [anon_sym_type] = ACTIONS(986), - [anon_sym_union] = ACTIONS(986), - [anon_sym_unsafe] = ACTIONS(986), - [anon_sym_use] = ACTIONS(986), - [anon_sym_where] = ACTIONS(986), - [anon_sym_while] = ACTIONS(986), - [sym_mutable_specifier] = ACTIONS(986), - [sym_integer_literal] = ACTIONS(988), - [aux_sym_string_literal_token1] = ACTIONS(988), - [sym_char_literal] = ACTIONS(988), - [anon_sym_true] = ACTIONS(986), - [anon_sym_false] = ACTIONS(986), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(986), - [sym_super] = ACTIONS(986), - [sym_crate] = ACTIONS(986), - [sym_metavariable] = ACTIONS(988), - [sym__raw_string_literal_start] = ACTIONS(988), - [sym_float_literal] = ACTIONS(988), - }, - [STATE(182)] = { + [sym_identifier] = ACTIONS(996), + [anon_sym_SEMI] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_RPAREN] = ACTIONS(998), + [anon_sym_LBRACK] = ACTIONS(998), + [anon_sym_RBRACK] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(998), + [anon_sym_RBRACE] = ACTIONS(998), + [anon_sym_EQ_GT] = ACTIONS(998), + [anon_sym_COLON] = ACTIONS(996), + [anon_sym_DOLLAR] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(996), + [anon_sym_QMARK] = ACTIONS(998), + [anon_sym_u8] = ACTIONS(996), + [anon_sym_i8] = ACTIONS(996), + [anon_sym_u16] = ACTIONS(996), + [anon_sym_i16] = ACTIONS(996), + [anon_sym_u32] = ACTIONS(996), + [anon_sym_i32] = ACTIONS(996), + [anon_sym_u64] = ACTIONS(996), + [anon_sym_i64] = ACTIONS(996), + [anon_sym_u128] = ACTIONS(996), + [anon_sym_i128] = ACTIONS(996), + [anon_sym_isize] = ACTIONS(996), + [anon_sym_usize] = ACTIONS(996), + [anon_sym_f32] = ACTIONS(996), + [anon_sym_f64] = ACTIONS(996), + [anon_sym_bool] = ACTIONS(996), + [anon_sym_str] = ACTIONS(996), + [anon_sym_char] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_SLASH] = ACTIONS(996), + [anon_sym_PERCENT] = ACTIONS(996), + [anon_sym_CARET] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_AMP] = ACTIONS(996), + [anon_sym_PIPE] = ACTIONS(996), + [anon_sym_AMP_AMP] = ACTIONS(998), + [anon_sym_PIPE_PIPE] = ACTIONS(998), + [anon_sym_LT_LT] = ACTIONS(996), + [anon_sym_GT_GT] = ACTIONS(996), + [anon_sym_PLUS_EQ] = ACTIONS(998), + [anon_sym_DASH_EQ] = ACTIONS(998), + [anon_sym_STAR_EQ] = ACTIONS(998), + [anon_sym_SLASH_EQ] = ACTIONS(998), + [anon_sym_PERCENT_EQ] = ACTIONS(998), + [anon_sym_CARET_EQ] = ACTIONS(998), + [anon_sym_AMP_EQ] = ACTIONS(998), + [anon_sym_PIPE_EQ] = ACTIONS(998), + [anon_sym_LT_LT_EQ] = ACTIONS(998), + [anon_sym_GT_GT_EQ] = ACTIONS(998), + [anon_sym_EQ] = ACTIONS(996), + [anon_sym_EQ_EQ] = ACTIONS(998), + [anon_sym_BANG_EQ] = ACTIONS(998), + [anon_sym_GT] = ACTIONS(996), + [anon_sym_LT] = ACTIONS(996), + [anon_sym_GT_EQ] = ACTIONS(998), + [anon_sym_LT_EQ] = ACTIONS(998), + [anon_sym_AT] = ACTIONS(998), + [anon_sym__] = ACTIONS(996), + [anon_sym_DOT] = ACTIONS(996), + [anon_sym_DOT_DOT] = ACTIONS(996), + [anon_sym_DOT_DOT_DOT] = ACTIONS(998), + [anon_sym_DOT_DOT_EQ] = ACTIONS(998), + [anon_sym_COMMA] = ACTIONS(998), + [anon_sym_COLON_COLON] = ACTIONS(998), + [anon_sym_DASH_GT] = ACTIONS(998), + [anon_sym_POUND] = ACTIONS(998), + [anon_sym_SQUOTE] = ACTIONS(996), + [anon_sym_as] = ACTIONS(996), + [anon_sym_async] = ACTIONS(996), + [anon_sym_await] = ACTIONS(996), + [anon_sym_break] = ACTIONS(996), + [anon_sym_const] = ACTIONS(996), + [anon_sym_continue] = ACTIONS(996), + [anon_sym_default] = ACTIONS(996), + [anon_sym_enum] = ACTIONS(996), + [anon_sym_fn] = ACTIONS(996), + [anon_sym_for] = ACTIONS(996), + [anon_sym_gen] = ACTIONS(996), + [anon_sym_if] = ACTIONS(996), + [anon_sym_impl] = ACTIONS(996), + [anon_sym_let] = ACTIONS(996), + [anon_sym_loop] = ACTIONS(996), + [anon_sym_match] = ACTIONS(996), + [anon_sym_mod] = ACTIONS(996), + [anon_sym_pub] = ACTIONS(996), + [anon_sym_return] = ACTIONS(996), + [anon_sym_static] = ACTIONS(996), + [anon_sym_struct] = ACTIONS(996), + [anon_sym_trait] = ACTIONS(996), + [anon_sym_type] = ACTIONS(996), + [anon_sym_union] = ACTIONS(996), + [anon_sym_unsafe] = ACTIONS(996), + [anon_sym_use] = ACTIONS(996), + [anon_sym_where] = ACTIONS(996), + [anon_sym_while] = ACTIONS(996), + [sym_mutable_specifier] = ACTIONS(996), + [sym_integer_literal] = ACTIONS(998), + [aux_sym_string_literal_token1] = ACTIONS(998), + [sym_char_literal] = ACTIONS(998), + [anon_sym_true] = ACTIONS(996), + [anon_sym_false] = ACTIONS(996), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(996), + [sym_super] = ACTIONS(996), + [sym_crate] = ACTIONS(996), + [sym_metavariable] = ACTIONS(998), + [sym__raw_string_literal_start] = ACTIONS(998), + [sym_float_literal] = ACTIONS(998), + }, + [182] = { [sym_line_comment] = STATE(182), [sym_block_comment] = STATE(182), - [sym_identifier] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(992), - [anon_sym_LPAREN] = ACTIONS(992), - [anon_sym_RPAREN] = ACTIONS(992), - [anon_sym_LBRACK] = ACTIONS(992), - [anon_sym_RBRACK] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(992), - [anon_sym_RBRACE] = ACTIONS(992), - [anon_sym_EQ_GT] = ACTIONS(992), - [anon_sym_COLON] = ACTIONS(990), - [anon_sym_DOLLAR] = ACTIONS(990), - [anon_sym_PLUS] = ACTIONS(990), - [anon_sym_STAR] = ACTIONS(990), - [anon_sym_QMARK] = ACTIONS(992), - [anon_sym_u8] = ACTIONS(990), - [anon_sym_i8] = ACTIONS(990), - [anon_sym_u16] = ACTIONS(990), - [anon_sym_i16] = ACTIONS(990), - [anon_sym_u32] = ACTIONS(990), - [anon_sym_i32] = ACTIONS(990), - [anon_sym_u64] = ACTIONS(990), - [anon_sym_i64] = ACTIONS(990), - [anon_sym_u128] = ACTIONS(990), - [anon_sym_i128] = ACTIONS(990), - [anon_sym_isize] = ACTIONS(990), - [anon_sym_usize] = ACTIONS(990), - [anon_sym_f32] = ACTIONS(990), - [anon_sym_f64] = ACTIONS(990), - [anon_sym_bool] = ACTIONS(990), - [anon_sym_str] = ACTIONS(990), - [anon_sym_char] = ACTIONS(990), - [anon_sym_DASH] = ACTIONS(990), - [anon_sym_SLASH] = ACTIONS(990), - [anon_sym_PERCENT] = ACTIONS(990), - [anon_sym_CARET] = ACTIONS(990), - [anon_sym_BANG] = ACTIONS(990), - [anon_sym_AMP] = ACTIONS(990), - [anon_sym_PIPE] = ACTIONS(990), - [anon_sym_AMP_AMP] = ACTIONS(992), - [anon_sym_PIPE_PIPE] = ACTIONS(992), - [anon_sym_LT_LT] = ACTIONS(990), - [anon_sym_GT_GT] = ACTIONS(990), - [anon_sym_PLUS_EQ] = ACTIONS(992), - [anon_sym_DASH_EQ] = ACTIONS(992), - [anon_sym_STAR_EQ] = ACTIONS(992), - [anon_sym_SLASH_EQ] = ACTIONS(992), - [anon_sym_PERCENT_EQ] = ACTIONS(992), - [anon_sym_CARET_EQ] = ACTIONS(992), - [anon_sym_AMP_EQ] = ACTIONS(992), - [anon_sym_PIPE_EQ] = ACTIONS(992), - [anon_sym_LT_LT_EQ] = ACTIONS(992), - [anon_sym_GT_GT_EQ] = ACTIONS(992), - [anon_sym_EQ] = ACTIONS(990), - [anon_sym_EQ_EQ] = ACTIONS(992), - [anon_sym_BANG_EQ] = ACTIONS(992), - [anon_sym_GT] = ACTIONS(990), - [anon_sym_LT] = ACTIONS(990), - [anon_sym_GT_EQ] = ACTIONS(992), - [anon_sym_LT_EQ] = ACTIONS(992), - [anon_sym_AT] = ACTIONS(992), - [anon_sym__] = ACTIONS(990), - [anon_sym_DOT] = ACTIONS(990), - [anon_sym_DOT_DOT] = ACTIONS(990), - [anon_sym_DOT_DOT_DOT] = ACTIONS(992), - [anon_sym_DOT_DOT_EQ] = ACTIONS(992), - [anon_sym_COMMA] = ACTIONS(992), - [anon_sym_COLON_COLON] = ACTIONS(992), - [anon_sym_DASH_GT] = ACTIONS(992), - [anon_sym_POUND] = ACTIONS(992), - [anon_sym_SQUOTE] = ACTIONS(990), - [anon_sym_as] = ACTIONS(990), - [anon_sym_async] = ACTIONS(990), - [anon_sym_await] = ACTIONS(990), - [anon_sym_break] = ACTIONS(990), - [anon_sym_const] = ACTIONS(990), - [anon_sym_continue] = ACTIONS(990), - [anon_sym_default] = ACTIONS(990), - [anon_sym_enum] = ACTIONS(990), - [anon_sym_fn] = ACTIONS(990), - [anon_sym_for] = ACTIONS(990), - [anon_sym_gen] = ACTIONS(990), - [anon_sym_if] = ACTIONS(990), - [anon_sym_impl] = ACTIONS(990), - [anon_sym_let] = ACTIONS(990), - [anon_sym_loop] = ACTIONS(990), - [anon_sym_match] = ACTIONS(990), - [anon_sym_mod] = ACTIONS(990), - [anon_sym_pub] = ACTIONS(990), - [anon_sym_return] = ACTIONS(990), - [anon_sym_static] = ACTIONS(990), - [anon_sym_struct] = ACTIONS(990), - [anon_sym_trait] = ACTIONS(990), - [anon_sym_type] = ACTIONS(990), - [anon_sym_union] = ACTIONS(990), - [anon_sym_unsafe] = ACTIONS(990), - [anon_sym_use] = ACTIONS(990), - [anon_sym_where] = ACTIONS(990), - [anon_sym_while] = ACTIONS(990), - [sym_mutable_specifier] = ACTIONS(990), - [sym_integer_literal] = ACTIONS(992), - [aux_sym_string_literal_token1] = ACTIONS(992), - [sym_char_literal] = ACTIONS(992), - [anon_sym_true] = ACTIONS(990), - [anon_sym_false] = ACTIONS(990), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(990), - [sym_super] = ACTIONS(990), - [sym_crate] = ACTIONS(990), - [sym_metavariable] = ACTIONS(992), - [sym__raw_string_literal_start] = ACTIONS(992), - [sym_float_literal] = ACTIONS(992), - }, - [STATE(183)] = { - [sym_line_comment] = STATE(183), - [sym_block_comment] = STATE(183), - [sym_identifier] = ACTIONS(994), - [anon_sym_SEMI] = ACTIONS(996), - [anon_sym_LPAREN] = ACTIONS(996), - [anon_sym_RPAREN] = ACTIONS(996), - [anon_sym_LBRACK] = ACTIONS(996), - [anon_sym_RBRACK] = ACTIONS(996), - [anon_sym_LBRACE] = ACTIONS(996), - [anon_sym_RBRACE] = ACTIONS(996), - [anon_sym_EQ_GT] = ACTIONS(996), - [anon_sym_COLON] = ACTIONS(994), - [anon_sym_DOLLAR] = ACTIONS(994), - [anon_sym_PLUS] = ACTIONS(994), - [anon_sym_STAR] = ACTIONS(994), - [anon_sym_QMARK] = ACTIONS(996), - [anon_sym_u8] = ACTIONS(994), - [anon_sym_i8] = ACTIONS(994), - [anon_sym_u16] = ACTIONS(994), - [anon_sym_i16] = ACTIONS(994), - [anon_sym_u32] = ACTIONS(994), - [anon_sym_i32] = ACTIONS(994), - [anon_sym_u64] = ACTIONS(994), - [anon_sym_i64] = ACTIONS(994), - [anon_sym_u128] = ACTIONS(994), - [anon_sym_i128] = ACTIONS(994), - [anon_sym_isize] = ACTIONS(994), - [anon_sym_usize] = ACTIONS(994), - [anon_sym_f32] = ACTIONS(994), - [anon_sym_f64] = ACTIONS(994), - [anon_sym_bool] = ACTIONS(994), - [anon_sym_str] = ACTIONS(994), - [anon_sym_char] = ACTIONS(994), - [anon_sym_DASH] = ACTIONS(994), - [anon_sym_SLASH] = ACTIONS(994), - [anon_sym_PERCENT] = ACTIONS(994), - [anon_sym_CARET] = ACTIONS(994), - [anon_sym_BANG] = ACTIONS(994), - [anon_sym_AMP] = ACTIONS(994), - [anon_sym_PIPE] = ACTIONS(994), - [anon_sym_AMP_AMP] = ACTIONS(996), - [anon_sym_PIPE_PIPE] = ACTIONS(996), - [anon_sym_LT_LT] = ACTIONS(994), - [anon_sym_GT_GT] = ACTIONS(994), - [anon_sym_PLUS_EQ] = ACTIONS(996), - [anon_sym_DASH_EQ] = ACTIONS(996), - [anon_sym_STAR_EQ] = ACTIONS(996), - [anon_sym_SLASH_EQ] = ACTIONS(996), - [anon_sym_PERCENT_EQ] = ACTIONS(996), - [anon_sym_CARET_EQ] = ACTIONS(996), - [anon_sym_AMP_EQ] = ACTIONS(996), - [anon_sym_PIPE_EQ] = ACTIONS(996), - [anon_sym_LT_LT_EQ] = ACTIONS(996), - [anon_sym_GT_GT_EQ] = ACTIONS(996), - [anon_sym_EQ] = ACTIONS(994), - [anon_sym_EQ_EQ] = ACTIONS(996), - [anon_sym_BANG_EQ] = ACTIONS(996), - [anon_sym_GT] = ACTIONS(994), - [anon_sym_LT] = ACTIONS(994), - [anon_sym_GT_EQ] = ACTIONS(996), - [anon_sym_LT_EQ] = ACTIONS(996), - [anon_sym_AT] = ACTIONS(996), - [anon_sym__] = ACTIONS(994), - [anon_sym_DOT] = ACTIONS(994), - [anon_sym_DOT_DOT] = ACTIONS(994), - [anon_sym_DOT_DOT_DOT] = ACTIONS(996), - [anon_sym_DOT_DOT_EQ] = ACTIONS(996), - [anon_sym_COMMA] = ACTIONS(996), - [anon_sym_COLON_COLON] = ACTIONS(996), - [anon_sym_DASH_GT] = ACTIONS(996), - [anon_sym_POUND] = ACTIONS(996), - [anon_sym_SQUOTE] = ACTIONS(994), - [anon_sym_as] = ACTIONS(994), - [anon_sym_async] = ACTIONS(994), - [anon_sym_await] = ACTIONS(994), - [anon_sym_break] = ACTIONS(994), - [anon_sym_const] = ACTIONS(994), - [anon_sym_continue] = ACTIONS(994), - [anon_sym_default] = ACTIONS(994), - [anon_sym_enum] = ACTIONS(994), - [anon_sym_fn] = ACTIONS(994), - [anon_sym_for] = ACTIONS(994), - [anon_sym_gen] = ACTIONS(994), - [anon_sym_if] = ACTIONS(994), - [anon_sym_impl] = ACTIONS(994), - [anon_sym_let] = ACTIONS(994), - [anon_sym_loop] = ACTIONS(994), - [anon_sym_match] = ACTIONS(994), - [anon_sym_mod] = ACTIONS(994), - [anon_sym_pub] = ACTIONS(994), - [anon_sym_return] = ACTIONS(994), - [anon_sym_static] = ACTIONS(994), - [anon_sym_struct] = ACTIONS(994), - [anon_sym_trait] = ACTIONS(994), - [anon_sym_type] = ACTIONS(994), - [anon_sym_union] = ACTIONS(994), - [anon_sym_unsafe] = ACTIONS(994), - [anon_sym_use] = ACTIONS(994), - [anon_sym_where] = ACTIONS(994), - [anon_sym_while] = ACTIONS(994), - [sym_mutable_specifier] = ACTIONS(994), - [sym_integer_literal] = ACTIONS(996), - [aux_sym_string_literal_token1] = ACTIONS(996), - [sym_char_literal] = ACTIONS(996), - [anon_sym_true] = ACTIONS(994), - [anon_sym_false] = ACTIONS(994), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(994), - [sym_super] = ACTIONS(994), - [sym_crate] = ACTIONS(994), - [sym_metavariable] = ACTIONS(996), - [sym__raw_string_literal_start] = ACTIONS(996), - [sym_float_literal] = ACTIONS(996), - }, - [STATE(184)] = { - [sym_line_comment] = STATE(184), - [sym_block_comment] = STATE(184), - [sym_identifier] = ACTIONS(954), - [anon_sym_SEMI] = ACTIONS(956), - [anon_sym_LPAREN] = ACTIONS(956), - [anon_sym_RPAREN] = ACTIONS(956), - [anon_sym_LBRACK] = ACTIONS(956), - [anon_sym_RBRACK] = ACTIONS(956), - [anon_sym_LBRACE] = ACTIONS(956), - [anon_sym_RBRACE] = ACTIONS(956), - [anon_sym_EQ_GT] = ACTIONS(956), - [anon_sym_COLON] = ACTIONS(954), - [anon_sym_DOLLAR] = ACTIONS(954), - [anon_sym_PLUS] = ACTIONS(954), - [anon_sym_STAR] = ACTIONS(954), - [anon_sym_QMARK] = ACTIONS(956), - [anon_sym_u8] = ACTIONS(954), - [anon_sym_i8] = ACTIONS(954), - [anon_sym_u16] = ACTIONS(954), - [anon_sym_i16] = ACTIONS(954), - [anon_sym_u32] = ACTIONS(954), - [anon_sym_i32] = ACTIONS(954), - [anon_sym_u64] = ACTIONS(954), - [anon_sym_i64] = ACTIONS(954), - [anon_sym_u128] = ACTIONS(954), - [anon_sym_i128] = ACTIONS(954), - [anon_sym_isize] = ACTIONS(954), - [anon_sym_usize] = ACTIONS(954), - [anon_sym_f32] = ACTIONS(954), - [anon_sym_f64] = ACTIONS(954), - [anon_sym_bool] = ACTIONS(954), - [anon_sym_str] = ACTIONS(954), - [anon_sym_char] = ACTIONS(954), - [anon_sym_DASH] = ACTIONS(954), - [anon_sym_SLASH] = ACTIONS(954), - [anon_sym_PERCENT] = ACTIONS(954), - [anon_sym_CARET] = ACTIONS(954), - [anon_sym_BANG] = ACTIONS(954), - [anon_sym_AMP] = ACTIONS(954), - [anon_sym_PIPE] = ACTIONS(954), - [anon_sym_AMP_AMP] = ACTIONS(956), - [anon_sym_PIPE_PIPE] = ACTIONS(956), - [anon_sym_LT_LT] = ACTIONS(954), - [anon_sym_GT_GT] = ACTIONS(954), - [anon_sym_PLUS_EQ] = ACTIONS(956), - [anon_sym_DASH_EQ] = ACTIONS(956), - [anon_sym_STAR_EQ] = ACTIONS(956), - [anon_sym_SLASH_EQ] = ACTIONS(956), - [anon_sym_PERCENT_EQ] = ACTIONS(956), - [anon_sym_CARET_EQ] = ACTIONS(956), - [anon_sym_AMP_EQ] = ACTIONS(956), - [anon_sym_PIPE_EQ] = ACTIONS(956), - [anon_sym_LT_LT_EQ] = ACTIONS(956), - [anon_sym_GT_GT_EQ] = ACTIONS(956), - [anon_sym_EQ] = ACTIONS(954), - [anon_sym_EQ_EQ] = ACTIONS(956), - [anon_sym_BANG_EQ] = ACTIONS(956), - [anon_sym_GT] = ACTIONS(954), - [anon_sym_LT] = ACTIONS(954), - [anon_sym_GT_EQ] = ACTIONS(956), - [anon_sym_LT_EQ] = ACTIONS(956), - [anon_sym_AT] = ACTIONS(956), - [anon_sym__] = ACTIONS(954), - [anon_sym_DOT] = ACTIONS(954), - [anon_sym_DOT_DOT] = ACTIONS(954), - [anon_sym_DOT_DOT_DOT] = ACTIONS(956), - [anon_sym_DOT_DOT_EQ] = ACTIONS(956), - [anon_sym_COMMA] = ACTIONS(956), - [anon_sym_COLON_COLON] = ACTIONS(956), - [anon_sym_DASH_GT] = ACTIONS(956), - [anon_sym_POUND] = ACTIONS(956), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_as] = ACTIONS(954), - [anon_sym_async] = ACTIONS(954), - [anon_sym_await] = ACTIONS(954), - [anon_sym_break] = ACTIONS(954), - [anon_sym_const] = ACTIONS(954), - [anon_sym_continue] = ACTIONS(954), - [anon_sym_default] = ACTIONS(954), - [anon_sym_enum] = ACTIONS(954), - [anon_sym_fn] = ACTIONS(954), - [anon_sym_for] = ACTIONS(954), - [anon_sym_gen] = ACTIONS(954), - [anon_sym_if] = ACTIONS(954), - [anon_sym_impl] = ACTIONS(954), - [anon_sym_let] = ACTIONS(954), - [anon_sym_loop] = ACTIONS(954), - [anon_sym_match] = ACTIONS(954), - [anon_sym_mod] = ACTIONS(954), - [anon_sym_pub] = ACTIONS(954), - [anon_sym_return] = ACTIONS(954), - [anon_sym_static] = ACTIONS(954), - [anon_sym_struct] = ACTIONS(954), - [anon_sym_trait] = ACTIONS(954), - [anon_sym_type] = ACTIONS(954), - [anon_sym_union] = ACTIONS(954), - [anon_sym_unsafe] = ACTIONS(954), - [anon_sym_use] = ACTIONS(954), - [anon_sym_where] = ACTIONS(954), - [anon_sym_while] = ACTIONS(954), - [sym_mutable_specifier] = ACTIONS(954), - [sym_integer_literal] = ACTIONS(956), - [aux_sym_string_literal_token1] = ACTIONS(956), - [sym_char_literal] = ACTIONS(956), - [anon_sym_true] = ACTIONS(954), - [anon_sym_false] = ACTIONS(954), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(954), - [sym_super] = ACTIONS(954), - [sym_crate] = ACTIONS(954), - [sym_metavariable] = ACTIONS(956), - [sym__raw_string_literal_start] = ACTIONS(956), - [sym_float_literal] = ACTIONS(956), - }, - [STATE(185)] = { - [sym_line_comment] = STATE(185), - [sym_block_comment] = STATE(185), - [sym_identifier] = ACTIONS(954), - [anon_sym_SEMI] = ACTIONS(956), - [anon_sym_LPAREN] = ACTIONS(956), - [anon_sym_RPAREN] = ACTIONS(956), - [anon_sym_LBRACK] = ACTIONS(956), - [anon_sym_RBRACK] = ACTIONS(956), - [anon_sym_LBRACE] = ACTIONS(956), - [anon_sym_RBRACE] = ACTIONS(956), - [anon_sym_EQ_GT] = ACTIONS(956), - [anon_sym_COLON] = ACTIONS(998), - [anon_sym_DOLLAR] = ACTIONS(954), - [anon_sym_PLUS] = ACTIONS(954), - [anon_sym_STAR] = ACTIONS(954), - [anon_sym_QMARK] = ACTIONS(956), - [anon_sym_u8] = ACTIONS(954), - [anon_sym_i8] = ACTIONS(954), - [anon_sym_u16] = ACTIONS(954), - [anon_sym_i16] = ACTIONS(954), - [anon_sym_u32] = ACTIONS(954), - [anon_sym_i32] = ACTIONS(954), - [anon_sym_u64] = ACTIONS(954), - [anon_sym_i64] = ACTIONS(954), - [anon_sym_u128] = ACTIONS(954), - [anon_sym_i128] = ACTIONS(954), - [anon_sym_isize] = ACTIONS(954), - [anon_sym_usize] = ACTIONS(954), - [anon_sym_f32] = ACTIONS(954), - [anon_sym_f64] = ACTIONS(954), - [anon_sym_bool] = ACTIONS(954), - [anon_sym_str] = ACTIONS(954), - [anon_sym_char] = ACTIONS(954), - [anon_sym_DASH] = ACTIONS(954), - [anon_sym_SLASH] = ACTIONS(954), - [anon_sym_PERCENT] = ACTIONS(954), - [anon_sym_CARET] = ACTIONS(954), - [anon_sym_BANG] = ACTIONS(954), - [anon_sym_AMP] = ACTIONS(954), - [anon_sym_PIPE] = ACTIONS(954), - [anon_sym_AMP_AMP] = ACTIONS(956), - [anon_sym_PIPE_PIPE] = ACTIONS(956), - [anon_sym_LT_LT] = ACTIONS(954), - [anon_sym_GT_GT] = ACTIONS(954), - [anon_sym_PLUS_EQ] = ACTIONS(956), - [anon_sym_DASH_EQ] = ACTIONS(956), - [anon_sym_STAR_EQ] = ACTIONS(956), - [anon_sym_SLASH_EQ] = ACTIONS(956), - [anon_sym_PERCENT_EQ] = ACTIONS(956), - [anon_sym_CARET_EQ] = ACTIONS(956), - [anon_sym_AMP_EQ] = ACTIONS(956), - [anon_sym_PIPE_EQ] = ACTIONS(956), - [anon_sym_LT_LT_EQ] = ACTIONS(956), - [anon_sym_GT_GT_EQ] = ACTIONS(956), - [anon_sym_EQ] = ACTIONS(954), - [anon_sym_EQ_EQ] = ACTIONS(956), - [anon_sym_BANG_EQ] = ACTIONS(956), - [anon_sym_GT] = ACTIONS(954), - [anon_sym_LT] = ACTIONS(954), - [anon_sym_GT_EQ] = ACTIONS(956), - [anon_sym_LT_EQ] = ACTIONS(956), - [anon_sym_AT] = ACTIONS(956), - [anon_sym__] = ACTIONS(954), - [anon_sym_DOT] = ACTIONS(954), - [anon_sym_DOT_DOT] = ACTIONS(954), - [anon_sym_DOT_DOT_DOT] = ACTIONS(956), - [anon_sym_DOT_DOT_EQ] = ACTIONS(956), - [anon_sym_COMMA] = ACTIONS(956), - [anon_sym_COLON_COLON] = ACTIONS(956), - [anon_sym_DASH_GT] = ACTIONS(956), - [anon_sym_POUND] = ACTIONS(956), - [anon_sym_SQUOTE] = ACTIONS(954), - [anon_sym_as] = ACTIONS(954), - [anon_sym_async] = ACTIONS(954), - [anon_sym_await] = ACTIONS(954), - [anon_sym_break] = ACTIONS(954), - [anon_sym_const] = ACTIONS(954), - [anon_sym_continue] = ACTIONS(954), - [anon_sym_default] = ACTIONS(954), - [anon_sym_enum] = ACTIONS(954), - [anon_sym_fn] = ACTIONS(954), - [anon_sym_for] = ACTIONS(954), - [anon_sym_gen] = ACTIONS(954), - [anon_sym_if] = ACTIONS(954), - [anon_sym_impl] = ACTIONS(954), - [anon_sym_let] = ACTIONS(954), - [anon_sym_loop] = ACTIONS(954), - [anon_sym_match] = ACTIONS(954), - [anon_sym_mod] = ACTIONS(954), - [anon_sym_pub] = ACTIONS(954), - [anon_sym_return] = ACTIONS(954), - [anon_sym_static] = ACTIONS(954), - [anon_sym_struct] = ACTIONS(954), - [anon_sym_trait] = ACTIONS(954), - [anon_sym_type] = ACTIONS(954), - [anon_sym_union] = ACTIONS(954), - [anon_sym_unsafe] = ACTIONS(954), - [anon_sym_use] = ACTIONS(954), - [anon_sym_where] = ACTIONS(954), - [anon_sym_while] = ACTIONS(954), - [sym_mutable_specifier] = ACTIONS(954), - [sym_integer_literal] = ACTIONS(956), - [aux_sym_string_literal_token1] = ACTIONS(956), - [sym_char_literal] = ACTIONS(956), - [anon_sym_true] = ACTIONS(954), - [anon_sym_false] = ACTIONS(954), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(954), - [sym_super] = ACTIONS(954), - [sym_crate] = ACTIONS(954), - [sym_metavariable] = ACTIONS(956), - [sym__raw_string_literal_start] = ACTIONS(956), - [sym_float_literal] = ACTIONS(956), - }, - [STATE(186)] = { - [sym_line_comment] = STATE(186), - [sym_block_comment] = STATE(186), [sym_identifier] = ACTIONS(1000), [anon_sym_SEMI] = ACTIONS(1002), [anon_sym_LPAREN] = ACTIONS(1002), @@ -38879,125 +38151,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1002), [sym_float_literal] = ACTIONS(1002), }, - [STATE(187)] = { - [sym_attribute_item] = STATE(1060), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1967), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(187), - [sym_block_comment] = STATE(187), - [aux_sym_enum_variant_list_repeat1] = STATE(1058), - [sym_identifier] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [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(757), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), - }, - [STATE(188)] = { - [sym_line_comment] = STATE(188), - [sym_block_comment] = STATE(188), + [183] = { + [sym_line_comment] = STATE(183), + [sym_block_comment] = STATE(183), [sym_identifier] = ACTIONS(1004), [anon_sym_SEMI] = ACTIONS(1006), [anon_sym_LPAREN] = ACTIONS(1006), @@ -39111,23 +38267,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1006), [sym_float_literal] = ACTIONS(1006), }, - [STATE(189)] = { - [sym_line_comment] = STATE(189), - [sym_block_comment] = STATE(189), + [184] = { + [sym_line_comment] = STATE(184), + [sym_block_comment] = STATE(184), + [aux_sym__non_special_token_repeat1] = STATE(176), [sym_identifier] = ACTIONS(1008), - [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_SEMI] = ACTIONS(685), [anon_sym_LPAREN] = ACTIONS(1010), [anon_sym_RPAREN] = ACTIONS(1010), [anon_sym_LBRACK] = ACTIONS(1010), [anon_sym_RBRACK] = ACTIONS(1010), [anon_sym_LBRACE] = ACTIONS(1010), [anon_sym_RBRACE] = ACTIONS(1010), - [anon_sym_EQ_GT] = ACTIONS(1010), - [anon_sym_COLON] = ACTIONS(1008), - [anon_sym_DOLLAR] = ACTIONS(1008), - [anon_sym_PLUS] = ACTIONS(1008), - [anon_sym_STAR] = ACTIONS(1008), - [anon_sym_QMARK] = ACTIONS(1010), + [anon_sym_EQ_GT] = ACTIONS(685), + [anon_sym_COLON] = ACTIONS(695), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(695), + [anon_sym_STAR] = ACTIONS(695), + [anon_sym_QMARK] = ACTIONS(685), [anon_sym_u8] = ACTIONS(1008), [anon_sym_i8] = ACTIONS(1008), [anon_sym_u16] = ACTIONS(1008), @@ -39145,44 +38302,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1008), [anon_sym_str] = ACTIONS(1008), [anon_sym_char] = ACTIONS(1008), - [anon_sym_DASH] = ACTIONS(1008), - [anon_sym_SLASH] = ACTIONS(1008), - [anon_sym_PERCENT] = ACTIONS(1008), - [anon_sym_CARET] = ACTIONS(1008), - [anon_sym_BANG] = ACTIONS(1008), - [anon_sym_AMP] = ACTIONS(1008), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_AMP_AMP] = ACTIONS(1010), - [anon_sym_PIPE_PIPE] = ACTIONS(1010), - [anon_sym_LT_LT] = ACTIONS(1008), - [anon_sym_GT_GT] = ACTIONS(1008), - [anon_sym_PLUS_EQ] = ACTIONS(1010), - [anon_sym_DASH_EQ] = ACTIONS(1010), - [anon_sym_STAR_EQ] = ACTIONS(1010), - [anon_sym_SLASH_EQ] = ACTIONS(1010), - [anon_sym_PERCENT_EQ] = ACTIONS(1010), - [anon_sym_CARET_EQ] = ACTIONS(1010), - [anon_sym_AMP_EQ] = ACTIONS(1010), - [anon_sym_PIPE_EQ] = ACTIONS(1010), - [anon_sym_LT_LT_EQ] = ACTIONS(1010), - [anon_sym_GT_GT_EQ] = ACTIONS(1010), - [anon_sym_EQ] = ACTIONS(1008), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_GT] = ACTIONS(1008), - [anon_sym_LT] = ACTIONS(1008), - [anon_sym_GT_EQ] = ACTIONS(1010), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_AT] = ACTIONS(1010), - [anon_sym__] = ACTIONS(1008), - [anon_sym_DOT] = ACTIONS(1008), - [anon_sym_DOT_DOT] = ACTIONS(1008), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1010), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), - [anon_sym_COMMA] = ACTIONS(1010), - [anon_sym_COLON_COLON] = ACTIONS(1010), - [anon_sym_DASH_GT] = ACTIONS(1010), - [anon_sym_POUND] = ACTIONS(1010), + [anon_sym_DASH] = ACTIONS(695), + [anon_sym_SLASH] = ACTIONS(695), + [anon_sym_PERCENT] = ACTIONS(695), + [anon_sym_CARET] = ACTIONS(695), + [anon_sym_BANG] = ACTIONS(695), + [anon_sym_AMP] = ACTIONS(695), + [anon_sym_PIPE] = ACTIONS(695), + [anon_sym_AMP_AMP] = ACTIONS(685), + [anon_sym_PIPE_PIPE] = ACTIONS(685), + [anon_sym_LT_LT] = ACTIONS(695), + [anon_sym_GT_GT] = ACTIONS(695), + [anon_sym_PLUS_EQ] = ACTIONS(685), + [anon_sym_DASH_EQ] = ACTIONS(685), + [anon_sym_STAR_EQ] = ACTIONS(685), + [anon_sym_SLASH_EQ] = ACTIONS(685), + [anon_sym_PERCENT_EQ] = ACTIONS(685), + [anon_sym_CARET_EQ] = ACTIONS(685), + [anon_sym_AMP_EQ] = ACTIONS(685), + [anon_sym_PIPE_EQ] = ACTIONS(685), + [anon_sym_LT_LT_EQ] = ACTIONS(685), + [anon_sym_GT_GT_EQ] = ACTIONS(685), + [anon_sym_EQ] = ACTIONS(695), + [anon_sym_EQ_EQ] = ACTIONS(685), + [anon_sym_BANG_EQ] = ACTIONS(685), + [anon_sym_GT] = ACTIONS(695), + [anon_sym_LT] = ACTIONS(695), + [anon_sym_GT_EQ] = ACTIONS(685), + [anon_sym_LT_EQ] = ACTIONS(685), + [anon_sym_AT] = ACTIONS(685), + [anon_sym__] = ACTIONS(695), + [anon_sym_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT] = ACTIONS(695), + [anon_sym_DOT_DOT_DOT] = ACTIONS(685), + [anon_sym_DOT_DOT_EQ] = ACTIONS(685), + [anon_sym_COMMA] = ACTIONS(685), + [anon_sym_COLON_COLON] = ACTIONS(685), + [anon_sym_DASH_GT] = ACTIONS(685), + [anon_sym_POUND] = ACTIONS(685), [anon_sym_SQUOTE] = ACTIONS(1008), [anon_sym_as] = ACTIONS(1008), [anon_sym_async] = ACTIONS(1008), @@ -39223,129 +38380,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_self] = ACTIONS(1008), [sym_super] = ACTIONS(1008), [sym_crate] = ACTIONS(1008), - [sym_metavariable] = ACTIONS(1010), [sym__raw_string_literal_start] = ACTIONS(1010), [sym_float_literal] = ACTIONS(1010), }, - [STATE(190)] = { - [sym_line_comment] = STATE(190), - [sym_block_comment] = STATE(190), - [sym_identifier] = ACTIONS(924), - [anon_sym_SEMI] = ACTIONS(926), - [anon_sym_LPAREN] = ACTIONS(926), - [anon_sym_RPAREN] = ACTIONS(926), - [anon_sym_LBRACK] = ACTIONS(926), - [anon_sym_RBRACK] = ACTIONS(926), - [anon_sym_LBRACE] = ACTIONS(926), - [anon_sym_RBRACE] = ACTIONS(926), - [anon_sym_EQ_GT] = ACTIONS(926), - [anon_sym_COLON] = ACTIONS(924), - [anon_sym_DOLLAR] = ACTIONS(924), - [anon_sym_PLUS] = ACTIONS(924), - [anon_sym_STAR] = ACTIONS(924), - [anon_sym_QMARK] = ACTIONS(926), - [anon_sym_u8] = ACTIONS(924), - [anon_sym_i8] = ACTIONS(924), - [anon_sym_u16] = ACTIONS(924), - [anon_sym_i16] = ACTIONS(924), - [anon_sym_u32] = ACTIONS(924), - [anon_sym_i32] = ACTIONS(924), - [anon_sym_u64] = ACTIONS(924), - [anon_sym_i64] = ACTIONS(924), - [anon_sym_u128] = ACTIONS(924), - [anon_sym_i128] = ACTIONS(924), - [anon_sym_isize] = ACTIONS(924), - [anon_sym_usize] = ACTIONS(924), - [anon_sym_f32] = ACTIONS(924), - [anon_sym_f64] = ACTIONS(924), - [anon_sym_bool] = ACTIONS(924), - [anon_sym_str] = ACTIONS(924), - [anon_sym_char] = ACTIONS(924), - [anon_sym_DASH] = ACTIONS(924), - [anon_sym_SLASH] = ACTIONS(924), - [anon_sym_PERCENT] = ACTIONS(924), - [anon_sym_CARET] = ACTIONS(924), - [anon_sym_BANG] = ACTIONS(924), - [anon_sym_AMP] = ACTIONS(924), - [anon_sym_PIPE] = ACTIONS(924), - [anon_sym_AMP_AMP] = ACTIONS(926), - [anon_sym_PIPE_PIPE] = ACTIONS(926), - [anon_sym_LT_LT] = ACTIONS(924), - [anon_sym_GT_GT] = ACTIONS(924), - [anon_sym_PLUS_EQ] = ACTIONS(926), - [anon_sym_DASH_EQ] = ACTIONS(926), - [anon_sym_STAR_EQ] = ACTIONS(926), - [anon_sym_SLASH_EQ] = ACTIONS(926), - [anon_sym_PERCENT_EQ] = ACTIONS(926), - [anon_sym_CARET_EQ] = ACTIONS(926), - [anon_sym_AMP_EQ] = ACTIONS(926), - [anon_sym_PIPE_EQ] = ACTIONS(926), - [anon_sym_LT_LT_EQ] = ACTIONS(926), - [anon_sym_GT_GT_EQ] = ACTIONS(926), - [anon_sym_EQ] = ACTIONS(924), - [anon_sym_EQ_EQ] = ACTIONS(926), - [anon_sym_BANG_EQ] = ACTIONS(926), - [anon_sym_GT] = ACTIONS(924), - [anon_sym_LT] = ACTIONS(924), - [anon_sym_GT_EQ] = ACTIONS(926), - [anon_sym_LT_EQ] = ACTIONS(926), - [anon_sym_AT] = ACTIONS(926), - [anon_sym__] = ACTIONS(924), - [anon_sym_DOT] = ACTIONS(924), - [anon_sym_DOT_DOT] = ACTIONS(924), - [anon_sym_DOT_DOT_DOT] = ACTIONS(926), - [anon_sym_DOT_DOT_EQ] = ACTIONS(926), - [anon_sym_COMMA] = ACTIONS(926), - [anon_sym_COLON_COLON] = ACTIONS(926), - [anon_sym_DASH_GT] = ACTIONS(926), - [anon_sym_POUND] = ACTIONS(926), - [anon_sym_SQUOTE] = ACTIONS(924), - [anon_sym_as] = ACTIONS(924), - [anon_sym_async] = ACTIONS(924), - [anon_sym_await] = ACTIONS(924), - [anon_sym_break] = ACTIONS(924), - [anon_sym_const] = ACTIONS(924), - [anon_sym_continue] = ACTIONS(924), - [anon_sym_default] = ACTIONS(924), - [anon_sym_enum] = ACTIONS(924), - [anon_sym_fn] = ACTIONS(924), - [anon_sym_for] = ACTIONS(924), - [anon_sym_gen] = ACTIONS(924), - [anon_sym_if] = ACTIONS(924), - [anon_sym_impl] = ACTIONS(924), - [anon_sym_let] = ACTIONS(924), - [anon_sym_loop] = ACTIONS(924), - [anon_sym_match] = ACTIONS(924), - [anon_sym_mod] = ACTIONS(924), - [anon_sym_pub] = ACTIONS(924), - [anon_sym_return] = ACTIONS(924), - [anon_sym_static] = ACTIONS(924), - [anon_sym_struct] = ACTIONS(924), - [anon_sym_trait] = ACTIONS(924), - [anon_sym_type] = ACTIONS(924), - [anon_sym_union] = ACTIONS(924), - [anon_sym_unsafe] = ACTIONS(924), - [anon_sym_use] = ACTIONS(924), - [anon_sym_where] = ACTIONS(924), - [anon_sym_while] = ACTIONS(924), - [sym_mutable_specifier] = ACTIONS(924), - [sym_integer_literal] = ACTIONS(926), - [aux_sym_string_literal_token1] = ACTIONS(926), - [sym_char_literal] = ACTIONS(926), - [anon_sym_true] = ACTIONS(924), - [anon_sym_false] = ACTIONS(924), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(924), - [sym_super] = ACTIONS(924), - [sym_crate] = ACTIONS(924), - [sym_metavariable] = ACTIONS(926), - [sym__raw_string_literal_start] = ACTIONS(926), - [sym_float_literal] = ACTIONS(926), - }, - [STATE(191)] = { - [sym_line_comment] = STATE(191), - [sym_block_comment] = STATE(191), + [185] = { + [sym_line_comment] = STATE(185), + [sym_block_comment] = STATE(185), [sym_identifier] = ACTIONS(1012), [anon_sym_SEMI] = ACTIONS(1014), [anon_sym_LPAREN] = ACTIONS(1014), @@ -39459,9 +38499,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1014), [sym_float_literal] = ACTIONS(1014), }, - [STATE(192)] = { - [sym_line_comment] = STATE(192), - [sym_block_comment] = STATE(192), + [186] = { + [sym_line_comment] = STATE(186), + [sym_block_comment] = STATE(186), [sym_identifier] = ACTIONS(1016), [anon_sym_SEMI] = ACTIONS(1018), [anon_sym_LPAREN] = ACTIONS(1018), @@ -39575,290 +38615,406 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1018), [sym_float_literal] = ACTIONS(1018), }, - [STATE(193)] = { - [sym_line_comment] = STATE(193), - [sym_block_comment] = STATE(193), - [aux_sym__non_special_token_repeat1] = STATE(193), - [sym_identifier] = ACTIONS(942), - [anon_sym_SEMI] = ACTIONS(1020), - [anon_sym_LPAREN] = ACTIONS(947), - [anon_sym_RPAREN] = ACTIONS(947), - [anon_sym_LBRACK] = ACTIONS(947), - [anon_sym_RBRACK] = ACTIONS(947), - [anon_sym_LBRACE] = ACTIONS(947), - [anon_sym_RBRACE] = ACTIONS(947), - [anon_sym_EQ_GT] = ACTIONS(1020), - [anon_sym_COLON] = ACTIONS(1023), - [anon_sym_DOLLAR] = ACTIONS(947), - [anon_sym_PLUS] = ACTIONS(1023), - [anon_sym_STAR] = ACTIONS(1023), - [anon_sym_QMARK] = ACTIONS(1020), - [anon_sym_u8] = ACTIONS(942), - [anon_sym_i8] = ACTIONS(942), - [anon_sym_u16] = ACTIONS(942), - [anon_sym_i16] = ACTIONS(942), - [anon_sym_u32] = ACTIONS(942), - [anon_sym_i32] = ACTIONS(942), - [anon_sym_u64] = ACTIONS(942), - [anon_sym_i64] = ACTIONS(942), - [anon_sym_u128] = ACTIONS(942), - [anon_sym_i128] = ACTIONS(942), - [anon_sym_isize] = ACTIONS(942), - [anon_sym_usize] = ACTIONS(942), - [anon_sym_f32] = ACTIONS(942), - [anon_sym_f64] = ACTIONS(942), - [anon_sym_bool] = ACTIONS(942), - [anon_sym_str] = ACTIONS(942), - [anon_sym_char] = ACTIONS(942), - [anon_sym_DASH] = ACTIONS(1023), - [anon_sym_SLASH] = ACTIONS(1023), - [anon_sym_PERCENT] = ACTIONS(1023), - [anon_sym_CARET] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(1023), - [anon_sym_AMP] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(1023), - [anon_sym_AMP_AMP] = ACTIONS(1020), - [anon_sym_PIPE_PIPE] = ACTIONS(1020), - [anon_sym_LT_LT] = ACTIONS(1023), - [anon_sym_GT_GT] = ACTIONS(1023), - [anon_sym_PLUS_EQ] = ACTIONS(1020), - [anon_sym_DASH_EQ] = ACTIONS(1020), - [anon_sym_STAR_EQ] = ACTIONS(1020), - [anon_sym_SLASH_EQ] = ACTIONS(1020), - [anon_sym_PERCENT_EQ] = ACTIONS(1020), - [anon_sym_CARET_EQ] = ACTIONS(1020), - [anon_sym_AMP_EQ] = ACTIONS(1020), - [anon_sym_PIPE_EQ] = ACTIONS(1020), - [anon_sym_LT_LT_EQ] = ACTIONS(1020), - [anon_sym_GT_GT_EQ] = ACTIONS(1020), - [anon_sym_EQ] = ACTIONS(1023), - [anon_sym_EQ_EQ] = ACTIONS(1020), - [anon_sym_BANG_EQ] = ACTIONS(1020), - [anon_sym_GT] = ACTIONS(1023), - [anon_sym_LT] = ACTIONS(1023), - [anon_sym_GT_EQ] = ACTIONS(1020), - [anon_sym_LT_EQ] = ACTIONS(1020), - [anon_sym_AT] = ACTIONS(1020), - [anon_sym__] = ACTIONS(1023), - [anon_sym_DOT] = ACTIONS(1023), - [anon_sym_DOT_DOT] = ACTIONS(1023), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1020), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1020), - [anon_sym_COMMA] = ACTIONS(1020), - [anon_sym_COLON_COLON] = ACTIONS(1020), - [anon_sym_DASH_GT] = ACTIONS(1020), - [anon_sym_POUND] = ACTIONS(1020), - [anon_sym_SQUOTE] = ACTIONS(942), - [anon_sym_as] = ACTIONS(942), - [anon_sym_async] = ACTIONS(942), - [anon_sym_await] = ACTIONS(942), - [anon_sym_break] = ACTIONS(942), - [anon_sym_const] = ACTIONS(942), - [anon_sym_continue] = ACTIONS(942), - [anon_sym_default] = ACTIONS(942), - [anon_sym_enum] = ACTIONS(942), - [anon_sym_fn] = ACTIONS(942), - [anon_sym_for] = ACTIONS(942), - [anon_sym_gen] = ACTIONS(942), - [anon_sym_if] = ACTIONS(942), - [anon_sym_impl] = ACTIONS(942), - [anon_sym_let] = ACTIONS(942), - [anon_sym_loop] = ACTIONS(942), - [anon_sym_match] = ACTIONS(942), - [anon_sym_mod] = ACTIONS(942), - [anon_sym_pub] = ACTIONS(942), - [anon_sym_return] = ACTIONS(942), - [anon_sym_static] = ACTIONS(942), - [anon_sym_struct] = ACTIONS(942), - [anon_sym_trait] = ACTIONS(942), - [anon_sym_type] = ACTIONS(942), - [anon_sym_union] = ACTIONS(942), - [anon_sym_unsafe] = ACTIONS(942), - [anon_sym_use] = ACTIONS(942), - [anon_sym_where] = ACTIONS(942), - [anon_sym_while] = ACTIONS(942), - [sym_mutable_specifier] = ACTIONS(942), - [sym_integer_literal] = ACTIONS(947), - [aux_sym_string_literal_token1] = ACTIONS(947), - [sym_char_literal] = ACTIONS(947), - [anon_sym_true] = ACTIONS(942), - [anon_sym_false] = ACTIONS(942), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(942), - [sym_super] = ACTIONS(942), - [sym_crate] = ACTIONS(942), - [sym__raw_string_literal_start] = ACTIONS(947), - [sym_float_literal] = ACTIONS(947), + [187] = { + [sym_line_comment] = STATE(187), + [sym_block_comment] = STATE(187), + [sym_identifier] = ACTIONS(1020), + [anon_sym_SEMI] = ACTIONS(1022), + [anon_sym_LPAREN] = ACTIONS(1022), + [anon_sym_RPAREN] = ACTIONS(1022), + [anon_sym_LBRACK] = ACTIONS(1022), + [anon_sym_RBRACK] = ACTIONS(1022), + [anon_sym_LBRACE] = ACTIONS(1022), + [anon_sym_RBRACE] = ACTIONS(1022), + [anon_sym_EQ_GT] = ACTIONS(1022), + [anon_sym_COLON] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_QMARK] = ACTIONS(1022), + [anon_sym_u8] = ACTIONS(1020), + [anon_sym_i8] = ACTIONS(1020), + [anon_sym_u16] = ACTIONS(1020), + [anon_sym_i16] = ACTIONS(1020), + [anon_sym_u32] = ACTIONS(1020), + [anon_sym_i32] = ACTIONS(1020), + [anon_sym_u64] = ACTIONS(1020), + [anon_sym_i64] = ACTIONS(1020), + [anon_sym_u128] = ACTIONS(1020), + [anon_sym_i128] = ACTIONS(1020), + [anon_sym_isize] = ACTIONS(1020), + [anon_sym_usize] = ACTIONS(1020), + [anon_sym_f32] = ACTIONS(1020), + [anon_sym_f64] = ACTIONS(1020), + [anon_sym_bool] = ACTIONS(1020), + [anon_sym_str] = ACTIONS(1020), + [anon_sym_char] = ACTIONS(1020), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_SLASH] = ACTIONS(1020), + [anon_sym_PERCENT] = ACTIONS(1020), + [anon_sym_CARET] = ACTIONS(1020), + [anon_sym_BANG] = ACTIONS(1020), + [anon_sym_AMP] = ACTIONS(1020), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_AMP_AMP] = ACTIONS(1022), + [anon_sym_PIPE_PIPE] = ACTIONS(1022), + [anon_sym_LT_LT] = ACTIONS(1020), + [anon_sym_GT_GT] = ACTIONS(1020), + [anon_sym_PLUS_EQ] = ACTIONS(1022), + [anon_sym_DASH_EQ] = ACTIONS(1022), + [anon_sym_STAR_EQ] = ACTIONS(1022), + [anon_sym_SLASH_EQ] = ACTIONS(1022), + [anon_sym_PERCENT_EQ] = ACTIONS(1022), + [anon_sym_CARET_EQ] = ACTIONS(1022), + [anon_sym_AMP_EQ] = ACTIONS(1022), + [anon_sym_PIPE_EQ] = ACTIONS(1022), + [anon_sym_LT_LT_EQ] = ACTIONS(1022), + [anon_sym_GT_GT_EQ] = ACTIONS(1022), + [anon_sym_EQ] = ACTIONS(1020), + [anon_sym_EQ_EQ] = ACTIONS(1022), + [anon_sym_BANG_EQ] = ACTIONS(1022), + [anon_sym_GT] = ACTIONS(1020), + [anon_sym_LT] = ACTIONS(1020), + [anon_sym_GT_EQ] = ACTIONS(1022), + [anon_sym_LT_EQ] = ACTIONS(1022), + [anon_sym_AT] = ACTIONS(1022), + [anon_sym__] = ACTIONS(1020), + [anon_sym_DOT] = ACTIONS(1020), + [anon_sym_DOT_DOT] = ACTIONS(1020), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1022), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1022), + [anon_sym_COMMA] = ACTIONS(1022), + [anon_sym_COLON_COLON] = ACTIONS(1022), + [anon_sym_DASH_GT] = ACTIONS(1022), + [anon_sym_POUND] = ACTIONS(1022), + [anon_sym_SQUOTE] = ACTIONS(1020), + [anon_sym_as] = ACTIONS(1020), + [anon_sym_async] = ACTIONS(1020), + [anon_sym_await] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(1020), + [anon_sym_continue] = ACTIONS(1020), + [anon_sym_default] = ACTIONS(1020), + [anon_sym_enum] = ACTIONS(1020), + [anon_sym_fn] = ACTIONS(1020), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_gen] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1020), + [anon_sym_impl] = ACTIONS(1020), + [anon_sym_let] = ACTIONS(1020), + [anon_sym_loop] = ACTIONS(1020), + [anon_sym_match] = ACTIONS(1020), + [anon_sym_mod] = ACTIONS(1020), + [anon_sym_pub] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_static] = ACTIONS(1020), + [anon_sym_struct] = ACTIONS(1020), + [anon_sym_trait] = ACTIONS(1020), + [anon_sym_type] = ACTIONS(1020), + [anon_sym_union] = ACTIONS(1020), + [anon_sym_unsafe] = ACTIONS(1020), + [anon_sym_use] = ACTIONS(1020), + [anon_sym_where] = ACTIONS(1020), + [anon_sym_while] = ACTIONS(1020), + [sym_mutable_specifier] = ACTIONS(1020), + [sym_integer_literal] = ACTIONS(1022), + [aux_sym_string_literal_token1] = ACTIONS(1022), + [sym_char_literal] = ACTIONS(1022), + [anon_sym_true] = ACTIONS(1020), + [anon_sym_false] = ACTIONS(1020), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1020), + [sym_super] = ACTIONS(1020), + [sym_crate] = ACTIONS(1020), + [sym_metavariable] = ACTIONS(1022), + [sym__raw_string_literal_start] = ACTIONS(1022), + [sym_float_literal] = ACTIONS(1022), + }, + [188] = { + [sym_line_comment] = STATE(188), + [sym_block_comment] = STATE(188), + [sym_identifier] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1026), + [anon_sym_LPAREN] = ACTIONS(1026), + [anon_sym_RPAREN] = ACTIONS(1026), + [anon_sym_LBRACK] = ACTIONS(1026), + [anon_sym_RBRACK] = ACTIONS(1026), + [anon_sym_LBRACE] = ACTIONS(1026), + [anon_sym_RBRACE] = ACTIONS(1026), + [anon_sym_EQ_GT] = ACTIONS(1026), + [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_STAR] = ACTIONS(1024), + [anon_sym_QMARK] = ACTIONS(1026), + [anon_sym_u8] = ACTIONS(1024), + [anon_sym_i8] = ACTIONS(1024), + [anon_sym_u16] = ACTIONS(1024), + [anon_sym_i16] = ACTIONS(1024), + [anon_sym_u32] = ACTIONS(1024), + [anon_sym_i32] = ACTIONS(1024), + [anon_sym_u64] = ACTIONS(1024), + [anon_sym_i64] = ACTIONS(1024), + [anon_sym_u128] = ACTIONS(1024), + [anon_sym_i128] = ACTIONS(1024), + [anon_sym_isize] = ACTIONS(1024), + [anon_sym_usize] = ACTIONS(1024), + [anon_sym_f32] = ACTIONS(1024), + [anon_sym_f64] = ACTIONS(1024), + [anon_sym_bool] = ACTIONS(1024), + [anon_sym_str] = ACTIONS(1024), + [anon_sym_char] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_SLASH] = ACTIONS(1024), + [anon_sym_PERCENT] = ACTIONS(1024), + [anon_sym_CARET] = ACTIONS(1024), + [anon_sym_BANG] = ACTIONS(1024), + [anon_sym_AMP] = ACTIONS(1024), + [anon_sym_PIPE] = ACTIONS(1024), + [anon_sym_AMP_AMP] = ACTIONS(1026), + [anon_sym_PIPE_PIPE] = ACTIONS(1026), + [anon_sym_LT_LT] = ACTIONS(1024), + [anon_sym_GT_GT] = ACTIONS(1024), + [anon_sym_PLUS_EQ] = ACTIONS(1026), + [anon_sym_DASH_EQ] = ACTIONS(1026), + [anon_sym_STAR_EQ] = ACTIONS(1026), + [anon_sym_SLASH_EQ] = ACTIONS(1026), + [anon_sym_PERCENT_EQ] = ACTIONS(1026), + [anon_sym_CARET_EQ] = ACTIONS(1026), + [anon_sym_AMP_EQ] = ACTIONS(1026), + [anon_sym_PIPE_EQ] = ACTIONS(1026), + [anon_sym_LT_LT_EQ] = ACTIONS(1026), + [anon_sym_GT_GT_EQ] = ACTIONS(1026), + [anon_sym_EQ] = ACTIONS(1024), + [anon_sym_EQ_EQ] = ACTIONS(1026), + [anon_sym_BANG_EQ] = ACTIONS(1026), + [anon_sym_GT] = ACTIONS(1024), + [anon_sym_LT] = ACTIONS(1024), + [anon_sym_GT_EQ] = ACTIONS(1026), + [anon_sym_LT_EQ] = ACTIONS(1026), + [anon_sym_AT] = ACTIONS(1026), + [anon_sym__] = ACTIONS(1024), + [anon_sym_DOT] = ACTIONS(1024), + [anon_sym_DOT_DOT] = ACTIONS(1024), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1026), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1026), + [anon_sym_COMMA] = ACTIONS(1026), + [anon_sym_COLON_COLON] = ACTIONS(1026), + [anon_sym_DASH_GT] = ACTIONS(1026), + [anon_sym_POUND] = ACTIONS(1026), + [anon_sym_SQUOTE] = ACTIONS(1024), + [anon_sym_as] = ACTIONS(1024), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_await] = ACTIONS(1024), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1024), + [anon_sym_enum] = ACTIONS(1024), + [anon_sym_fn] = ACTIONS(1024), + [anon_sym_for] = ACTIONS(1024), + [anon_sym_gen] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1024), + [anon_sym_impl] = ACTIONS(1024), + [anon_sym_let] = ACTIONS(1024), + [anon_sym_loop] = ACTIONS(1024), + [anon_sym_match] = ACTIONS(1024), + [anon_sym_mod] = ACTIONS(1024), + [anon_sym_pub] = ACTIONS(1024), + [anon_sym_return] = ACTIONS(1024), + [anon_sym_static] = ACTIONS(1024), + [anon_sym_struct] = ACTIONS(1024), + [anon_sym_trait] = ACTIONS(1024), + [anon_sym_type] = ACTIONS(1024), + [anon_sym_union] = ACTIONS(1024), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_use] = ACTIONS(1024), + [anon_sym_where] = ACTIONS(1024), + [anon_sym_while] = ACTIONS(1024), + [sym_mutable_specifier] = ACTIONS(1024), + [sym_integer_literal] = ACTIONS(1026), + [aux_sym_string_literal_token1] = ACTIONS(1026), + [sym_char_literal] = ACTIONS(1026), + [anon_sym_true] = ACTIONS(1024), + [anon_sym_false] = ACTIONS(1024), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1024), + [sym_super] = ACTIONS(1024), + [sym_crate] = ACTIONS(1024), + [sym_metavariable] = ACTIONS(1026), + [sym__raw_string_literal_start] = ACTIONS(1026), + [sym_float_literal] = ACTIONS(1026), }, - [STATE(194)] = { - [sym_line_comment] = STATE(194), - [sym_block_comment] = STATE(194), - [sym_identifier] = ACTIONS(1026), - [anon_sym_SEMI] = ACTIONS(1028), - [anon_sym_LPAREN] = ACTIONS(1028), - [anon_sym_RPAREN] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(1028), - [anon_sym_RBRACK] = ACTIONS(1028), - [anon_sym_LBRACE] = ACTIONS(1028), - [anon_sym_RBRACE] = ACTIONS(1028), - [anon_sym_EQ_GT] = ACTIONS(1028), - [anon_sym_COLON] = ACTIONS(1026), - [anon_sym_DOLLAR] = ACTIONS(1026), - [anon_sym_PLUS] = ACTIONS(1026), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_QMARK] = ACTIONS(1028), - [anon_sym_u8] = ACTIONS(1026), - [anon_sym_i8] = ACTIONS(1026), - [anon_sym_u16] = ACTIONS(1026), - [anon_sym_i16] = ACTIONS(1026), - [anon_sym_u32] = ACTIONS(1026), - [anon_sym_i32] = ACTIONS(1026), - [anon_sym_u64] = ACTIONS(1026), - [anon_sym_i64] = ACTIONS(1026), - [anon_sym_u128] = ACTIONS(1026), - [anon_sym_i128] = ACTIONS(1026), - [anon_sym_isize] = ACTIONS(1026), - [anon_sym_usize] = ACTIONS(1026), - [anon_sym_f32] = ACTIONS(1026), - [anon_sym_f64] = ACTIONS(1026), - [anon_sym_bool] = ACTIONS(1026), - [anon_sym_str] = ACTIONS(1026), - [anon_sym_char] = ACTIONS(1026), - [anon_sym_DASH] = ACTIONS(1026), - [anon_sym_SLASH] = ACTIONS(1026), - [anon_sym_PERCENT] = ACTIONS(1026), - [anon_sym_CARET] = ACTIONS(1026), - [anon_sym_BANG] = ACTIONS(1026), - [anon_sym_AMP] = ACTIONS(1026), - [anon_sym_PIPE] = ACTIONS(1026), - [anon_sym_AMP_AMP] = ACTIONS(1028), - [anon_sym_PIPE_PIPE] = ACTIONS(1028), - [anon_sym_LT_LT] = ACTIONS(1026), - [anon_sym_GT_GT] = ACTIONS(1026), - [anon_sym_PLUS_EQ] = ACTIONS(1028), - [anon_sym_DASH_EQ] = ACTIONS(1028), - [anon_sym_STAR_EQ] = ACTIONS(1028), - [anon_sym_SLASH_EQ] = ACTIONS(1028), - [anon_sym_PERCENT_EQ] = ACTIONS(1028), - [anon_sym_CARET_EQ] = ACTIONS(1028), - [anon_sym_AMP_EQ] = ACTIONS(1028), - [anon_sym_PIPE_EQ] = ACTIONS(1028), - [anon_sym_LT_LT_EQ] = ACTIONS(1028), - [anon_sym_GT_GT_EQ] = ACTIONS(1028), - [anon_sym_EQ] = ACTIONS(1026), - [anon_sym_EQ_EQ] = ACTIONS(1028), - [anon_sym_BANG_EQ] = ACTIONS(1028), - [anon_sym_GT] = ACTIONS(1026), - [anon_sym_LT] = ACTIONS(1026), - [anon_sym_GT_EQ] = ACTIONS(1028), - [anon_sym_LT_EQ] = ACTIONS(1028), - [anon_sym_AT] = ACTIONS(1028), - [anon_sym__] = ACTIONS(1026), - [anon_sym_DOT] = ACTIONS(1026), - [anon_sym_DOT_DOT] = ACTIONS(1026), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1028), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1028), - [anon_sym_COMMA] = ACTIONS(1028), - [anon_sym_COLON_COLON] = ACTIONS(1028), - [anon_sym_DASH_GT] = ACTIONS(1028), - [anon_sym_POUND] = ACTIONS(1028), - [anon_sym_SQUOTE] = ACTIONS(1026), - [anon_sym_as] = ACTIONS(1026), - [anon_sym_async] = ACTIONS(1026), - [anon_sym_await] = ACTIONS(1026), - [anon_sym_break] = ACTIONS(1026), - [anon_sym_const] = ACTIONS(1026), - [anon_sym_continue] = ACTIONS(1026), - [anon_sym_default] = ACTIONS(1026), - [anon_sym_enum] = ACTIONS(1026), - [anon_sym_fn] = ACTIONS(1026), - [anon_sym_for] = ACTIONS(1026), - [anon_sym_gen] = ACTIONS(1026), - [anon_sym_if] = ACTIONS(1026), - [anon_sym_impl] = ACTIONS(1026), - [anon_sym_let] = ACTIONS(1026), - [anon_sym_loop] = ACTIONS(1026), - [anon_sym_match] = ACTIONS(1026), - [anon_sym_mod] = ACTIONS(1026), - [anon_sym_pub] = ACTIONS(1026), - [anon_sym_return] = ACTIONS(1026), - [anon_sym_static] = ACTIONS(1026), - [anon_sym_struct] = ACTIONS(1026), - [anon_sym_trait] = ACTIONS(1026), - [anon_sym_type] = ACTIONS(1026), - [anon_sym_union] = ACTIONS(1026), - [anon_sym_unsafe] = ACTIONS(1026), - [anon_sym_use] = ACTIONS(1026), - [anon_sym_where] = ACTIONS(1026), - [anon_sym_while] = ACTIONS(1026), - [sym_mutable_specifier] = ACTIONS(1026), - [sym_integer_literal] = ACTIONS(1028), - [aux_sym_string_literal_token1] = ACTIONS(1028), - [sym_char_literal] = ACTIONS(1028), - [anon_sym_true] = ACTIONS(1026), - [anon_sym_false] = ACTIONS(1026), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1026), - [sym_super] = ACTIONS(1026), - [sym_crate] = ACTIONS(1026), - [sym_metavariable] = ACTIONS(1028), - [sym__raw_string_literal_start] = ACTIONS(1028), - [sym_float_literal] = ACTIONS(1028), - }, - [STATE(195)] = { - [sym_attribute_item] = STATE(1060), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1704), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(195), - [sym_block_comment] = STATE(195), - [aux_sym_enum_variant_list_repeat1] = STATE(200), + [189] = { + [sym_line_comment] = STATE(189), + [sym_block_comment] = STATE(189), + [sym_identifier] = ACTIONS(1028), + [anon_sym_SEMI] = ACTIONS(1030), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_RPAREN] = ACTIONS(1030), + [anon_sym_LBRACK] = ACTIONS(1030), + [anon_sym_RBRACK] = ACTIONS(1030), + [anon_sym_LBRACE] = ACTIONS(1030), + [anon_sym_RBRACE] = ACTIONS(1030), + [anon_sym_EQ_GT] = ACTIONS(1030), + [anon_sym_COLON] = ACTIONS(1028), + [anon_sym_DOLLAR] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1028), + [anon_sym_STAR] = ACTIONS(1028), + [anon_sym_QMARK] = ACTIONS(1030), + [anon_sym_u8] = ACTIONS(1028), + [anon_sym_i8] = ACTIONS(1028), + [anon_sym_u16] = ACTIONS(1028), + [anon_sym_i16] = ACTIONS(1028), + [anon_sym_u32] = ACTIONS(1028), + [anon_sym_i32] = ACTIONS(1028), + [anon_sym_u64] = ACTIONS(1028), + [anon_sym_i64] = ACTIONS(1028), + [anon_sym_u128] = ACTIONS(1028), + [anon_sym_i128] = ACTIONS(1028), + [anon_sym_isize] = ACTIONS(1028), + [anon_sym_usize] = ACTIONS(1028), + [anon_sym_f32] = ACTIONS(1028), + [anon_sym_f64] = ACTIONS(1028), + [anon_sym_bool] = ACTIONS(1028), + [anon_sym_str] = ACTIONS(1028), + [anon_sym_char] = ACTIONS(1028), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_SLASH] = ACTIONS(1028), + [anon_sym_PERCENT] = ACTIONS(1028), + [anon_sym_CARET] = ACTIONS(1028), + [anon_sym_BANG] = ACTIONS(1028), + [anon_sym_AMP] = ACTIONS(1028), + [anon_sym_PIPE] = ACTIONS(1028), + [anon_sym_AMP_AMP] = ACTIONS(1030), + [anon_sym_PIPE_PIPE] = ACTIONS(1030), + [anon_sym_LT_LT] = ACTIONS(1028), + [anon_sym_GT_GT] = ACTIONS(1028), + [anon_sym_PLUS_EQ] = ACTIONS(1030), + [anon_sym_DASH_EQ] = ACTIONS(1030), + [anon_sym_STAR_EQ] = ACTIONS(1030), + [anon_sym_SLASH_EQ] = ACTIONS(1030), + [anon_sym_PERCENT_EQ] = ACTIONS(1030), + [anon_sym_CARET_EQ] = ACTIONS(1030), + [anon_sym_AMP_EQ] = ACTIONS(1030), + [anon_sym_PIPE_EQ] = ACTIONS(1030), + [anon_sym_LT_LT_EQ] = ACTIONS(1030), + [anon_sym_GT_GT_EQ] = ACTIONS(1030), + [anon_sym_EQ] = ACTIONS(1028), + [anon_sym_EQ_EQ] = ACTIONS(1030), + [anon_sym_BANG_EQ] = ACTIONS(1030), + [anon_sym_GT] = ACTIONS(1028), + [anon_sym_LT] = ACTIONS(1028), + [anon_sym_GT_EQ] = ACTIONS(1030), + [anon_sym_LT_EQ] = ACTIONS(1030), + [anon_sym_AT] = ACTIONS(1030), + [anon_sym__] = ACTIONS(1028), + [anon_sym_DOT] = ACTIONS(1028), + [anon_sym_DOT_DOT] = ACTIONS(1028), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1030), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1030), + [anon_sym_COMMA] = ACTIONS(1030), + [anon_sym_COLON_COLON] = ACTIONS(1030), + [anon_sym_DASH_GT] = ACTIONS(1030), + [anon_sym_POUND] = ACTIONS(1030), + [anon_sym_SQUOTE] = ACTIONS(1028), + [anon_sym_as] = ACTIONS(1028), + [anon_sym_async] = ACTIONS(1028), + [anon_sym_await] = ACTIONS(1028), + [anon_sym_break] = ACTIONS(1028), + [anon_sym_const] = ACTIONS(1028), + [anon_sym_continue] = ACTIONS(1028), + [anon_sym_default] = ACTIONS(1028), + [anon_sym_enum] = ACTIONS(1028), + [anon_sym_fn] = ACTIONS(1028), + [anon_sym_for] = ACTIONS(1028), + [anon_sym_gen] = ACTIONS(1028), + [anon_sym_if] = ACTIONS(1028), + [anon_sym_impl] = ACTIONS(1028), + [anon_sym_let] = ACTIONS(1028), + [anon_sym_loop] = ACTIONS(1028), + [anon_sym_match] = ACTIONS(1028), + [anon_sym_mod] = ACTIONS(1028), + [anon_sym_pub] = ACTIONS(1028), + [anon_sym_return] = ACTIONS(1028), + [anon_sym_static] = ACTIONS(1028), + [anon_sym_struct] = ACTIONS(1028), + [anon_sym_trait] = ACTIONS(1028), + [anon_sym_type] = ACTIONS(1028), + [anon_sym_union] = ACTIONS(1028), + [anon_sym_unsafe] = ACTIONS(1028), + [anon_sym_use] = ACTIONS(1028), + [anon_sym_where] = ACTIONS(1028), + [anon_sym_while] = ACTIONS(1028), + [sym_mutable_specifier] = ACTIONS(1028), + [sym_integer_literal] = ACTIONS(1030), + [aux_sym_string_literal_token1] = ACTIONS(1030), + [sym_char_literal] = ACTIONS(1030), + [anon_sym_true] = ACTIONS(1028), + [anon_sym_false] = ACTIONS(1028), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1028), + [sym_super] = ACTIONS(1028), + [sym_crate] = ACTIONS(1028), + [sym_metavariable] = ACTIONS(1030), + [sym__raw_string_literal_start] = ACTIONS(1030), + [sym_float_literal] = ACTIONS(1030), + }, + [190] = { + [sym_attribute_item] = STATE(1052), + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1667), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(190), + [sym_block_comment] = STATE(190), + [aux_sym_enum_variant_list_repeat1] = STATE(1050), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -39923,589 +39079,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(196)] = { - [sym_attribute_item] = STATE(1060), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1667), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(196), - [sym_block_comment] = STATE(196), - [aux_sym_enum_variant_list_repeat1] = STATE(1058), - [sym_identifier] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [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(757), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), - }, - [STATE(197)] = { - [sym_line_comment] = STATE(197), - [sym_block_comment] = STATE(197), - [sym_identifier] = ACTIONS(1030), - [anon_sym_SEMI] = ACTIONS(1032), - [anon_sym_LPAREN] = ACTIONS(1032), - [anon_sym_RPAREN] = ACTIONS(1032), - [anon_sym_LBRACK] = ACTIONS(1032), - [anon_sym_RBRACK] = ACTIONS(1032), - [anon_sym_LBRACE] = ACTIONS(1032), - [anon_sym_RBRACE] = ACTIONS(1032), - [anon_sym_EQ_GT] = ACTIONS(1032), - [anon_sym_COLON] = ACTIONS(1030), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_PLUS] = ACTIONS(1030), - [anon_sym_STAR] = ACTIONS(1030), - [anon_sym_QMARK] = ACTIONS(1032), - [anon_sym_u8] = ACTIONS(1030), - [anon_sym_i8] = ACTIONS(1030), - [anon_sym_u16] = ACTIONS(1030), - [anon_sym_i16] = ACTIONS(1030), - [anon_sym_u32] = ACTIONS(1030), - [anon_sym_i32] = ACTIONS(1030), - [anon_sym_u64] = ACTIONS(1030), - [anon_sym_i64] = ACTIONS(1030), - [anon_sym_u128] = ACTIONS(1030), - [anon_sym_i128] = ACTIONS(1030), - [anon_sym_isize] = ACTIONS(1030), - [anon_sym_usize] = ACTIONS(1030), - [anon_sym_f32] = ACTIONS(1030), - [anon_sym_f64] = ACTIONS(1030), - [anon_sym_bool] = ACTIONS(1030), - [anon_sym_str] = ACTIONS(1030), - [anon_sym_char] = ACTIONS(1030), - [anon_sym_DASH] = ACTIONS(1030), - [anon_sym_SLASH] = ACTIONS(1030), - [anon_sym_PERCENT] = ACTIONS(1030), - [anon_sym_CARET] = ACTIONS(1030), - [anon_sym_BANG] = ACTIONS(1030), - [anon_sym_AMP] = ACTIONS(1030), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_AMP_AMP] = ACTIONS(1032), - [anon_sym_PIPE_PIPE] = ACTIONS(1032), - [anon_sym_LT_LT] = ACTIONS(1030), - [anon_sym_GT_GT] = ACTIONS(1030), - [anon_sym_PLUS_EQ] = ACTIONS(1032), - [anon_sym_DASH_EQ] = ACTIONS(1032), - [anon_sym_STAR_EQ] = ACTIONS(1032), - [anon_sym_SLASH_EQ] = ACTIONS(1032), - [anon_sym_PERCENT_EQ] = ACTIONS(1032), - [anon_sym_CARET_EQ] = ACTIONS(1032), - [anon_sym_AMP_EQ] = ACTIONS(1032), - [anon_sym_PIPE_EQ] = ACTIONS(1032), - [anon_sym_LT_LT_EQ] = ACTIONS(1032), - [anon_sym_GT_GT_EQ] = ACTIONS(1032), - [anon_sym_EQ] = ACTIONS(1030), - [anon_sym_EQ_EQ] = ACTIONS(1032), - [anon_sym_BANG_EQ] = ACTIONS(1032), - [anon_sym_GT] = ACTIONS(1030), - [anon_sym_LT] = ACTIONS(1030), - [anon_sym_GT_EQ] = ACTIONS(1032), - [anon_sym_LT_EQ] = ACTIONS(1032), - [anon_sym_AT] = ACTIONS(1032), - [anon_sym__] = ACTIONS(1030), - [anon_sym_DOT] = ACTIONS(1030), - [anon_sym_DOT_DOT] = ACTIONS(1030), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1032), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1032), - [anon_sym_COMMA] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(1032), - [anon_sym_DASH_GT] = ACTIONS(1032), - [anon_sym_POUND] = ACTIONS(1032), - [anon_sym_SQUOTE] = ACTIONS(1030), - [anon_sym_as] = ACTIONS(1030), - [anon_sym_async] = ACTIONS(1030), - [anon_sym_await] = ACTIONS(1030), - [anon_sym_break] = ACTIONS(1030), - [anon_sym_const] = ACTIONS(1030), - [anon_sym_continue] = ACTIONS(1030), - [anon_sym_default] = ACTIONS(1030), - [anon_sym_enum] = ACTIONS(1030), - [anon_sym_fn] = ACTIONS(1030), - [anon_sym_for] = ACTIONS(1030), - [anon_sym_gen] = ACTIONS(1030), - [anon_sym_if] = ACTIONS(1030), - [anon_sym_impl] = ACTIONS(1030), - [anon_sym_let] = ACTIONS(1030), - [anon_sym_loop] = ACTIONS(1030), - [anon_sym_match] = ACTIONS(1030), - [anon_sym_mod] = ACTIONS(1030), - [anon_sym_pub] = ACTIONS(1030), - [anon_sym_return] = ACTIONS(1030), - [anon_sym_static] = ACTIONS(1030), - [anon_sym_struct] = ACTIONS(1030), - [anon_sym_trait] = ACTIONS(1030), - [anon_sym_type] = ACTIONS(1030), - [anon_sym_union] = ACTIONS(1030), - [anon_sym_unsafe] = ACTIONS(1030), - [anon_sym_use] = ACTIONS(1030), - [anon_sym_where] = ACTIONS(1030), - [anon_sym_while] = ACTIONS(1030), - [sym_mutable_specifier] = ACTIONS(1030), - [sym_integer_literal] = ACTIONS(1032), - [aux_sym_string_literal_token1] = ACTIONS(1032), - [sym_char_literal] = ACTIONS(1032), - [anon_sym_true] = ACTIONS(1030), - [anon_sym_false] = ACTIONS(1030), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1030), - [sym_super] = ACTIONS(1030), - [sym_crate] = ACTIONS(1030), - [sym_metavariable] = ACTIONS(1032), - [sym__raw_string_literal_start] = ACTIONS(1032), - [sym_float_literal] = ACTIONS(1032), - }, - [STATE(198)] = { - [sym_attribute_item] = STATE(1060), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1973), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(198), - [sym_block_comment] = STATE(198), - [aux_sym_enum_variant_list_repeat1] = STATE(1058), - [sym_identifier] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [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(757), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), - }, - [STATE(199)] = { - [sym_attribute_item] = STATE(1060), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1680), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(199), - [sym_block_comment] = STATE(199), - [aux_sym_enum_variant_list_repeat1] = STATE(1058), - [sym_identifier] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [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(757), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), + [191] = { + [sym_line_comment] = STATE(191), + [sym_block_comment] = STATE(191), + [sym_identifier] = ACTIONS(954), + [anon_sym_SEMI] = ACTIONS(956), + [anon_sym_LPAREN] = ACTIONS(956), + [anon_sym_RPAREN] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(956), + [anon_sym_RBRACK] = ACTIONS(956), + [anon_sym_LBRACE] = ACTIONS(956), + [anon_sym_RBRACE] = ACTIONS(956), + [anon_sym_EQ_GT] = ACTIONS(956), + [anon_sym_COLON] = ACTIONS(954), + [anon_sym_DOLLAR] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(954), + [anon_sym_STAR] = ACTIONS(954), + [anon_sym_QMARK] = ACTIONS(956), + [anon_sym_u8] = ACTIONS(954), + [anon_sym_i8] = ACTIONS(954), + [anon_sym_u16] = ACTIONS(954), + [anon_sym_i16] = ACTIONS(954), + [anon_sym_u32] = ACTIONS(954), + [anon_sym_i32] = ACTIONS(954), + [anon_sym_u64] = ACTIONS(954), + [anon_sym_i64] = ACTIONS(954), + [anon_sym_u128] = ACTIONS(954), + [anon_sym_i128] = ACTIONS(954), + [anon_sym_isize] = ACTIONS(954), + [anon_sym_usize] = ACTIONS(954), + [anon_sym_f32] = ACTIONS(954), + [anon_sym_f64] = ACTIONS(954), + [anon_sym_bool] = ACTIONS(954), + [anon_sym_str] = ACTIONS(954), + [anon_sym_char] = ACTIONS(954), + [anon_sym_DASH] = ACTIONS(954), + [anon_sym_SLASH] = ACTIONS(954), + [anon_sym_PERCENT] = ACTIONS(954), + [anon_sym_CARET] = ACTIONS(954), + [anon_sym_BANG] = ACTIONS(954), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_AMP_AMP] = ACTIONS(956), + [anon_sym_PIPE_PIPE] = ACTIONS(956), + [anon_sym_LT_LT] = ACTIONS(954), + [anon_sym_GT_GT] = ACTIONS(954), + [anon_sym_PLUS_EQ] = ACTIONS(956), + [anon_sym_DASH_EQ] = ACTIONS(956), + [anon_sym_STAR_EQ] = ACTIONS(956), + [anon_sym_SLASH_EQ] = ACTIONS(956), + [anon_sym_PERCENT_EQ] = ACTIONS(956), + [anon_sym_CARET_EQ] = ACTIONS(956), + [anon_sym_AMP_EQ] = ACTIONS(956), + [anon_sym_PIPE_EQ] = ACTIONS(956), + [anon_sym_LT_LT_EQ] = ACTIONS(956), + [anon_sym_GT_GT_EQ] = ACTIONS(956), + [anon_sym_EQ] = ACTIONS(954), + [anon_sym_EQ_EQ] = ACTIONS(956), + [anon_sym_BANG_EQ] = ACTIONS(956), + [anon_sym_GT] = ACTIONS(954), + [anon_sym_LT] = ACTIONS(954), + [anon_sym_GT_EQ] = ACTIONS(956), + [anon_sym_LT_EQ] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(956), + [anon_sym__] = ACTIONS(954), + [anon_sym_DOT] = ACTIONS(954), + [anon_sym_DOT_DOT] = ACTIONS(954), + [anon_sym_DOT_DOT_DOT] = ACTIONS(956), + [anon_sym_DOT_DOT_EQ] = ACTIONS(956), + [anon_sym_COMMA] = ACTIONS(956), + [anon_sym_COLON_COLON] = ACTIONS(956), + [anon_sym_DASH_GT] = ACTIONS(956), + [anon_sym_POUND] = ACTIONS(956), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_as] = ACTIONS(954), + [anon_sym_async] = ACTIONS(954), + [anon_sym_await] = ACTIONS(954), + [anon_sym_break] = ACTIONS(954), + [anon_sym_const] = ACTIONS(954), + [anon_sym_continue] = ACTIONS(954), + [anon_sym_default] = ACTIONS(954), + [anon_sym_enum] = ACTIONS(954), + [anon_sym_fn] = ACTIONS(954), + [anon_sym_for] = ACTIONS(954), + [anon_sym_gen] = ACTIONS(954), + [anon_sym_if] = ACTIONS(954), + [anon_sym_impl] = ACTIONS(954), + [anon_sym_let] = ACTIONS(954), + [anon_sym_loop] = ACTIONS(954), + [anon_sym_match] = ACTIONS(954), + [anon_sym_mod] = ACTIONS(954), + [anon_sym_pub] = ACTIONS(954), + [anon_sym_return] = ACTIONS(954), + [anon_sym_static] = ACTIONS(954), + [anon_sym_struct] = ACTIONS(954), + [anon_sym_trait] = ACTIONS(954), + [anon_sym_type] = ACTIONS(954), + [anon_sym_union] = ACTIONS(954), + [anon_sym_unsafe] = ACTIONS(954), + [anon_sym_use] = ACTIONS(954), + [anon_sym_where] = ACTIONS(954), + [anon_sym_while] = ACTIONS(954), + [sym_mutable_specifier] = ACTIONS(954), + [sym_integer_literal] = ACTIONS(956), + [aux_sym_string_literal_token1] = ACTIONS(956), + [sym_char_literal] = ACTIONS(956), + [anon_sym_true] = ACTIONS(954), + [anon_sym_false] = ACTIONS(954), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [sym_self] = ACTIONS(954), + [sym_super] = ACTIONS(954), + [sym_crate] = ACTIONS(954), + [sym_metavariable] = ACTIONS(956), + [sym__raw_string_literal_start] = ACTIONS(956), + [sym_float_literal] = ACTIONS(956), }, - [STATE(200)] = { - [sym_attribute_item] = STATE(1060), - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1714), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(200), - [sym_block_comment] = STATE(200), - [aux_sym_enum_variant_list_repeat1] = STATE(1058), - [sym_identifier] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [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(757), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), + [192] = { + [sym_line_comment] = STATE(192), + [sym_block_comment] = STATE(192), + [sym_identifier] = ACTIONS(954), + [anon_sym_SEMI] = ACTIONS(956), + [anon_sym_LPAREN] = ACTIONS(956), + [anon_sym_RPAREN] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(956), + [anon_sym_RBRACK] = ACTIONS(956), + [anon_sym_LBRACE] = ACTIONS(956), + [anon_sym_RBRACE] = ACTIONS(956), + [anon_sym_EQ_GT] = ACTIONS(956), + [anon_sym_COLON] = ACTIONS(1032), + [anon_sym_DOLLAR] = ACTIONS(954), + [anon_sym_PLUS] = ACTIONS(954), + [anon_sym_STAR] = ACTIONS(954), + [anon_sym_QMARK] = ACTIONS(956), + [anon_sym_u8] = ACTIONS(954), + [anon_sym_i8] = ACTIONS(954), + [anon_sym_u16] = ACTIONS(954), + [anon_sym_i16] = ACTIONS(954), + [anon_sym_u32] = ACTIONS(954), + [anon_sym_i32] = ACTIONS(954), + [anon_sym_u64] = ACTIONS(954), + [anon_sym_i64] = ACTIONS(954), + [anon_sym_u128] = ACTIONS(954), + [anon_sym_i128] = ACTIONS(954), + [anon_sym_isize] = ACTIONS(954), + [anon_sym_usize] = ACTIONS(954), + [anon_sym_f32] = ACTIONS(954), + [anon_sym_f64] = ACTIONS(954), + [anon_sym_bool] = ACTIONS(954), + [anon_sym_str] = ACTIONS(954), + [anon_sym_char] = ACTIONS(954), + [anon_sym_DASH] = ACTIONS(954), + [anon_sym_SLASH] = ACTIONS(954), + [anon_sym_PERCENT] = ACTIONS(954), + [anon_sym_CARET] = ACTIONS(954), + [anon_sym_BANG] = ACTIONS(954), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_AMP_AMP] = ACTIONS(956), + [anon_sym_PIPE_PIPE] = ACTIONS(956), + [anon_sym_LT_LT] = ACTIONS(954), + [anon_sym_GT_GT] = ACTIONS(954), + [anon_sym_PLUS_EQ] = ACTIONS(956), + [anon_sym_DASH_EQ] = ACTIONS(956), + [anon_sym_STAR_EQ] = ACTIONS(956), + [anon_sym_SLASH_EQ] = ACTIONS(956), + [anon_sym_PERCENT_EQ] = ACTIONS(956), + [anon_sym_CARET_EQ] = ACTIONS(956), + [anon_sym_AMP_EQ] = ACTIONS(956), + [anon_sym_PIPE_EQ] = ACTIONS(956), + [anon_sym_LT_LT_EQ] = ACTIONS(956), + [anon_sym_GT_GT_EQ] = ACTIONS(956), + [anon_sym_EQ] = ACTIONS(954), + [anon_sym_EQ_EQ] = ACTIONS(956), + [anon_sym_BANG_EQ] = ACTIONS(956), + [anon_sym_GT] = ACTIONS(954), + [anon_sym_LT] = ACTIONS(954), + [anon_sym_GT_EQ] = ACTIONS(956), + [anon_sym_LT_EQ] = ACTIONS(956), + [anon_sym_AT] = ACTIONS(956), + [anon_sym__] = ACTIONS(954), + [anon_sym_DOT] = ACTIONS(954), + [anon_sym_DOT_DOT] = ACTIONS(954), + [anon_sym_DOT_DOT_DOT] = ACTIONS(956), + [anon_sym_DOT_DOT_EQ] = ACTIONS(956), + [anon_sym_COMMA] = ACTIONS(956), + [anon_sym_COLON_COLON] = ACTIONS(956), + [anon_sym_DASH_GT] = ACTIONS(956), + [anon_sym_POUND] = ACTIONS(956), + [anon_sym_SQUOTE] = ACTIONS(954), + [anon_sym_as] = ACTIONS(954), + [anon_sym_async] = ACTIONS(954), + [anon_sym_await] = ACTIONS(954), + [anon_sym_break] = ACTIONS(954), + [anon_sym_const] = ACTIONS(954), + [anon_sym_continue] = ACTIONS(954), + [anon_sym_default] = ACTIONS(954), + [anon_sym_enum] = ACTIONS(954), + [anon_sym_fn] = ACTIONS(954), + [anon_sym_for] = ACTIONS(954), + [anon_sym_gen] = ACTIONS(954), + [anon_sym_if] = ACTIONS(954), + [anon_sym_impl] = ACTIONS(954), + [anon_sym_let] = ACTIONS(954), + [anon_sym_loop] = ACTIONS(954), + [anon_sym_match] = ACTIONS(954), + [anon_sym_mod] = ACTIONS(954), + [anon_sym_pub] = ACTIONS(954), + [anon_sym_return] = ACTIONS(954), + [anon_sym_static] = ACTIONS(954), + [anon_sym_struct] = ACTIONS(954), + [anon_sym_trait] = ACTIONS(954), + [anon_sym_type] = ACTIONS(954), + [anon_sym_union] = ACTIONS(954), + [anon_sym_unsafe] = ACTIONS(954), + [anon_sym_use] = ACTIONS(954), + [anon_sym_where] = ACTIONS(954), + [anon_sym_while] = ACTIONS(954), + [sym_mutable_specifier] = ACTIONS(954), + [sym_integer_literal] = ACTIONS(956), + [aux_sym_string_literal_token1] = ACTIONS(956), + [sym_char_literal] = ACTIONS(956), + [anon_sym_true] = ACTIONS(954), + [anon_sym_false] = ACTIONS(954), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [sym_self] = ACTIONS(954), + [sym_super] = ACTIONS(954), + [sym_crate] = ACTIONS(954), + [sym_metavariable] = ACTIONS(956), + [sym__raw_string_literal_start] = ACTIONS(956), + [sym_float_literal] = ACTIONS(956), }, - [STATE(201)] = { - [sym_line_comment] = STATE(201), - [sym_block_comment] = STATE(201), + [193] = { + [sym_line_comment] = STATE(193), + [sym_block_comment] = STATE(193), [sym_identifier] = ACTIONS(1034), [anon_sym_SEMI] = ACTIONS(1036), [anon_sym_LPAREN] = ACTIONS(1036), @@ -40619,9 +39427,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1036), [sym_float_literal] = ACTIONS(1036), }, - [STATE(202)] = { - [sym_line_comment] = STATE(202), - [sym_block_comment] = STATE(202), + [194] = { + [sym_line_comment] = STATE(194), + [sym_block_comment] = STATE(194), [sym_identifier] = ACTIONS(1038), [anon_sym_SEMI] = ACTIONS(1040), [anon_sym_LPAREN] = ACTIONS(1040), @@ -40735,9 +39543,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1040), [sym_float_literal] = ACTIONS(1040), }, - [STATE(203)] = { - [sym_line_comment] = STATE(203), - [sym_block_comment] = STATE(203), + [195] = { + [sym_attribute_item] = STATE(1052), + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1958), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(195), + [sym_block_comment] = STATE(195), + [aux_sym_enum_variant_list_repeat1] = STATE(1050), + [sym_identifier] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [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(757), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(360), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(364), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_raw] = ACTIONS(360), + [anon_sym_yield] = ACTIONS(93), + [anon_sym_move] = ACTIONS(95), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(111), + [sym_super] = ACTIONS(113), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(117), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [196] = { + [sym_line_comment] = STATE(196), + [sym_block_comment] = STATE(196), [sym_identifier] = ACTIONS(1042), [anon_sym_SEMI] = ACTIONS(1044), [anon_sym_LPAREN] = ACTIONS(1044), @@ -40851,631 +39775,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1044), [sym_float_literal] = ACTIONS(1044), }, - [STATE(204)] = { - [sym_line_comment] = STATE(204), - [sym_block_comment] = STATE(204), - [sym_identifier] = ACTIONS(1046), - [anon_sym_SEMI] = ACTIONS(1048), - [anon_sym_LPAREN] = ACTIONS(1048), - [anon_sym_RPAREN] = ACTIONS(1048), - [anon_sym_LBRACK] = ACTIONS(1048), - [anon_sym_RBRACK] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1048), - [anon_sym_RBRACE] = ACTIONS(1048), - [anon_sym_EQ_GT] = ACTIONS(1048), - [anon_sym_COLON] = ACTIONS(1046), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_STAR] = ACTIONS(1046), - [anon_sym_QMARK] = ACTIONS(1048), - [anon_sym_u8] = ACTIONS(1046), - [anon_sym_i8] = ACTIONS(1046), - [anon_sym_u16] = ACTIONS(1046), - [anon_sym_i16] = ACTIONS(1046), - [anon_sym_u32] = ACTIONS(1046), - [anon_sym_i32] = ACTIONS(1046), - [anon_sym_u64] = ACTIONS(1046), - [anon_sym_i64] = ACTIONS(1046), - [anon_sym_u128] = ACTIONS(1046), - [anon_sym_i128] = ACTIONS(1046), - [anon_sym_isize] = ACTIONS(1046), - [anon_sym_usize] = ACTIONS(1046), - [anon_sym_f32] = ACTIONS(1046), - [anon_sym_f64] = ACTIONS(1046), - [anon_sym_bool] = ACTIONS(1046), - [anon_sym_str] = ACTIONS(1046), - [anon_sym_char] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_SLASH] = ACTIONS(1046), - [anon_sym_PERCENT] = ACTIONS(1046), - [anon_sym_CARET] = ACTIONS(1046), - [anon_sym_BANG] = ACTIONS(1046), - [anon_sym_AMP] = ACTIONS(1046), - [anon_sym_PIPE] = ACTIONS(1046), - [anon_sym_AMP_AMP] = ACTIONS(1048), - [anon_sym_PIPE_PIPE] = ACTIONS(1048), - [anon_sym_LT_LT] = ACTIONS(1046), - [anon_sym_GT_GT] = ACTIONS(1046), - [anon_sym_PLUS_EQ] = ACTIONS(1048), - [anon_sym_DASH_EQ] = ACTIONS(1048), - [anon_sym_STAR_EQ] = ACTIONS(1048), - [anon_sym_SLASH_EQ] = ACTIONS(1048), - [anon_sym_PERCENT_EQ] = ACTIONS(1048), - [anon_sym_CARET_EQ] = ACTIONS(1048), - [anon_sym_AMP_EQ] = ACTIONS(1048), - [anon_sym_PIPE_EQ] = ACTIONS(1048), - [anon_sym_LT_LT_EQ] = ACTIONS(1048), - [anon_sym_GT_GT_EQ] = ACTIONS(1048), - [anon_sym_EQ] = ACTIONS(1046), - [anon_sym_EQ_EQ] = ACTIONS(1048), - [anon_sym_BANG_EQ] = ACTIONS(1048), - [anon_sym_GT] = ACTIONS(1046), - [anon_sym_LT] = ACTIONS(1046), - [anon_sym_GT_EQ] = ACTIONS(1048), - [anon_sym_LT_EQ] = ACTIONS(1048), - [anon_sym_AT] = ACTIONS(1048), - [anon_sym__] = ACTIONS(1046), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DOT_DOT] = ACTIONS(1046), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1048), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1048), - [anon_sym_COMMA] = ACTIONS(1048), - [anon_sym_COLON_COLON] = ACTIONS(1048), - [anon_sym_DASH_GT] = ACTIONS(1048), - [anon_sym_POUND] = ACTIONS(1048), - [anon_sym_SQUOTE] = ACTIONS(1046), - [anon_sym_as] = ACTIONS(1046), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_await] = ACTIONS(1046), - [anon_sym_break] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_continue] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1046), - [anon_sym_enum] = ACTIONS(1046), - [anon_sym_fn] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1046), - [anon_sym_gen] = ACTIONS(1046), - [anon_sym_if] = ACTIONS(1046), - [anon_sym_impl] = ACTIONS(1046), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_loop] = ACTIONS(1046), - [anon_sym_match] = ACTIONS(1046), - [anon_sym_mod] = ACTIONS(1046), - [anon_sym_pub] = ACTIONS(1046), - [anon_sym_return] = ACTIONS(1046), - [anon_sym_static] = ACTIONS(1046), - [anon_sym_struct] = ACTIONS(1046), - [anon_sym_trait] = ACTIONS(1046), - [anon_sym_type] = ACTIONS(1046), - [anon_sym_union] = ACTIONS(1046), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_use] = ACTIONS(1046), - [anon_sym_where] = ACTIONS(1046), - [anon_sym_while] = ACTIONS(1046), - [sym_mutable_specifier] = ACTIONS(1046), - [sym_integer_literal] = ACTIONS(1048), - [aux_sym_string_literal_token1] = ACTIONS(1048), - [sym_char_literal] = ACTIONS(1048), - [anon_sym_true] = ACTIONS(1046), - [anon_sym_false] = ACTIONS(1046), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1046), - [sym_super] = ACTIONS(1046), - [sym_crate] = ACTIONS(1046), - [sym__raw_string_literal_start] = ACTIONS(1048), - [sym_float_literal] = ACTIONS(1048), - }, - [STATE(205)] = { - [sym_line_comment] = STATE(205), - [sym_block_comment] = STATE(205), - [sym_identifier] = ACTIONS(1050), - [anon_sym_SEMI] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1052), - [anon_sym_RPAREN] = ACTIONS(1052), - [anon_sym_LBRACK] = ACTIONS(1052), - [anon_sym_RBRACK] = ACTIONS(1052), - [anon_sym_LBRACE] = ACTIONS(1052), - [anon_sym_RBRACE] = ACTIONS(1052), - [anon_sym_EQ_GT] = ACTIONS(1052), - [anon_sym_COLON] = ACTIONS(1050), - [anon_sym_DOLLAR] = ACTIONS(1052), - [anon_sym_PLUS] = ACTIONS(1050), - [anon_sym_STAR] = ACTIONS(1050), - [anon_sym_QMARK] = ACTIONS(1052), - [anon_sym_u8] = ACTIONS(1050), - [anon_sym_i8] = ACTIONS(1050), - [anon_sym_u16] = ACTIONS(1050), - [anon_sym_i16] = ACTIONS(1050), - [anon_sym_u32] = ACTIONS(1050), - [anon_sym_i32] = ACTIONS(1050), - [anon_sym_u64] = ACTIONS(1050), - [anon_sym_i64] = ACTIONS(1050), - [anon_sym_u128] = ACTIONS(1050), - [anon_sym_i128] = ACTIONS(1050), - [anon_sym_isize] = ACTIONS(1050), - [anon_sym_usize] = ACTIONS(1050), - [anon_sym_f32] = ACTIONS(1050), - [anon_sym_f64] = ACTIONS(1050), - [anon_sym_bool] = ACTIONS(1050), - [anon_sym_str] = ACTIONS(1050), - [anon_sym_char] = ACTIONS(1050), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_SLASH] = ACTIONS(1050), - [anon_sym_PERCENT] = ACTIONS(1050), - [anon_sym_CARET] = ACTIONS(1050), - [anon_sym_BANG] = ACTIONS(1050), - [anon_sym_AMP] = ACTIONS(1050), - [anon_sym_PIPE] = ACTIONS(1050), - [anon_sym_AMP_AMP] = ACTIONS(1052), - [anon_sym_PIPE_PIPE] = ACTIONS(1052), - [anon_sym_LT_LT] = ACTIONS(1050), - [anon_sym_GT_GT] = ACTIONS(1050), - [anon_sym_PLUS_EQ] = ACTIONS(1052), - [anon_sym_DASH_EQ] = ACTIONS(1052), - [anon_sym_STAR_EQ] = ACTIONS(1052), - [anon_sym_SLASH_EQ] = ACTIONS(1052), - [anon_sym_PERCENT_EQ] = ACTIONS(1052), - [anon_sym_CARET_EQ] = ACTIONS(1052), - [anon_sym_AMP_EQ] = ACTIONS(1052), - [anon_sym_PIPE_EQ] = ACTIONS(1052), - [anon_sym_LT_LT_EQ] = ACTIONS(1052), - [anon_sym_GT_GT_EQ] = ACTIONS(1052), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_EQ_EQ] = ACTIONS(1052), - [anon_sym_BANG_EQ] = ACTIONS(1052), - [anon_sym_GT] = ACTIONS(1050), - [anon_sym_LT] = ACTIONS(1050), - [anon_sym_GT_EQ] = ACTIONS(1052), - [anon_sym_LT_EQ] = ACTIONS(1052), - [anon_sym_AT] = ACTIONS(1052), - [anon_sym__] = ACTIONS(1050), - [anon_sym_DOT] = ACTIONS(1050), - [anon_sym_DOT_DOT] = ACTIONS(1050), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1052), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1052), - [anon_sym_COMMA] = ACTIONS(1052), - [anon_sym_COLON_COLON] = ACTIONS(1052), - [anon_sym_DASH_GT] = ACTIONS(1052), - [anon_sym_POUND] = ACTIONS(1052), - [anon_sym_SQUOTE] = ACTIONS(1050), - [anon_sym_as] = ACTIONS(1050), - [anon_sym_async] = ACTIONS(1050), - [anon_sym_await] = ACTIONS(1050), - [anon_sym_break] = ACTIONS(1050), - [anon_sym_const] = ACTIONS(1050), - [anon_sym_continue] = ACTIONS(1050), - [anon_sym_default] = ACTIONS(1050), - [anon_sym_enum] = ACTIONS(1050), - [anon_sym_fn] = ACTIONS(1050), - [anon_sym_for] = ACTIONS(1050), - [anon_sym_gen] = ACTIONS(1050), - [anon_sym_if] = ACTIONS(1050), - [anon_sym_impl] = ACTIONS(1050), - [anon_sym_let] = ACTIONS(1050), - [anon_sym_loop] = ACTIONS(1050), - [anon_sym_match] = ACTIONS(1050), - [anon_sym_mod] = ACTIONS(1050), - [anon_sym_pub] = ACTIONS(1050), - [anon_sym_return] = ACTIONS(1050), - [anon_sym_static] = ACTIONS(1050), - [anon_sym_struct] = ACTIONS(1050), - [anon_sym_trait] = ACTIONS(1050), - [anon_sym_type] = ACTIONS(1050), - [anon_sym_union] = ACTIONS(1050), - [anon_sym_unsafe] = ACTIONS(1050), - [anon_sym_use] = ACTIONS(1050), - [anon_sym_where] = ACTIONS(1050), - [anon_sym_while] = ACTIONS(1050), - [sym_mutable_specifier] = ACTIONS(1050), - [sym_integer_literal] = ACTIONS(1052), - [aux_sym_string_literal_token1] = ACTIONS(1052), - [sym_char_literal] = ACTIONS(1052), - [anon_sym_true] = ACTIONS(1050), - [anon_sym_false] = ACTIONS(1050), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1050), - [sym_super] = ACTIONS(1050), - [sym_crate] = ACTIONS(1050), - [sym__raw_string_literal_start] = ACTIONS(1052), - [sym_float_literal] = ACTIONS(1052), - }, - [STATE(206)] = { - [sym_line_comment] = STATE(206), - [sym_block_comment] = STATE(206), - [sym_identifier] = ACTIONS(1054), - [anon_sym_SEMI] = ACTIONS(1056), - [anon_sym_LPAREN] = ACTIONS(1056), - [anon_sym_RPAREN] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1056), - [anon_sym_RBRACK] = ACTIONS(1056), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1056), - [anon_sym_EQ_GT] = ACTIONS(1056), - [anon_sym_COLON] = ACTIONS(1054), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_PLUS] = ACTIONS(1054), - [anon_sym_STAR] = ACTIONS(1054), - [anon_sym_QMARK] = ACTIONS(1056), - [anon_sym_u8] = ACTIONS(1054), - [anon_sym_i8] = ACTIONS(1054), - [anon_sym_u16] = ACTIONS(1054), - [anon_sym_i16] = ACTIONS(1054), - [anon_sym_u32] = ACTIONS(1054), - [anon_sym_i32] = ACTIONS(1054), - [anon_sym_u64] = ACTIONS(1054), - [anon_sym_i64] = ACTIONS(1054), - [anon_sym_u128] = ACTIONS(1054), - [anon_sym_i128] = ACTIONS(1054), - [anon_sym_isize] = ACTIONS(1054), - [anon_sym_usize] = ACTIONS(1054), - [anon_sym_f32] = ACTIONS(1054), - [anon_sym_f64] = ACTIONS(1054), - [anon_sym_bool] = ACTIONS(1054), - [anon_sym_str] = ACTIONS(1054), - [anon_sym_char] = ACTIONS(1054), - [anon_sym_DASH] = ACTIONS(1054), - [anon_sym_SLASH] = ACTIONS(1054), - [anon_sym_PERCENT] = ACTIONS(1054), - [anon_sym_CARET] = ACTIONS(1054), - [anon_sym_BANG] = ACTIONS(1054), - [anon_sym_AMP] = ACTIONS(1054), - [anon_sym_PIPE] = ACTIONS(1054), - [anon_sym_AMP_AMP] = ACTIONS(1056), - [anon_sym_PIPE_PIPE] = ACTIONS(1056), - [anon_sym_LT_LT] = ACTIONS(1054), - [anon_sym_GT_GT] = ACTIONS(1054), - [anon_sym_PLUS_EQ] = ACTIONS(1056), - [anon_sym_DASH_EQ] = ACTIONS(1056), - [anon_sym_STAR_EQ] = ACTIONS(1056), - [anon_sym_SLASH_EQ] = ACTIONS(1056), - [anon_sym_PERCENT_EQ] = ACTIONS(1056), - [anon_sym_CARET_EQ] = ACTIONS(1056), - [anon_sym_AMP_EQ] = ACTIONS(1056), - [anon_sym_PIPE_EQ] = ACTIONS(1056), - [anon_sym_LT_LT_EQ] = ACTIONS(1056), - [anon_sym_GT_GT_EQ] = ACTIONS(1056), - [anon_sym_EQ] = ACTIONS(1054), - [anon_sym_EQ_EQ] = ACTIONS(1056), - [anon_sym_BANG_EQ] = ACTIONS(1056), - [anon_sym_GT] = ACTIONS(1054), - [anon_sym_LT] = ACTIONS(1054), - [anon_sym_GT_EQ] = ACTIONS(1056), - [anon_sym_LT_EQ] = ACTIONS(1056), - [anon_sym_AT] = ACTIONS(1056), - [anon_sym__] = ACTIONS(1054), - [anon_sym_DOT] = ACTIONS(1054), - [anon_sym_DOT_DOT] = ACTIONS(1054), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1056), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1056), - [anon_sym_COMMA] = ACTIONS(1056), - [anon_sym_COLON_COLON] = ACTIONS(1056), - [anon_sym_DASH_GT] = ACTIONS(1056), - [anon_sym_POUND] = ACTIONS(1056), - [anon_sym_SQUOTE] = ACTIONS(1054), - [anon_sym_as] = ACTIONS(1054), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_break] = ACTIONS(1054), - [anon_sym_const] = ACTIONS(1054), - [anon_sym_continue] = ACTIONS(1054), - [anon_sym_default] = ACTIONS(1054), - [anon_sym_enum] = ACTIONS(1054), - [anon_sym_fn] = ACTIONS(1054), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_gen] = ACTIONS(1054), - [anon_sym_if] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1054), - [anon_sym_let] = ACTIONS(1054), - [anon_sym_loop] = ACTIONS(1054), - [anon_sym_match] = ACTIONS(1054), - [anon_sym_mod] = ACTIONS(1054), - [anon_sym_pub] = ACTIONS(1054), - [anon_sym_return] = ACTIONS(1054), - [anon_sym_static] = ACTIONS(1054), - [anon_sym_struct] = ACTIONS(1054), - [anon_sym_trait] = ACTIONS(1054), - [anon_sym_type] = ACTIONS(1054), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(1054), - [anon_sym_use] = ACTIONS(1054), - [anon_sym_where] = ACTIONS(1054), - [anon_sym_while] = ACTIONS(1054), - [sym_mutable_specifier] = ACTIONS(1054), - [sym_integer_literal] = ACTIONS(1056), - [aux_sym_string_literal_token1] = ACTIONS(1056), - [sym_char_literal] = ACTIONS(1056), - [anon_sym_true] = ACTIONS(1054), - [anon_sym_false] = ACTIONS(1054), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1054), - [sym_super] = ACTIONS(1054), - [sym_crate] = ACTIONS(1054), - [sym__raw_string_literal_start] = ACTIONS(1056), - [sym_float_literal] = ACTIONS(1056), - }, - [STATE(207)] = { - [sym_attribute_item] = STATE(424), - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_self_parameter] = STATE(3033), - [sym_variadic_parameter] = STATE(3033), - [sym_parameter] = STATE(3033), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2673), - [sym_bracketed_type] = STATE(3694), - [sym_lifetime] = STATE(3065), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3341), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2582), - [sym_scoped_identifier] = STATE(2327), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(3276), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), - [sym_line_comment] = STATE(207), - [sym_block_comment] = STATE(207), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1058), - [anon_sym_LPAREN] = ACTIONS(1060), - [anon_sym_RPAREN] = ACTIONS(1062), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1070), - [anon_sym_i8] = ACTIONS(1070), - [anon_sym_u16] = ACTIONS(1070), - [anon_sym_i16] = ACTIONS(1070), - [anon_sym_u32] = ACTIONS(1070), - [anon_sym_i32] = ACTIONS(1070), - [anon_sym_u64] = ACTIONS(1070), - [anon_sym_i64] = ACTIONS(1070), - [anon_sym_u128] = ACTIONS(1070), - [anon_sym_i128] = ACTIONS(1070), - [anon_sym_isize] = ACTIONS(1070), - [anon_sym_usize] = ACTIONS(1070), - [anon_sym_f32] = ACTIONS(1070), - [anon_sym_f64] = ACTIONS(1070), - [anon_sym_bool] = ACTIONS(1070), - [anon_sym_str] = ACTIONS(1070), - [anon_sym_char] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1076), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1080), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1084), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COMMA] = ACTIONS(1088), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym_POUND] = ACTIONS(1092), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1106), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1106), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1118), - [anon_sym_raw] = ACTIONS(1106), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1126), - [sym_super] = ACTIONS(1128), - [sym_crate] = ACTIONS(1128), - [sym_metavariable] = ACTIONS(1130), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(208)] = { - [sym_line_comment] = STATE(208), - [sym_block_comment] = STATE(208), - [sym_identifier] = ACTIONS(1134), - [anon_sym_SEMI] = ACTIONS(1136), - [anon_sym_LPAREN] = ACTIONS(1136), - [anon_sym_RPAREN] = ACTIONS(1136), - [anon_sym_LBRACK] = ACTIONS(1136), - [anon_sym_RBRACK] = ACTIONS(1136), - [anon_sym_LBRACE] = ACTIONS(1136), - [anon_sym_RBRACE] = ACTIONS(1136), - [anon_sym_EQ_GT] = ACTIONS(1136), - [anon_sym_COLON] = ACTIONS(1134), - [anon_sym_DOLLAR] = ACTIONS(1136), - [anon_sym_PLUS] = ACTIONS(1134), - [anon_sym_STAR] = ACTIONS(1134), - [anon_sym_QMARK] = ACTIONS(1136), - [anon_sym_u8] = ACTIONS(1134), - [anon_sym_i8] = ACTIONS(1134), - [anon_sym_u16] = ACTIONS(1134), - [anon_sym_i16] = ACTIONS(1134), - [anon_sym_u32] = ACTIONS(1134), - [anon_sym_i32] = ACTIONS(1134), - [anon_sym_u64] = ACTIONS(1134), - [anon_sym_i64] = ACTIONS(1134), - [anon_sym_u128] = ACTIONS(1134), - [anon_sym_i128] = ACTIONS(1134), - [anon_sym_isize] = ACTIONS(1134), - [anon_sym_usize] = ACTIONS(1134), - [anon_sym_f32] = ACTIONS(1134), - [anon_sym_f64] = ACTIONS(1134), - [anon_sym_bool] = ACTIONS(1134), - [anon_sym_str] = ACTIONS(1134), - [anon_sym_char] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1134), - [anon_sym_SLASH] = ACTIONS(1134), - [anon_sym_PERCENT] = ACTIONS(1134), - [anon_sym_CARET] = ACTIONS(1134), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_AMP] = ACTIONS(1134), - [anon_sym_PIPE] = ACTIONS(1134), - [anon_sym_AMP_AMP] = ACTIONS(1136), - [anon_sym_PIPE_PIPE] = ACTIONS(1136), - [anon_sym_LT_LT] = ACTIONS(1134), - [anon_sym_GT_GT] = ACTIONS(1134), - [anon_sym_PLUS_EQ] = ACTIONS(1136), - [anon_sym_DASH_EQ] = ACTIONS(1136), - [anon_sym_STAR_EQ] = ACTIONS(1136), - [anon_sym_SLASH_EQ] = ACTIONS(1136), - [anon_sym_PERCENT_EQ] = ACTIONS(1136), - [anon_sym_CARET_EQ] = ACTIONS(1136), - [anon_sym_AMP_EQ] = ACTIONS(1136), - [anon_sym_PIPE_EQ] = ACTIONS(1136), - [anon_sym_LT_LT_EQ] = ACTIONS(1136), - [anon_sym_GT_GT_EQ] = ACTIONS(1136), - [anon_sym_EQ] = ACTIONS(1134), - [anon_sym_EQ_EQ] = ACTIONS(1136), - [anon_sym_BANG_EQ] = ACTIONS(1136), - [anon_sym_GT] = ACTIONS(1134), - [anon_sym_LT] = ACTIONS(1134), - [anon_sym_GT_EQ] = ACTIONS(1136), - [anon_sym_LT_EQ] = ACTIONS(1136), - [anon_sym_AT] = ACTIONS(1136), - [anon_sym__] = ACTIONS(1134), - [anon_sym_DOT] = ACTIONS(1134), - [anon_sym_DOT_DOT] = ACTIONS(1134), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1136), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1136), - [anon_sym_COMMA] = ACTIONS(1136), - [anon_sym_COLON_COLON] = ACTIONS(1136), - [anon_sym_DASH_GT] = ACTIONS(1136), - [anon_sym_POUND] = ACTIONS(1136), - [anon_sym_SQUOTE] = ACTIONS(1134), - [anon_sym_as] = ACTIONS(1134), - [anon_sym_async] = ACTIONS(1134), - [anon_sym_await] = ACTIONS(1134), - [anon_sym_break] = ACTIONS(1134), - [anon_sym_const] = ACTIONS(1134), - [anon_sym_continue] = ACTIONS(1134), - [anon_sym_default] = ACTIONS(1134), - [anon_sym_enum] = ACTIONS(1134), - [anon_sym_fn] = ACTIONS(1134), - [anon_sym_for] = ACTIONS(1134), - [anon_sym_gen] = ACTIONS(1134), - [anon_sym_if] = ACTIONS(1134), - [anon_sym_impl] = ACTIONS(1134), - [anon_sym_let] = ACTIONS(1134), - [anon_sym_loop] = ACTIONS(1134), - [anon_sym_match] = ACTIONS(1134), - [anon_sym_mod] = ACTIONS(1134), - [anon_sym_pub] = ACTIONS(1134), - [anon_sym_return] = ACTIONS(1134), - [anon_sym_static] = ACTIONS(1134), - [anon_sym_struct] = ACTIONS(1134), - [anon_sym_trait] = ACTIONS(1134), - [anon_sym_type] = ACTIONS(1134), - [anon_sym_union] = ACTIONS(1134), - [anon_sym_unsafe] = ACTIONS(1134), - [anon_sym_use] = ACTIONS(1134), - [anon_sym_where] = ACTIONS(1134), - [anon_sym_while] = ACTIONS(1134), - [sym_mutable_specifier] = ACTIONS(1134), - [sym_integer_literal] = ACTIONS(1136), - [aux_sym_string_literal_token1] = ACTIONS(1136), - [sym_char_literal] = ACTIONS(1136), - [anon_sym_true] = ACTIONS(1134), - [anon_sym_false] = ACTIONS(1134), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1134), - [sym_super] = ACTIONS(1134), - [sym_crate] = ACTIONS(1134), - [sym__raw_string_literal_start] = ACTIONS(1136), - [sym_float_literal] = ACTIONS(1136), - }, - [STATE(209)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1585), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1435), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(209), - [sym_block_comment] = STATE(209), + [197] = { + [sym_attribute_item] = STATE(1052), + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1963), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(197), + [sym_block_comment] = STATE(197), + [aux_sym_enum_variant_list_repeat1] = STATE(1050), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -41498,15 +39849,14 @@ 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(354), + [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(1138), - [anon_sym_DOT_DOT] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1142), + [anon_sym_POUND] = ACTIONS(757), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), @@ -41541,221 +39891,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(210)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1697), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1435), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(210), - [sym_block_comment] = STATE(210), - [sym_identifier] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(510), - [anon_sym_BANG] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1138), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_DASH_GT] = ACTIONS(1142), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), - }, - [STATE(211)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1676), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1460), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(211), - [sym_block_comment] = STATE(211), - [sym_identifier] = ACTIONS(470), + [198] = { + [sym_attribute_item] = STATE(1052), + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1690), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(198), + [sym_block_comment] = STATE(198), + [aux_sym_enum_variant_list_repeat1] = STATE(1050), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(510), - [anon_sym_BANG] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), + [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(1146), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_DASH_GT] = ACTIONS(1148), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(757), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(360), [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), + [anon_sym_gen] = ACTIONS(364), [anon_sym_if] = ACTIONS(366), [anon_sym_loop] = ACTIONS(368), [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), + [anon_sym_raw] = ACTIONS(360), + [anon_sym_yield] = ACTIONS(93), + [anon_sym_move] = ACTIONS(95), [anon_sym_try] = ACTIONS(378), [sym_integer_literal] = ACTIONS(99), [aux_sym_string_literal_token1] = ACTIONS(101), @@ -41764,178 +40000,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), + [sym_self] = ACTIONS(111), + [sym_super] = ACTIONS(113), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(117), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(212)] = { - [sym_attribute_item] = STATE(425), - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_self_parameter] = STATE(3064), - [sym_variadic_parameter] = STATE(3064), - [sym_parameter] = STATE(3064), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2716), - [sym_bracketed_type] = STATE(3694), - [sym_lifetime] = STATE(3065), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3341), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2582), - [sym_scoped_identifier] = STATE(2327), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(3276), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), - [sym_line_comment] = STATE(212), - [sym_block_comment] = STATE(212), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1058), - [anon_sym_LPAREN] = ACTIONS(1060), - [anon_sym_RPAREN] = ACTIONS(1150), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1070), - [anon_sym_i8] = ACTIONS(1070), - [anon_sym_u16] = ACTIONS(1070), - [anon_sym_i16] = ACTIONS(1070), - [anon_sym_u32] = ACTIONS(1070), - [anon_sym_i32] = ACTIONS(1070), - [anon_sym_u64] = ACTIONS(1070), - [anon_sym_i64] = ACTIONS(1070), - [anon_sym_u128] = ACTIONS(1070), - [anon_sym_i128] = ACTIONS(1070), - [anon_sym_isize] = ACTIONS(1070), - [anon_sym_usize] = ACTIONS(1070), - [anon_sym_f32] = ACTIONS(1070), - [anon_sym_f64] = ACTIONS(1070), - [anon_sym_bool] = ACTIONS(1070), - [anon_sym_str] = ACTIONS(1070), - [anon_sym_char] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1076), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1152), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1084), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COMMA] = ACTIONS(1154), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym_POUND] = ACTIONS(1092), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1106), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1106), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1118), - [anon_sym_raw] = ACTIONS(1106), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1126), - [sym_super] = ACTIONS(1128), - [sym_crate] = ACTIONS(1128), - [sym_metavariable] = ACTIONS(1130), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(213)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1593), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1450), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(213), - [sym_block_comment] = STATE(213), + [199] = { + [sym_attribute_item] = STATE(1052), + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1710), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(199), + [sym_block_comment] = STATE(199), + [aux_sym_enum_variant_list_repeat1] = STATE(175), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -41958,15 +40081,14 @@ 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(354), + [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(1156), - [anon_sym_DOT_DOT] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1158), + [anon_sym_POUND] = ACTIONS(757), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), @@ -42001,93 +40123,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(214)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1711), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1450), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(214), - [sym_block_comment] = STATE(214), - [sym_identifier] = ACTIONS(470), + [200] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1704), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(208), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(200), + [sym_block_comment] = STATE(200), + [sym_identifier] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), [anon_sym_DASH] = ACTIONS(510), [anon_sym_BANG] = ACTIONS(894), [anon_sym_AMP] = ACTIONS(896), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1156), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_DASH_GT] = ACTIONS(1158), + [anon_sym__] = ACTIONS(1046), + [anon_sym_DOT_DOT] = ACTIONS(898), + [anon_sym_COLON_COLON] = ACTIONS(486), + [anon_sym_DASH_GT] = ACTIONS(1048), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(512), [anon_sym_break] = ACTIONS(514), [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), + [anon_sym_default] = ACTIONS(492), [anon_sym_for] = ACTIONS(362), [anon_sym_gen] = ACTIONS(518), [anon_sym_if] = ACTIONS(366), @@ -42095,10 +40217,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(370), [anon_sym_return] = ACTIONS(520), [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), + [anon_sym_union] = ACTIONS(492), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), + [anon_sym_raw] = ACTIONS(492), [anon_sym_yield] = ACTIONS(524), [anon_sym_move] = ACTIONS(526), [anon_sym_try] = ACTIONS(378), @@ -42109,412 +40231,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(215)] = { - [sym_bracketed_type] = STATE(3669), - [sym_generic_function] = STATE(1894), - [sym_generic_type_with_turbofish] = STATE(3057), - [sym__expression_except_range] = STATE(1672), - [sym__expression] = STATE(1745), - [sym_macro_invocation] = STATE(1901), - [sym_scoped_identifier] = STATE(1644), - [sym_scoped_type_identifier_in_expression_position] = STATE(3253), - [sym_range_expression] = STATE(1897), - [sym_unary_expression] = STATE(1894), - [sym_try_expression] = STATE(1894), - [sym_reference_expression] = STATE(1894), - [sym_binary_expression] = STATE(1894), - [sym_assignment_expression] = STATE(1894), - [sym_compound_assignment_expr] = STATE(1894), - [sym_type_cast_expression] = STATE(1894), - [sym_return_expression] = STATE(1894), - [sym_yield_expression] = STATE(1894), - [sym_call_expression] = STATE(1894), - [sym_array_expression] = STATE(1894), - [sym_parenthesized_expression] = STATE(1894), - [sym_tuple_expression] = STATE(1894), - [sym_unit_expression] = STATE(1894), - [sym_struct_expression] = STATE(1894), - [sym_if_expression] = STATE(1894), - [sym_let_condition] = STATE(2832), - [sym_match_expression] = STATE(1894), - [sym_while_expression] = STATE(1894), - [sym_loop_expression] = STATE(1894), - [sym_for_expression] = STATE(1894), - [sym_const_block] = STATE(1894), - [sym_closure_expression] = STATE(1894), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3777), - [sym_break_expression] = STATE(1894), - [sym_continue_expression] = STATE(1894), - [sym_index_expression] = STATE(1894), - [sym_await_expression] = STATE(1894), - [sym_field_expression] = STATE(1674), - [sym_unsafe_block] = STATE(1894), - [sym_async_block] = STATE(1894), - [sym_gen_block] = STATE(1894), - [sym_try_block] = STATE(1894), - [sym_block] = STATE(1894), - [sym__literal] = STATE(1894), - [sym_string_literal] = STATE(1768), - [sym_raw_string_literal] = STATE(1768), - [sym_boolean_literal] = STATE(1768), - [sym_line_comment] = STATE(215), - [sym_block_comment] = STATE(215), - [sym_identifier] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_STAR] = ACTIONS(904), - [anon_sym_u8] = ACTIONS(416), - [anon_sym_i8] = ACTIONS(416), - [anon_sym_u16] = ACTIONS(416), - [anon_sym_i16] = ACTIONS(416), - [anon_sym_u32] = ACTIONS(416), - [anon_sym_i32] = ACTIONS(416), - [anon_sym_u64] = ACTIONS(416), - [anon_sym_i64] = ACTIONS(416), - [anon_sym_u128] = ACTIONS(416), - [anon_sym_i128] = ACTIONS(416), - [anon_sym_isize] = ACTIONS(416), - [anon_sym_usize] = ACTIONS(416), - [anon_sym_f32] = ACTIONS(416), - [anon_sym_f64] = ACTIONS(416), - [anon_sym_bool] = ACTIONS(416), - [anon_sym_str] = ACTIONS(416), - [anon_sym_char] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(904), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1160), - [anon_sym_COLON_COLON] = ACTIONS(420), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(422), - [anon_sym_break] = ACTIONS(424), - [anon_sym_const] = ACTIONS(426), - [anon_sym_continue] = ACTIONS(428), - [anon_sym_default] = ACTIONS(430), - [anon_sym_for] = ACTIONS(432), - [anon_sym_gen] = ACTIONS(434), - [anon_sym_if] = ACTIONS(436), - [anon_sym_let] = ACTIONS(910), - [anon_sym_loop] = ACTIONS(438), - [anon_sym_match] = ACTIONS(440), - [anon_sym_return] = ACTIONS(442), - [anon_sym_static] = ACTIONS(444), - [anon_sym_union] = ACTIONS(430), - [anon_sym_unsafe] = ACTIONS(446), - [anon_sym_while] = ACTIONS(448), - [anon_sym_raw] = ACTIONS(430), - [anon_sym_yield] = ACTIONS(450), - [anon_sym_move] = ACTIONS(452), - [anon_sym_try] = ACTIONS(454), - [sym_integer_literal] = ACTIONS(456), - [aux_sym_string_literal_token1] = ACTIONS(458), - [sym_char_literal] = ACTIONS(456), - [anon_sym_true] = ACTIONS(460), - [anon_sym_false] = ACTIONS(460), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(462), - [sym_super] = ACTIONS(464), - [sym_crate] = ACTIONS(464), - [sym_metavariable] = ACTIONS(466), - [sym__raw_string_literal_start] = ACTIONS(468), - [sym_float_literal] = ACTIONS(456), - }, - [STATE(216)] = { - [sym_attribute_item] = STATE(425), - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_self_parameter] = STATE(3064), - [sym_variadic_parameter] = STATE(3064), - [sym_parameter] = STATE(3064), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2716), - [sym_bracketed_type] = STATE(3702), - [sym_lifetime] = STATE(3065), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3434), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2533), - [sym_scoped_identifier] = STATE(2200), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2584), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), - [sym_line_comment] = STATE(216), - [sym_block_comment] = STATE(216), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1162), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_RPAREN] = ACTIONS(1166), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1168), - [anon_sym_i8] = ACTIONS(1168), - [anon_sym_u16] = ACTIONS(1168), - [anon_sym_i16] = ACTIONS(1168), - [anon_sym_u32] = ACTIONS(1168), - [anon_sym_i32] = ACTIONS(1168), - [anon_sym_u64] = ACTIONS(1168), - [anon_sym_i64] = ACTIONS(1168), - [anon_sym_u128] = ACTIONS(1168), - [anon_sym_i128] = ACTIONS(1168), - [anon_sym_isize] = ACTIONS(1168), - [anon_sym_usize] = ACTIONS(1168), - [anon_sym_f32] = ACTIONS(1168), - [anon_sym_f64] = ACTIONS(1168), - [anon_sym_bool] = ACTIONS(1168), - [anon_sym_str] = ACTIONS(1168), - [anon_sym_char] = ACTIONS(1168), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1170), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1172), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1084), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COMMA] = ACTIONS(1174), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym_POUND] = ACTIONS(1092), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1178), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1180), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1180), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1118), - [anon_sym_raw] = ACTIONS(1180), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1182), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(217)] = { - [sym_bracketed_type] = STATE(3669), - [sym_generic_function] = STATE(1894), - [sym_generic_type_with_turbofish] = STATE(3057), - [sym__expression_except_range] = STATE(1672), - [sym__expression] = STATE(1980), - [sym_macro_invocation] = STATE(1901), - [sym_scoped_identifier] = STATE(1644), - [sym_scoped_type_identifier_in_expression_position] = STATE(3253), - [sym_range_expression] = STATE(1897), - [sym_unary_expression] = STATE(1894), - [sym_try_expression] = STATE(1894), - [sym_reference_expression] = STATE(1894), - [sym_binary_expression] = STATE(1894), - [sym_assignment_expression] = STATE(1894), - [sym_compound_assignment_expr] = STATE(1894), - [sym_type_cast_expression] = STATE(1894), - [sym_return_expression] = STATE(1894), - [sym_yield_expression] = STATE(1894), - [sym_call_expression] = STATE(1894), - [sym_array_expression] = STATE(1894), - [sym_parenthesized_expression] = STATE(1894), - [sym_tuple_expression] = STATE(1894), - [sym_unit_expression] = STATE(1894), - [sym_struct_expression] = STATE(1894), - [sym_if_expression] = STATE(1894), - [sym_let_condition] = STATE(2832), - [sym_match_expression] = STATE(1894), - [sym_while_expression] = STATE(1894), - [sym_loop_expression] = STATE(1894), - [sym_for_expression] = STATE(1894), - [sym_const_block] = STATE(1894), - [sym_closure_expression] = STATE(1894), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3777), - [sym_break_expression] = STATE(1894), - [sym_continue_expression] = STATE(1894), - [sym_index_expression] = STATE(1894), - [sym_await_expression] = STATE(1894), - [sym_field_expression] = STATE(1674), - [sym_unsafe_block] = STATE(1894), - [sym_async_block] = STATE(1894), - [sym_gen_block] = STATE(1894), - [sym_try_block] = STATE(1894), - [sym_block] = STATE(1894), - [sym__literal] = STATE(1894), - [sym_string_literal] = STATE(1768), - [sym_raw_string_literal] = STATE(1768), - [sym_boolean_literal] = STATE(1768), - [sym_line_comment] = STATE(217), - [sym_block_comment] = STATE(217), - [sym_identifier] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_STAR] = ACTIONS(904), - [anon_sym_u8] = ACTIONS(416), - [anon_sym_i8] = ACTIONS(416), - [anon_sym_u16] = ACTIONS(416), - [anon_sym_i16] = ACTIONS(416), - [anon_sym_u32] = ACTIONS(416), - [anon_sym_i32] = ACTIONS(416), - [anon_sym_u64] = ACTIONS(416), - [anon_sym_i64] = ACTIONS(416), - [anon_sym_u128] = ACTIONS(416), - [anon_sym_i128] = ACTIONS(416), - [anon_sym_isize] = ACTIONS(416), - [anon_sym_usize] = ACTIONS(416), - [anon_sym_f32] = ACTIONS(416), - [anon_sym_f64] = ACTIONS(416), - [anon_sym_bool] = ACTIONS(416), - [anon_sym_str] = ACTIONS(416), - [anon_sym_char] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(904), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(908), - [anon_sym_COLON_COLON] = ACTIONS(420), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(422), - [anon_sym_break] = ACTIONS(424), - [anon_sym_const] = ACTIONS(426), - [anon_sym_continue] = ACTIONS(428), - [anon_sym_default] = ACTIONS(430), - [anon_sym_for] = ACTIONS(432), - [anon_sym_gen] = ACTIONS(434), - [anon_sym_if] = ACTIONS(436), - [anon_sym_let] = ACTIONS(910), - [anon_sym_loop] = ACTIONS(438), - [anon_sym_match] = ACTIONS(440), - [anon_sym_return] = ACTIONS(442), - [anon_sym_static] = ACTIONS(444), - [anon_sym_union] = ACTIONS(430), - [anon_sym_unsafe] = ACTIONS(446), - [anon_sym_while] = ACTIONS(448), - [anon_sym_raw] = ACTIONS(430), - [anon_sym_yield] = ACTIONS(450), - [anon_sym_move] = ACTIONS(452), - [anon_sym_try] = ACTIONS(454), - [sym_integer_literal] = ACTIONS(456), - [aux_sym_string_literal_token1] = ACTIONS(458), - [sym_char_literal] = ACTIONS(456), - [anon_sym_true] = ACTIONS(460), - [anon_sym_false] = ACTIONS(460), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(462), - [sym_super] = ACTIONS(464), - [sym_crate] = ACTIONS(464), - [sym_metavariable] = ACTIONS(466), - [sym__raw_string_literal_start] = ACTIONS(468), - [sym_float_literal] = ACTIONS(456), - }, - [STATE(218)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1797), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(218), - [sym_block_comment] = STATE(218), - [aux_sym_tuple_expression_repeat1] = STATE(241), + [201] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1801), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(201), + [sym_block_comment] = STATE(201), + [aux_sym_tuple_expression_repeat1] = STATE(247), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1188), + [anon_sym_RPAREN] = ACTIONS(1050), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), @@ -42576,106 +40353,221 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(219)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1665), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1516), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(219), - [sym_block_comment] = STATE(219), - [sym_identifier] = ACTIONS(470), + [202] = { + [sym_attribute_item] = STATE(417), + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_self_parameter] = STATE(3013), + [sym_variadic_parameter] = STATE(3013), + [sym_parameter] = STATE(3013), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2753), + [sym_bracketed_type] = STATE(3684), + [sym_lifetime] = STATE(3061), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3340), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2527), + [sym_scoped_identifier] = STATE(2319), + [sym_scoped_type_identifier] = STATE(2206), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(3283), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), + [sym_line_comment] = STATE(202), + [sym_block_comment] = STATE(202), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1052), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_RPAREN] = ACTIONS(1056), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1064), + [anon_sym_i8] = ACTIONS(1064), + [anon_sym_u16] = ACTIONS(1064), + [anon_sym_i16] = ACTIONS(1064), + [anon_sym_u32] = ACTIONS(1064), + [anon_sym_i32] = ACTIONS(1064), + [anon_sym_u64] = ACTIONS(1064), + [anon_sym_i64] = ACTIONS(1064), + [anon_sym_u128] = ACTIONS(1064), + [anon_sym_i128] = ACTIONS(1064), + [anon_sym_isize] = ACTIONS(1064), + [anon_sym_usize] = ACTIONS(1064), + [anon_sym_f32] = ACTIONS(1064), + [anon_sym_f64] = ACTIONS(1064), + [anon_sym_bool] = ACTIONS(1064), + [anon_sym_str] = ACTIONS(1064), + [anon_sym_char] = ACTIONS(1064), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1070), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1074), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1078), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COMMA] = ACTIONS(1082), + [anon_sym_COLON_COLON] = ACTIONS(1084), + [anon_sym_POUND] = ACTIONS(1086), + [anon_sym_SQUOTE] = ACTIONS(1088), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1092), + [anon_sym_default] = ACTIONS(1094), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1100), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1100), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_ref] = ACTIONS(1108), + [anon_sym_dyn] = ACTIONS(1110), + [sym_mutable_specifier] = ACTIONS(1112), + [anon_sym_raw] = ACTIONS(1100), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1120), + [sym_super] = ACTIONS(1122), + [sym_crate] = ACTIONS(1122), + [sym_metavariable] = ACTIONS(1124), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [203] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1811), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(203), + [sym_block_comment] = STATE(203), + [aux_sym_tuple_expression_repeat1] = STATE(213), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1128), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(510), - [anon_sym_BANG] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), + [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(1190), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_DASH_GT] = ACTIONS(1192), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(360), [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), + [anon_sym_gen] = ACTIONS(364), [anon_sym_if] = ACTIONS(366), [anon_sym_loop] = ACTIONS(368), [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), + [anon_sym_raw] = ACTIONS(360), + [anon_sym_yield] = ACTIONS(93), + [anon_sym_move] = ACTIONS(95), [anon_sym_try] = ACTIONS(378), [sym_integer_literal] = ACTIONS(99), [aux_sym_string_literal_token1] = ACTIONS(101), @@ -42684,182 +40576,297 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), + [sym_self] = ACTIONS(111), + [sym_super] = ACTIONS(113), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(117), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(220)] = { - [sym_bracketed_type] = STATE(3669), - [sym_generic_function] = STATE(1894), - [sym_generic_type_with_turbofish] = STATE(3057), - [sym__expression_except_range] = STATE(1672), - [sym__expression] = STATE(1774), - [sym_macro_invocation] = STATE(1901), - [sym_scoped_identifier] = STATE(1644), - [sym_scoped_type_identifier_in_expression_position] = STATE(3253), - [sym_range_expression] = STATE(1897), - [sym_unary_expression] = STATE(1894), - [sym_try_expression] = STATE(1894), - [sym_reference_expression] = STATE(1894), - [sym_binary_expression] = STATE(1894), - [sym_assignment_expression] = STATE(1894), - [sym_compound_assignment_expr] = STATE(1894), - [sym_type_cast_expression] = STATE(1894), - [sym_return_expression] = STATE(1894), - [sym_yield_expression] = STATE(1894), - [sym_call_expression] = STATE(1894), - [sym_array_expression] = STATE(1894), - [sym_parenthesized_expression] = STATE(1894), - [sym_tuple_expression] = STATE(1894), - [sym_unit_expression] = STATE(1894), - [sym_struct_expression] = STATE(1894), - [sym_if_expression] = STATE(1894), - [sym_match_expression] = STATE(1894), - [sym_while_expression] = STATE(1894), - [sym_loop_expression] = STATE(1894), - [sym_for_expression] = STATE(1894), - [sym_const_block] = STATE(1894), - [sym_closure_expression] = STATE(1894), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3777), - [sym_break_expression] = STATE(1894), - [sym_continue_expression] = STATE(1894), - [sym_index_expression] = STATE(1894), - [sym_await_expression] = STATE(1894), - [sym_field_expression] = STATE(1674), - [sym_unsafe_block] = STATE(1894), - [sym_async_block] = STATE(1894), - [sym_gen_block] = STATE(1894), - [sym_try_block] = STATE(1894), - [sym_block] = STATE(1930), - [sym__literal] = STATE(1894), - [sym_string_literal] = STATE(1768), - [sym_raw_string_literal] = STATE(1768), - [sym_boolean_literal] = STATE(1768), - [sym_line_comment] = STATE(220), - [sym_block_comment] = STATE(220), - [sym_identifier] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_STAR] = ACTIONS(904), - [anon_sym_u8] = ACTIONS(416), - [anon_sym_i8] = ACTIONS(416), - [anon_sym_u16] = ACTIONS(416), - [anon_sym_i16] = ACTIONS(416), - [anon_sym_u32] = ACTIONS(416), - [anon_sym_i32] = ACTIONS(416), - [anon_sym_u64] = ACTIONS(416), - [anon_sym_i64] = ACTIONS(416), - [anon_sym_u128] = ACTIONS(416), - [anon_sym_i128] = ACTIONS(416), - [anon_sym_isize] = ACTIONS(416), - [anon_sym_usize] = ACTIONS(416), - [anon_sym_f32] = ACTIONS(416), - [anon_sym_f64] = ACTIONS(416), - [anon_sym_bool] = ACTIONS(416), - [anon_sym_str] = ACTIONS(416), - [anon_sym_char] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1194), - [anon_sym_DOT_DOT] = ACTIONS(1160), - [anon_sym_COLON_COLON] = ACTIONS(420), - [anon_sym_DASH_GT] = ACTIONS(1196), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(422), - [anon_sym_break] = ACTIONS(424), - [anon_sym_const] = ACTIONS(426), - [anon_sym_continue] = ACTIONS(428), - [anon_sym_default] = ACTIONS(430), - [anon_sym_for] = ACTIONS(432), - [anon_sym_gen] = ACTIONS(434), - [anon_sym_if] = ACTIONS(436), - [anon_sym_loop] = ACTIONS(438), - [anon_sym_match] = ACTIONS(440), - [anon_sym_return] = ACTIONS(442), - [anon_sym_static] = ACTIONS(444), - [anon_sym_union] = ACTIONS(430), - [anon_sym_unsafe] = ACTIONS(446), - [anon_sym_while] = ACTIONS(448), - [anon_sym_raw] = ACTIONS(430), - [anon_sym_yield] = ACTIONS(450), - [anon_sym_move] = ACTIONS(452), - [anon_sym_try] = ACTIONS(454), - [sym_integer_literal] = ACTIONS(456), - [aux_sym_string_literal_token1] = ACTIONS(458), - [sym_char_literal] = ACTIONS(456), - [anon_sym_true] = ACTIONS(460), - [anon_sym_false] = ACTIONS(460), + [204] = { + [sym_line_comment] = STATE(204), + [sym_block_comment] = STATE(204), + [sym_identifier] = ACTIONS(1130), + [anon_sym_SEMI] = ACTIONS(1132), + [anon_sym_LPAREN] = ACTIONS(1132), + [anon_sym_RPAREN] = ACTIONS(1132), + [anon_sym_LBRACK] = ACTIONS(1132), + [anon_sym_RBRACK] = ACTIONS(1132), + [anon_sym_LBRACE] = ACTIONS(1132), + [anon_sym_RBRACE] = ACTIONS(1132), + [anon_sym_EQ_GT] = ACTIONS(1132), + [anon_sym_COLON] = ACTIONS(1130), + [anon_sym_DOLLAR] = ACTIONS(1132), + [anon_sym_PLUS] = ACTIONS(1130), + [anon_sym_STAR] = ACTIONS(1130), + [anon_sym_QMARK] = ACTIONS(1132), + [anon_sym_u8] = ACTIONS(1130), + [anon_sym_i8] = ACTIONS(1130), + [anon_sym_u16] = ACTIONS(1130), + [anon_sym_i16] = ACTIONS(1130), + [anon_sym_u32] = ACTIONS(1130), + [anon_sym_i32] = ACTIONS(1130), + [anon_sym_u64] = ACTIONS(1130), + [anon_sym_i64] = ACTIONS(1130), + [anon_sym_u128] = ACTIONS(1130), + [anon_sym_i128] = ACTIONS(1130), + [anon_sym_isize] = ACTIONS(1130), + [anon_sym_usize] = ACTIONS(1130), + [anon_sym_f32] = ACTIONS(1130), + [anon_sym_f64] = ACTIONS(1130), + [anon_sym_bool] = ACTIONS(1130), + [anon_sym_str] = ACTIONS(1130), + [anon_sym_char] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1130), + [anon_sym_SLASH] = ACTIONS(1130), + [anon_sym_PERCENT] = ACTIONS(1130), + [anon_sym_CARET] = ACTIONS(1130), + [anon_sym_BANG] = ACTIONS(1130), + [anon_sym_AMP] = ACTIONS(1130), + [anon_sym_PIPE] = ACTIONS(1130), + [anon_sym_AMP_AMP] = ACTIONS(1132), + [anon_sym_PIPE_PIPE] = ACTIONS(1132), + [anon_sym_LT_LT] = ACTIONS(1130), + [anon_sym_GT_GT] = ACTIONS(1130), + [anon_sym_PLUS_EQ] = ACTIONS(1132), + [anon_sym_DASH_EQ] = ACTIONS(1132), + [anon_sym_STAR_EQ] = ACTIONS(1132), + [anon_sym_SLASH_EQ] = ACTIONS(1132), + [anon_sym_PERCENT_EQ] = ACTIONS(1132), + [anon_sym_CARET_EQ] = ACTIONS(1132), + [anon_sym_AMP_EQ] = ACTIONS(1132), + [anon_sym_PIPE_EQ] = ACTIONS(1132), + [anon_sym_LT_LT_EQ] = ACTIONS(1132), + [anon_sym_GT_GT_EQ] = ACTIONS(1132), + [anon_sym_EQ] = ACTIONS(1130), + [anon_sym_EQ_EQ] = ACTIONS(1132), + [anon_sym_BANG_EQ] = ACTIONS(1132), + [anon_sym_GT] = ACTIONS(1130), + [anon_sym_LT] = ACTIONS(1130), + [anon_sym_GT_EQ] = ACTIONS(1132), + [anon_sym_LT_EQ] = ACTIONS(1132), + [anon_sym_AT] = ACTIONS(1132), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DOT] = ACTIONS(1130), + [anon_sym_DOT_DOT] = ACTIONS(1130), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1132), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1132), + [anon_sym_COMMA] = ACTIONS(1132), + [anon_sym_COLON_COLON] = ACTIONS(1132), + [anon_sym_DASH_GT] = ACTIONS(1132), + [anon_sym_POUND] = ACTIONS(1132), + [anon_sym_SQUOTE] = ACTIONS(1130), + [anon_sym_as] = ACTIONS(1130), + [anon_sym_async] = ACTIONS(1130), + [anon_sym_await] = ACTIONS(1130), + [anon_sym_break] = ACTIONS(1130), + [anon_sym_const] = ACTIONS(1130), + [anon_sym_continue] = ACTIONS(1130), + [anon_sym_default] = ACTIONS(1130), + [anon_sym_enum] = ACTIONS(1130), + [anon_sym_fn] = ACTIONS(1130), + [anon_sym_for] = ACTIONS(1130), + [anon_sym_gen] = ACTIONS(1130), + [anon_sym_if] = ACTIONS(1130), + [anon_sym_impl] = ACTIONS(1130), + [anon_sym_let] = ACTIONS(1130), + [anon_sym_loop] = ACTIONS(1130), + [anon_sym_match] = ACTIONS(1130), + [anon_sym_mod] = ACTIONS(1130), + [anon_sym_pub] = ACTIONS(1130), + [anon_sym_return] = ACTIONS(1130), + [anon_sym_static] = ACTIONS(1130), + [anon_sym_struct] = ACTIONS(1130), + [anon_sym_trait] = ACTIONS(1130), + [anon_sym_type] = ACTIONS(1130), + [anon_sym_union] = ACTIONS(1130), + [anon_sym_unsafe] = ACTIONS(1130), + [anon_sym_use] = ACTIONS(1130), + [anon_sym_where] = ACTIONS(1130), + [anon_sym_while] = ACTIONS(1130), + [sym_mutable_specifier] = ACTIONS(1130), + [sym_integer_literal] = ACTIONS(1132), + [aux_sym_string_literal_token1] = ACTIONS(1132), + [sym_char_literal] = ACTIONS(1132), + [anon_sym_true] = ACTIONS(1130), + [anon_sym_false] = ACTIONS(1130), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1130), + [sym_super] = ACTIONS(1130), + [sym_crate] = ACTIONS(1130), + [sym__raw_string_literal_start] = ACTIONS(1132), + [sym_float_literal] = ACTIONS(1132), + }, + [205] = { + [sym_line_comment] = STATE(205), + [sym_block_comment] = STATE(205), + [sym_identifier] = ACTIONS(1134), + [anon_sym_SEMI] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(1136), + [anon_sym_RPAREN] = ACTIONS(1136), + [anon_sym_LBRACK] = ACTIONS(1136), + [anon_sym_RBRACK] = ACTIONS(1136), + [anon_sym_LBRACE] = ACTIONS(1136), + [anon_sym_RBRACE] = ACTIONS(1136), + [anon_sym_EQ_GT] = ACTIONS(1136), + [anon_sym_COLON] = ACTIONS(1134), + [anon_sym_DOLLAR] = ACTIONS(1136), + [anon_sym_PLUS] = ACTIONS(1134), + [anon_sym_STAR] = ACTIONS(1134), + [anon_sym_QMARK] = ACTIONS(1136), + [anon_sym_u8] = ACTIONS(1134), + [anon_sym_i8] = ACTIONS(1134), + [anon_sym_u16] = ACTIONS(1134), + [anon_sym_i16] = ACTIONS(1134), + [anon_sym_u32] = ACTIONS(1134), + [anon_sym_i32] = ACTIONS(1134), + [anon_sym_u64] = ACTIONS(1134), + [anon_sym_i64] = ACTIONS(1134), + [anon_sym_u128] = ACTIONS(1134), + [anon_sym_i128] = ACTIONS(1134), + [anon_sym_isize] = ACTIONS(1134), + [anon_sym_usize] = ACTIONS(1134), + [anon_sym_f32] = ACTIONS(1134), + [anon_sym_f64] = ACTIONS(1134), + [anon_sym_bool] = ACTIONS(1134), + [anon_sym_str] = ACTIONS(1134), + [anon_sym_char] = ACTIONS(1134), + [anon_sym_DASH] = ACTIONS(1134), + [anon_sym_SLASH] = ACTIONS(1134), + [anon_sym_PERCENT] = ACTIONS(1134), + [anon_sym_CARET] = ACTIONS(1134), + [anon_sym_BANG] = ACTIONS(1134), + [anon_sym_AMP] = ACTIONS(1134), + [anon_sym_PIPE] = ACTIONS(1134), + [anon_sym_AMP_AMP] = ACTIONS(1136), + [anon_sym_PIPE_PIPE] = ACTIONS(1136), + [anon_sym_LT_LT] = ACTIONS(1134), + [anon_sym_GT_GT] = ACTIONS(1134), + [anon_sym_PLUS_EQ] = ACTIONS(1136), + [anon_sym_DASH_EQ] = ACTIONS(1136), + [anon_sym_STAR_EQ] = ACTIONS(1136), + [anon_sym_SLASH_EQ] = ACTIONS(1136), + [anon_sym_PERCENT_EQ] = ACTIONS(1136), + [anon_sym_CARET_EQ] = ACTIONS(1136), + [anon_sym_AMP_EQ] = ACTIONS(1136), + [anon_sym_PIPE_EQ] = ACTIONS(1136), + [anon_sym_LT_LT_EQ] = ACTIONS(1136), + [anon_sym_GT_GT_EQ] = ACTIONS(1136), + [anon_sym_EQ] = ACTIONS(1134), + [anon_sym_EQ_EQ] = ACTIONS(1136), + [anon_sym_BANG_EQ] = ACTIONS(1136), + [anon_sym_GT] = ACTIONS(1134), + [anon_sym_LT] = ACTIONS(1134), + [anon_sym_GT_EQ] = ACTIONS(1136), + [anon_sym_LT_EQ] = ACTIONS(1136), + [anon_sym_AT] = ACTIONS(1136), + [anon_sym__] = ACTIONS(1134), + [anon_sym_DOT] = ACTIONS(1134), + [anon_sym_DOT_DOT] = ACTIONS(1134), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1136), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1136), + [anon_sym_COMMA] = ACTIONS(1136), + [anon_sym_COLON_COLON] = ACTIONS(1136), + [anon_sym_DASH_GT] = ACTIONS(1136), + [anon_sym_POUND] = ACTIONS(1136), + [anon_sym_SQUOTE] = ACTIONS(1134), + [anon_sym_as] = ACTIONS(1134), + [anon_sym_async] = ACTIONS(1134), + [anon_sym_await] = ACTIONS(1134), + [anon_sym_break] = ACTIONS(1134), + [anon_sym_const] = ACTIONS(1134), + [anon_sym_continue] = ACTIONS(1134), + [anon_sym_default] = ACTIONS(1134), + [anon_sym_enum] = ACTIONS(1134), + [anon_sym_fn] = ACTIONS(1134), + [anon_sym_for] = ACTIONS(1134), + [anon_sym_gen] = ACTIONS(1134), + [anon_sym_if] = ACTIONS(1134), + [anon_sym_impl] = ACTIONS(1134), + [anon_sym_let] = ACTIONS(1134), + [anon_sym_loop] = ACTIONS(1134), + [anon_sym_match] = ACTIONS(1134), + [anon_sym_mod] = ACTIONS(1134), + [anon_sym_pub] = ACTIONS(1134), + [anon_sym_return] = ACTIONS(1134), + [anon_sym_static] = ACTIONS(1134), + [anon_sym_struct] = ACTIONS(1134), + [anon_sym_trait] = ACTIONS(1134), + [anon_sym_type] = ACTIONS(1134), + [anon_sym_union] = ACTIONS(1134), + [anon_sym_unsafe] = ACTIONS(1134), + [anon_sym_use] = ACTIONS(1134), + [anon_sym_where] = ACTIONS(1134), + [anon_sym_while] = ACTIONS(1134), + [sym_mutable_specifier] = ACTIONS(1134), + [sym_integer_literal] = ACTIONS(1136), + [aux_sym_string_literal_token1] = ACTIONS(1136), + [sym_char_literal] = ACTIONS(1136), + [anon_sym_true] = ACTIONS(1134), + [anon_sym_false] = ACTIONS(1134), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(462), - [sym_super] = ACTIONS(464), - [sym_crate] = ACTIONS(464), - [sym_metavariable] = ACTIONS(466), - [sym__raw_string_literal_start] = ACTIONS(468), - [sym_float_literal] = ACTIONS(456), + [sym_self] = ACTIONS(1134), + [sym_super] = ACTIONS(1134), + [sym_crate] = ACTIONS(1134), + [sym__raw_string_literal_start] = ACTIONS(1136), + [sym_float_literal] = ACTIONS(1136), }, - [STATE(221)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1813), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(221), - [sym_block_comment] = STATE(221), - [aux_sym_tuple_expression_repeat1] = STATE(241), + [206] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1816), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(206), + [sym_block_comment] = STATE(206), + [aux_sym_tuple_expression_repeat1] = STATE(213), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1198), + [anon_sym_RPAREN] = ACTIONS(1138), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), @@ -42921,56 +40928,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(222)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1586), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1516), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(222), - [sym_block_comment] = STATE(222), + [207] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1571), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1506), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(207), + [sym_block_comment] = STATE(207), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -42998,10 +41005,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(1190), - [anon_sym_DOT_DOT] = ACTIONS(1140), + [anon_sym__] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1192), + [anon_sym_DASH_GT] = ACTIONS(1142), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), @@ -43036,60 +41043,518 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(223)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1813), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(223), - [sym_block_comment] = STATE(223), - [aux_sym_tuple_expression_repeat1] = STATE(238), + [208] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1698), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(208), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1506), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(208), + [sym_block_comment] = STATE(208), + [sym_identifier] = ACTIONS(480), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(894), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(510), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_AMP] = ACTIONS(896), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(898), + [anon_sym_COLON_COLON] = ACTIONS(486), + [anon_sym_DASH_GT] = ACTIONS(1142), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(512), + [anon_sym_break] = ACTIONS(514), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_default] = ACTIONS(492), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(518), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(522), + [anon_sym_union] = ACTIONS(492), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_raw] = ACTIONS(492), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_move] = ACTIONS(526), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [209] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1692), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(208), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1465), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(209), + [sym_block_comment] = STATE(209), + [sym_identifier] = ACTIONS(480), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(894), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(510), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_AMP] = ACTIONS(896), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1144), + [anon_sym_DOT_DOT] = ACTIONS(898), + [anon_sym_COLON_COLON] = ACTIONS(486), + [anon_sym_DASH_GT] = ACTIONS(1146), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(512), + [anon_sym_break] = ACTIONS(514), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_default] = ACTIONS(492), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(518), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(522), + [anon_sym_union] = ACTIONS(492), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_raw] = ACTIONS(492), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_move] = ACTIONS(526), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [210] = { + [sym_attribute_item] = STATE(391), + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_self_parameter] = STATE(3058), + [sym_variadic_parameter] = STATE(3058), + [sym_parameter] = STATE(3058), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2787), + [sym_bracketed_type] = STATE(3692), + [sym_lifetime] = STATE(3061), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3423), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2535), + [sym_scoped_identifier] = STATE(2193), + [sym_scoped_type_identifier] = STATE(2206), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(2531), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), + [sym_line_comment] = STATE(210), + [sym_block_comment] = STATE(210), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(1150), + [anon_sym_RPAREN] = ACTIONS(1152), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1154), + [anon_sym_i8] = ACTIONS(1154), + [anon_sym_u16] = ACTIONS(1154), + [anon_sym_i16] = ACTIONS(1154), + [anon_sym_u32] = ACTIONS(1154), + [anon_sym_i32] = ACTIONS(1154), + [anon_sym_u64] = ACTIONS(1154), + [anon_sym_i64] = ACTIONS(1154), + [anon_sym_u128] = ACTIONS(1154), + [anon_sym_i128] = ACTIONS(1154), + [anon_sym_isize] = ACTIONS(1154), + [anon_sym_usize] = ACTIONS(1154), + [anon_sym_f32] = ACTIONS(1154), + [anon_sym_f64] = ACTIONS(1154), + [anon_sym_bool] = ACTIONS(1154), + [anon_sym_str] = ACTIONS(1154), + [anon_sym_char] = ACTIONS(1154), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1158), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1078), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COMMA] = ACTIONS(1160), + [anon_sym_COLON_COLON] = ACTIONS(1162), + [anon_sym_POUND] = ACTIONS(1086), + [anon_sym_SQUOTE] = ACTIONS(1088), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1092), + [anon_sym_default] = ACTIONS(1164), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1166), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1166), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_ref] = ACTIONS(1108), + [anon_sym_dyn] = ACTIONS(1110), + [sym_mutable_specifier] = ACTIONS(1112), + [anon_sym_raw] = ACTIONS(1166), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1168), + [sym_super] = ACTIONS(1170), + [sym_crate] = ACTIONS(1170), + [sym_metavariable] = ACTIONS(1172), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [211] = { + [sym_attribute_item] = STATE(391), + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_self_parameter] = STATE(3058), + [sym_variadic_parameter] = STATE(3058), + [sym_parameter] = STATE(3058), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2787), + [sym_bracketed_type] = STATE(3684), + [sym_lifetime] = STATE(3061), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3340), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2527), + [sym_scoped_identifier] = STATE(2319), + [sym_scoped_type_identifier] = STATE(2206), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(3283), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), + [sym_line_comment] = STATE(211), + [sym_block_comment] = STATE(211), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1052), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_RPAREN] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1064), + [anon_sym_i8] = ACTIONS(1064), + [anon_sym_u16] = ACTIONS(1064), + [anon_sym_i16] = ACTIONS(1064), + [anon_sym_u32] = ACTIONS(1064), + [anon_sym_i32] = ACTIONS(1064), + [anon_sym_u64] = ACTIONS(1064), + [anon_sym_i64] = ACTIONS(1064), + [anon_sym_u128] = ACTIONS(1064), + [anon_sym_i128] = ACTIONS(1064), + [anon_sym_isize] = ACTIONS(1064), + [anon_sym_usize] = ACTIONS(1064), + [anon_sym_f32] = ACTIONS(1064), + [anon_sym_f64] = ACTIONS(1064), + [anon_sym_bool] = ACTIONS(1064), + [anon_sym_str] = ACTIONS(1064), + [anon_sym_char] = ACTIONS(1064), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1070), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1176), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1078), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COMMA] = ACTIONS(1178), + [anon_sym_COLON_COLON] = ACTIONS(1084), + [anon_sym_POUND] = ACTIONS(1086), + [anon_sym_SQUOTE] = ACTIONS(1088), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1092), + [anon_sym_default] = ACTIONS(1094), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1100), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1100), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_ref] = ACTIONS(1108), + [anon_sym_dyn] = ACTIONS(1110), + [sym_mutable_specifier] = ACTIONS(1112), + [anon_sym_raw] = ACTIONS(1100), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1120), + [sym_super] = ACTIONS(1122), + [sym_crate] = ACTIONS(1122), + [sym_metavariable] = ACTIONS(1124), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [212] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1575), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(212), + [sym_block_comment] = STATE(212), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1198), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), @@ -43110,13 +41575,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(354), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1046), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1048), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), @@ -43151,61 +41618,177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(224)] = { - [sym_bracketed_type] = STATE(3669), - [sym_generic_function] = STATE(1894), - [sym_generic_type_with_turbofish] = STATE(3057), - [sym__expression_except_range] = STATE(1672), - [sym__expression] = STATE(1776), - [sym_macro_invocation] = STATE(1901), - [sym_scoped_identifier] = STATE(1644), - [sym_scoped_type_identifier_in_expression_position] = STATE(3253), - [sym_range_expression] = STATE(1897), - [sym_unary_expression] = STATE(1894), - [sym_try_expression] = STATE(1894), - [sym_reference_expression] = STATE(1894), - [sym_binary_expression] = STATE(1894), - [sym_assignment_expression] = STATE(1894), - [sym_compound_assignment_expr] = STATE(1894), - [sym_type_cast_expression] = STATE(1894), - [sym_return_expression] = STATE(1894), - [sym_yield_expression] = STATE(1894), - [sym_call_expression] = STATE(1894), - [sym_array_expression] = STATE(1894), - [sym_parenthesized_expression] = STATE(1894), - [sym_tuple_expression] = STATE(1894), - [sym_unit_expression] = STATE(1894), - [sym_struct_expression] = STATE(1894), - [sym_if_expression] = STATE(1894), - [sym_match_expression] = STATE(1894), - [sym_while_expression] = STATE(1894), - [sym_loop_expression] = STATE(1894), - [sym_for_expression] = STATE(1894), - [sym_const_block] = STATE(1894), - [sym_closure_expression] = STATE(1894), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3777), - [sym_break_expression] = STATE(1894), - [sym_continue_expression] = STATE(1894), - [sym_index_expression] = STATE(1894), - [sym_await_expression] = STATE(1894), - [sym_field_expression] = STATE(1674), - [sym_unsafe_block] = STATE(1894), - [sym_async_block] = STATE(1894), - [sym_gen_block] = STATE(1894), - [sym_try_block] = STATE(1894), - [sym_block] = STATE(1722), - [sym__literal] = STATE(1894), - [sym_string_literal] = STATE(1768), - [sym_raw_string_literal] = STATE(1768), - [sym_boolean_literal] = STATE(1768), - [sym_line_comment] = STATE(224), - [sym_block_comment] = STATE(224), + [213] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1966), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(213), + [sym_block_comment] = STATE(213), + [aux_sym_tuple_expression_repeat1] = STATE(213), + [sym_identifier] = ACTIONS(1180), + [anon_sym_LPAREN] = ACTIONS(1183), + [anon_sym_RPAREN] = ACTIONS(1186), + [anon_sym_LBRACK] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_STAR] = ACTIONS(1194), + [anon_sym_u8] = ACTIONS(1197), + [anon_sym_i8] = ACTIONS(1197), + [anon_sym_u16] = ACTIONS(1197), + [anon_sym_i16] = ACTIONS(1197), + [anon_sym_u32] = ACTIONS(1197), + [anon_sym_i32] = ACTIONS(1197), + [anon_sym_u64] = ACTIONS(1197), + [anon_sym_i64] = ACTIONS(1197), + [anon_sym_u128] = ACTIONS(1197), + [anon_sym_i128] = ACTIONS(1197), + [anon_sym_isize] = ACTIONS(1197), + [anon_sym_usize] = ACTIONS(1197), + [anon_sym_f32] = ACTIONS(1197), + [anon_sym_f64] = ACTIONS(1197), + [anon_sym_bool] = ACTIONS(1197), + [anon_sym_str] = ACTIONS(1197), + [anon_sym_char] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1194), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_AMP] = ACTIONS(1200), + [anon_sym_PIPE] = ACTIONS(1203), + [anon_sym_LT] = ACTIONS(1206), + [anon_sym_DOT_DOT] = ACTIONS(1209), + [anon_sym_COLON_COLON] = ACTIONS(1212), + [anon_sym_SQUOTE] = ACTIONS(1215), + [anon_sym_async] = ACTIONS(1218), + [anon_sym_break] = ACTIONS(1221), + [anon_sym_const] = ACTIONS(1224), + [anon_sym_continue] = ACTIONS(1227), + [anon_sym_default] = ACTIONS(1230), + [anon_sym_for] = ACTIONS(1233), + [anon_sym_gen] = ACTIONS(1236), + [anon_sym_if] = ACTIONS(1239), + [anon_sym_loop] = ACTIONS(1242), + [anon_sym_match] = ACTIONS(1245), + [anon_sym_return] = ACTIONS(1248), + [anon_sym_static] = ACTIONS(1251), + [anon_sym_union] = ACTIONS(1230), + [anon_sym_unsafe] = ACTIONS(1254), + [anon_sym_while] = ACTIONS(1257), + [anon_sym_raw] = ACTIONS(1230), + [anon_sym_yield] = ACTIONS(1260), + [anon_sym_move] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1266), + [sym_integer_literal] = ACTIONS(1269), + [aux_sym_string_literal_token1] = ACTIONS(1272), + [sym_char_literal] = ACTIONS(1269), + [anon_sym_true] = ACTIONS(1275), + [anon_sym_false] = ACTIONS(1275), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1278), + [sym_super] = ACTIONS(1281), + [sym_crate] = ACTIONS(1281), + [sym_metavariable] = ACTIONS(1284), + [sym__raw_string_literal_start] = ACTIONS(1287), + [sym_float_literal] = ACTIONS(1269), + }, + [214] = { + [sym_bracketed_type] = STATE(3659), + [sym_generic_function] = STATE(1714), + [sym_generic_type_with_turbofish] = STATE(2899), + [sym__expression_except_range] = STATE(1670), + [sym__expression] = STATE(1742), + [sym_macro_invocation] = STATE(1893), + [sym_scoped_identifier] = STATE(1650), + [sym_scoped_type_identifier_in_expression_position] = STATE(3266), + [sym_range_expression] = STATE(1889), + [sym_unary_expression] = STATE(1714), + [sym_try_expression] = STATE(1714), + [sym_reference_expression] = STATE(1714), + [sym_binary_expression] = STATE(1714), + [sym_assignment_expression] = STATE(1714), + [sym_compound_assignment_expr] = STATE(1714), + [sym_type_cast_expression] = STATE(1714), + [sym_return_expression] = STATE(1714), + [sym_yield_expression] = STATE(1714), + [sym_call_expression] = STATE(1714), + [sym_array_expression] = STATE(1714), + [sym_parenthesized_expression] = STATE(1714), + [sym_tuple_expression] = STATE(1714), + [sym_unit_expression] = STATE(1714), + [sym_struct_expression] = STATE(1714), + [sym_if_expression] = STATE(1714), + [sym_let_condition] = STATE(2846), + [sym_match_expression] = STATE(1714), + [sym_while_expression] = STATE(1714), + [sym_loop_expression] = STATE(1714), + [sym_for_expression] = STATE(1714), + [sym_const_block] = STATE(1714), + [sym_closure_expression] = STATE(1714), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1714), + [sym_continue_expression] = STATE(1714), + [sym_index_expression] = STATE(1714), + [sym_await_expression] = STATE(1714), + [sym_field_expression] = STATE(1672), + [sym_unsafe_block] = STATE(1714), + [sym_async_block] = STATE(1714), + [sym_gen_block] = STATE(1714), + [sym_try_block] = STATE(1714), + [sym_block] = STATE(1714), + [sym__literal] = STATE(1714), + [sym_string_literal] = STATE(1766), + [sym_raw_string_literal] = STATE(1766), + [sym_boolean_literal] = STATE(1766), + [sym_line_comment] = STATE(214), + [sym_block_comment] = STATE(214), [sym_identifier] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(502), + [anon_sym_LPAREN] = ACTIONS(470), + [anon_sym_LBRACK] = ACTIONS(472), [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_STAR] = ACTIONS(904), + [anon_sym_STAR] = ACTIONS(906), [anon_sym_u8] = ACTIONS(416), [anon_sym_i8] = ACTIONS(416), [anon_sym_u16] = ACTIONS(416), @@ -43223,15 +41806,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(416), [anon_sym_str] = ACTIONS(416), [anon_sym_char] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), + [anon_sym_DASH] = ACTIONS(906), + [anon_sym_BANG] = ACTIONS(906), + [anon_sym_AMP] = ACTIONS(908), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1200), - [anon_sym_DOT_DOT] = ACTIONS(1160), + [anon_sym_DOT_DOT] = ACTIONS(910), [anon_sym_COLON_COLON] = ACTIONS(420), - [anon_sym_DASH_GT] = ACTIONS(1202), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(422), [anon_sym_break] = ACTIONS(424), @@ -43241,6 +41822,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(432), [anon_sym_gen] = ACTIONS(434), [anon_sym_if] = ACTIONS(436), + [anon_sym_let] = ACTIONS(912), [anon_sym_loop] = ACTIONS(438), [anon_sym_match] = ACTIONS(440), [anon_sym_return] = ACTIONS(442), @@ -43266,60 +41848,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(468), [sym_float_literal] = ACTIONS(456), }, - [STATE(225)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1797), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(225), - [sym_block_comment] = STATE(225), - [aux_sym_tuple_expression_repeat1] = STATE(244), + [215] = { + [sym_bracketed_type] = STATE(3659), + [sym_generic_function] = STATE(1714), + [sym_generic_type_with_turbofish] = STATE(2899), + [sym__expression_except_range] = STATE(1670), + [sym__expression] = STATE(1952), + [sym_macro_invocation] = STATE(1893), + [sym_scoped_identifier] = STATE(1650), + [sym_scoped_type_identifier_in_expression_position] = STATE(3266), + [sym_range_expression] = STATE(1889), + [sym_unary_expression] = STATE(1714), + [sym_try_expression] = STATE(1714), + [sym_reference_expression] = STATE(1714), + [sym_binary_expression] = STATE(1714), + [sym_assignment_expression] = STATE(1714), + [sym_compound_assignment_expr] = STATE(1714), + [sym_type_cast_expression] = STATE(1714), + [sym_return_expression] = STATE(1714), + [sym_yield_expression] = STATE(1714), + [sym_call_expression] = STATE(1714), + [sym_array_expression] = STATE(1714), + [sym_parenthesized_expression] = STATE(1714), + [sym_tuple_expression] = STATE(1714), + [sym_unit_expression] = STATE(1714), + [sym_struct_expression] = STATE(1714), + [sym_if_expression] = STATE(1714), + [sym_let_condition] = STATE(2846), + [sym_match_expression] = STATE(1714), + [sym_while_expression] = STATE(1714), + [sym_loop_expression] = STATE(1714), + [sym_for_expression] = STATE(1714), + [sym_const_block] = STATE(1714), + [sym_closure_expression] = STATE(1714), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1714), + [sym_continue_expression] = STATE(1714), + [sym_index_expression] = STATE(1714), + [sym_await_expression] = STATE(1714), + [sym_field_expression] = STATE(1672), + [sym_unsafe_block] = STATE(1714), + [sym_async_block] = STATE(1714), + [sym_gen_block] = STATE(1714), + [sym_try_block] = STATE(1714), + [sym_block] = STATE(1714), + [sym__literal] = STATE(1714), + [sym_string_literal] = STATE(1766), + [sym_raw_string_literal] = STATE(1766), + [sym_boolean_literal] = STATE(1766), + [sym_line_comment] = STATE(215), + [sym_block_comment] = STATE(215), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(470), + [anon_sym_LBRACK] = ACTIONS(472), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(906), + [anon_sym_u8] = ACTIONS(416), + [anon_sym_i8] = ACTIONS(416), + [anon_sym_u16] = ACTIONS(416), + [anon_sym_i16] = ACTIONS(416), + [anon_sym_u32] = ACTIONS(416), + [anon_sym_i32] = ACTIONS(416), + [anon_sym_u64] = ACTIONS(416), + [anon_sym_i64] = ACTIONS(416), + [anon_sym_u128] = ACTIONS(416), + [anon_sym_i128] = ACTIONS(416), + [anon_sym_isize] = ACTIONS(416), + [anon_sym_usize] = ACTIONS(416), + [anon_sym_f32] = ACTIONS(416), + [anon_sym_f64] = ACTIONS(416), + [anon_sym_bool] = ACTIONS(416), + [anon_sym_str] = ACTIONS(416), + [anon_sym_char] = ACTIONS(416), + [anon_sym_DASH] = ACTIONS(906), + [anon_sym_BANG] = ACTIONS(906), + [anon_sym_AMP] = ACTIONS(908), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(910), + [anon_sym_COLON_COLON] = ACTIONS(420), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(422), + [anon_sym_break] = ACTIONS(424), + [anon_sym_const] = ACTIONS(426), + [anon_sym_continue] = ACTIONS(428), + [anon_sym_default] = ACTIONS(430), + [anon_sym_for] = ACTIONS(432), + [anon_sym_gen] = ACTIONS(434), + [anon_sym_if] = ACTIONS(436), + [anon_sym_let] = ACTIONS(912), + [anon_sym_loop] = ACTIONS(438), + [anon_sym_match] = ACTIONS(440), + [anon_sym_return] = ACTIONS(442), + [anon_sym_static] = ACTIONS(444), + [anon_sym_union] = ACTIONS(430), + [anon_sym_unsafe] = ACTIONS(446), + [anon_sym_while] = ACTIONS(448), + [anon_sym_raw] = ACTIONS(430), + [anon_sym_yield] = ACTIONS(450), + [anon_sym_move] = ACTIONS(452), + [anon_sym_try] = ACTIONS(454), + [sym_integer_literal] = ACTIONS(456), + [aux_sym_string_literal_token1] = ACTIONS(458), + [sym_char_literal] = ACTIONS(456), + [anon_sym_true] = ACTIONS(460), + [anon_sym_false] = ACTIONS(460), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(462), + [sym_super] = ACTIONS(464), + [sym_crate] = ACTIONS(464), + [sym_metavariable] = ACTIONS(466), + [sym__raw_string_literal_start] = ACTIONS(468), + [sym_float_literal] = ACTIONS(456), + }, + [216] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1811), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(216), + [sym_block_comment] = STATE(216), + [aux_sym_tuple_expression_repeat1] = STATE(206), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1188), + [anon_sym_RPAREN] = ACTIONS(1128), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), @@ -43381,336 +42078,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(226)] = { - [sym_line_comment] = STATE(226), - [sym_block_comment] = STATE(226), - [sym_identifier] = ACTIONS(1004), - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1006), - [anon_sym_RPAREN] = ACTIONS(1006), - [anon_sym_LBRACK] = ACTIONS(1006), - [anon_sym_RBRACK] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(1006), - [anon_sym_EQ_GT] = ACTIONS(1006), - [anon_sym_COLON] = ACTIONS(1004), - [anon_sym_DOLLAR] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(1004), - [anon_sym_STAR] = ACTIONS(1004), - [anon_sym_QMARK] = ACTIONS(1006), - [anon_sym_u8] = ACTIONS(1004), - [anon_sym_i8] = ACTIONS(1004), - [anon_sym_u16] = ACTIONS(1004), - [anon_sym_i16] = ACTIONS(1004), - [anon_sym_u32] = ACTIONS(1004), - [anon_sym_i32] = ACTIONS(1004), - [anon_sym_u64] = ACTIONS(1004), - [anon_sym_i64] = ACTIONS(1004), - [anon_sym_u128] = ACTIONS(1004), - [anon_sym_i128] = ACTIONS(1004), - [anon_sym_isize] = ACTIONS(1004), - [anon_sym_usize] = ACTIONS(1004), - [anon_sym_f32] = ACTIONS(1004), - [anon_sym_f64] = ACTIONS(1004), - [anon_sym_bool] = ACTIONS(1004), - [anon_sym_str] = ACTIONS(1004), - [anon_sym_char] = ACTIONS(1004), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_SLASH] = ACTIONS(1004), - [anon_sym_PERCENT] = ACTIONS(1004), - [anon_sym_CARET] = ACTIONS(1004), - [anon_sym_BANG] = ACTIONS(1004), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1004), - [anon_sym_AMP_AMP] = ACTIONS(1006), - [anon_sym_PIPE_PIPE] = ACTIONS(1006), - [anon_sym_LT_LT] = ACTIONS(1004), - [anon_sym_GT_GT] = ACTIONS(1004), - [anon_sym_PLUS_EQ] = ACTIONS(1006), - [anon_sym_DASH_EQ] = ACTIONS(1006), - [anon_sym_STAR_EQ] = ACTIONS(1006), - [anon_sym_SLASH_EQ] = ACTIONS(1006), - [anon_sym_PERCENT_EQ] = ACTIONS(1006), - [anon_sym_CARET_EQ] = ACTIONS(1006), - [anon_sym_AMP_EQ] = ACTIONS(1006), - [anon_sym_PIPE_EQ] = ACTIONS(1006), - [anon_sym_LT_LT_EQ] = ACTIONS(1006), - [anon_sym_GT_GT_EQ] = ACTIONS(1006), - [anon_sym_EQ] = ACTIONS(1004), - [anon_sym_EQ_EQ] = ACTIONS(1006), - [anon_sym_BANG_EQ] = ACTIONS(1006), - [anon_sym_GT] = ACTIONS(1004), - [anon_sym_LT] = ACTIONS(1004), - [anon_sym_GT_EQ] = ACTIONS(1006), - [anon_sym_LT_EQ] = ACTIONS(1006), - [anon_sym_AT] = ACTIONS(1006), - [anon_sym__] = ACTIONS(1004), - [anon_sym_DOT] = ACTIONS(1004), - [anon_sym_DOT_DOT] = ACTIONS(1004), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1006), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), - [anon_sym_COMMA] = ACTIONS(1006), - [anon_sym_COLON_COLON] = ACTIONS(1006), - [anon_sym_DASH_GT] = ACTIONS(1006), - [anon_sym_POUND] = ACTIONS(1006), - [anon_sym_SQUOTE] = ACTIONS(1004), - [anon_sym_as] = ACTIONS(1004), - [anon_sym_async] = ACTIONS(1004), - [anon_sym_await] = ACTIONS(1004), - [anon_sym_break] = ACTIONS(1004), - [anon_sym_const] = ACTIONS(1004), - [anon_sym_continue] = ACTIONS(1004), - [anon_sym_default] = ACTIONS(1004), - [anon_sym_enum] = ACTIONS(1004), - [anon_sym_fn] = ACTIONS(1004), - [anon_sym_for] = ACTIONS(1004), - [anon_sym_gen] = ACTIONS(1004), - [anon_sym_if] = ACTIONS(1004), - [anon_sym_impl] = ACTIONS(1004), - [anon_sym_let] = ACTIONS(1004), - [anon_sym_loop] = ACTIONS(1004), - [anon_sym_match] = ACTIONS(1004), - [anon_sym_mod] = ACTIONS(1004), - [anon_sym_pub] = ACTIONS(1004), - [anon_sym_return] = ACTIONS(1004), - [anon_sym_static] = ACTIONS(1004), - [anon_sym_struct] = ACTIONS(1004), - [anon_sym_trait] = ACTIONS(1004), - [anon_sym_type] = ACTIONS(1004), - [anon_sym_union] = ACTIONS(1004), - [anon_sym_unsafe] = ACTIONS(1004), - [anon_sym_use] = ACTIONS(1004), - [anon_sym_where] = ACTIONS(1004), - [anon_sym_while] = ACTIONS(1004), - [sym_mutable_specifier] = ACTIONS(1004), - [sym_integer_literal] = ACTIONS(1006), - [aux_sym_string_literal_token1] = ACTIONS(1006), - [sym_char_literal] = ACTIONS(1006), - [anon_sym_true] = ACTIONS(1004), - [anon_sym_false] = ACTIONS(1004), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1004), - [sym_super] = ACTIONS(1004), - [sym_crate] = ACTIONS(1004), - [sym__raw_string_literal_start] = ACTIONS(1006), - [sym_float_literal] = ACTIONS(1006), - }, - [STATE(227)] = { - [sym_line_comment] = STATE(227), - [sym_block_comment] = STATE(227), - [sym_identifier] = ACTIONS(1012), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_LPAREN] = ACTIONS(1014), - [anon_sym_RPAREN] = ACTIONS(1014), - [anon_sym_LBRACK] = ACTIONS(1014), - [anon_sym_RBRACK] = ACTIONS(1014), - [anon_sym_LBRACE] = ACTIONS(1014), - [anon_sym_RBRACE] = ACTIONS(1014), - [anon_sym_EQ_GT] = ACTIONS(1014), - [anon_sym_COLON] = ACTIONS(1012), - [anon_sym_DOLLAR] = ACTIONS(1014), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_QMARK] = ACTIONS(1014), - [anon_sym_u8] = ACTIONS(1012), - [anon_sym_i8] = ACTIONS(1012), - [anon_sym_u16] = ACTIONS(1012), - [anon_sym_i16] = ACTIONS(1012), - [anon_sym_u32] = ACTIONS(1012), - [anon_sym_i32] = ACTIONS(1012), - [anon_sym_u64] = ACTIONS(1012), - [anon_sym_i64] = ACTIONS(1012), - [anon_sym_u128] = ACTIONS(1012), - [anon_sym_i128] = ACTIONS(1012), - [anon_sym_isize] = ACTIONS(1012), - [anon_sym_usize] = ACTIONS(1012), - [anon_sym_f32] = ACTIONS(1012), - [anon_sym_f64] = ACTIONS(1012), - [anon_sym_bool] = ACTIONS(1012), - [anon_sym_str] = ACTIONS(1012), - [anon_sym_char] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_PERCENT] = ACTIONS(1012), - [anon_sym_CARET] = ACTIONS(1012), - [anon_sym_BANG] = ACTIONS(1012), - [anon_sym_AMP] = ACTIONS(1012), - [anon_sym_PIPE] = ACTIONS(1012), - [anon_sym_AMP_AMP] = ACTIONS(1014), - [anon_sym_PIPE_PIPE] = ACTIONS(1014), - [anon_sym_LT_LT] = ACTIONS(1012), - [anon_sym_GT_GT] = ACTIONS(1012), - [anon_sym_PLUS_EQ] = ACTIONS(1014), - [anon_sym_DASH_EQ] = ACTIONS(1014), - [anon_sym_STAR_EQ] = ACTIONS(1014), - [anon_sym_SLASH_EQ] = ACTIONS(1014), - [anon_sym_PERCENT_EQ] = ACTIONS(1014), - [anon_sym_CARET_EQ] = ACTIONS(1014), - [anon_sym_AMP_EQ] = ACTIONS(1014), - [anon_sym_PIPE_EQ] = ACTIONS(1014), - [anon_sym_LT_LT_EQ] = ACTIONS(1014), - [anon_sym_GT_GT_EQ] = ACTIONS(1014), - [anon_sym_EQ] = ACTIONS(1012), - [anon_sym_EQ_EQ] = ACTIONS(1014), - [anon_sym_BANG_EQ] = ACTIONS(1014), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_GT_EQ] = ACTIONS(1014), - [anon_sym_LT_EQ] = ACTIONS(1014), - [anon_sym_AT] = ACTIONS(1014), - [anon_sym__] = ACTIONS(1012), - [anon_sym_DOT] = ACTIONS(1012), - [anon_sym_DOT_DOT] = ACTIONS(1012), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1014), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1014), - [anon_sym_COMMA] = ACTIONS(1014), - [anon_sym_COLON_COLON] = ACTIONS(1014), - [anon_sym_DASH_GT] = ACTIONS(1014), - [anon_sym_POUND] = ACTIONS(1014), - [anon_sym_SQUOTE] = ACTIONS(1012), - [anon_sym_as] = ACTIONS(1012), - [anon_sym_async] = ACTIONS(1012), - [anon_sym_await] = ACTIONS(1012), - [anon_sym_break] = ACTIONS(1012), - [anon_sym_const] = ACTIONS(1012), - [anon_sym_continue] = ACTIONS(1012), - [anon_sym_default] = ACTIONS(1012), - [anon_sym_enum] = ACTIONS(1012), - [anon_sym_fn] = ACTIONS(1012), - [anon_sym_for] = ACTIONS(1012), - [anon_sym_gen] = ACTIONS(1012), - [anon_sym_if] = ACTIONS(1012), - [anon_sym_impl] = ACTIONS(1012), - [anon_sym_let] = ACTIONS(1012), - [anon_sym_loop] = ACTIONS(1012), - [anon_sym_match] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1012), - [anon_sym_pub] = ACTIONS(1012), - [anon_sym_return] = ACTIONS(1012), - [anon_sym_static] = ACTIONS(1012), - [anon_sym_struct] = ACTIONS(1012), - [anon_sym_trait] = ACTIONS(1012), - [anon_sym_type] = ACTIONS(1012), - [anon_sym_union] = ACTIONS(1012), - [anon_sym_unsafe] = ACTIONS(1012), - [anon_sym_use] = ACTIONS(1012), - [anon_sym_where] = ACTIONS(1012), - [anon_sym_while] = ACTIONS(1012), - [sym_mutable_specifier] = ACTIONS(1012), - [sym_integer_literal] = ACTIONS(1014), - [aux_sym_string_literal_token1] = ACTIONS(1014), - [sym_char_literal] = ACTIONS(1014), - [anon_sym_true] = ACTIONS(1012), - [anon_sym_false] = ACTIONS(1012), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1012), - [sym_super] = ACTIONS(1012), - [sym_crate] = ACTIONS(1012), - [sym__raw_string_literal_start] = ACTIONS(1014), - [sym_float_literal] = ACTIONS(1014), - }, - [STATE(228)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1796), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1435), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(228), - [sym_block_comment] = STATE(228), - [sym_identifier] = ACTIONS(470), + [217] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1661), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(208), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1513), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(217), + [sym_block_comment] = STATE(217), + [sym_identifier] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(474), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1206), + [anon_sym_STAR] = ACTIONS(894), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(510), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_AMP] = ACTIONS(896), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1138), - [anon_sym_DOT_DOT] = ACTIONS(1208), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_DASH_GT] = ACTIONS(1142), + [anon_sym__] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(898), + [anon_sym_COLON_COLON] = ACTIONS(486), + [anon_sym_DASH_GT] = ACTIONS(1292), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), + [anon_sym_async] = ACTIONS(512), + [anon_sym_break] = ACTIONS(514), [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(482), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_default] = ACTIONS(492), [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(484), + [anon_sym_gen] = ACTIONS(518), [anon_sym_if] = ACTIONS(366), [anon_sym_loop] = ACTIONS(368), [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(486), - [anon_sym_static] = ACTIONS(488), - [anon_sym_union] = ACTIONS(482), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(522), + [anon_sym_union] = ACTIONS(492), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_move] = ACTIONS(492), + [anon_sym_raw] = ACTIONS(492), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_move] = ACTIONS(526), [anon_sym_try] = ACTIONS(378), [sym_integer_literal] = ACTIONS(99), [aux_sym_string_literal_token1] = ACTIONS(101), @@ -43719,113 +42186,228 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(229)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1827), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1460), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(229), - [sym_block_comment] = STATE(229), - [sym_identifier] = ACTIONS(470), + [218] = { + [sym_line_comment] = STATE(218), + [sym_block_comment] = STATE(218), + [sym_identifier] = ACTIONS(1294), + [anon_sym_SEMI] = ACTIONS(1296), + [anon_sym_LPAREN] = ACTIONS(1296), + [anon_sym_RPAREN] = ACTIONS(1296), + [anon_sym_LBRACK] = ACTIONS(1296), + [anon_sym_RBRACK] = ACTIONS(1296), + [anon_sym_LBRACE] = ACTIONS(1296), + [anon_sym_RBRACE] = ACTIONS(1296), + [anon_sym_EQ_GT] = ACTIONS(1296), + [anon_sym_COLON] = ACTIONS(1294), + [anon_sym_DOLLAR] = ACTIONS(1296), + [anon_sym_PLUS] = ACTIONS(1294), + [anon_sym_STAR] = ACTIONS(1294), + [anon_sym_QMARK] = ACTIONS(1296), + [anon_sym_u8] = ACTIONS(1294), + [anon_sym_i8] = ACTIONS(1294), + [anon_sym_u16] = ACTIONS(1294), + [anon_sym_i16] = ACTIONS(1294), + [anon_sym_u32] = ACTIONS(1294), + [anon_sym_i32] = ACTIONS(1294), + [anon_sym_u64] = ACTIONS(1294), + [anon_sym_i64] = ACTIONS(1294), + [anon_sym_u128] = ACTIONS(1294), + [anon_sym_i128] = ACTIONS(1294), + [anon_sym_isize] = ACTIONS(1294), + [anon_sym_usize] = ACTIONS(1294), + [anon_sym_f32] = ACTIONS(1294), + [anon_sym_f64] = ACTIONS(1294), + [anon_sym_bool] = ACTIONS(1294), + [anon_sym_str] = ACTIONS(1294), + [anon_sym_char] = ACTIONS(1294), + [anon_sym_DASH] = ACTIONS(1294), + [anon_sym_SLASH] = ACTIONS(1294), + [anon_sym_PERCENT] = ACTIONS(1294), + [anon_sym_CARET] = ACTIONS(1294), + [anon_sym_BANG] = ACTIONS(1294), + [anon_sym_AMP] = ACTIONS(1294), + [anon_sym_PIPE] = ACTIONS(1294), + [anon_sym_AMP_AMP] = ACTIONS(1296), + [anon_sym_PIPE_PIPE] = ACTIONS(1296), + [anon_sym_LT_LT] = ACTIONS(1294), + [anon_sym_GT_GT] = ACTIONS(1294), + [anon_sym_PLUS_EQ] = ACTIONS(1296), + [anon_sym_DASH_EQ] = ACTIONS(1296), + [anon_sym_STAR_EQ] = ACTIONS(1296), + [anon_sym_SLASH_EQ] = ACTIONS(1296), + [anon_sym_PERCENT_EQ] = ACTIONS(1296), + [anon_sym_CARET_EQ] = ACTIONS(1296), + [anon_sym_AMP_EQ] = ACTIONS(1296), + [anon_sym_PIPE_EQ] = ACTIONS(1296), + [anon_sym_LT_LT_EQ] = ACTIONS(1296), + [anon_sym_GT_GT_EQ] = ACTIONS(1296), + [anon_sym_EQ] = ACTIONS(1294), + [anon_sym_EQ_EQ] = ACTIONS(1296), + [anon_sym_BANG_EQ] = ACTIONS(1296), + [anon_sym_GT] = ACTIONS(1294), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_GT_EQ] = ACTIONS(1296), + [anon_sym_LT_EQ] = ACTIONS(1296), + [anon_sym_AT] = ACTIONS(1296), + [anon_sym__] = ACTIONS(1294), + [anon_sym_DOT] = ACTIONS(1294), + [anon_sym_DOT_DOT] = ACTIONS(1294), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1296), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1296), + [anon_sym_COMMA] = ACTIONS(1296), + [anon_sym_COLON_COLON] = ACTIONS(1296), + [anon_sym_DASH_GT] = ACTIONS(1296), + [anon_sym_POUND] = ACTIONS(1296), + [anon_sym_SQUOTE] = ACTIONS(1294), + [anon_sym_as] = ACTIONS(1294), + [anon_sym_async] = ACTIONS(1294), + [anon_sym_await] = ACTIONS(1294), + [anon_sym_break] = ACTIONS(1294), + [anon_sym_const] = ACTIONS(1294), + [anon_sym_continue] = ACTIONS(1294), + [anon_sym_default] = ACTIONS(1294), + [anon_sym_enum] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1294), + [anon_sym_for] = ACTIONS(1294), + [anon_sym_gen] = ACTIONS(1294), + [anon_sym_if] = ACTIONS(1294), + [anon_sym_impl] = ACTIONS(1294), + [anon_sym_let] = ACTIONS(1294), + [anon_sym_loop] = ACTIONS(1294), + [anon_sym_match] = ACTIONS(1294), + [anon_sym_mod] = ACTIONS(1294), + [anon_sym_pub] = ACTIONS(1294), + [anon_sym_return] = ACTIONS(1294), + [anon_sym_static] = ACTIONS(1294), + [anon_sym_struct] = ACTIONS(1294), + [anon_sym_trait] = ACTIONS(1294), + [anon_sym_type] = ACTIONS(1294), + [anon_sym_union] = ACTIONS(1294), + [anon_sym_unsafe] = ACTIONS(1294), + [anon_sym_use] = ACTIONS(1294), + [anon_sym_where] = ACTIONS(1294), + [anon_sym_while] = ACTIONS(1294), + [sym_mutable_specifier] = ACTIONS(1294), + [sym_integer_literal] = ACTIONS(1296), + [aux_sym_string_literal_token1] = ACTIONS(1296), + [sym_char_literal] = ACTIONS(1296), + [anon_sym_true] = ACTIONS(1294), + [anon_sym_false] = ACTIONS(1294), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1294), + [sym_super] = ACTIONS(1294), + [sym_crate] = ACTIONS(1294), + [sym__raw_string_literal_start] = ACTIONS(1296), + [sym_float_literal] = ACTIONS(1296), + }, + [219] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1572), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1513), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(219), + [sym_block_comment] = STATE(219), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(474), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1206), + [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(354), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1146), - [anon_sym_DOT_DOT] = ACTIONS(1208), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_DASH_GT] = ACTIONS(1148), + [anon_sym__] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1292), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(482), + [anon_sym_default] = ACTIONS(360), [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(484), + [anon_sym_gen] = ACTIONS(364), [anon_sym_if] = ACTIONS(366), [anon_sym_loop] = ACTIONS(368), [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(486), - [anon_sym_static] = ACTIONS(488), - [anon_sym_union] = ACTIONS(482), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_move] = ACTIONS(492), + [anon_sym_raw] = ACTIONS(360), + [anon_sym_yield] = ACTIONS(93), + [anon_sym_move] = ACTIONS(95), [anon_sym_try] = ACTIONS(378), [sym_integer_literal] = ACTIONS(99), [aux_sym_string_literal_token1] = ACTIONS(101), @@ -43834,63 +42416,293 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), + [sym_self] = ACTIONS(111), + [sym_super] = ACTIONS(113), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(117), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(230)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1592), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1460), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(230), - [sym_block_comment] = STATE(230), + [220] = { + [sym_attribute_item] = STATE(391), + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_self_parameter] = STATE(3058), + [sym_variadic_parameter] = STATE(3058), + [sym_parameter] = STATE(3058), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2787), + [sym_bracketed_type] = STATE(3692), + [sym_lifetime] = STATE(3061), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3423), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2535), + [sym_scoped_identifier] = STATE(2193), + [sym_scoped_type_identifier] = STATE(2206), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(2531), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), + [sym_line_comment] = STATE(220), + [sym_block_comment] = STATE(220), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(1150), + [anon_sym_RPAREN] = ACTIONS(1298), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1154), + [anon_sym_i8] = ACTIONS(1154), + [anon_sym_u16] = ACTIONS(1154), + [anon_sym_i16] = ACTIONS(1154), + [anon_sym_u32] = ACTIONS(1154), + [anon_sym_i32] = ACTIONS(1154), + [anon_sym_u64] = ACTIONS(1154), + [anon_sym_i64] = ACTIONS(1154), + [anon_sym_u128] = ACTIONS(1154), + [anon_sym_i128] = ACTIONS(1154), + [anon_sym_isize] = ACTIONS(1154), + [anon_sym_usize] = ACTIONS(1154), + [anon_sym_f32] = ACTIONS(1154), + [anon_sym_f64] = ACTIONS(1154), + [anon_sym_bool] = ACTIONS(1154), + [anon_sym_str] = ACTIONS(1154), + [anon_sym_char] = ACTIONS(1154), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1158), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1078), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COMMA] = ACTIONS(1300), + [anon_sym_COLON_COLON] = ACTIONS(1162), + [anon_sym_POUND] = ACTIONS(1086), + [anon_sym_SQUOTE] = ACTIONS(1088), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1092), + [anon_sym_default] = ACTIONS(1164), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1166), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1166), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_ref] = ACTIONS(1108), + [anon_sym_dyn] = ACTIONS(1110), + [sym_mutable_specifier] = ACTIONS(1112), + [anon_sym_raw] = ACTIONS(1166), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1168), + [sym_super] = ACTIONS(1170), + [sym_crate] = ACTIONS(1170), + [sym_metavariable] = ACTIONS(1172), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [221] = { + [sym_line_comment] = STATE(221), + [sym_block_comment] = STATE(221), + [sym_identifier] = ACTIONS(1038), + [anon_sym_SEMI] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_RPAREN] = ACTIONS(1040), + [anon_sym_LBRACK] = ACTIONS(1040), + [anon_sym_RBRACK] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_RBRACE] = ACTIONS(1040), + [anon_sym_EQ_GT] = ACTIONS(1040), + [anon_sym_COLON] = ACTIONS(1038), + [anon_sym_DOLLAR] = ACTIONS(1040), + [anon_sym_PLUS] = ACTIONS(1038), + [anon_sym_STAR] = ACTIONS(1038), + [anon_sym_QMARK] = ACTIONS(1040), + [anon_sym_u8] = ACTIONS(1038), + [anon_sym_i8] = ACTIONS(1038), + [anon_sym_u16] = ACTIONS(1038), + [anon_sym_i16] = ACTIONS(1038), + [anon_sym_u32] = ACTIONS(1038), + [anon_sym_i32] = ACTIONS(1038), + [anon_sym_u64] = ACTIONS(1038), + [anon_sym_i64] = ACTIONS(1038), + [anon_sym_u128] = ACTIONS(1038), + [anon_sym_i128] = ACTIONS(1038), + [anon_sym_isize] = ACTIONS(1038), + [anon_sym_usize] = ACTIONS(1038), + [anon_sym_f32] = ACTIONS(1038), + [anon_sym_f64] = ACTIONS(1038), + [anon_sym_bool] = ACTIONS(1038), + [anon_sym_str] = ACTIONS(1038), + [anon_sym_char] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_SLASH] = ACTIONS(1038), + [anon_sym_PERCENT] = ACTIONS(1038), + [anon_sym_CARET] = ACTIONS(1038), + [anon_sym_BANG] = ACTIONS(1038), + [anon_sym_AMP] = ACTIONS(1038), + [anon_sym_PIPE] = ACTIONS(1038), + [anon_sym_AMP_AMP] = ACTIONS(1040), + [anon_sym_PIPE_PIPE] = ACTIONS(1040), + [anon_sym_LT_LT] = ACTIONS(1038), + [anon_sym_GT_GT] = ACTIONS(1038), + [anon_sym_PLUS_EQ] = ACTIONS(1040), + [anon_sym_DASH_EQ] = ACTIONS(1040), + [anon_sym_STAR_EQ] = ACTIONS(1040), + [anon_sym_SLASH_EQ] = ACTIONS(1040), + [anon_sym_PERCENT_EQ] = ACTIONS(1040), + [anon_sym_CARET_EQ] = ACTIONS(1040), + [anon_sym_AMP_EQ] = ACTIONS(1040), + [anon_sym_PIPE_EQ] = ACTIONS(1040), + [anon_sym_LT_LT_EQ] = ACTIONS(1040), + [anon_sym_GT_GT_EQ] = ACTIONS(1040), + [anon_sym_EQ] = ACTIONS(1038), + [anon_sym_EQ_EQ] = ACTIONS(1040), + [anon_sym_BANG_EQ] = ACTIONS(1040), + [anon_sym_GT] = ACTIONS(1038), + [anon_sym_LT] = ACTIONS(1038), + [anon_sym_GT_EQ] = ACTIONS(1040), + [anon_sym_LT_EQ] = ACTIONS(1040), + [anon_sym_AT] = ACTIONS(1040), + [anon_sym__] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(1038), + [anon_sym_DOT_DOT] = ACTIONS(1038), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1040), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1040), + [anon_sym_COMMA] = ACTIONS(1040), + [anon_sym_COLON_COLON] = ACTIONS(1040), + [anon_sym_DASH_GT] = ACTIONS(1040), + [anon_sym_POUND] = ACTIONS(1040), + [anon_sym_SQUOTE] = ACTIONS(1038), + [anon_sym_as] = ACTIONS(1038), + [anon_sym_async] = ACTIONS(1038), + [anon_sym_await] = ACTIONS(1038), + [anon_sym_break] = ACTIONS(1038), + [anon_sym_const] = ACTIONS(1038), + [anon_sym_continue] = ACTIONS(1038), + [anon_sym_default] = ACTIONS(1038), + [anon_sym_enum] = ACTIONS(1038), + [anon_sym_fn] = ACTIONS(1038), + [anon_sym_for] = ACTIONS(1038), + [anon_sym_gen] = ACTIONS(1038), + [anon_sym_if] = ACTIONS(1038), + [anon_sym_impl] = ACTIONS(1038), + [anon_sym_let] = ACTIONS(1038), + [anon_sym_loop] = ACTIONS(1038), + [anon_sym_match] = ACTIONS(1038), + [anon_sym_mod] = ACTIONS(1038), + [anon_sym_pub] = ACTIONS(1038), + [anon_sym_return] = ACTIONS(1038), + [anon_sym_static] = ACTIONS(1038), + [anon_sym_struct] = ACTIONS(1038), + [anon_sym_trait] = ACTIONS(1038), + [anon_sym_type] = ACTIONS(1038), + [anon_sym_union] = ACTIONS(1038), + [anon_sym_unsafe] = ACTIONS(1038), + [anon_sym_use] = ACTIONS(1038), + [anon_sym_where] = ACTIONS(1038), + [anon_sym_while] = ACTIONS(1038), + [sym_mutable_specifier] = ACTIONS(1038), + [sym_integer_literal] = ACTIONS(1040), + [aux_sym_string_literal_token1] = ACTIONS(1040), + [sym_char_literal] = ACTIONS(1040), + [anon_sym_true] = ACTIONS(1038), + [anon_sym_false] = ACTIONS(1038), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1038), + [sym_super] = ACTIONS(1038), + [sym_crate] = ACTIONS(1038), + [sym__raw_string_literal_start] = ACTIONS(1040), + [sym_float_literal] = ACTIONS(1040), + }, + [222] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1732), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1465), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(222), + [sym_block_comment] = STATE(222), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -43918,10 +42730,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(1146), - [anon_sym_DOT_DOT] = ACTIONS(1140), + [anon_sym__] = ACTIONS(1144), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1148), + [anon_sym_DASH_GT] = ACTIONS(1146), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), @@ -43956,451 +42768,566 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(231)] = { - [sym_line_comment] = STATE(231), - [sym_block_comment] = STATE(231), - [sym_identifier] = ACTIONS(1016), - [anon_sym_SEMI] = ACTIONS(1018), - [anon_sym_LPAREN] = ACTIONS(1018), - [anon_sym_RPAREN] = ACTIONS(1018), - [anon_sym_LBRACK] = ACTIONS(1018), - [anon_sym_RBRACK] = ACTIONS(1018), - [anon_sym_LBRACE] = ACTIONS(1018), - [anon_sym_RBRACE] = ACTIONS(1018), - [anon_sym_EQ_GT] = ACTIONS(1018), - [anon_sym_COLON] = ACTIONS(1016), - [anon_sym_DOLLAR] = ACTIONS(1018), - [anon_sym_PLUS] = ACTIONS(1016), - [anon_sym_STAR] = ACTIONS(1016), - [anon_sym_QMARK] = ACTIONS(1018), - [anon_sym_u8] = ACTIONS(1016), - [anon_sym_i8] = ACTIONS(1016), - [anon_sym_u16] = ACTIONS(1016), - [anon_sym_i16] = ACTIONS(1016), - [anon_sym_u32] = ACTIONS(1016), - [anon_sym_i32] = ACTIONS(1016), - [anon_sym_u64] = ACTIONS(1016), - [anon_sym_i64] = ACTIONS(1016), - [anon_sym_u128] = ACTIONS(1016), - [anon_sym_i128] = ACTIONS(1016), - [anon_sym_isize] = ACTIONS(1016), - [anon_sym_usize] = ACTIONS(1016), - [anon_sym_f32] = ACTIONS(1016), - [anon_sym_f64] = ACTIONS(1016), - [anon_sym_bool] = ACTIONS(1016), - [anon_sym_str] = ACTIONS(1016), - [anon_sym_char] = ACTIONS(1016), - [anon_sym_DASH] = ACTIONS(1016), - [anon_sym_SLASH] = ACTIONS(1016), - [anon_sym_PERCENT] = ACTIONS(1016), - [anon_sym_CARET] = ACTIONS(1016), - [anon_sym_BANG] = ACTIONS(1016), - [anon_sym_AMP] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_AMP_AMP] = ACTIONS(1018), - [anon_sym_PIPE_PIPE] = ACTIONS(1018), - [anon_sym_LT_LT] = ACTIONS(1016), - [anon_sym_GT_GT] = ACTIONS(1016), - [anon_sym_PLUS_EQ] = ACTIONS(1018), - [anon_sym_DASH_EQ] = ACTIONS(1018), - [anon_sym_STAR_EQ] = ACTIONS(1018), - [anon_sym_SLASH_EQ] = ACTIONS(1018), - [anon_sym_PERCENT_EQ] = ACTIONS(1018), - [anon_sym_CARET_EQ] = ACTIONS(1018), - [anon_sym_AMP_EQ] = ACTIONS(1018), - [anon_sym_PIPE_EQ] = ACTIONS(1018), - [anon_sym_LT_LT_EQ] = ACTIONS(1018), - [anon_sym_GT_GT_EQ] = ACTIONS(1018), - [anon_sym_EQ] = ACTIONS(1016), - [anon_sym_EQ_EQ] = ACTIONS(1018), - [anon_sym_BANG_EQ] = ACTIONS(1018), - [anon_sym_GT] = ACTIONS(1016), - [anon_sym_LT] = ACTIONS(1016), - [anon_sym_GT_EQ] = ACTIONS(1018), - [anon_sym_LT_EQ] = ACTIONS(1018), - [anon_sym_AT] = ACTIONS(1018), - [anon_sym__] = ACTIONS(1016), - [anon_sym_DOT] = ACTIONS(1016), - [anon_sym_DOT_DOT] = ACTIONS(1016), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1018), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1018), - [anon_sym_COMMA] = ACTIONS(1018), - [anon_sym_COLON_COLON] = ACTIONS(1018), - [anon_sym_DASH_GT] = ACTIONS(1018), - [anon_sym_POUND] = ACTIONS(1018), - [anon_sym_SQUOTE] = ACTIONS(1016), - [anon_sym_as] = ACTIONS(1016), - [anon_sym_async] = ACTIONS(1016), - [anon_sym_await] = ACTIONS(1016), - [anon_sym_break] = ACTIONS(1016), - [anon_sym_const] = ACTIONS(1016), - [anon_sym_continue] = ACTIONS(1016), - [anon_sym_default] = ACTIONS(1016), - [anon_sym_enum] = ACTIONS(1016), - [anon_sym_fn] = ACTIONS(1016), - [anon_sym_for] = ACTIONS(1016), - [anon_sym_gen] = ACTIONS(1016), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_impl] = ACTIONS(1016), - [anon_sym_let] = ACTIONS(1016), - [anon_sym_loop] = ACTIONS(1016), - [anon_sym_match] = ACTIONS(1016), - [anon_sym_mod] = ACTIONS(1016), - [anon_sym_pub] = ACTIONS(1016), - [anon_sym_return] = ACTIONS(1016), - [anon_sym_static] = ACTIONS(1016), - [anon_sym_struct] = ACTIONS(1016), - [anon_sym_trait] = ACTIONS(1016), - [anon_sym_type] = ACTIONS(1016), - [anon_sym_union] = ACTIONS(1016), - [anon_sym_unsafe] = ACTIONS(1016), - [anon_sym_use] = ACTIONS(1016), - [anon_sym_where] = ACTIONS(1016), - [anon_sym_while] = ACTIONS(1016), - [sym_mutable_specifier] = ACTIONS(1016), - [sym_integer_literal] = ACTIONS(1018), - [aux_sym_string_literal_token1] = ACTIONS(1018), - [sym_char_literal] = ACTIONS(1018), - [anon_sym_true] = ACTIONS(1016), - [anon_sym_false] = ACTIONS(1016), + [223] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1807), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_let_condition] = STATE(2846), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(208), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(223), + [sym_block_comment] = STATE(223), + [sym_identifier] = ACTIONS(480), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(894), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_AMP] = ACTIONS(896), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(898), + [anon_sym_COLON_COLON] = ACTIONS(486), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(512), + [anon_sym_break] = ACTIONS(514), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_default] = ACTIONS(492), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(518), + [anon_sym_if] = ACTIONS(366), + [anon_sym_let] = ACTIONS(900), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(522), + [anon_sym_union] = ACTIONS(492), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_raw] = ACTIONS(492), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_move] = ACTIONS(526), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1016), - [sym_super] = ACTIONS(1016), - [sym_crate] = ACTIONS(1016), - [sym__raw_string_literal_start] = ACTIONS(1018), - [sym_float_literal] = ACTIONS(1018), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, - [STATE(232)] = { - [sym_line_comment] = STATE(232), - [sym_block_comment] = STATE(232), - [sym_identifier] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(968), - [anon_sym_RPAREN] = ACTIONS(968), - [anon_sym_LBRACK] = ACTIONS(968), - [anon_sym_RBRACK] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(968), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_EQ_GT] = ACTIONS(968), - [anon_sym_COLON] = ACTIONS(966), - [anon_sym_DOLLAR] = ACTIONS(968), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_STAR] = ACTIONS(966), - [anon_sym_QMARK] = ACTIONS(968), - [anon_sym_u8] = ACTIONS(966), - [anon_sym_i8] = ACTIONS(966), - [anon_sym_u16] = ACTIONS(966), - [anon_sym_i16] = ACTIONS(966), - [anon_sym_u32] = ACTIONS(966), - [anon_sym_i32] = ACTIONS(966), - [anon_sym_u64] = ACTIONS(966), - [anon_sym_i64] = ACTIONS(966), - [anon_sym_u128] = ACTIONS(966), - [anon_sym_i128] = ACTIONS(966), - [anon_sym_isize] = ACTIONS(966), - [anon_sym_usize] = ACTIONS(966), - [anon_sym_f32] = ACTIONS(966), - [anon_sym_f64] = ACTIONS(966), - [anon_sym_bool] = ACTIONS(966), - [anon_sym_str] = ACTIONS(966), - [anon_sym_char] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(966), - [anon_sym_CARET] = ACTIONS(966), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_AMP] = ACTIONS(966), - [anon_sym_PIPE] = ACTIONS(966), - [anon_sym_AMP_AMP] = ACTIONS(968), - [anon_sym_PIPE_PIPE] = ACTIONS(968), - [anon_sym_LT_LT] = ACTIONS(966), - [anon_sym_GT_GT] = ACTIONS(966), - [anon_sym_PLUS_EQ] = ACTIONS(968), - [anon_sym_DASH_EQ] = ACTIONS(968), - [anon_sym_STAR_EQ] = ACTIONS(968), - [anon_sym_SLASH_EQ] = ACTIONS(968), - [anon_sym_PERCENT_EQ] = ACTIONS(968), - [anon_sym_CARET_EQ] = ACTIONS(968), - [anon_sym_AMP_EQ] = ACTIONS(968), - [anon_sym_PIPE_EQ] = ACTIONS(968), - [anon_sym_LT_LT_EQ] = ACTIONS(968), - [anon_sym_GT_GT_EQ] = ACTIONS(968), - [anon_sym_EQ] = ACTIONS(966), - [anon_sym_EQ_EQ] = ACTIONS(968), - [anon_sym_BANG_EQ] = ACTIONS(968), - [anon_sym_GT] = ACTIONS(966), - [anon_sym_LT] = ACTIONS(966), - [anon_sym_GT_EQ] = ACTIONS(968), - [anon_sym_LT_EQ] = ACTIONS(968), - [anon_sym_AT] = ACTIONS(968), - [anon_sym__] = ACTIONS(966), - [anon_sym_DOT] = ACTIONS(966), - [anon_sym_DOT_DOT] = ACTIONS(966), - [anon_sym_DOT_DOT_DOT] = ACTIONS(968), - [anon_sym_DOT_DOT_EQ] = ACTIONS(968), - [anon_sym_COMMA] = ACTIONS(968), - [anon_sym_COLON_COLON] = ACTIONS(968), - [anon_sym_DASH_GT] = ACTIONS(968), - [anon_sym_POUND] = ACTIONS(968), - [anon_sym_SQUOTE] = ACTIONS(966), - [anon_sym_as] = ACTIONS(966), - [anon_sym_async] = ACTIONS(966), - [anon_sym_await] = ACTIONS(966), - [anon_sym_break] = ACTIONS(966), - [anon_sym_const] = ACTIONS(966), - [anon_sym_continue] = ACTIONS(966), - [anon_sym_default] = ACTIONS(966), - [anon_sym_enum] = ACTIONS(966), - [anon_sym_fn] = ACTIONS(966), - [anon_sym_for] = ACTIONS(966), - [anon_sym_gen] = ACTIONS(966), - [anon_sym_if] = ACTIONS(966), - [anon_sym_impl] = ACTIONS(966), - [anon_sym_let] = ACTIONS(966), - [anon_sym_loop] = ACTIONS(966), - [anon_sym_match] = ACTIONS(966), - [anon_sym_mod] = ACTIONS(966), - [anon_sym_pub] = ACTIONS(966), - [anon_sym_return] = ACTIONS(966), - [anon_sym_static] = ACTIONS(966), - [anon_sym_struct] = ACTIONS(966), - [anon_sym_trait] = ACTIONS(966), - [anon_sym_type] = ACTIONS(966), - [anon_sym_union] = ACTIONS(966), - [anon_sym_unsafe] = ACTIONS(966), - [anon_sym_use] = ACTIONS(966), - [anon_sym_where] = ACTIONS(966), - [anon_sym_while] = ACTIONS(966), - [sym_mutable_specifier] = ACTIONS(966), - [sym_integer_literal] = ACTIONS(968), - [aux_sym_string_literal_token1] = ACTIONS(968), - [sym_char_literal] = ACTIONS(968), - [anon_sym_true] = ACTIONS(966), - [anon_sym_false] = ACTIONS(966), + [224] = { + [sym_attribute_item] = STATE(391), + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_self_parameter] = STATE(3058), + [sym_variadic_parameter] = STATE(3058), + [sym_parameter] = STATE(3058), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2787), + [sym_bracketed_type] = STATE(3692), + [sym_lifetime] = STATE(3061), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3423), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2535), + [sym_scoped_identifier] = STATE(2193), + [sym_scoped_type_identifier] = STATE(2206), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(2531), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), + [sym_line_comment] = STATE(224), + [sym_block_comment] = STATE(224), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(1150), + [anon_sym_RPAREN] = ACTIONS(1302), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1154), + [anon_sym_i8] = ACTIONS(1154), + [anon_sym_u16] = ACTIONS(1154), + [anon_sym_i16] = ACTIONS(1154), + [anon_sym_u32] = ACTIONS(1154), + [anon_sym_i32] = ACTIONS(1154), + [anon_sym_u64] = ACTIONS(1154), + [anon_sym_i64] = ACTIONS(1154), + [anon_sym_u128] = ACTIONS(1154), + [anon_sym_i128] = ACTIONS(1154), + [anon_sym_isize] = ACTIONS(1154), + [anon_sym_usize] = ACTIONS(1154), + [anon_sym_f32] = ACTIONS(1154), + [anon_sym_f64] = ACTIONS(1154), + [anon_sym_bool] = ACTIONS(1154), + [anon_sym_str] = ACTIONS(1154), + [anon_sym_char] = ACTIONS(1154), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1156), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1158), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1078), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COMMA] = ACTIONS(1304), + [anon_sym_COLON_COLON] = ACTIONS(1162), + [anon_sym_POUND] = ACTIONS(1086), + [anon_sym_SQUOTE] = ACTIONS(1088), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1092), + [anon_sym_default] = ACTIONS(1164), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1166), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1166), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_ref] = ACTIONS(1108), + [anon_sym_dyn] = ACTIONS(1110), + [sym_mutable_specifier] = ACTIONS(1112), + [anon_sym_raw] = ACTIONS(1166), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1168), + [sym_super] = ACTIONS(1170), + [sym_crate] = ACTIONS(1170), + [sym_metavariable] = ACTIONS(1172), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [225] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1800), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(225), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1506), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(225), + [sym_block_comment] = STATE(225), + [sym_identifier] = ACTIONS(480), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_BANG] = ACTIONS(1306), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(1310), + [anon_sym_COLON_COLON] = ACTIONS(486), + [anon_sym_DASH_GT] = ACTIONS(1142), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(488), + [anon_sym_break] = ACTIONS(490), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(492), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(494), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(496), + [anon_sym_static] = ACTIONS(498), + [anon_sym_union] = ACTIONS(492), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_raw] = ACTIONS(492), + [anon_sym_yield] = ACTIONS(500), + [anon_sym_move] = ACTIONS(502), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(966), - [sym_super] = ACTIONS(966), - [sym_crate] = ACTIONS(966), - [sym__raw_string_literal_start] = ACTIONS(968), - [sym_float_literal] = ACTIONS(968), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, - [STATE(233)] = { - [sym_line_comment] = STATE(233), - [sym_block_comment] = STATE(233), - [sym_identifier] = ACTIONS(1042), - [anon_sym_SEMI] = ACTIONS(1044), - [anon_sym_LPAREN] = ACTIONS(1044), - [anon_sym_RPAREN] = ACTIONS(1044), - [anon_sym_LBRACK] = ACTIONS(1044), - [anon_sym_RBRACK] = ACTIONS(1044), - [anon_sym_LBRACE] = ACTIONS(1044), - [anon_sym_RBRACE] = ACTIONS(1044), - [anon_sym_EQ_GT] = ACTIONS(1044), - [anon_sym_COLON] = ACTIONS(1042), - [anon_sym_DOLLAR] = ACTIONS(1044), - [anon_sym_PLUS] = ACTIONS(1042), - [anon_sym_STAR] = ACTIONS(1042), - [anon_sym_QMARK] = ACTIONS(1044), - [anon_sym_u8] = ACTIONS(1042), - [anon_sym_i8] = ACTIONS(1042), - [anon_sym_u16] = ACTIONS(1042), - [anon_sym_i16] = ACTIONS(1042), - [anon_sym_u32] = ACTIONS(1042), - [anon_sym_i32] = ACTIONS(1042), - [anon_sym_u64] = ACTIONS(1042), - [anon_sym_i64] = ACTIONS(1042), - [anon_sym_u128] = ACTIONS(1042), - [anon_sym_i128] = ACTIONS(1042), - [anon_sym_isize] = ACTIONS(1042), - [anon_sym_usize] = ACTIONS(1042), - [anon_sym_f32] = ACTIONS(1042), - [anon_sym_f64] = ACTIONS(1042), - [anon_sym_bool] = ACTIONS(1042), - [anon_sym_str] = ACTIONS(1042), - [anon_sym_char] = ACTIONS(1042), - [anon_sym_DASH] = ACTIONS(1042), - [anon_sym_SLASH] = ACTIONS(1042), - [anon_sym_PERCENT] = ACTIONS(1042), - [anon_sym_CARET] = ACTIONS(1042), - [anon_sym_BANG] = ACTIONS(1042), - [anon_sym_AMP] = ACTIONS(1042), - [anon_sym_PIPE] = ACTIONS(1042), - [anon_sym_AMP_AMP] = ACTIONS(1044), - [anon_sym_PIPE_PIPE] = ACTIONS(1044), - [anon_sym_LT_LT] = ACTIONS(1042), - [anon_sym_GT_GT] = ACTIONS(1042), - [anon_sym_PLUS_EQ] = ACTIONS(1044), - [anon_sym_DASH_EQ] = ACTIONS(1044), - [anon_sym_STAR_EQ] = ACTIONS(1044), - [anon_sym_SLASH_EQ] = ACTIONS(1044), - [anon_sym_PERCENT_EQ] = ACTIONS(1044), - [anon_sym_CARET_EQ] = ACTIONS(1044), - [anon_sym_AMP_EQ] = ACTIONS(1044), - [anon_sym_PIPE_EQ] = ACTIONS(1044), - [anon_sym_LT_LT_EQ] = ACTIONS(1044), - [anon_sym_GT_GT_EQ] = ACTIONS(1044), - [anon_sym_EQ] = ACTIONS(1042), - [anon_sym_EQ_EQ] = ACTIONS(1044), - [anon_sym_BANG_EQ] = ACTIONS(1044), - [anon_sym_GT] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(1042), - [anon_sym_GT_EQ] = ACTIONS(1044), - [anon_sym_LT_EQ] = ACTIONS(1044), - [anon_sym_AT] = ACTIONS(1044), - [anon_sym__] = ACTIONS(1042), - [anon_sym_DOT] = ACTIONS(1042), - [anon_sym_DOT_DOT] = ACTIONS(1042), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1044), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1044), - [anon_sym_COMMA] = ACTIONS(1044), - [anon_sym_COLON_COLON] = ACTIONS(1044), - [anon_sym_DASH_GT] = ACTIONS(1044), - [anon_sym_POUND] = ACTIONS(1044), - [anon_sym_SQUOTE] = ACTIONS(1042), - [anon_sym_as] = ACTIONS(1042), - [anon_sym_async] = ACTIONS(1042), - [anon_sym_await] = ACTIONS(1042), - [anon_sym_break] = ACTIONS(1042), - [anon_sym_const] = ACTIONS(1042), - [anon_sym_continue] = ACTIONS(1042), - [anon_sym_default] = ACTIONS(1042), - [anon_sym_enum] = ACTIONS(1042), - [anon_sym_fn] = ACTIONS(1042), - [anon_sym_for] = ACTIONS(1042), - [anon_sym_gen] = ACTIONS(1042), - [anon_sym_if] = ACTIONS(1042), - [anon_sym_impl] = ACTIONS(1042), - [anon_sym_let] = ACTIONS(1042), - [anon_sym_loop] = ACTIONS(1042), - [anon_sym_match] = ACTIONS(1042), - [anon_sym_mod] = ACTIONS(1042), - [anon_sym_pub] = ACTIONS(1042), - [anon_sym_return] = ACTIONS(1042), - [anon_sym_static] = ACTIONS(1042), - [anon_sym_struct] = ACTIONS(1042), - [anon_sym_trait] = ACTIONS(1042), - [anon_sym_type] = ACTIONS(1042), - [anon_sym_union] = ACTIONS(1042), - [anon_sym_unsafe] = ACTIONS(1042), - [anon_sym_use] = ACTIONS(1042), - [anon_sym_where] = ACTIONS(1042), - [anon_sym_while] = ACTIONS(1042), - [sym_mutable_specifier] = ACTIONS(1042), - [sym_integer_literal] = ACTIONS(1044), - [aux_sym_string_literal_token1] = ACTIONS(1044), - [sym_char_literal] = ACTIONS(1044), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), + [226] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1831), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(225), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1465), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(226), + [sym_block_comment] = STATE(226), + [sym_identifier] = ACTIONS(480), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_BANG] = ACTIONS(1306), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1144), + [anon_sym_DOT_DOT] = ACTIONS(1310), + [anon_sym_COLON_COLON] = ACTIONS(486), + [anon_sym_DASH_GT] = ACTIONS(1146), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(488), + [anon_sym_break] = ACTIONS(490), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(492), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(494), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(496), + [anon_sym_static] = ACTIONS(498), + [anon_sym_union] = ACTIONS(492), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_raw] = ACTIONS(492), + [anon_sym_yield] = ACTIONS(500), + [anon_sym_move] = ACTIONS(502), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1042), - [sym_super] = ACTIONS(1042), - [sym_crate] = ACTIONS(1042), - [sym__raw_string_literal_start] = ACTIONS(1044), - [sym_float_literal] = ACTIONS(1044), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, - [STATE(234)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1883), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1450), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(234), - [sym_block_comment] = STATE(234), - [sym_identifier] = ACTIONS(470), + [227] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1729), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1506), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(227), + [sym_block_comment] = STATE(227), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(474), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1206), + [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(354), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1156), - [anon_sym_DOT_DOT] = ACTIONS(1208), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_DASH_GT] = ACTIONS(1158), + [anon_sym__] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1142), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(482), + [anon_sym_default] = ACTIONS(360), [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(484), + [anon_sym_gen] = ACTIONS(364), [anon_sym_if] = ACTIONS(366), [anon_sym_loop] = ACTIONS(368), [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(486), - [anon_sym_static] = ACTIONS(488), - [anon_sym_union] = ACTIONS(482), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_move] = ACTIONS(492), + [anon_sym_raw] = ACTIONS(360), + [anon_sym_yield] = ACTIONS(93), + [anon_sym_move] = ACTIONS(95), [anon_sym_try] = ACTIONS(378), [sym_integer_literal] = ACTIONS(99), [aux_sym_string_literal_token1] = ACTIONS(101), @@ -44409,16 +43336,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), + [sym_self] = ACTIONS(111), + [sym_super] = ACTIONS(113), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(117), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(235)] = { - [sym_line_comment] = STATE(235), - [sym_block_comment] = STATE(235), + [228] = { + [sym_line_comment] = STATE(228), + [sym_block_comment] = STATE(228), [sym_identifier] = ACTIONS(958), [anon_sym_SEMI] = ACTIONS(960), [anon_sym_LPAREN] = ACTIONS(960), @@ -44531,106 +43458,221 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(960), [sym_float_literal] = ACTIONS(960), }, - [STATE(236)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1915), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1516), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(236), - [sym_block_comment] = STATE(236), - [sym_identifier] = ACTIONS(470), + [229] = { + [sym_line_comment] = STATE(229), + [sym_block_comment] = STATE(229), + [sym_identifier] = ACTIONS(962), + [anon_sym_SEMI] = ACTIONS(964), + [anon_sym_LPAREN] = ACTIONS(964), + [anon_sym_RPAREN] = ACTIONS(964), + [anon_sym_LBRACK] = ACTIONS(964), + [anon_sym_RBRACK] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_RBRACE] = ACTIONS(964), + [anon_sym_EQ_GT] = ACTIONS(964), + [anon_sym_COLON] = ACTIONS(962), + [anon_sym_DOLLAR] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(962), + [anon_sym_STAR] = ACTIONS(962), + [anon_sym_QMARK] = ACTIONS(964), + [anon_sym_u8] = ACTIONS(962), + [anon_sym_i8] = ACTIONS(962), + [anon_sym_u16] = ACTIONS(962), + [anon_sym_i16] = ACTIONS(962), + [anon_sym_u32] = ACTIONS(962), + [anon_sym_i32] = ACTIONS(962), + [anon_sym_u64] = ACTIONS(962), + [anon_sym_i64] = ACTIONS(962), + [anon_sym_u128] = ACTIONS(962), + [anon_sym_i128] = ACTIONS(962), + [anon_sym_isize] = ACTIONS(962), + [anon_sym_usize] = ACTIONS(962), + [anon_sym_f32] = ACTIONS(962), + [anon_sym_f64] = ACTIONS(962), + [anon_sym_bool] = ACTIONS(962), + [anon_sym_str] = ACTIONS(962), + [anon_sym_char] = ACTIONS(962), + [anon_sym_DASH] = ACTIONS(962), + [anon_sym_SLASH] = ACTIONS(962), + [anon_sym_PERCENT] = ACTIONS(962), + [anon_sym_CARET] = ACTIONS(962), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_AMP] = ACTIONS(962), + [anon_sym_PIPE] = ACTIONS(962), + [anon_sym_AMP_AMP] = ACTIONS(964), + [anon_sym_PIPE_PIPE] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(962), + [anon_sym_GT_GT] = ACTIONS(962), + [anon_sym_PLUS_EQ] = ACTIONS(964), + [anon_sym_DASH_EQ] = ACTIONS(964), + [anon_sym_STAR_EQ] = ACTIONS(964), + [anon_sym_SLASH_EQ] = ACTIONS(964), + [anon_sym_PERCENT_EQ] = ACTIONS(964), + [anon_sym_CARET_EQ] = ACTIONS(964), + [anon_sym_AMP_EQ] = ACTIONS(964), + [anon_sym_PIPE_EQ] = ACTIONS(964), + [anon_sym_LT_LT_EQ] = ACTIONS(964), + [anon_sym_GT_GT_EQ] = ACTIONS(964), + [anon_sym_EQ] = ACTIONS(962), + [anon_sym_EQ_EQ] = ACTIONS(964), + [anon_sym_BANG_EQ] = ACTIONS(964), + [anon_sym_GT] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(962), + [anon_sym_GT_EQ] = ACTIONS(964), + [anon_sym_LT_EQ] = ACTIONS(964), + [anon_sym_AT] = ACTIONS(964), + [anon_sym__] = ACTIONS(962), + [anon_sym_DOT] = ACTIONS(962), + [anon_sym_DOT_DOT] = ACTIONS(962), + [anon_sym_DOT_DOT_DOT] = ACTIONS(964), + [anon_sym_DOT_DOT_EQ] = ACTIONS(964), + [anon_sym_COMMA] = ACTIONS(964), + [anon_sym_COLON_COLON] = ACTIONS(964), + [anon_sym_DASH_GT] = ACTIONS(964), + [anon_sym_POUND] = ACTIONS(964), + [anon_sym_SQUOTE] = ACTIONS(962), + [anon_sym_as] = ACTIONS(962), + [anon_sym_async] = ACTIONS(962), + [anon_sym_await] = ACTIONS(962), + [anon_sym_break] = ACTIONS(962), + [anon_sym_const] = ACTIONS(962), + [anon_sym_continue] = ACTIONS(962), + [anon_sym_default] = ACTIONS(962), + [anon_sym_enum] = ACTIONS(962), + [anon_sym_fn] = ACTIONS(962), + [anon_sym_for] = ACTIONS(962), + [anon_sym_gen] = ACTIONS(962), + [anon_sym_if] = ACTIONS(962), + [anon_sym_impl] = ACTIONS(962), + [anon_sym_let] = ACTIONS(962), + [anon_sym_loop] = ACTIONS(962), + [anon_sym_match] = ACTIONS(962), + [anon_sym_mod] = ACTIONS(962), + [anon_sym_pub] = ACTIONS(962), + [anon_sym_return] = ACTIONS(962), + [anon_sym_static] = ACTIONS(962), + [anon_sym_struct] = ACTIONS(962), + [anon_sym_trait] = ACTIONS(962), + [anon_sym_type] = ACTIONS(962), + [anon_sym_union] = ACTIONS(962), + [anon_sym_unsafe] = ACTIONS(962), + [anon_sym_use] = ACTIONS(962), + [anon_sym_where] = ACTIONS(962), + [anon_sym_while] = ACTIONS(962), + [sym_mutable_specifier] = ACTIONS(962), + [sym_integer_literal] = ACTIONS(964), + [aux_sym_string_literal_token1] = ACTIONS(964), + [sym_char_literal] = ACTIONS(964), + [anon_sym_true] = ACTIONS(962), + [anon_sym_false] = ACTIONS(962), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(962), + [sym_super] = ACTIONS(962), + [sym_crate] = ACTIONS(962), + [sym__raw_string_literal_start] = ACTIONS(964), + [sym_float_literal] = ACTIONS(964), + }, + [230] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1880), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(225), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(230), + [sym_block_comment] = STATE(230), + [sym_identifier] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(474), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1206), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_BANG] = ACTIONS(1306), + [anon_sym_AMP] = ACTIONS(1308), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1190), - [anon_sym_DOT_DOT] = ACTIONS(1208), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_DASH_GT] = ACTIONS(1192), + [anon_sym__] = ACTIONS(1046), + [anon_sym_DOT_DOT] = ACTIONS(1310), + [anon_sym_COLON_COLON] = ACTIONS(486), + [anon_sym_DASH_GT] = ACTIONS(1048), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), + [anon_sym_async] = ACTIONS(488), + [anon_sym_break] = ACTIONS(490), [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(482), + [anon_sym_default] = ACTIONS(492), [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(484), + [anon_sym_gen] = ACTIONS(494), [anon_sym_if] = ACTIONS(366), [anon_sym_loop] = ACTIONS(368), [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(486), - [anon_sym_static] = ACTIONS(488), - [anon_sym_union] = ACTIONS(482), + [anon_sym_return] = ACTIONS(496), + [anon_sym_static] = ACTIONS(498), + [anon_sym_union] = ACTIONS(492), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_move] = ACTIONS(492), + [anon_sym_raw] = ACTIONS(492), + [anon_sym_yield] = ACTIONS(500), + [anon_sym_move] = ACTIONS(502), [anon_sym_try] = ACTIONS(378), [sym_integer_literal] = ACTIONS(99), [aux_sym_string_literal_token1] = ACTIONS(101), @@ -44639,67 +43681,295 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(237)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1867), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(237), - [sym_block_comment] = STATE(237), - [aux_sym_tuple_expression_repeat1] = STATE(218), + [231] = { + [sym_line_comment] = STATE(231), + [sym_block_comment] = STATE(231), + [sym_identifier] = ACTIONS(984), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_RPAREN] = ACTIONS(986), + [anon_sym_LBRACK] = ACTIONS(986), + [anon_sym_RBRACK] = ACTIONS(986), + [anon_sym_LBRACE] = ACTIONS(986), + [anon_sym_RBRACE] = ACTIONS(986), + [anon_sym_EQ_GT] = ACTIONS(986), + [anon_sym_COLON] = ACTIONS(984), + [anon_sym_DOLLAR] = ACTIONS(986), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_STAR] = ACTIONS(984), + [anon_sym_QMARK] = ACTIONS(986), + [anon_sym_u8] = ACTIONS(984), + [anon_sym_i8] = ACTIONS(984), + [anon_sym_u16] = ACTIONS(984), + [anon_sym_i16] = ACTIONS(984), + [anon_sym_u32] = ACTIONS(984), + [anon_sym_i32] = ACTIONS(984), + [anon_sym_u64] = ACTIONS(984), + [anon_sym_i64] = ACTIONS(984), + [anon_sym_u128] = ACTIONS(984), + [anon_sym_i128] = ACTIONS(984), + [anon_sym_isize] = ACTIONS(984), + [anon_sym_usize] = ACTIONS(984), + [anon_sym_f32] = ACTIONS(984), + [anon_sym_f64] = ACTIONS(984), + [anon_sym_bool] = ACTIONS(984), + [anon_sym_str] = ACTIONS(984), + [anon_sym_char] = ACTIONS(984), + [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(986), + [anon_sym_PIPE_PIPE] = ACTIONS(986), + [anon_sym_LT_LT] = ACTIONS(984), + [anon_sym_GT_GT] = ACTIONS(984), + [anon_sym_PLUS_EQ] = ACTIONS(986), + [anon_sym_DASH_EQ] = ACTIONS(986), + [anon_sym_STAR_EQ] = ACTIONS(986), + [anon_sym_SLASH_EQ] = ACTIONS(986), + [anon_sym_PERCENT_EQ] = ACTIONS(986), + [anon_sym_CARET_EQ] = ACTIONS(986), + [anon_sym_AMP_EQ] = ACTIONS(986), + [anon_sym_PIPE_EQ] = ACTIONS(986), + [anon_sym_LT_LT_EQ] = ACTIONS(986), + [anon_sym_GT_GT_EQ] = ACTIONS(986), + [anon_sym_EQ] = ACTIONS(984), + [anon_sym_EQ_EQ] = ACTIONS(986), + [anon_sym_BANG_EQ] = ACTIONS(986), + [anon_sym_GT] = ACTIONS(984), + [anon_sym_LT] = ACTIONS(984), + [anon_sym_GT_EQ] = ACTIONS(986), + [anon_sym_LT_EQ] = ACTIONS(986), + [anon_sym_AT] = ACTIONS(986), + [anon_sym__] = ACTIONS(984), + [anon_sym_DOT] = ACTIONS(984), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DOT_DOT_DOT] = ACTIONS(986), + [anon_sym_DOT_DOT_EQ] = ACTIONS(986), + [anon_sym_COMMA] = ACTIONS(986), + [anon_sym_COLON_COLON] = ACTIONS(986), + [anon_sym_DASH_GT] = ACTIONS(986), + [anon_sym_POUND] = ACTIONS(986), + [anon_sym_SQUOTE] = ACTIONS(984), + [anon_sym_as] = ACTIONS(984), + [anon_sym_async] = ACTIONS(984), + [anon_sym_await] = ACTIONS(984), + [anon_sym_break] = ACTIONS(984), + [anon_sym_const] = ACTIONS(984), + [anon_sym_continue] = ACTIONS(984), + [anon_sym_default] = ACTIONS(984), + [anon_sym_enum] = ACTIONS(984), + [anon_sym_fn] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_gen] = ACTIONS(984), + [anon_sym_if] = ACTIONS(984), + [anon_sym_impl] = ACTIONS(984), + [anon_sym_let] = ACTIONS(984), + [anon_sym_loop] = ACTIONS(984), + [anon_sym_match] = ACTIONS(984), + [anon_sym_mod] = ACTIONS(984), + [anon_sym_pub] = ACTIONS(984), + [anon_sym_return] = ACTIONS(984), + [anon_sym_static] = ACTIONS(984), + [anon_sym_struct] = ACTIONS(984), + [anon_sym_trait] = ACTIONS(984), + [anon_sym_type] = ACTIONS(984), + [anon_sym_union] = ACTIONS(984), + [anon_sym_unsafe] = ACTIONS(984), + [anon_sym_use] = ACTIONS(984), + [anon_sym_where] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [sym_mutable_specifier] = ACTIONS(984), + [sym_integer_literal] = ACTIONS(986), + [aux_sym_string_literal_token1] = ACTIONS(986), + [sym_char_literal] = ACTIONS(986), + [anon_sym_true] = ACTIONS(984), + [anon_sym_false] = ACTIONS(984), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(984), + [sym_super] = ACTIONS(984), + [sym_crate] = ACTIONS(984), + [sym__raw_string_literal_start] = ACTIONS(986), + [sym_float_literal] = ACTIONS(986), + }, + [232] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1907), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(225), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1513), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(232), + [sym_block_comment] = STATE(232), + [sym_identifier] = ACTIONS(480), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(484), + [anon_sym_BANG] = ACTIONS(1306), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1290), + [anon_sym_DOT_DOT] = ACTIONS(1310), + [anon_sym_COLON_COLON] = ACTIONS(486), + [anon_sym_DASH_GT] = ACTIONS(1292), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(488), + [anon_sym_break] = ACTIONS(490), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(492), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(494), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(496), + [anon_sym_static] = ACTIONS(498), + [anon_sym_union] = ACTIONS(492), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_raw] = ACTIONS(492), + [anon_sym_yield] = ACTIONS(500), + [anon_sym_move] = ACTIONS(502), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [233] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1762), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1513), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(233), + [sym_block_comment] = STATE(233), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1210), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), @@ -44720,13 +43990,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(354), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1290), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1292), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), @@ -44761,60 +44033,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(238)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1819), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(238), - [sym_block_comment] = STATE(238), - [aux_sym_tuple_expression_repeat1] = STATE(241), + [234] = { + [sym_line_comment] = STATE(234), + [sym_block_comment] = STATE(234), + [sym_identifier] = ACTIONS(1012), + [anon_sym_SEMI] = ACTIONS(1014), + [anon_sym_LPAREN] = ACTIONS(1014), + [anon_sym_RPAREN] = ACTIONS(1014), + [anon_sym_LBRACK] = ACTIONS(1014), + [anon_sym_RBRACK] = ACTIONS(1014), + [anon_sym_LBRACE] = ACTIONS(1014), + [anon_sym_RBRACE] = ACTIONS(1014), + [anon_sym_EQ_GT] = ACTIONS(1014), + [anon_sym_COLON] = ACTIONS(1012), + [anon_sym_DOLLAR] = ACTIONS(1014), + [anon_sym_PLUS] = ACTIONS(1012), + [anon_sym_STAR] = ACTIONS(1012), + [anon_sym_QMARK] = ACTIONS(1014), + [anon_sym_u8] = ACTIONS(1012), + [anon_sym_i8] = ACTIONS(1012), + [anon_sym_u16] = ACTIONS(1012), + [anon_sym_i16] = ACTIONS(1012), + [anon_sym_u32] = ACTIONS(1012), + [anon_sym_i32] = ACTIONS(1012), + [anon_sym_u64] = ACTIONS(1012), + [anon_sym_i64] = ACTIONS(1012), + [anon_sym_u128] = ACTIONS(1012), + [anon_sym_i128] = ACTIONS(1012), + [anon_sym_isize] = ACTIONS(1012), + [anon_sym_usize] = ACTIONS(1012), + [anon_sym_f32] = ACTIONS(1012), + [anon_sym_f64] = ACTIONS(1012), + [anon_sym_bool] = ACTIONS(1012), + [anon_sym_str] = ACTIONS(1012), + [anon_sym_char] = ACTIONS(1012), + [anon_sym_DASH] = ACTIONS(1012), + [anon_sym_SLASH] = ACTIONS(1012), + [anon_sym_PERCENT] = ACTIONS(1012), + [anon_sym_CARET] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(1012), + [anon_sym_AMP] = ACTIONS(1012), + [anon_sym_PIPE] = ACTIONS(1012), + [anon_sym_AMP_AMP] = ACTIONS(1014), + [anon_sym_PIPE_PIPE] = ACTIONS(1014), + [anon_sym_LT_LT] = ACTIONS(1012), + [anon_sym_GT_GT] = ACTIONS(1012), + [anon_sym_PLUS_EQ] = ACTIONS(1014), + [anon_sym_DASH_EQ] = ACTIONS(1014), + [anon_sym_STAR_EQ] = ACTIONS(1014), + [anon_sym_SLASH_EQ] = ACTIONS(1014), + [anon_sym_PERCENT_EQ] = ACTIONS(1014), + [anon_sym_CARET_EQ] = ACTIONS(1014), + [anon_sym_AMP_EQ] = ACTIONS(1014), + [anon_sym_PIPE_EQ] = ACTIONS(1014), + [anon_sym_LT_LT_EQ] = ACTIONS(1014), + [anon_sym_GT_GT_EQ] = ACTIONS(1014), + [anon_sym_EQ] = ACTIONS(1012), + [anon_sym_EQ_EQ] = ACTIONS(1014), + [anon_sym_BANG_EQ] = ACTIONS(1014), + [anon_sym_GT] = ACTIONS(1012), + [anon_sym_LT] = ACTIONS(1012), + [anon_sym_GT_EQ] = ACTIONS(1014), + [anon_sym_LT_EQ] = ACTIONS(1014), + [anon_sym_AT] = ACTIONS(1014), + [anon_sym__] = ACTIONS(1012), + [anon_sym_DOT] = ACTIONS(1012), + [anon_sym_DOT_DOT] = ACTIONS(1012), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1014), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1014), + [anon_sym_COMMA] = ACTIONS(1014), + [anon_sym_COLON_COLON] = ACTIONS(1014), + [anon_sym_DASH_GT] = ACTIONS(1014), + [anon_sym_POUND] = ACTIONS(1014), + [anon_sym_SQUOTE] = ACTIONS(1012), + [anon_sym_as] = ACTIONS(1012), + [anon_sym_async] = ACTIONS(1012), + [anon_sym_await] = ACTIONS(1012), + [anon_sym_break] = ACTIONS(1012), + [anon_sym_const] = ACTIONS(1012), + [anon_sym_continue] = ACTIONS(1012), + [anon_sym_default] = ACTIONS(1012), + [anon_sym_enum] = ACTIONS(1012), + [anon_sym_fn] = ACTIONS(1012), + [anon_sym_for] = ACTIONS(1012), + [anon_sym_gen] = ACTIONS(1012), + [anon_sym_if] = ACTIONS(1012), + [anon_sym_impl] = ACTIONS(1012), + [anon_sym_let] = ACTIONS(1012), + [anon_sym_loop] = ACTIONS(1012), + [anon_sym_match] = ACTIONS(1012), + [anon_sym_mod] = ACTIONS(1012), + [anon_sym_pub] = ACTIONS(1012), + [anon_sym_return] = ACTIONS(1012), + [anon_sym_static] = ACTIONS(1012), + [anon_sym_struct] = ACTIONS(1012), + [anon_sym_trait] = ACTIONS(1012), + [anon_sym_type] = ACTIONS(1012), + [anon_sym_union] = ACTIONS(1012), + [anon_sym_unsafe] = ACTIONS(1012), + [anon_sym_use] = ACTIONS(1012), + [anon_sym_where] = ACTIONS(1012), + [anon_sym_while] = ACTIONS(1012), + [sym_mutable_specifier] = ACTIONS(1012), + [sym_integer_literal] = ACTIONS(1014), + [aux_sym_string_literal_token1] = ACTIONS(1014), + [sym_char_literal] = ACTIONS(1014), + [anon_sym_true] = ACTIONS(1012), + [anon_sym_false] = ACTIONS(1012), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1012), + [sym_super] = ACTIONS(1012), + [sym_crate] = ACTIONS(1012), + [sym__raw_string_literal_start] = ACTIONS(1014), + [sym_float_literal] = ACTIONS(1014), + }, + [235] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1805), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(235), + [sym_block_comment] = STATE(235), + [aux_sym_tuple_expression_repeat1] = STATE(203), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1212), + [anon_sym_RPAREN] = ACTIONS(1312), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), @@ -44876,61 +44263,406 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(239)] = { - [sym_bracketed_type] = STATE(3669), - [sym_generic_function] = STATE(1894), - [sym_generic_type_with_turbofish] = STATE(3057), - [sym__expression_except_range] = STATE(1672), - [sym__expression] = STATE(1781), - [sym_macro_invocation] = STATE(1901), - [sym_scoped_identifier] = STATE(1644), - [sym_scoped_type_identifier_in_expression_position] = STATE(3253), - [sym_range_expression] = STATE(1897), - [sym_unary_expression] = STATE(1894), - [sym_try_expression] = STATE(1894), - [sym_reference_expression] = STATE(1894), - [sym_binary_expression] = STATE(1894), - [sym_assignment_expression] = STATE(1894), - [sym_compound_assignment_expr] = STATE(1894), - [sym_type_cast_expression] = STATE(1894), - [sym_return_expression] = STATE(1894), - [sym_yield_expression] = STATE(1894), - [sym_call_expression] = STATE(1894), - [sym_array_expression] = STATE(1894), - [sym_parenthesized_expression] = STATE(1894), - [sym_tuple_expression] = STATE(1894), - [sym_unit_expression] = STATE(1894), - [sym_struct_expression] = STATE(1894), - [sym_if_expression] = STATE(1894), - [sym_match_expression] = STATE(1894), - [sym_while_expression] = STATE(1894), - [sym_loop_expression] = STATE(1894), - [sym_for_expression] = STATE(1894), - [sym_const_block] = STATE(1894), - [sym_closure_expression] = STATE(1894), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3777), - [sym_break_expression] = STATE(1894), - [sym_continue_expression] = STATE(1894), - [sym_index_expression] = STATE(1894), - [sym_await_expression] = STATE(1894), - [sym_field_expression] = STATE(1674), - [sym_unsafe_block] = STATE(1894), - [sym_async_block] = STATE(1894), - [sym_gen_block] = STATE(1894), - [sym_try_block] = STATE(1894), - [sym_block] = STATE(1858), - [sym__literal] = STATE(1894), - [sym_string_literal] = STATE(1768), - [sym_raw_string_literal] = STATE(1768), - [sym_boolean_literal] = STATE(1768), + [236] = { + [sym_bracketed_type] = STATE(3659), + [sym_generic_function] = STATE(1714), + [sym_generic_type_with_turbofish] = STATE(2899), + [sym__expression_except_range] = STATE(1670), + [sym__expression] = STATE(1777), + [sym_macro_invocation] = STATE(1893), + [sym_scoped_identifier] = STATE(1650), + [sym_scoped_type_identifier_in_expression_position] = STATE(3266), + [sym_range_expression] = STATE(1889), + [sym_unary_expression] = STATE(1714), + [sym_try_expression] = STATE(1714), + [sym_reference_expression] = STATE(1714), + [sym_binary_expression] = STATE(1714), + [sym_assignment_expression] = STATE(1714), + [sym_compound_assignment_expr] = STATE(1714), + [sym_type_cast_expression] = STATE(1714), + [sym_return_expression] = STATE(1714), + [sym_yield_expression] = STATE(1714), + [sym_call_expression] = STATE(1714), + [sym_array_expression] = STATE(1714), + [sym_parenthesized_expression] = STATE(1714), + [sym_tuple_expression] = STATE(1714), + [sym_unit_expression] = STATE(1714), + [sym_struct_expression] = STATE(1714), + [sym_if_expression] = STATE(1714), + [sym_match_expression] = STATE(1714), + [sym_while_expression] = STATE(1714), + [sym_loop_expression] = STATE(1714), + [sym_for_expression] = STATE(1714), + [sym_const_block] = STATE(1714), + [sym_closure_expression] = STATE(1714), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1714), + [sym_continue_expression] = STATE(1714), + [sym_index_expression] = STATE(1714), + [sym_await_expression] = STATE(1714), + [sym_field_expression] = STATE(1672), + [sym_unsafe_block] = STATE(1714), + [sym_async_block] = STATE(1714), + [sym_gen_block] = STATE(1714), + [sym_try_block] = STATE(1714), + [sym_block] = STATE(1924), + [sym__literal] = STATE(1714), + [sym_string_literal] = STATE(1766), + [sym_raw_string_literal] = STATE(1766), + [sym_boolean_literal] = STATE(1766), + [sym_line_comment] = STATE(236), + [sym_block_comment] = STATE(236), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(470), + [anon_sym_LBRACK] = ACTIONS(472), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(906), + [anon_sym_u8] = ACTIONS(416), + [anon_sym_i8] = ACTIONS(416), + [anon_sym_u16] = ACTIONS(416), + [anon_sym_i16] = ACTIONS(416), + [anon_sym_u32] = ACTIONS(416), + [anon_sym_i32] = ACTIONS(416), + [anon_sym_u64] = ACTIONS(416), + [anon_sym_i64] = ACTIONS(416), + [anon_sym_u128] = ACTIONS(416), + [anon_sym_i128] = ACTIONS(416), + [anon_sym_isize] = ACTIONS(416), + [anon_sym_usize] = ACTIONS(416), + [anon_sym_f32] = ACTIONS(416), + [anon_sym_f64] = ACTIONS(416), + [anon_sym_bool] = ACTIONS(416), + [anon_sym_str] = ACTIONS(416), + [anon_sym_char] = ACTIONS(416), + [anon_sym_DASH] = ACTIONS(418), + [anon_sym_BANG] = ACTIONS(906), + [anon_sym_AMP] = ACTIONS(908), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1314), + [anon_sym_DOT_DOT] = ACTIONS(910), + [anon_sym_COLON_COLON] = ACTIONS(420), + [anon_sym_DASH_GT] = ACTIONS(1316), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(422), + [anon_sym_break] = ACTIONS(424), + [anon_sym_const] = ACTIONS(426), + [anon_sym_continue] = ACTIONS(428), + [anon_sym_default] = ACTIONS(430), + [anon_sym_for] = ACTIONS(432), + [anon_sym_gen] = ACTIONS(434), + [anon_sym_if] = ACTIONS(436), + [anon_sym_loop] = ACTIONS(438), + [anon_sym_match] = ACTIONS(440), + [anon_sym_return] = ACTIONS(442), + [anon_sym_static] = ACTIONS(444), + [anon_sym_union] = ACTIONS(430), + [anon_sym_unsafe] = ACTIONS(446), + [anon_sym_while] = ACTIONS(448), + [anon_sym_raw] = ACTIONS(430), + [anon_sym_yield] = ACTIONS(450), + [anon_sym_move] = ACTIONS(452), + [anon_sym_try] = ACTIONS(454), + [sym_integer_literal] = ACTIONS(456), + [aux_sym_string_literal_token1] = ACTIONS(458), + [sym_char_literal] = ACTIONS(456), + [anon_sym_true] = ACTIONS(460), + [anon_sym_false] = ACTIONS(460), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(462), + [sym_super] = ACTIONS(464), + [sym_crate] = ACTIONS(464), + [sym_metavariable] = ACTIONS(466), + [sym__raw_string_literal_start] = ACTIONS(468), + [sym_float_literal] = ACTIONS(456), + }, + [237] = { + [sym_bracketed_type] = STATE(3659), + [sym_generic_function] = STATE(1714), + [sym_generic_type_with_turbofish] = STATE(2899), + [sym__expression_except_range] = STATE(1670), + [sym__expression] = STATE(1770), + [sym_macro_invocation] = STATE(1893), + [sym_scoped_identifier] = STATE(1650), + [sym_scoped_type_identifier_in_expression_position] = STATE(3266), + [sym_range_expression] = STATE(1889), + [sym_unary_expression] = STATE(1714), + [sym_try_expression] = STATE(1714), + [sym_reference_expression] = STATE(1714), + [sym_binary_expression] = STATE(1714), + [sym_assignment_expression] = STATE(1714), + [sym_compound_assignment_expr] = STATE(1714), + [sym_type_cast_expression] = STATE(1714), + [sym_return_expression] = STATE(1714), + [sym_yield_expression] = STATE(1714), + [sym_call_expression] = STATE(1714), + [sym_array_expression] = STATE(1714), + [sym_parenthesized_expression] = STATE(1714), + [sym_tuple_expression] = STATE(1714), + [sym_unit_expression] = STATE(1714), + [sym_struct_expression] = STATE(1714), + [sym_if_expression] = STATE(1714), + [sym_match_expression] = STATE(1714), + [sym_while_expression] = STATE(1714), + [sym_loop_expression] = STATE(1714), + [sym_for_expression] = STATE(1714), + [sym_const_block] = STATE(1714), + [sym_closure_expression] = STATE(1714), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1714), + [sym_continue_expression] = STATE(1714), + [sym_index_expression] = STATE(1714), + [sym_await_expression] = STATE(1714), + [sym_field_expression] = STATE(1672), + [sym_unsafe_block] = STATE(1714), + [sym_async_block] = STATE(1714), + [sym_gen_block] = STATE(1714), + [sym_try_block] = STATE(1714), + [sym_block] = STATE(1925), + [sym__literal] = STATE(1714), + [sym_string_literal] = STATE(1766), + [sym_raw_string_literal] = STATE(1766), + [sym_boolean_literal] = STATE(1766), + [sym_line_comment] = STATE(237), + [sym_block_comment] = STATE(237), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(470), + [anon_sym_LBRACK] = ACTIONS(472), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(906), + [anon_sym_u8] = ACTIONS(416), + [anon_sym_i8] = ACTIONS(416), + [anon_sym_u16] = ACTIONS(416), + [anon_sym_i16] = ACTIONS(416), + [anon_sym_u32] = ACTIONS(416), + [anon_sym_i32] = ACTIONS(416), + [anon_sym_u64] = ACTIONS(416), + [anon_sym_i64] = ACTIONS(416), + [anon_sym_u128] = ACTIONS(416), + [anon_sym_i128] = ACTIONS(416), + [anon_sym_isize] = ACTIONS(416), + [anon_sym_usize] = ACTIONS(416), + [anon_sym_f32] = ACTIONS(416), + [anon_sym_f64] = ACTIONS(416), + [anon_sym_bool] = ACTIONS(416), + [anon_sym_str] = ACTIONS(416), + [anon_sym_char] = ACTIONS(416), + [anon_sym_DASH] = ACTIONS(418), + [anon_sym_BANG] = ACTIONS(906), + [anon_sym_AMP] = ACTIONS(908), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1318), + [anon_sym_DOT_DOT] = ACTIONS(910), + [anon_sym_COLON_COLON] = ACTIONS(420), + [anon_sym_DASH_GT] = ACTIONS(1320), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(422), + [anon_sym_break] = ACTIONS(424), + [anon_sym_const] = ACTIONS(426), + [anon_sym_continue] = ACTIONS(428), + [anon_sym_default] = ACTIONS(430), + [anon_sym_for] = ACTIONS(432), + [anon_sym_gen] = ACTIONS(434), + [anon_sym_if] = ACTIONS(436), + [anon_sym_loop] = ACTIONS(438), + [anon_sym_match] = ACTIONS(440), + [anon_sym_return] = ACTIONS(442), + [anon_sym_static] = ACTIONS(444), + [anon_sym_union] = ACTIONS(430), + [anon_sym_unsafe] = ACTIONS(446), + [anon_sym_while] = ACTIONS(448), + [anon_sym_raw] = ACTIONS(430), + [anon_sym_yield] = ACTIONS(450), + [anon_sym_move] = ACTIONS(452), + [anon_sym_try] = ACTIONS(454), + [sym_integer_literal] = ACTIONS(456), + [aux_sym_string_literal_token1] = ACTIONS(458), + [sym_char_literal] = ACTIONS(456), + [anon_sym_true] = ACTIONS(460), + [anon_sym_false] = ACTIONS(460), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(462), + [sym_super] = ACTIONS(464), + [sym_crate] = ACTIONS(464), + [sym_metavariable] = ACTIONS(466), + [sym__raw_string_literal_start] = ACTIONS(468), + [sym_float_literal] = ACTIONS(456), + }, + [238] = { + [sym_bracketed_type] = STATE(3659), + [sym_generic_function] = STATE(1714), + [sym_generic_type_with_turbofish] = STATE(2899), + [sym__expression_except_range] = STATE(1670), + [sym__expression] = STATE(1773), + [sym_macro_invocation] = STATE(1893), + [sym_scoped_identifier] = STATE(1650), + [sym_scoped_type_identifier_in_expression_position] = STATE(3266), + [sym_range_expression] = STATE(1889), + [sym_unary_expression] = STATE(1714), + [sym_try_expression] = STATE(1714), + [sym_reference_expression] = STATE(1714), + [sym_binary_expression] = STATE(1714), + [sym_assignment_expression] = STATE(1714), + [sym_compound_assignment_expr] = STATE(1714), + [sym_type_cast_expression] = STATE(1714), + [sym_return_expression] = STATE(1714), + [sym_yield_expression] = STATE(1714), + [sym_call_expression] = STATE(1714), + [sym_array_expression] = STATE(1714), + [sym_parenthesized_expression] = STATE(1714), + [sym_tuple_expression] = STATE(1714), + [sym_unit_expression] = STATE(1714), + [sym_struct_expression] = STATE(1714), + [sym_if_expression] = STATE(1714), + [sym_match_expression] = STATE(1714), + [sym_while_expression] = STATE(1714), + [sym_loop_expression] = STATE(1714), + [sym_for_expression] = STATE(1714), + [sym_const_block] = STATE(1714), + [sym_closure_expression] = STATE(1714), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1714), + [sym_continue_expression] = STATE(1714), + [sym_index_expression] = STATE(1714), + [sym_await_expression] = STATE(1714), + [sym_field_expression] = STATE(1672), + [sym_unsafe_block] = STATE(1714), + [sym_async_block] = STATE(1714), + [sym_gen_block] = STATE(1714), + [sym_try_block] = STATE(1714), + [sym_block] = STATE(1888), + [sym__literal] = STATE(1714), + [sym_string_literal] = STATE(1766), + [sym_raw_string_literal] = STATE(1766), + [sym_boolean_literal] = STATE(1766), + [sym_line_comment] = STATE(238), + [sym_block_comment] = STATE(238), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(470), + [anon_sym_LBRACK] = ACTIONS(472), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(906), + [anon_sym_u8] = ACTIONS(416), + [anon_sym_i8] = ACTIONS(416), + [anon_sym_u16] = ACTIONS(416), + [anon_sym_i16] = ACTIONS(416), + [anon_sym_u32] = ACTIONS(416), + [anon_sym_i32] = ACTIONS(416), + [anon_sym_u64] = ACTIONS(416), + [anon_sym_i64] = ACTIONS(416), + [anon_sym_u128] = ACTIONS(416), + [anon_sym_i128] = ACTIONS(416), + [anon_sym_isize] = ACTIONS(416), + [anon_sym_usize] = ACTIONS(416), + [anon_sym_f32] = ACTIONS(416), + [anon_sym_f64] = ACTIONS(416), + [anon_sym_bool] = ACTIONS(416), + [anon_sym_str] = ACTIONS(416), + [anon_sym_char] = ACTIONS(416), + [anon_sym_DASH] = ACTIONS(418), + [anon_sym_BANG] = ACTIONS(906), + [anon_sym_AMP] = ACTIONS(908), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1322), + [anon_sym_DOT_DOT] = ACTIONS(910), + [anon_sym_COLON_COLON] = ACTIONS(420), + [anon_sym_DASH_GT] = ACTIONS(1324), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(422), + [anon_sym_break] = ACTIONS(424), + [anon_sym_const] = ACTIONS(426), + [anon_sym_continue] = ACTIONS(428), + [anon_sym_default] = ACTIONS(430), + [anon_sym_for] = ACTIONS(432), + [anon_sym_gen] = ACTIONS(434), + [anon_sym_if] = ACTIONS(436), + [anon_sym_loop] = ACTIONS(438), + [anon_sym_match] = ACTIONS(440), + [anon_sym_return] = ACTIONS(442), + [anon_sym_static] = ACTIONS(444), + [anon_sym_union] = ACTIONS(430), + [anon_sym_unsafe] = ACTIONS(446), + [anon_sym_while] = ACTIONS(448), + [anon_sym_raw] = ACTIONS(430), + [anon_sym_yield] = ACTIONS(450), + [anon_sym_move] = ACTIONS(452), + [anon_sym_try] = ACTIONS(454), + [sym_integer_literal] = ACTIONS(456), + [aux_sym_string_literal_token1] = ACTIONS(458), + [sym_char_literal] = ACTIONS(456), + [anon_sym_true] = ACTIONS(460), + [anon_sym_false] = ACTIONS(460), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(462), + [sym_super] = ACTIONS(464), + [sym_crate] = ACTIONS(464), + [sym_metavariable] = ACTIONS(466), + [sym__raw_string_literal_start] = ACTIONS(468), + [sym_float_literal] = ACTIONS(456), + }, + [239] = { + [sym_bracketed_type] = STATE(3659), + [sym_generic_function] = STATE(1714), + [sym_generic_type_with_turbofish] = STATE(2899), + [sym__expression_except_range] = STATE(1670), + [sym__expression] = STATE(1778), + [sym_macro_invocation] = STATE(1893), + [sym_scoped_identifier] = STATE(1650), + [sym_scoped_type_identifier_in_expression_position] = STATE(3266), + [sym_range_expression] = STATE(1889), + [sym_unary_expression] = STATE(1714), + [sym_try_expression] = STATE(1714), + [sym_reference_expression] = STATE(1714), + [sym_binary_expression] = STATE(1714), + [sym_assignment_expression] = STATE(1714), + [sym_compound_assignment_expr] = STATE(1714), + [sym_type_cast_expression] = STATE(1714), + [sym_return_expression] = STATE(1714), + [sym_yield_expression] = STATE(1714), + [sym_call_expression] = STATE(1714), + [sym_array_expression] = STATE(1714), + [sym_parenthesized_expression] = STATE(1714), + [sym_tuple_expression] = STATE(1714), + [sym_unit_expression] = STATE(1714), + [sym_struct_expression] = STATE(1714), + [sym_if_expression] = STATE(1714), + [sym_match_expression] = STATE(1714), + [sym_while_expression] = STATE(1714), + [sym_loop_expression] = STATE(1714), + [sym_for_expression] = STATE(1714), + [sym_const_block] = STATE(1714), + [sym_closure_expression] = STATE(1714), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1714), + [sym_continue_expression] = STATE(1714), + [sym_index_expression] = STATE(1714), + [sym_await_expression] = STATE(1714), + [sym_field_expression] = STATE(1672), + [sym_unsafe_block] = STATE(1714), + [sym_async_block] = STATE(1714), + [sym_gen_block] = STATE(1714), + [sym_try_block] = STATE(1714), + [sym_block] = STATE(1838), + [sym__literal] = STATE(1714), + [sym_string_literal] = STATE(1766), + [sym_raw_string_literal] = STATE(1766), + [sym_boolean_literal] = STATE(1766), [sym_line_comment] = STATE(239), [sym_block_comment] = STATE(239), [sym_identifier] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(502), + [anon_sym_LPAREN] = ACTIONS(470), + [anon_sym_LBRACK] = ACTIONS(472), [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_STAR] = ACTIONS(904), + [anon_sym_STAR] = ACTIONS(906), [anon_sym_u8] = ACTIONS(416), [anon_sym_i8] = ACTIONS(416), [anon_sym_u16] = ACTIONS(416), @@ -44949,14 +44681,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(416), [anon_sym_char] = ACTIONS(416), [anon_sym_DASH] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), + [anon_sym_BANG] = ACTIONS(906), + [anon_sym_AMP] = ACTIONS(908), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1214), - [anon_sym_DOT_DOT] = ACTIONS(1160), + [anon_sym__] = ACTIONS(1326), + [anon_sym_DOT_DOT] = ACTIONS(910), [anon_sym_COLON_COLON] = ACTIONS(420), - [anon_sym_DASH_GT] = ACTIONS(1216), + [anon_sym_DASH_GT] = ACTIONS(1328), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(422), [anon_sym_break] = ACTIONS(424), @@ -44991,92 +44723,322 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(468), [sym_float_literal] = ACTIONS(456), }, - [STATE(240)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1668), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_let_condition] = STATE(2832), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [240] = { + [sym_attribute_item] = STATE(411), + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_self_parameter] = STATE(2879), + [sym_variadic_parameter] = STATE(2879), + [sym_parameter] = STATE(2879), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2675), + [sym_bracketed_type] = STATE(3684), + [sym_lifetime] = STATE(3061), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3340), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2527), + [sym_scoped_identifier] = STATE(2319), + [sym_scoped_type_identifier] = STATE(2206), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(3283), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), [sym_line_comment] = STATE(240), [sym_block_comment] = STATE(240), - [sym_identifier] = ACTIONS(470), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1052), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_RPAREN] = ACTIONS(1330), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1064), + [anon_sym_i8] = ACTIONS(1064), + [anon_sym_u16] = ACTIONS(1064), + [anon_sym_i16] = ACTIONS(1064), + [anon_sym_u32] = ACTIONS(1064), + [anon_sym_i32] = ACTIONS(1064), + [anon_sym_u64] = ACTIONS(1064), + [anon_sym_i64] = ACTIONS(1064), + [anon_sym_u128] = ACTIONS(1064), + [anon_sym_i128] = ACTIONS(1064), + [anon_sym_isize] = ACTIONS(1064), + [anon_sym_usize] = ACTIONS(1064), + [anon_sym_f32] = ACTIONS(1064), + [anon_sym_f64] = ACTIONS(1064), + [anon_sym_bool] = ACTIONS(1064), + [anon_sym_str] = ACTIONS(1064), + [anon_sym_char] = ACTIONS(1064), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1070), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1332), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1078), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COMMA] = ACTIONS(1334), + [anon_sym_COLON_COLON] = ACTIONS(1084), + [anon_sym_POUND] = ACTIONS(1086), + [anon_sym_SQUOTE] = ACTIONS(1088), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1092), + [anon_sym_default] = ACTIONS(1094), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1100), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1100), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_ref] = ACTIONS(1108), + [anon_sym_dyn] = ACTIONS(1110), + [sym_mutable_specifier] = ACTIONS(1112), + [anon_sym_raw] = ACTIONS(1100), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1120), + [sym_super] = ACTIONS(1122), + [sym_crate] = ACTIONS(1122), + [sym_metavariable] = ACTIONS(1124), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [241] = { + [sym_line_comment] = STATE(241), + [sym_block_comment] = STATE(241), + [sym_identifier] = ACTIONS(1008), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_RPAREN] = ACTIONS(1010), + [anon_sym_LBRACK] = ACTIONS(1010), + [anon_sym_RBRACK] = ACTIONS(1010), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1010), + [anon_sym_EQ_GT] = ACTIONS(1010), + [anon_sym_COLON] = ACTIONS(1008), + [anon_sym_DOLLAR] = ACTIONS(1010), + [anon_sym_PLUS] = ACTIONS(1008), + [anon_sym_STAR] = ACTIONS(1008), + [anon_sym_QMARK] = ACTIONS(1010), + [anon_sym_u8] = ACTIONS(1008), + [anon_sym_i8] = ACTIONS(1008), + [anon_sym_u16] = ACTIONS(1008), + [anon_sym_i16] = ACTIONS(1008), + [anon_sym_u32] = ACTIONS(1008), + [anon_sym_i32] = ACTIONS(1008), + [anon_sym_u64] = ACTIONS(1008), + [anon_sym_i64] = ACTIONS(1008), + [anon_sym_u128] = ACTIONS(1008), + [anon_sym_i128] = ACTIONS(1008), + [anon_sym_isize] = ACTIONS(1008), + [anon_sym_usize] = ACTIONS(1008), + [anon_sym_f32] = ACTIONS(1008), + [anon_sym_f64] = ACTIONS(1008), + [anon_sym_bool] = ACTIONS(1008), + [anon_sym_str] = ACTIONS(1008), + [anon_sym_char] = ACTIONS(1008), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_SLASH] = ACTIONS(1008), + [anon_sym_PERCENT] = ACTIONS(1008), + [anon_sym_CARET] = ACTIONS(1008), + [anon_sym_BANG] = ACTIONS(1008), + [anon_sym_AMP] = ACTIONS(1008), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_AMP_AMP] = ACTIONS(1010), + [anon_sym_PIPE_PIPE] = ACTIONS(1010), + [anon_sym_LT_LT] = ACTIONS(1008), + [anon_sym_GT_GT] = ACTIONS(1008), + [anon_sym_PLUS_EQ] = ACTIONS(1010), + [anon_sym_DASH_EQ] = ACTIONS(1010), + [anon_sym_STAR_EQ] = ACTIONS(1010), + [anon_sym_SLASH_EQ] = ACTIONS(1010), + [anon_sym_PERCENT_EQ] = ACTIONS(1010), + [anon_sym_CARET_EQ] = ACTIONS(1010), + [anon_sym_AMP_EQ] = ACTIONS(1010), + [anon_sym_PIPE_EQ] = ACTIONS(1010), + [anon_sym_LT_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_GT_EQ] = ACTIONS(1010), + [anon_sym_EQ] = ACTIONS(1008), + [anon_sym_EQ_EQ] = ACTIONS(1010), + [anon_sym_BANG_EQ] = ACTIONS(1010), + [anon_sym_GT] = ACTIONS(1008), + [anon_sym_LT] = ACTIONS(1008), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_AT] = ACTIONS(1010), + [anon_sym__] = ACTIONS(1008), + [anon_sym_DOT] = ACTIONS(1008), + [anon_sym_DOT_DOT] = ACTIONS(1008), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1010), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), + [anon_sym_COMMA] = ACTIONS(1010), + [anon_sym_COLON_COLON] = ACTIONS(1010), + [anon_sym_DASH_GT] = ACTIONS(1010), + [anon_sym_POUND] = ACTIONS(1010), + [anon_sym_SQUOTE] = ACTIONS(1008), + [anon_sym_as] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1008), + [anon_sym_await] = ACTIONS(1008), + [anon_sym_break] = ACTIONS(1008), + [anon_sym_const] = ACTIONS(1008), + [anon_sym_continue] = ACTIONS(1008), + [anon_sym_default] = ACTIONS(1008), + [anon_sym_enum] = ACTIONS(1008), + [anon_sym_fn] = ACTIONS(1008), + [anon_sym_for] = ACTIONS(1008), + [anon_sym_gen] = ACTIONS(1008), + [anon_sym_if] = ACTIONS(1008), + [anon_sym_impl] = ACTIONS(1008), + [anon_sym_let] = ACTIONS(1008), + [anon_sym_loop] = ACTIONS(1008), + [anon_sym_match] = ACTIONS(1008), + [anon_sym_mod] = ACTIONS(1008), + [anon_sym_pub] = ACTIONS(1008), + [anon_sym_return] = ACTIONS(1008), + [anon_sym_static] = ACTIONS(1008), + [anon_sym_struct] = ACTIONS(1008), + [anon_sym_trait] = ACTIONS(1008), + [anon_sym_type] = ACTIONS(1008), + [anon_sym_union] = ACTIONS(1008), + [anon_sym_unsafe] = ACTIONS(1008), + [anon_sym_use] = ACTIONS(1008), + [anon_sym_where] = ACTIONS(1008), + [anon_sym_while] = ACTIONS(1008), + [sym_mutable_specifier] = ACTIONS(1008), + [sym_integer_literal] = ACTIONS(1010), + [aux_sym_string_literal_token1] = ACTIONS(1010), + [sym_char_literal] = ACTIONS(1010), + [anon_sym_true] = ACTIONS(1008), + [anon_sym_false] = ACTIONS(1008), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1008), + [sym_super] = ACTIONS(1008), + [sym_crate] = ACTIONS(1008), + [sym__raw_string_literal_start] = ACTIONS(1010), + [sym_float_literal] = ACTIONS(1010), + }, + [242] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1705), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_let_condition] = STATE(2846), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(208), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(242), + [sym_block_comment] = STATE(242), + [sym_identifier] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), [anon_sym_DASH] = ACTIONS(894), [anon_sym_BANG] = ACTIONS(894), [anon_sym_AMP] = ACTIONS(896), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(898), + [anon_sym_COLON_COLON] = ACTIONS(486), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(512), [anon_sym_break] = ACTIONS(514), [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), + [anon_sym_default] = ACTIONS(492), [anon_sym_for] = ACTIONS(362), [anon_sym_gen] = ACTIONS(518), [anon_sym_if] = ACTIONS(366), @@ -45085,10 +45047,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(370), [anon_sym_return] = ACTIONS(520), [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), + [anon_sym_union] = ACTIONS(492), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), + [anon_sym_raw] = ACTIONS(492), [anon_sym_yield] = ACTIONS(524), [anon_sym_move] = ACTIONS(526), [anon_sym_try] = ACTIONS(378), @@ -45099,178 +45061,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(241)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1963), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(241), - [sym_block_comment] = STATE(241), - [aux_sym_tuple_expression_repeat1] = STATE(241), - [sym_identifier] = ACTIONS(1218), - [anon_sym_LPAREN] = ACTIONS(1221), - [anon_sym_RPAREN] = ACTIONS(1224), - [anon_sym_LBRACK] = ACTIONS(1226), - [anon_sym_LBRACE] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1232), - [anon_sym_u8] = ACTIONS(1235), - [anon_sym_i8] = ACTIONS(1235), - [anon_sym_u16] = ACTIONS(1235), - [anon_sym_i16] = ACTIONS(1235), - [anon_sym_u32] = ACTIONS(1235), - [anon_sym_i32] = ACTIONS(1235), - [anon_sym_u64] = ACTIONS(1235), - [anon_sym_i64] = ACTIONS(1235), - [anon_sym_u128] = ACTIONS(1235), - [anon_sym_i128] = ACTIONS(1235), - [anon_sym_isize] = ACTIONS(1235), - [anon_sym_usize] = ACTIONS(1235), - [anon_sym_f32] = ACTIONS(1235), - [anon_sym_f64] = ACTIONS(1235), - [anon_sym_bool] = ACTIONS(1235), - [anon_sym_str] = ACTIONS(1235), - [anon_sym_char] = ACTIONS(1235), - [anon_sym_DASH] = ACTIONS(1232), - [anon_sym_BANG] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(1238), - [anon_sym_PIPE] = ACTIONS(1241), - [anon_sym_LT] = ACTIONS(1244), - [anon_sym_DOT_DOT] = ACTIONS(1247), - [anon_sym_COLON_COLON] = ACTIONS(1250), - [anon_sym_SQUOTE] = ACTIONS(1253), - [anon_sym_async] = ACTIONS(1256), - [anon_sym_break] = ACTIONS(1259), - [anon_sym_const] = ACTIONS(1262), - [anon_sym_continue] = ACTIONS(1265), - [anon_sym_default] = ACTIONS(1268), - [anon_sym_for] = ACTIONS(1271), - [anon_sym_gen] = ACTIONS(1274), - [anon_sym_if] = ACTIONS(1277), - [anon_sym_loop] = ACTIONS(1280), - [anon_sym_match] = ACTIONS(1283), - [anon_sym_return] = ACTIONS(1286), - [anon_sym_static] = ACTIONS(1289), - [anon_sym_union] = ACTIONS(1268), - [anon_sym_unsafe] = ACTIONS(1292), - [anon_sym_while] = ACTIONS(1295), - [anon_sym_raw] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1298), - [anon_sym_move] = ACTIONS(1301), - [anon_sym_try] = ACTIONS(1304), - [sym_integer_literal] = ACTIONS(1307), - [aux_sym_string_literal_token1] = ACTIONS(1310), - [sym_char_literal] = ACTIONS(1307), - [anon_sym_true] = ACTIONS(1313), - [anon_sym_false] = ACTIONS(1313), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1316), - [sym_super] = ACTIONS(1319), - [sym_crate] = ACTIONS(1319), - [sym_metavariable] = ACTIONS(1322), - [sym__raw_string_literal_start] = ACTIONS(1325), - [sym_float_literal] = ACTIONS(1307), - }, - [STATE(242)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1732), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1435), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(242), - [sym_block_comment] = STATE(242), + [243] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1752), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1453), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(243), + [sym_block_comment] = STATE(243), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -45298,10 +45145,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(1138), + [anon_sym__] = ACTIONS(1046), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1142), + [anon_sym_DASH_GT] = ACTIONS(1048), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), @@ -45336,56 +45183,171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(243)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1736), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1460), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(243), - [sym_block_comment] = STATE(243), + [244] = { + [sym_line_comment] = STATE(244), + [sym_block_comment] = STATE(244), + [sym_identifier] = ACTIONS(1336), + [anon_sym_SEMI] = ACTIONS(1338), + [anon_sym_LPAREN] = ACTIONS(1338), + [anon_sym_RPAREN] = ACTIONS(1338), + [anon_sym_LBRACK] = ACTIONS(1338), + [anon_sym_RBRACK] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1338), + [anon_sym_RBRACE] = ACTIONS(1338), + [anon_sym_EQ_GT] = ACTIONS(1338), + [anon_sym_COLON] = ACTIONS(1336), + [anon_sym_DOLLAR] = ACTIONS(1338), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_QMARK] = ACTIONS(1338), + [anon_sym_u8] = ACTIONS(1336), + [anon_sym_i8] = ACTIONS(1336), + [anon_sym_u16] = ACTIONS(1336), + [anon_sym_i16] = ACTIONS(1336), + [anon_sym_u32] = ACTIONS(1336), + [anon_sym_i32] = ACTIONS(1336), + [anon_sym_u64] = ACTIONS(1336), + [anon_sym_i64] = ACTIONS(1336), + [anon_sym_u128] = ACTIONS(1336), + [anon_sym_i128] = ACTIONS(1336), + [anon_sym_isize] = ACTIONS(1336), + [anon_sym_usize] = ACTIONS(1336), + [anon_sym_f32] = ACTIONS(1336), + [anon_sym_f64] = ACTIONS(1336), + [anon_sym_bool] = ACTIONS(1336), + [anon_sym_str] = ACTIONS(1336), + [anon_sym_char] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_SLASH] = ACTIONS(1336), + [anon_sym_PERCENT] = ACTIONS(1336), + [anon_sym_CARET] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_PIPE] = ACTIONS(1336), + [anon_sym_AMP_AMP] = ACTIONS(1338), + [anon_sym_PIPE_PIPE] = ACTIONS(1338), + [anon_sym_LT_LT] = ACTIONS(1336), + [anon_sym_GT_GT] = ACTIONS(1336), + [anon_sym_PLUS_EQ] = ACTIONS(1338), + [anon_sym_DASH_EQ] = ACTIONS(1338), + [anon_sym_STAR_EQ] = ACTIONS(1338), + [anon_sym_SLASH_EQ] = ACTIONS(1338), + [anon_sym_PERCENT_EQ] = ACTIONS(1338), + [anon_sym_CARET_EQ] = ACTIONS(1338), + [anon_sym_AMP_EQ] = ACTIONS(1338), + [anon_sym_PIPE_EQ] = ACTIONS(1338), + [anon_sym_LT_LT_EQ] = ACTIONS(1338), + [anon_sym_GT_GT_EQ] = ACTIONS(1338), + [anon_sym_EQ] = ACTIONS(1336), + [anon_sym_EQ_EQ] = ACTIONS(1338), + [anon_sym_BANG_EQ] = ACTIONS(1338), + [anon_sym_GT] = ACTIONS(1336), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT_EQ] = ACTIONS(1338), + [anon_sym_LT_EQ] = ACTIONS(1338), + [anon_sym_AT] = ACTIONS(1338), + [anon_sym__] = ACTIONS(1336), + [anon_sym_DOT] = ACTIONS(1336), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1338), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1338), + [anon_sym_COMMA] = ACTIONS(1338), + [anon_sym_COLON_COLON] = ACTIONS(1338), + [anon_sym_DASH_GT] = ACTIONS(1338), + [anon_sym_POUND] = ACTIONS(1338), + [anon_sym_SQUOTE] = ACTIONS(1336), + [anon_sym_as] = ACTIONS(1336), + [anon_sym_async] = ACTIONS(1336), + [anon_sym_await] = ACTIONS(1336), + [anon_sym_break] = ACTIONS(1336), + [anon_sym_const] = ACTIONS(1336), + [anon_sym_continue] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1336), + [anon_sym_enum] = ACTIONS(1336), + [anon_sym_fn] = ACTIONS(1336), + [anon_sym_for] = ACTIONS(1336), + [anon_sym_gen] = ACTIONS(1336), + [anon_sym_if] = ACTIONS(1336), + [anon_sym_impl] = ACTIONS(1336), + [anon_sym_let] = ACTIONS(1336), + [anon_sym_loop] = ACTIONS(1336), + [anon_sym_match] = ACTIONS(1336), + [anon_sym_mod] = ACTIONS(1336), + [anon_sym_pub] = ACTIONS(1336), + [anon_sym_return] = ACTIONS(1336), + [anon_sym_static] = ACTIONS(1336), + [anon_sym_struct] = ACTIONS(1336), + [anon_sym_trait] = ACTIONS(1336), + [anon_sym_type] = ACTIONS(1336), + [anon_sym_union] = ACTIONS(1336), + [anon_sym_unsafe] = ACTIONS(1336), + [anon_sym_use] = ACTIONS(1336), + [anon_sym_where] = ACTIONS(1336), + [anon_sym_while] = ACTIONS(1336), + [sym_mutable_specifier] = ACTIONS(1336), + [sym_integer_literal] = ACTIONS(1338), + [aux_sym_string_literal_token1] = ACTIONS(1338), + [sym_char_literal] = ACTIONS(1338), + [anon_sym_true] = ACTIONS(1336), + [anon_sym_false] = ACTIONS(1336), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1336), + [sym_super] = ACTIONS(1336), + [sym_crate] = ACTIONS(1336), + [sym__raw_string_literal_start] = ACTIONS(1338), + [sym_float_literal] = ACTIONS(1338), + }, + [245] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1564), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1465), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(245), + [sym_block_comment] = STATE(245), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -45413,10 +45375,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(1146), + [anon_sym__] = ACTIONS(1144), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1148), + [anon_sym_DASH_GT] = ACTIONS(1146), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), @@ -45451,60 +45413,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(244)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1864), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(244), - [sym_block_comment] = STATE(244), - [aux_sym_tuple_expression_repeat1] = STATE(241), + [246] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1867), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(246), + [sym_block_comment] = STATE(246), + [aux_sym_tuple_expression_repeat1] = STATE(248), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1328), + [anon_sym_RPAREN] = ACTIONS(1340), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), @@ -45566,290 +45528,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(245)] = { - [sym_attribute_item] = STATE(425), - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_self_parameter] = STATE(3064), - [sym_variadic_parameter] = STATE(3064), - [sym_parameter] = STATE(3064), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2716), - [sym_bracketed_type] = STATE(3702), - [sym_lifetime] = STATE(3065), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3434), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2533), - [sym_scoped_identifier] = STATE(2200), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2584), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), - [sym_line_comment] = STATE(245), - [sym_block_comment] = STATE(245), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1162), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_RPAREN] = ACTIONS(1330), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1168), - [anon_sym_i8] = ACTIONS(1168), - [anon_sym_u16] = ACTIONS(1168), - [anon_sym_i16] = ACTIONS(1168), - [anon_sym_u32] = ACTIONS(1168), - [anon_sym_i32] = ACTIONS(1168), - [anon_sym_u64] = ACTIONS(1168), - [anon_sym_i64] = ACTIONS(1168), - [anon_sym_u128] = ACTIONS(1168), - [anon_sym_i128] = ACTIONS(1168), - [anon_sym_isize] = ACTIONS(1168), - [anon_sym_usize] = ACTIONS(1168), - [anon_sym_f32] = ACTIONS(1168), - [anon_sym_f64] = ACTIONS(1168), - [anon_sym_bool] = ACTIONS(1168), - [anon_sym_str] = ACTIONS(1168), - [anon_sym_char] = ACTIONS(1168), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1170), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1172), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1084), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COMMA] = ACTIONS(1332), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym_POUND] = ACTIONS(1092), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1178), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1180), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1180), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1118), - [anon_sym_raw] = ACTIONS(1180), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1182), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(246)] = { - [sym_line_comment] = STATE(246), - [sym_block_comment] = STATE(246), - [sym_identifier] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(964), - [anon_sym_LPAREN] = ACTIONS(964), - [anon_sym_RPAREN] = ACTIONS(964), - [anon_sym_LBRACK] = ACTIONS(964), - [anon_sym_RBRACK] = ACTIONS(964), - [anon_sym_LBRACE] = ACTIONS(964), - [anon_sym_RBRACE] = ACTIONS(964), - [anon_sym_EQ_GT] = ACTIONS(964), - [anon_sym_COLON] = ACTIONS(962), - [anon_sym_DOLLAR] = ACTIONS(964), - [anon_sym_PLUS] = ACTIONS(962), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_QMARK] = ACTIONS(964), - [anon_sym_u8] = ACTIONS(962), - [anon_sym_i8] = ACTIONS(962), - [anon_sym_u16] = ACTIONS(962), - [anon_sym_i16] = ACTIONS(962), - [anon_sym_u32] = ACTIONS(962), - [anon_sym_i32] = ACTIONS(962), - [anon_sym_u64] = ACTIONS(962), - [anon_sym_i64] = ACTIONS(962), - [anon_sym_u128] = ACTIONS(962), - [anon_sym_i128] = ACTIONS(962), - [anon_sym_isize] = ACTIONS(962), - [anon_sym_usize] = ACTIONS(962), - [anon_sym_f32] = ACTIONS(962), - [anon_sym_f64] = ACTIONS(962), - [anon_sym_bool] = ACTIONS(962), - [anon_sym_str] = ACTIONS(962), - [anon_sym_char] = ACTIONS(962), - [anon_sym_DASH] = ACTIONS(962), - [anon_sym_SLASH] = ACTIONS(962), - [anon_sym_PERCENT] = ACTIONS(962), - [anon_sym_CARET] = ACTIONS(962), - [anon_sym_BANG] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_PIPE] = ACTIONS(962), - [anon_sym_AMP_AMP] = ACTIONS(964), - [anon_sym_PIPE_PIPE] = ACTIONS(964), - [anon_sym_LT_LT] = ACTIONS(962), - [anon_sym_GT_GT] = ACTIONS(962), - [anon_sym_PLUS_EQ] = ACTIONS(964), - [anon_sym_DASH_EQ] = ACTIONS(964), - [anon_sym_STAR_EQ] = ACTIONS(964), - [anon_sym_SLASH_EQ] = ACTIONS(964), - [anon_sym_PERCENT_EQ] = ACTIONS(964), - [anon_sym_CARET_EQ] = ACTIONS(964), - [anon_sym_AMP_EQ] = ACTIONS(964), - [anon_sym_PIPE_EQ] = ACTIONS(964), - [anon_sym_LT_LT_EQ] = ACTIONS(964), - [anon_sym_GT_GT_EQ] = ACTIONS(964), - [anon_sym_EQ] = ACTIONS(962), - [anon_sym_EQ_EQ] = ACTIONS(964), - [anon_sym_BANG_EQ] = ACTIONS(964), - [anon_sym_GT] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(962), - [anon_sym_GT_EQ] = ACTIONS(964), - [anon_sym_LT_EQ] = ACTIONS(964), - [anon_sym_AT] = ACTIONS(964), - [anon_sym__] = ACTIONS(962), - [anon_sym_DOT] = ACTIONS(962), - [anon_sym_DOT_DOT] = ACTIONS(962), - [anon_sym_DOT_DOT_DOT] = ACTIONS(964), - [anon_sym_DOT_DOT_EQ] = ACTIONS(964), - [anon_sym_COMMA] = ACTIONS(964), - [anon_sym_COLON_COLON] = ACTIONS(964), - [anon_sym_DASH_GT] = ACTIONS(964), - [anon_sym_POUND] = ACTIONS(964), - [anon_sym_SQUOTE] = ACTIONS(962), - [anon_sym_as] = ACTIONS(962), - [anon_sym_async] = ACTIONS(962), - [anon_sym_await] = ACTIONS(962), - [anon_sym_break] = ACTIONS(962), - [anon_sym_const] = ACTIONS(962), - [anon_sym_continue] = ACTIONS(962), - [anon_sym_default] = ACTIONS(962), - [anon_sym_enum] = ACTIONS(962), - [anon_sym_fn] = ACTIONS(962), - [anon_sym_for] = ACTIONS(962), - [anon_sym_gen] = ACTIONS(962), - [anon_sym_if] = ACTIONS(962), - [anon_sym_impl] = ACTIONS(962), - [anon_sym_let] = ACTIONS(962), - [anon_sym_loop] = ACTIONS(962), - [anon_sym_match] = ACTIONS(962), - [anon_sym_mod] = ACTIONS(962), - [anon_sym_pub] = ACTIONS(962), - [anon_sym_return] = ACTIONS(962), - [anon_sym_static] = ACTIONS(962), - [anon_sym_struct] = ACTIONS(962), - [anon_sym_trait] = ACTIONS(962), - [anon_sym_type] = ACTIONS(962), - [anon_sym_union] = ACTIONS(962), - [anon_sym_unsafe] = ACTIONS(962), - [anon_sym_use] = ACTIONS(962), - [anon_sym_where] = ACTIONS(962), - [anon_sym_while] = ACTIONS(962), - [sym_mutable_specifier] = ACTIONS(962), - [sym_integer_literal] = ACTIONS(964), - [aux_sym_string_literal_token1] = ACTIONS(964), - [sym_char_literal] = ACTIONS(964), - [anon_sym_true] = ACTIONS(962), - [anon_sym_false] = ACTIONS(962), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(962), - [sym_super] = ACTIONS(962), - [sym_crate] = ACTIONS(962), - [sym__raw_string_literal_start] = ACTIONS(964), - [sym_float_literal] = ACTIONS(964), - }, - [STATE(247)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1805), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [247] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1931), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), [sym_line_comment] = STATE(247), [sym_block_comment] = STATE(247), - [aux_sym_tuple_expression_repeat1] = STATE(221), + [aux_sym_tuple_expression_repeat1] = STATE(213), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1334), + [anon_sym_RPAREN] = ACTIONS(1342), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), @@ -45911,61 +45643,747 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(248)] = { - [sym_bracketed_type] = STATE(3669), - [sym_generic_function] = STATE(1894), - [sym_generic_type_with_turbofish] = STATE(3057), - [sym__expression_except_range] = STATE(1672), - [sym__expression] = STATE(1783), - [sym_macro_invocation] = STATE(1901), - [sym_scoped_identifier] = STATE(1644), - [sym_scoped_type_identifier_in_expression_position] = STATE(3253), - [sym_range_expression] = STATE(1897), - [sym_unary_expression] = STATE(1894), - [sym_try_expression] = STATE(1894), - [sym_reference_expression] = STATE(1894), - [sym_binary_expression] = STATE(1894), - [sym_assignment_expression] = STATE(1894), - [sym_compound_assignment_expr] = STATE(1894), - [sym_type_cast_expression] = STATE(1894), - [sym_return_expression] = STATE(1894), - [sym_yield_expression] = STATE(1894), - [sym_call_expression] = STATE(1894), - [sym_array_expression] = STATE(1894), - [sym_parenthesized_expression] = STATE(1894), - [sym_tuple_expression] = STATE(1894), - [sym_unit_expression] = STATE(1894), - [sym_struct_expression] = STATE(1894), - [sym_if_expression] = STATE(1894), - [sym_match_expression] = STATE(1894), - [sym_while_expression] = STATE(1894), - [sym_loop_expression] = STATE(1894), - [sym_for_expression] = STATE(1894), - [sym_const_block] = STATE(1894), - [sym_closure_expression] = STATE(1894), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3777), - [sym_break_expression] = STATE(1894), - [sym_continue_expression] = STATE(1894), - [sym_index_expression] = STATE(1894), - [sym_await_expression] = STATE(1894), - [sym_field_expression] = STATE(1674), - [sym_unsafe_block] = STATE(1894), - [sym_async_block] = STATE(1894), - [sym_gen_block] = STATE(1894), - [sym_try_block] = STATE(1894), - [sym_block] = STATE(1896), - [sym__literal] = STATE(1894), - [sym_string_literal] = STATE(1768), - [sym_raw_string_literal] = STATE(1768), - [sym_boolean_literal] = STATE(1768), + [248] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1801), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), [sym_line_comment] = STATE(248), [sym_block_comment] = STATE(248), + [aux_sym_tuple_expression_repeat1] = STATE(213), + [sym_identifier] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1050), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [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(356), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(360), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(364), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_raw] = ACTIONS(360), + [anon_sym_yield] = ACTIONS(93), + [anon_sym_move] = ACTIONS(95), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(111), + [sym_super] = ACTIONS(113), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(117), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [249] = { + [sym_line_comment] = STATE(249), + [sym_block_comment] = STATE(249), + [sym_identifier] = ACTIONS(1042), + [anon_sym_SEMI] = ACTIONS(1044), + [anon_sym_LPAREN] = ACTIONS(1044), + [anon_sym_RPAREN] = ACTIONS(1044), + [anon_sym_LBRACK] = ACTIONS(1044), + [anon_sym_RBRACK] = ACTIONS(1044), + [anon_sym_LBRACE] = ACTIONS(1044), + [anon_sym_RBRACE] = ACTIONS(1044), + [anon_sym_EQ_GT] = ACTIONS(1044), + [anon_sym_COLON] = ACTIONS(1042), + [anon_sym_DOLLAR] = ACTIONS(1044), + [anon_sym_PLUS] = ACTIONS(1042), + [anon_sym_STAR] = ACTIONS(1042), + [anon_sym_QMARK] = ACTIONS(1044), + [anon_sym_u8] = ACTIONS(1042), + [anon_sym_i8] = ACTIONS(1042), + [anon_sym_u16] = ACTIONS(1042), + [anon_sym_i16] = ACTIONS(1042), + [anon_sym_u32] = ACTIONS(1042), + [anon_sym_i32] = ACTIONS(1042), + [anon_sym_u64] = ACTIONS(1042), + [anon_sym_i64] = ACTIONS(1042), + [anon_sym_u128] = ACTIONS(1042), + [anon_sym_i128] = ACTIONS(1042), + [anon_sym_isize] = ACTIONS(1042), + [anon_sym_usize] = ACTIONS(1042), + [anon_sym_f32] = ACTIONS(1042), + [anon_sym_f64] = ACTIONS(1042), + [anon_sym_bool] = ACTIONS(1042), + [anon_sym_str] = ACTIONS(1042), + [anon_sym_char] = ACTIONS(1042), + [anon_sym_DASH] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1042), + [anon_sym_PERCENT] = ACTIONS(1042), + [anon_sym_CARET] = ACTIONS(1042), + [anon_sym_BANG] = ACTIONS(1042), + [anon_sym_AMP] = ACTIONS(1042), + [anon_sym_PIPE] = ACTIONS(1042), + [anon_sym_AMP_AMP] = ACTIONS(1044), + [anon_sym_PIPE_PIPE] = ACTIONS(1044), + [anon_sym_LT_LT] = ACTIONS(1042), + [anon_sym_GT_GT] = ACTIONS(1042), + [anon_sym_PLUS_EQ] = ACTIONS(1044), + [anon_sym_DASH_EQ] = ACTIONS(1044), + [anon_sym_STAR_EQ] = ACTIONS(1044), + [anon_sym_SLASH_EQ] = ACTIONS(1044), + [anon_sym_PERCENT_EQ] = ACTIONS(1044), + [anon_sym_CARET_EQ] = ACTIONS(1044), + [anon_sym_AMP_EQ] = ACTIONS(1044), + [anon_sym_PIPE_EQ] = ACTIONS(1044), + [anon_sym_LT_LT_EQ] = ACTIONS(1044), + [anon_sym_GT_GT_EQ] = ACTIONS(1044), + [anon_sym_EQ] = ACTIONS(1042), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_GT] = ACTIONS(1042), + [anon_sym_LT] = ACTIONS(1042), + [anon_sym_GT_EQ] = ACTIONS(1044), + [anon_sym_LT_EQ] = ACTIONS(1044), + [anon_sym_AT] = ACTIONS(1044), + [anon_sym__] = ACTIONS(1042), + [anon_sym_DOT] = ACTIONS(1042), + [anon_sym_DOT_DOT] = ACTIONS(1042), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1044), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1044), + [anon_sym_COMMA] = ACTIONS(1044), + [anon_sym_COLON_COLON] = ACTIONS(1044), + [anon_sym_DASH_GT] = ACTIONS(1044), + [anon_sym_POUND] = ACTIONS(1044), + [anon_sym_SQUOTE] = ACTIONS(1042), + [anon_sym_as] = ACTIONS(1042), + [anon_sym_async] = ACTIONS(1042), + [anon_sym_await] = ACTIONS(1042), + [anon_sym_break] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [anon_sym_continue] = ACTIONS(1042), + [anon_sym_default] = ACTIONS(1042), + [anon_sym_enum] = ACTIONS(1042), + [anon_sym_fn] = ACTIONS(1042), + [anon_sym_for] = ACTIONS(1042), + [anon_sym_gen] = ACTIONS(1042), + [anon_sym_if] = ACTIONS(1042), + [anon_sym_impl] = ACTIONS(1042), + [anon_sym_let] = ACTIONS(1042), + [anon_sym_loop] = ACTIONS(1042), + [anon_sym_match] = ACTIONS(1042), + [anon_sym_mod] = ACTIONS(1042), + [anon_sym_pub] = ACTIONS(1042), + [anon_sym_return] = ACTIONS(1042), + [anon_sym_static] = ACTIONS(1042), + [anon_sym_struct] = ACTIONS(1042), + [anon_sym_trait] = ACTIONS(1042), + [anon_sym_type] = ACTIONS(1042), + [anon_sym_union] = ACTIONS(1042), + [anon_sym_unsafe] = ACTIONS(1042), + [anon_sym_use] = ACTIONS(1042), + [anon_sym_where] = ACTIONS(1042), + [anon_sym_while] = ACTIONS(1042), + [sym_mutable_specifier] = ACTIONS(1042), + [sym_integer_literal] = ACTIONS(1044), + [aux_sym_string_literal_token1] = ACTIONS(1044), + [sym_char_literal] = ACTIONS(1044), + [anon_sym_true] = ACTIONS(1042), + [anon_sym_false] = ACTIONS(1042), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1042), + [sym_super] = ACTIONS(1042), + [sym_crate] = ACTIONS(1042), + [sym__raw_string_literal_start] = ACTIONS(1044), + [sym_float_literal] = ACTIONS(1044), + }, + [250] = { + [sym_attribute_item] = STATE(395), + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_self_parameter] = STATE(3284), + [sym_variadic_parameter] = STATE(3284), + [sym_parameter] = STATE(3284), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(3066), + [sym_bracketed_type] = STATE(3684), + [sym_lifetime] = STATE(3061), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3340), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2527), + [sym_scoped_identifier] = STATE(2319), + [sym_scoped_type_identifier] = STATE(2206), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(3283), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), + [sym_line_comment] = STATE(250), + [sym_block_comment] = STATE(250), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1052), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_RPAREN] = ACTIONS(1344), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1064), + [anon_sym_i8] = ACTIONS(1064), + [anon_sym_u16] = ACTIONS(1064), + [anon_sym_i16] = ACTIONS(1064), + [anon_sym_u32] = ACTIONS(1064), + [anon_sym_i32] = ACTIONS(1064), + [anon_sym_u64] = ACTIONS(1064), + [anon_sym_i64] = ACTIONS(1064), + [anon_sym_u128] = ACTIONS(1064), + [anon_sym_i128] = ACTIONS(1064), + [anon_sym_isize] = ACTIONS(1064), + [anon_sym_usize] = ACTIONS(1064), + [anon_sym_f32] = ACTIONS(1064), + [anon_sym_f64] = ACTIONS(1064), + [anon_sym_bool] = ACTIONS(1064), + [anon_sym_str] = ACTIONS(1064), + [anon_sym_char] = ACTIONS(1064), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1070), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1346), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1078), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1084), + [anon_sym_POUND] = ACTIONS(1086), + [anon_sym_SQUOTE] = ACTIONS(1088), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1092), + [anon_sym_default] = ACTIONS(1094), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1100), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1100), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_ref] = ACTIONS(1108), + [anon_sym_dyn] = ACTIONS(1110), + [sym_mutable_specifier] = ACTIONS(1112), + [anon_sym_raw] = ACTIONS(1100), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1120), + [sym_super] = ACTIONS(1122), + [sym_crate] = ACTIONS(1122), + [sym_metavariable] = ACTIONS(1124), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [251] = { + [sym_attribute_item] = STATE(395), + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_self_parameter] = STATE(3284), + [sym_variadic_parameter] = STATE(3284), + [sym_parameter] = STATE(3284), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(3066), + [sym_bracketed_type] = STATE(3684), + [sym_lifetime] = STATE(3061), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3340), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2527), + [sym_scoped_identifier] = STATE(2319), + [sym_scoped_type_identifier] = STATE(2206), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(3283), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), + [sym_line_comment] = STATE(251), + [sym_block_comment] = STATE(251), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1052), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_RPAREN] = ACTIONS(1348), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1064), + [anon_sym_i8] = ACTIONS(1064), + [anon_sym_u16] = ACTIONS(1064), + [anon_sym_i16] = ACTIONS(1064), + [anon_sym_u32] = ACTIONS(1064), + [anon_sym_i32] = ACTIONS(1064), + [anon_sym_u64] = ACTIONS(1064), + [anon_sym_i64] = ACTIONS(1064), + [anon_sym_u128] = ACTIONS(1064), + [anon_sym_i128] = ACTIONS(1064), + [anon_sym_isize] = ACTIONS(1064), + [anon_sym_usize] = ACTIONS(1064), + [anon_sym_f32] = ACTIONS(1064), + [anon_sym_f64] = ACTIONS(1064), + [anon_sym_bool] = ACTIONS(1064), + [anon_sym_str] = ACTIONS(1064), + [anon_sym_char] = ACTIONS(1064), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1070), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1346), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1078), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1084), + [anon_sym_POUND] = ACTIONS(1086), + [anon_sym_SQUOTE] = ACTIONS(1088), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1092), + [anon_sym_default] = ACTIONS(1094), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1100), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1100), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_ref] = ACTIONS(1108), + [anon_sym_dyn] = ACTIONS(1110), + [sym_mutable_specifier] = ACTIONS(1112), + [anon_sym_raw] = ACTIONS(1100), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1120), + [sym_super] = ACTIONS(1122), + [sym_crate] = ACTIONS(1122), + [sym_metavariable] = ACTIONS(1124), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [252] = { + [sym_attribute_item] = STATE(395), + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_self_parameter] = STATE(3284), + [sym_variadic_parameter] = STATE(3284), + [sym_parameter] = STATE(3284), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(3066), + [sym_bracketed_type] = STATE(3684), + [sym_lifetime] = STATE(3061), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3340), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2527), + [sym_scoped_identifier] = STATE(2319), + [sym_scoped_type_identifier] = STATE(2206), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(3283), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), + [sym_line_comment] = STATE(252), + [sym_block_comment] = STATE(252), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1052), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_RPAREN] = ACTIONS(1350), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1064), + [anon_sym_i8] = ACTIONS(1064), + [anon_sym_u16] = ACTIONS(1064), + [anon_sym_i16] = ACTIONS(1064), + [anon_sym_u32] = ACTIONS(1064), + [anon_sym_i32] = ACTIONS(1064), + [anon_sym_u64] = ACTIONS(1064), + [anon_sym_i64] = ACTIONS(1064), + [anon_sym_u128] = ACTIONS(1064), + [anon_sym_i128] = ACTIONS(1064), + [anon_sym_isize] = ACTIONS(1064), + [anon_sym_usize] = ACTIONS(1064), + [anon_sym_f32] = ACTIONS(1064), + [anon_sym_f64] = ACTIONS(1064), + [anon_sym_bool] = ACTIONS(1064), + [anon_sym_str] = ACTIONS(1064), + [anon_sym_char] = ACTIONS(1064), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1070), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1346), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1078), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1084), + [anon_sym_POUND] = ACTIONS(1086), + [anon_sym_SQUOTE] = ACTIONS(1088), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1092), + [anon_sym_default] = ACTIONS(1094), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1100), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1100), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_ref] = ACTIONS(1108), + [anon_sym_dyn] = ACTIONS(1110), + [sym_mutable_specifier] = ACTIONS(1112), + [anon_sym_raw] = ACTIONS(1100), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1120), + [sym_super] = ACTIONS(1122), + [sym_crate] = ACTIONS(1122), + [sym_metavariable] = ACTIONS(1124), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [253] = { + [sym_attribute_item] = STATE(395), + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_self_parameter] = STATE(3284), + [sym_variadic_parameter] = STATE(3284), + [sym_parameter] = STATE(3284), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(3066), + [sym_bracketed_type] = STATE(3684), + [sym_lifetime] = STATE(3061), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3340), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2527), + [sym_scoped_identifier] = STATE(2319), + [sym_scoped_type_identifier] = STATE(2206), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(3283), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), + [sym_line_comment] = STATE(253), + [sym_block_comment] = STATE(253), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1052), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_RPAREN] = ACTIONS(1352), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1064), + [anon_sym_i8] = ACTIONS(1064), + [anon_sym_u16] = ACTIONS(1064), + [anon_sym_i16] = ACTIONS(1064), + [anon_sym_u32] = ACTIONS(1064), + [anon_sym_i32] = ACTIONS(1064), + [anon_sym_u64] = ACTIONS(1064), + [anon_sym_i64] = ACTIONS(1064), + [anon_sym_u128] = ACTIONS(1064), + [anon_sym_i128] = ACTIONS(1064), + [anon_sym_isize] = ACTIONS(1064), + [anon_sym_usize] = ACTIONS(1064), + [anon_sym_f32] = ACTIONS(1064), + [anon_sym_f64] = ACTIONS(1064), + [anon_sym_bool] = ACTIONS(1064), + [anon_sym_str] = ACTIONS(1064), + [anon_sym_char] = ACTIONS(1064), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1070), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1346), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1078), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1084), + [anon_sym_POUND] = ACTIONS(1086), + [anon_sym_SQUOTE] = ACTIONS(1088), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1092), + [anon_sym_default] = ACTIONS(1094), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1100), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1100), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_ref] = ACTIONS(1108), + [anon_sym_dyn] = ACTIONS(1110), + [sym_mutable_specifier] = ACTIONS(1112), + [anon_sym_raw] = ACTIONS(1100), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1120), + [sym_super] = ACTIONS(1122), + [sym_crate] = ACTIONS(1122), + [sym_metavariable] = ACTIONS(1124), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [254] = { + [sym_bracketed_type] = STATE(3659), + [sym_generic_function] = STATE(1714), + [sym_generic_type_with_turbofish] = STATE(2899), + [sym__expression_except_range] = STATE(1670), + [sym__expression] = STATE(1898), + [sym_macro_invocation] = STATE(1893), + [sym_scoped_identifier] = STATE(1650), + [sym_scoped_type_identifier_in_expression_position] = STATE(3266), + [sym_range_expression] = STATE(1889), + [sym_unary_expression] = STATE(1714), + [sym_try_expression] = STATE(1714), + [sym_reference_expression] = STATE(1714), + [sym_binary_expression] = STATE(1714), + [sym_assignment_expression] = STATE(1714), + [sym_compound_assignment_expr] = STATE(1714), + [sym_type_cast_expression] = STATE(1714), + [sym_return_expression] = STATE(1714), + [sym_yield_expression] = STATE(1714), + [sym_call_expression] = STATE(1714), + [sym_array_expression] = STATE(1714), + [sym_parenthesized_expression] = STATE(1714), + [sym_tuple_expression] = STATE(1714), + [sym_unit_expression] = STATE(1714), + [sym_struct_expression] = STATE(1714), + [sym_if_expression] = STATE(1714), + [sym_match_expression] = STATE(1714), + [sym_while_expression] = STATE(1714), + [sym_loop_expression] = STATE(1714), + [sym_for_expression] = STATE(1714), + [sym_const_block] = STATE(1714), + [sym_closure_expression] = STATE(1714), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1714), + [sym_continue_expression] = STATE(1714), + [sym_index_expression] = STATE(1714), + [sym_await_expression] = STATE(1714), + [sym_field_expression] = STATE(1672), + [sym_unsafe_block] = STATE(1714), + [sym_async_block] = STATE(1714), + [sym_gen_block] = STATE(1714), + [sym_try_block] = STATE(1714), + [sym_block] = STATE(1714), + [sym__literal] = STATE(1714), + [sym_string_literal] = STATE(1766), + [sym_raw_string_literal] = STATE(1766), + [sym_boolean_literal] = STATE(1766), + [sym_line_comment] = STATE(254), + [sym_block_comment] = STATE(254), [sym_identifier] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(502), + [anon_sym_LPAREN] = ACTIONS(470), + [anon_sym_LBRACK] = ACTIONS(472), [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_STAR] = ACTIONS(904), + [anon_sym_STAR] = ACTIONS(906), [anon_sym_u8] = ACTIONS(416), [anon_sym_i8] = ACTIONS(416), [anon_sym_u16] = ACTIONS(416), @@ -45983,15 +46401,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(416), [anon_sym_str] = ACTIONS(416), [anon_sym_char] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(418), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), + [anon_sym_DASH] = ACTIONS(906), + [anon_sym_BANG] = ACTIONS(906), + [anon_sym_AMP] = ACTIONS(908), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1336), - [anon_sym_DOT_DOT] = ACTIONS(1160), + [anon_sym_DOT_DOT] = ACTIONS(910), [anon_sym_COLON_COLON] = ACTIONS(420), - [anon_sym_DASH_GT] = ACTIONS(1338), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(422), [anon_sym_break] = ACTIONS(424), @@ -46008,7 +46424,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(430), [anon_sym_unsafe] = ACTIONS(446), [anon_sym_while] = ACTIONS(448), - [anon_sym_raw] = ACTIONS(430), + [sym_mutable_specifier] = ACTIONS(1354), + [anon_sym_raw] = ACTIONS(1356), [anon_sym_yield] = ACTIONS(450), [anon_sym_move] = ACTIONS(452), [anon_sym_try] = ACTIONS(454), @@ -46026,286 +46443,284 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(468), [sym_float_literal] = ACTIONS(456), }, - [STATE(249)] = { - [sym_attribute_item] = STATE(418), - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_self_parameter] = STATE(2891), - [sym_variadic_parameter] = STATE(2891), - [sym_parameter] = STATE(2891), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2682), - [sym_bracketed_type] = STATE(3694), - [sym_lifetime] = STATE(3065), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3341), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2582), - [sym_scoped_identifier] = STATE(2327), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(3276), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), - [sym_line_comment] = STATE(249), - [sym_block_comment] = STATE(249), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1058), - [anon_sym_LPAREN] = ACTIONS(1060), - [anon_sym_RPAREN] = ACTIONS(1340), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1070), - [anon_sym_i8] = ACTIONS(1070), - [anon_sym_u16] = ACTIONS(1070), - [anon_sym_i16] = ACTIONS(1070), - [anon_sym_u32] = ACTIONS(1070), - [anon_sym_i32] = ACTIONS(1070), - [anon_sym_u64] = ACTIONS(1070), - [anon_sym_i64] = ACTIONS(1070), - [anon_sym_u128] = ACTIONS(1070), - [anon_sym_i128] = ACTIONS(1070), - [anon_sym_isize] = ACTIONS(1070), - [anon_sym_usize] = ACTIONS(1070), - [anon_sym_f32] = ACTIONS(1070), - [anon_sym_f64] = ACTIONS(1070), - [anon_sym_bool] = ACTIONS(1070), - [anon_sym_str] = ACTIONS(1070), - [anon_sym_char] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1076), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1342), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1084), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COMMA] = ACTIONS(1344), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym_POUND] = ACTIONS(1092), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1106), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1106), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1118), - [anon_sym_raw] = ACTIONS(1106), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1126), - [sym_super] = ACTIONS(1128), - [sym_crate] = ACTIONS(1128), - [sym_metavariable] = ACTIONS(1130), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(250)] = { - [sym_attribute_item] = STATE(425), - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_self_parameter] = STATE(3064), - [sym_variadic_parameter] = STATE(3064), - [sym_parameter] = STATE(3064), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2716), - [sym_bracketed_type] = STATE(3702), - [sym_lifetime] = STATE(3065), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3434), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2533), - [sym_scoped_identifier] = STATE(2200), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2584), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), - [sym_line_comment] = STATE(250), - [sym_block_comment] = STATE(250), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1162), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_RPAREN] = ACTIONS(1346), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1168), - [anon_sym_i8] = ACTIONS(1168), - [anon_sym_u16] = ACTIONS(1168), - [anon_sym_i16] = ACTIONS(1168), - [anon_sym_u32] = ACTIONS(1168), - [anon_sym_i32] = ACTIONS(1168), - [anon_sym_u64] = ACTIONS(1168), - [anon_sym_i64] = ACTIONS(1168), - [anon_sym_u128] = ACTIONS(1168), - [anon_sym_i128] = ACTIONS(1168), - [anon_sym_isize] = ACTIONS(1168), - [anon_sym_usize] = ACTIONS(1168), - [anon_sym_f32] = ACTIONS(1168), - [anon_sym_f64] = ACTIONS(1168), - [anon_sym_bool] = ACTIONS(1168), - [anon_sym_str] = ACTIONS(1168), - [anon_sym_char] = ACTIONS(1168), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1170), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1172), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1084), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COMMA] = ACTIONS(1348), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym_POUND] = ACTIONS(1092), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1178), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1180), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1180), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1118), - [anon_sym_raw] = ACTIONS(1180), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1182), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(251)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1764), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1516), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(251), - [sym_block_comment] = STATE(251), + [255] = { + [sym_attribute_item] = STATE(395), + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_self_parameter] = STATE(3284), + [sym_variadic_parameter] = STATE(3284), + [sym_parameter] = STATE(3284), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(3066), + [sym_bracketed_type] = STATE(3684), + [sym_lifetime] = STATE(3061), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3340), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2527), + [sym_scoped_identifier] = STATE(2319), + [sym_scoped_type_identifier] = STATE(2206), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(3283), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), + [sym_line_comment] = STATE(255), + [sym_block_comment] = STATE(255), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1052), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_RPAREN] = ACTIONS(1358), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1064), + [anon_sym_i8] = ACTIONS(1064), + [anon_sym_u16] = ACTIONS(1064), + [anon_sym_i16] = ACTIONS(1064), + [anon_sym_u32] = ACTIONS(1064), + [anon_sym_i32] = ACTIONS(1064), + [anon_sym_u64] = ACTIONS(1064), + [anon_sym_i64] = ACTIONS(1064), + [anon_sym_u128] = ACTIONS(1064), + [anon_sym_i128] = ACTIONS(1064), + [anon_sym_isize] = ACTIONS(1064), + [anon_sym_usize] = ACTIONS(1064), + [anon_sym_f32] = ACTIONS(1064), + [anon_sym_f64] = ACTIONS(1064), + [anon_sym_bool] = ACTIONS(1064), + [anon_sym_str] = ACTIONS(1064), + [anon_sym_char] = ACTIONS(1064), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1070), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1346), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1078), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1084), + [anon_sym_POUND] = ACTIONS(1086), + [anon_sym_SQUOTE] = ACTIONS(1088), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1092), + [anon_sym_default] = ACTIONS(1094), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1100), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1100), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_ref] = ACTIONS(1108), + [anon_sym_dyn] = ACTIONS(1110), + [sym_mutable_specifier] = ACTIONS(1112), + [anon_sym_raw] = ACTIONS(1100), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1120), + [sym_super] = ACTIONS(1122), + [sym_crate] = ACTIONS(1122), + [sym_metavariable] = ACTIONS(1124), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [256] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1481), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(208), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(256), + [sym_block_comment] = STATE(256), + [sym_identifier] = ACTIONS(480), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(894), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_AMP] = ACTIONS(896), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(898), + [anon_sym_COLON_COLON] = ACTIONS(486), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(512), + [anon_sym_break] = ACTIONS(514), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_default] = ACTIONS(492), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(518), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(522), + [anon_sym_union] = ACTIONS(492), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [sym_mutable_specifier] = ACTIONS(1360), + [anon_sym_raw] = ACTIONS(1362), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_move] = ACTIONS(526), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [257] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1481), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(257), + [sym_block_comment] = STATE(257), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -46328,15 +46743,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(354), + [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(1190), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1192), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), @@ -46353,7 +46766,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(360), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), + [sym_mutable_specifier] = ACTIONS(1364), + [anon_sym_raw] = ACTIONS(1366), [anon_sym_yield] = ACTIONS(93), [anon_sym_move] = ACTIONS(95), [anon_sym_try] = ACTIONS(378), @@ -46371,106 +46785,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(252)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1801), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_let_condition] = STATE(2832), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(252), - [sym_block_comment] = STATE(252), - [sym_identifier] = ACTIONS(470), + [258] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1481), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(225), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(258), + [sym_block_comment] = STATE(258), + [sym_identifier] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1306), + [anon_sym_AMP] = ACTIONS(1308), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(898), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(1310), + [anon_sym_COLON_COLON] = ACTIONS(486), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), + [anon_sym_async] = ACTIONS(488), + [anon_sym_break] = ACTIONS(490), [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(492), [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), + [anon_sym_gen] = ACTIONS(494), [anon_sym_if] = ACTIONS(366), - [anon_sym_let] = ACTIONS(900), [anon_sym_loop] = ACTIONS(368), [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), + [anon_sym_return] = ACTIONS(496), + [anon_sym_static] = ACTIONS(498), + [anon_sym_union] = ACTIONS(492), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), + [sym_mutable_specifier] = ACTIONS(1368), + [anon_sym_raw] = ACTIONS(1370), + [anon_sym_yield] = ACTIONS(500), + [anon_sym_move] = ACTIONS(502), [anon_sym_try] = ACTIONS(378), [sym_integer_literal] = ACTIONS(99), [aux_sym_string_literal_token1] = ACTIONS(101), @@ -46479,63 +46892,519 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(253)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1754), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1450), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(253), - [sym_block_comment] = STATE(253), + [259] = { + [sym_attribute_item] = STATE(395), + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_self_parameter] = STATE(3284), + [sym_variadic_parameter] = STATE(3284), + [sym_parameter] = STATE(3284), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(3066), + [sym_bracketed_type] = STATE(3684), + [sym_lifetime] = STATE(3061), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3340), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2527), + [sym_scoped_identifier] = STATE(2319), + [sym_scoped_type_identifier] = STATE(2206), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(3283), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), + [sym_line_comment] = STATE(259), + [sym_block_comment] = STATE(259), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1052), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_RPAREN] = ACTIONS(1372), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1064), + [anon_sym_i8] = ACTIONS(1064), + [anon_sym_u16] = ACTIONS(1064), + [anon_sym_i16] = ACTIONS(1064), + [anon_sym_u32] = ACTIONS(1064), + [anon_sym_i32] = ACTIONS(1064), + [anon_sym_u64] = ACTIONS(1064), + [anon_sym_i64] = ACTIONS(1064), + [anon_sym_u128] = ACTIONS(1064), + [anon_sym_i128] = ACTIONS(1064), + [anon_sym_isize] = ACTIONS(1064), + [anon_sym_usize] = ACTIONS(1064), + [anon_sym_f32] = ACTIONS(1064), + [anon_sym_f64] = ACTIONS(1064), + [anon_sym_bool] = ACTIONS(1064), + [anon_sym_str] = ACTIONS(1064), + [anon_sym_char] = ACTIONS(1064), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1070), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1346), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1078), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1084), + [anon_sym_POUND] = ACTIONS(1086), + [anon_sym_SQUOTE] = ACTIONS(1088), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1092), + [anon_sym_default] = ACTIONS(1094), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1100), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1100), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_ref] = ACTIONS(1108), + [anon_sym_dyn] = ACTIONS(1110), + [sym_mutable_specifier] = ACTIONS(1112), + [anon_sym_raw] = ACTIONS(1100), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1120), + [sym_super] = ACTIONS(1122), + [sym_crate] = ACTIONS(1122), + [sym_metavariable] = ACTIONS(1124), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [260] = { + [sym_attribute_item] = STATE(395), + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_self_parameter] = STATE(3284), + [sym_variadic_parameter] = STATE(3284), + [sym_parameter] = STATE(3284), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(3066), + [sym_bracketed_type] = STATE(3684), + [sym_lifetime] = STATE(3061), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3340), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2527), + [sym_scoped_identifier] = STATE(2319), + [sym_scoped_type_identifier] = STATE(2206), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(3283), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), + [sym_line_comment] = STATE(260), + [sym_block_comment] = STATE(260), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1052), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_RPAREN] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1064), + [anon_sym_i8] = ACTIONS(1064), + [anon_sym_u16] = ACTIONS(1064), + [anon_sym_i16] = ACTIONS(1064), + [anon_sym_u32] = ACTIONS(1064), + [anon_sym_i32] = ACTIONS(1064), + [anon_sym_u64] = ACTIONS(1064), + [anon_sym_i64] = ACTIONS(1064), + [anon_sym_u128] = ACTIONS(1064), + [anon_sym_i128] = ACTIONS(1064), + [anon_sym_isize] = ACTIONS(1064), + [anon_sym_usize] = ACTIONS(1064), + [anon_sym_f32] = ACTIONS(1064), + [anon_sym_f64] = ACTIONS(1064), + [anon_sym_bool] = ACTIONS(1064), + [anon_sym_str] = ACTIONS(1064), + [anon_sym_char] = ACTIONS(1064), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1070), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1346), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1078), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1084), + [anon_sym_POUND] = ACTIONS(1086), + [anon_sym_SQUOTE] = ACTIONS(1088), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1092), + [anon_sym_default] = ACTIONS(1094), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1100), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1100), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_ref] = ACTIONS(1108), + [anon_sym_dyn] = ACTIONS(1110), + [sym_mutable_specifier] = ACTIONS(1112), + [anon_sym_raw] = ACTIONS(1100), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1120), + [sym_super] = ACTIONS(1122), + [sym_crate] = ACTIONS(1122), + [sym_metavariable] = ACTIONS(1124), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [261] = { + [sym_attribute_item] = STATE(395), + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_self_parameter] = STATE(3284), + [sym_variadic_parameter] = STATE(3284), + [sym_parameter] = STATE(3284), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(3066), + [sym_bracketed_type] = STATE(3684), + [sym_lifetime] = STATE(3061), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3340), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2527), + [sym_scoped_identifier] = STATE(2319), + [sym_scoped_type_identifier] = STATE(2206), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(3283), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), + [sym_line_comment] = STATE(261), + [sym_block_comment] = STATE(261), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1052), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_RPAREN] = ACTIONS(1376), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1064), + [anon_sym_i8] = ACTIONS(1064), + [anon_sym_u16] = ACTIONS(1064), + [anon_sym_i16] = ACTIONS(1064), + [anon_sym_u32] = ACTIONS(1064), + [anon_sym_i32] = ACTIONS(1064), + [anon_sym_u64] = ACTIONS(1064), + [anon_sym_i64] = ACTIONS(1064), + [anon_sym_u128] = ACTIONS(1064), + [anon_sym_i128] = ACTIONS(1064), + [anon_sym_isize] = ACTIONS(1064), + [anon_sym_usize] = ACTIONS(1064), + [anon_sym_f32] = ACTIONS(1064), + [anon_sym_f64] = ACTIONS(1064), + [anon_sym_bool] = ACTIONS(1064), + [anon_sym_str] = ACTIONS(1064), + [anon_sym_char] = ACTIONS(1064), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1070), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1346), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1078), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1084), + [anon_sym_POUND] = ACTIONS(1086), + [anon_sym_SQUOTE] = ACTIONS(1088), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1092), + [anon_sym_default] = ACTIONS(1094), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1100), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1100), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_ref] = ACTIONS(1108), + [anon_sym_dyn] = ACTIONS(1110), + [sym_mutable_specifier] = ACTIONS(1112), + [anon_sym_raw] = ACTIONS(1100), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1120), + [sym_super] = ACTIONS(1122), + [sym_crate] = ACTIONS(1122), + [sym_metavariable] = ACTIONS(1124), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [262] = { + [sym_attribute_item] = STATE(395), + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_self_parameter] = STATE(3284), + [sym_variadic_parameter] = STATE(3284), + [sym_parameter] = STATE(3284), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(3066), + [sym_bracketed_type] = STATE(3684), + [sym_lifetime] = STATE(3061), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3340), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2527), + [sym_scoped_identifier] = STATE(2319), + [sym_scoped_type_identifier] = STATE(2206), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(3283), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), + [sym_line_comment] = STATE(262), + [sym_block_comment] = STATE(262), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1052), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_RPAREN] = ACTIONS(1378), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1064), + [anon_sym_i8] = ACTIONS(1064), + [anon_sym_u16] = ACTIONS(1064), + [anon_sym_i16] = ACTIONS(1064), + [anon_sym_u32] = ACTIONS(1064), + [anon_sym_i32] = ACTIONS(1064), + [anon_sym_u64] = ACTIONS(1064), + [anon_sym_i64] = ACTIONS(1064), + [anon_sym_u128] = ACTIONS(1064), + [anon_sym_i128] = ACTIONS(1064), + [anon_sym_isize] = ACTIONS(1064), + [anon_sym_usize] = ACTIONS(1064), + [anon_sym_f32] = ACTIONS(1064), + [anon_sym_f64] = ACTIONS(1064), + [anon_sym_bool] = ACTIONS(1064), + [anon_sym_str] = ACTIONS(1064), + [anon_sym_char] = ACTIONS(1064), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1070), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1346), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1078), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1084), + [anon_sym_POUND] = ACTIONS(1086), + [anon_sym_SQUOTE] = ACTIONS(1088), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1092), + [anon_sym_default] = ACTIONS(1094), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1100), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1100), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_ref] = ACTIONS(1108), + [anon_sym_dyn] = ACTIONS(1110), + [sym_mutable_specifier] = ACTIONS(1112), + [anon_sym_raw] = ACTIONS(1100), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1120), + [sym_super] = ACTIONS(1122), + [sym_crate] = ACTIONS(1122), + [sym_metavariable] = ACTIONS(1124), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [263] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1968), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(263), + [sym_block_comment] = STATE(263), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -46558,15 +47427,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(354), + [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(1156), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1158), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), @@ -46601,105 +47468,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(254)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1478), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(254), - [sym_block_comment] = STATE(254), - [sym_identifier] = ACTIONS(470), + [264] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1852), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(225), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(264), + [sym_block_comment] = STATE(264), + [sym_identifier] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1206), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1306), + [anon_sym_AMP] = ACTIONS(1308), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1208), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(1310), + [anon_sym_COLON_COLON] = ACTIONS(486), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), + [anon_sym_async] = ACTIONS(488), + [anon_sym_break] = ACTIONS(490), [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(482), + [anon_sym_default] = ACTIONS(492), [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(484), + [anon_sym_gen] = ACTIONS(494), [anon_sym_if] = ACTIONS(366), [anon_sym_loop] = ACTIONS(368), [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(486), - [anon_sym_static] = ACTIONS(488), - [anon_sym_union] = ACTIONS(482), + [anon_sym_return] = ACTIONS(496), + [anon_sym_static] = ACTIONS(498), + [anon_sym_union] = ACTIONS(492), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [sym_mutable_specifier] = ACTIONS(1350), - [anon_sym_raw] = ACTIONS(1352), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_move] = ACTIONS(492), + [anon_sym_raw] = ACTIONS(492), + [anon_sym_yield] = ACTIONS(500), + [anon_sym_move] = ACTIONS(502), [anon_sym_try] = ACTIONS(378), [sym_integer_literal] = ACTIONS(99), [aux_sym_string_literal_token1] = ACTIONS(101), @@ -46708,340 +47574,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(255)] = { - [sym_attribute_item] = STATE(403), - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_self_parameter] = STATE(3279), - [sym_variadic_parameter] = STATE(3279), - [sym_parameter] = STATE(3279), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3071), - [sym_bracketed_type] = STATE(3694), - [sym_lifetime] = STATE(3065), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3341), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2582), - [sym_scoped_identifier] = STATE(2327), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(3276), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), - [sym_line_comment] = STATE(255), - [sym_block_comment] = STATE(255), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1058), - [anon_sym_LPAREN] = ACTIONS(1060), - [anon_sym_RPAREN] = ACTIONS(1354), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1070), - [anon_sym_i8] = ACTIONS(1070), - [anon_sym_u16] = ACTIONS(1070), - [anon_sym_i16] = ACTIONS(1070), - [anon_sym_u32] = ACTIONS(1070), - [anon_sym_i32] = ACTIONS(1070), - [anon_sym_u64] = ACTIONS(1070), - [anon_sym_i64] = ACTIONS(1070), - [anon_sym_u128] = ACTIONS(1070), - [anon_sym_i128] = ACTIONS(1070), - [anon_sym_isize] = ACTIONS(1070), - [anon_sym_usize] = ACTIONS(1070), - [anon_sym_f32] = ACTIONS(1070), - [anon_sym_f64] = ACTIONS(1070), - [anon_sym_bool] = ACTIONS(1070), - [anon_sym_str] = ACTIONS(1070), - [anon_sym_char] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1076), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1356), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1084), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym_POUND] = ACTIONS(1092), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1106), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1106), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1118), - [anon_sym_raw] = ACTIONS(1106), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1126), - [sym_super] = ACTIONS(1128), - [sym_crate] = ACTIONS(1128), - [sym_metavariable] = ACTIONS(1130), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(256)] = { - [sym_attribute_item] = STATE(403), - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_self_parameter] = STATE(3279), - [sym_variadic_parameter] = STATE(3279), - [sym_parameter] = STATE(3279), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3071), - [sym_bracketed_type] = STATE(3694), - [sym_lifetime] = STATE(3065), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3341), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2582), - [sym_scoped_identifier] = STATE(2327), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(3276), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), - [sym_line_comment] = STATE(256), - [sym_block_comment] = STATE(256), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1058), - [anon_sym_LPAREN] = ACTIONS(1060), - [anon_sym_RPAREN] = ACTIONS(1358), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1070), - [anon_sym_i8] = ACTIONS(1070), - [anon_sym_u16] = ACTIONS(1070), - [anon_sym_i16] = ACTIONS(1070), - [anon_sym_u32] = ACTIONS(1070), - [anon_sym_i32] = ACTIONS(1070), - [anon_sym_u64] = ACTIONS(1070), - [anon_sym_i64] = ACTIONS(1070), - [anon_sym_u128] = ACTIONS(1070), - [anon_sym_i128] = ACTIONS(1070), - [anon_sym_isize] = ACTIONS(1070), - [anon_sym_usize] = ACTIONS(1070), - [anon_sym_f32] = ACTIONS(1070), - [anon_sym_f64] = ACTIONS(1070), - [anon_sym_bool] = ACTIONS(1070), - [anon_sym_str] = ACTIONS(1070), - [anon_sym_char] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1076), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1356), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1084), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym_POUND] = ACTIONS(1092), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1106), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1106), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1118), - [anon_sym_raw] = ACTIONS(1106), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1126), - [sym_super] = ACTIONS(1128), - [sym_crate] = ACTIONS(1128), - [sym_metavariable] = ACTIONS(1130), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(257)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1478), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(257), - [sym_block_comment] = STATE(257), - [sym_identifier] = ACTIONS(470), + [265] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1853), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(225), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(265), + [sym_block_comment] = STATE(265), + [sym_identifier] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1306), + [anon_sym_AMP] = ACTIONS(1308), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(1310), + [anon_sym_COLON_COLON] = ACTIONS(486), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), + [anon_sym_async] = ACTIONS(488), + [anon_sym_break] = ACTIONS(490), [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(492), [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), + [anon_sym_gen] = ACTIONS(494), [anon_sym_if] = ACTIONS(366), [anon_sym_loop] = ACTIONS(368), [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), + [anon_sym_return] = ACTIONS(496), + [anon_sym_static] = ACTIONS(498), + [anon_sym_union] = ACTIONS(492), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [sym_mutable_specifier] = ACTIONS(1360), - [anon_sym_raw] = ACTIONS(1362), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), + [anon_sym_raw] = ACTIONS(492), + [anon_sym_yield] = ACTIONS(500), + [anon_sym_move] = ACTIONS(502), [anon_sym_try] = ACTIONS(378), [sym_integer_literal] = ACTIONS(99), [aux_sym_string_literal_token1] = ACTIONS(101), @@ -47050,682 +47687,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(258)] = { - [sym_attribute_item] = STATE(403), - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_self_parameter] = STATE(3279), - [sym_variadic_parameter] = STATE(3279), - [sym_parameter] = STATE(3279), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3071), - [sym_bracketed_type] = STATE(3694), - [sym_lifetime] = STATE(3065), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3341), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2582), - [sym_scoped_identifier] = STATE(2327), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(3276), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), - [sym_line_comment] = STATE(258), - [sym_block_comment] = STATE(258), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1058), - [anon_sym_LPAREN] = ACTIONS(1060), - [anon_sym_RPAREN] = ACTIONS(1364), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1070), - [anon_sym_i8] = ACTIONS(1070), - [anon_sym_u16] = ACTIONS(1070), - [anon_sym_i16] = ACTIONS(1070), - [anon_sym_u32] = ACTIONS(1070), - [anon_sym_i32] = ACTIONS(1070), - [anon_sym_u64] = ACTIONS(1070), - [anon_sym_i64] = ACTIONS(1070), - [anon_sym_u128] = ACTIONS(1070), - [anon_sym_i128] = ACTIONS(1070), - [anon_sym_isize] = ACTIONS(1070), - [anon_sym_usize] = ACTIONS(1070), - [anon_sym_f32] = ACTIONS(1070), - [anon_sym_f64] = ACTIONS(1070), - [anon_sym_bool] = ACTIONS(1070), - [anon_sym_str] = ACTIONS(1070), - [anon_sym_char] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1076), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1356), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1084), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym_POUND] = ACTIONS(1092), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1106), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1106), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1118), - [anon_sym_raw] = ACTIONS(1106), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1126), - [sym_super] = ACTIONS(1128), - [sym_crate] = ACTIONS(1128), - [sym_metavariable] = ACTIONS(1130), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(259)] = { - [sym_attribute_item] = STATE(403), - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_self_parameter] = STATE(3279), - [sym_variadic_parameter] = STATE(3279), - [sym_parameter] = STATE(3279), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3071), - [sym_bracketed_type] = STATE(3694), - [sym_lifetime] = STATE(3065), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3341), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2582), - [sym_scoped_identifier] = STATE(2327), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(3276), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), - [sym_line_comment] = STATE(259), - [sym_block_comment] = STATE(259), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1058), - [anon_sym_LPAREN] = ACTIONS(1060), - [anon_sym_RPAREN] = ACTIONS(1366), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1070), - [anon_sym_i8] = ACTIONS(1070), - [anon_sym_u16] = ACTIONS(1070), - [anon_sym_i16] = ACTIONS(1070), - [anon_sym_u32] = ACTIONS(1070), - [anon_sym_i32] = ACTIONS(1070), - [anon_sym_u64] = ACTIONS(1070), - [anon_sym_i64] = ACTIONS(1070), - [anon_sym_u128] = ACTIONS(1070), - [anon_sym_i128] = ACTIONS(1070), - [anon_sym_isize] = ACTIONS(1070), - [anon_sym_usize] = ACTIONS(1070), - [anon_sym_f32] = ACTIONS(1070), - [anon_sym_f64] = ACTIONS(1070), - [anon_sym_bool] = ACTIONS(1070), - [anon_sym_str] = ACTIONS(1070), - [anon_sym_char] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1076), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1356), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1084), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym_POUND] = ACTIONS(1092), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1106), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1106), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1118), - [anon_sym_raw] = ACTIONS(1106), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1126), - [sym_super] = ACTIONS(1128), - [sym_crate] = ACTIONS(1128), - [sym_metavariable] = ACTIONS(1130), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(260)] = { - [sym_attribute_item] = STATE(403), - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_self_parameter] = STATE(3279), - [sym_variadic_parameter] = STATE(3279), - [sym_parameter] = STATE(3279), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3071), - [sym_bracketed_type] = STATE(3694), - [sym_lifetime] = STATE(3065), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3341), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2582), - [sym_scoped_identifier] = STATE(2327), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(3276), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), - [sym_line_comment] = STATE(260), - [sym_block_comment] = STATE(260), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1058), - [anon_sym_LPAREN] = ACTIONS(1060), - [anon_sym_RPAREN] = ACTIONS(1368), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1070), - [anon_sym_i8] = ACTIONS(1070), - [anon_sym_u16] = ACTIONS(1070), - [anon_sym_i16] = ACTIONS(1070), - [anon_sym_u32] = ACTIONS(1070), - [anon_sym_i32] = ACTIONS(1070), - [anon_sym_u64] = ACTIONS(1070), - [anon_sym_i64] = ACTIONS(1070), - [anon_sym_u128] = ACTIONS(1070), - [anon_sym_i128] = ACTIONS(1070), - [anon_sym_isize] = ACTIONS(1070), - [anon_sym_usize] = ACTIONS(1070), - [anon_sym_f32] = ACTIONS(1070), - [anon_sym_f64] = ACTIONS(1070), - [anon_sym_bool] = ACTIONS(1070), - [anon_sym_str] = ACTIONS(1070), - [anon_sym_char] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1076), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1356), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1084), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym_POUND] = ACTIONS(1092), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1106), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1106), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1118), - [anon_sym_raw] = ACTIONS(1106), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1126), - [sym_super] = ACTIONS(1128), - [sym_crate] = ACTIONS(1128), - [sym_metavariable] = ACTIONS(1130), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(261)] = { - [sym_attribute_item] = STATE(403), - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_self_parameter] = STATE(3279), - [sym_variadic_parameter] = STATE(3279), - [sym_parameter] = STATE(3279), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3071), - [sym_bracketed_type] = STATE(3694), - [sym_lifetime] = STATE(3065), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3341), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2582), - [sym_scoped_identifier] = STATE(2327), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(3276), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), - [sym_line_comment] = STATE(261), - [sym_block_comment] = STATE(261), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1058), - [anon_sym_LPAREN] = ACTIONS(1060), - [anon_sym_RPAREN] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1070), - [anon_sym_i8] = ACTIONS(1070), - [anon_sym_u16] = ACTIONS(1070), - [anon_sym_i16] = ACTIONS(1070), - [anon_sym_u32] = ACTIONS(1070), - [anon_sym_i32] = ACTIONS(1070), - [anon_sym_u64] = ACTIONS(1070), - [anon_sym_i64] = ACTIONS(1070), - [anon_sym_u128] = ACTIONS(1070), - [anon_sym_i128] = ACTIONS(1070), - [anon_sym_isize] = ACTIONS(1070), - [anon_sym_usize] = ACTIONS(1070), - [anon_sym_f32] = ACTIONS(1070), - [anon_sym_f64] = ACTIONS(1070), - [anon_sym_bool] = ACTIONS(1070), - [anon_sym_str] = ACTIONS(1070), - [anon_sym_char] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1076), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1356), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1084), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym_POUND] = ACTIONS(1092), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1106), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1106), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1118), - [anon_sym_raw] = ACTIONS(1106), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1126), - [sym_super] = ACTIONS(1128), - [sym_crate] = ACTIONS(1128), - [sym_metavariable] = ACTIONS(1130), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(262)] = { - [sym_attribute_item] = STATE(403), - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_self_parameter] = STATE(3279), - [sym_variadic_parameter] = STATE(3279), - [sym_parameter] = STATE(3279), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3071), - [sym_bracketed_type] = STATE(3694), - [sym_lifetime] = STATE(3065), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3341), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2582), - [sym_scoped_identifier] = STATE(2327), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(3276), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), - [sym_line_comment] = STATE(262), - [sym_block_comment] = STATE(262), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1058), - [anon_sym_LPAREN] = ACTIONS(1060), - [anon_sym_RPAREN] = ACTIONS(1372), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1070), - [anon_sym_i8] = ACTIONS(1070), - [anon_sym_u16] = ACTIONS(1070), - [anon_sym_i16] = ACTIONS(1070), - [anon_sym_u32] = ACTIONS(1070), - [anon_sym_i32] = ACTIONS(1070), - [anon_sym_u64] = ACTIONS(1070), - [anon_sym_i64] = ACTIONS(1070), - [anon_sym_u128] = ACTIONS(1070), - [anon_sym_i128] = ACTIONS(1070), - [anon_sym_isize] = ACTIONS(1070), - [anon_sym_usize] = ACTIONS(1070), - [anon_sym_f32] = ACTIONS(1070), - [anon_sym_f64] = ACTIONS(1070), - [anon_sym_bool] = ACTIONS(1070), - [anon_sym_str] = ACTIONS(1070), - [anon_sym_char] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1076), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1356), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1084), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym_POUND] = ACTIONS(1092), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1106), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1106), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1118), - [anon_sym_raw] = ACTIONS(1106), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1126), - [sym_super] = ACTIONS(1128), - [sym_crate] = ACTIONS(1128), - [sym_metavariable] = ACTIONS(1130), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(263)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1478), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(263), - [sym_block_comment] = STATE(263), - [sym_identifier] = ACTIONS(344), + [266] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1855), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(225), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(266), + [sym_block_comment] = STATE(266), + [sym_identifier] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), - [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(1306), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1306), + [anon_sym_AMP] = ACTIONS(1308), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1140), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1310), + [anon_sym_COLON_COLON] = ACTIONS(486), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), + [anon_sym_async] = ACTIONS(488), + [anon_sym_break] = ACTIONS(490), [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), + [anon_sym_default] = ACTIONS(492), [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), + [anon_sym_gen] = ACTIONS(494), [anon_sym_if] = ACTIONS(366), [anon_sym_loop] = ACTIONS(368), [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), + [anon_sym_return] = ACTIONS(496), + [anon_sym_static] = ACTIONS(498), + [anon_sym_union] = ACTIONS(492), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [sym_mutable_specifier] = ACTIONS(1374), - [anon_sym_raw] = ACTIONS(1376), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), + [anon_sym_raw] = ACTIONS(492), + [anon_sym_yield] = ACTIONS(500), + [anon_sym_move] = ACTIONS(502), [anon_sym_try] = ACTIONS(378), [sym_integer_literal] = ACTIONS(99), [aux_sym_string_literal_token1] = ACTIONS(101), @@ -47734,453 +47800,337 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(264)] = { - [sym_bracketed_type] = STATE(3669), - [sym_generic_function] = STATE(1894), - [sym_generic_type_with_turbofish] = STATE(3057), - [sym__expression_except_range] = STATE(1672), - [sym__expression] = STATE(1907), - [sym_macro_invocation] = STATE(1901), - [sym_scoped_identifier] = STATE(1644), - [sym_scoped_type_identifier_in_expression_position] = STATE(3253), - [sym_range_expression] = STATE(1897), - [sym_unary_expression] = STATE(1894), - [sym_try_expression] = STATE(1894), - [sym_reference_expression] = STATE(1894), - [sym_binary_expression] = STATE(1894), - [sym_assignment_expression] = STATE(1894), - [sym_compound_assignment_expr] = STATE(1894), - [sym_type_cast_expression] = STATE(1894), - [sym_return_expression] = STATE(1894), - [sym_yield_expression] = STATE(1894), - [sym_call_expression] = STATE(1894), - [sym_array_expression] = STATE(1894), - [sym_parenthesized_expression] = STATE(1894), - [sym_tuple_expression] = STATE(1894), - [sym_unit_expression] = STATE(1894), - [sym_struct_expression] = STATE(1894), - [sym_if_expression] = STATE(1894), - [sym_match_expression] = STATE(1894), - [sym_while_expression] = STATE(1894), - [sym_loop_expression] = STATE(1894), - [sym_for_expression] = STATE(1894), - [sym_const_block] = STATE(1894), - [sym_closure_expression] = STATE(1894), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3777), - [sym_break_expression] = STATE(1894), - [sym_continue_expression] = STATE(1894), - [sym_index_expression] = STATE(1894), - [sym_await_expression] = STATE(1894), - [sym_field_expression] = STATE(1674), - [sym_unsafe_block] = STATE(1894), - [sym_async_block] = STATE(1894), - [sym_gen_block] = STATE(1894), - [sym_try_block] = STATE(1894), - [sym_block] = STATE(1894), - [sym__literal] = STATE(1894), - [sym_string_literal] = STATE(1768), - [sym_raw_string_literal] = STATE(1768), - [sym_boolean_literal] = STATE(1768), - [sym_line_comment] = STATE(264), - [sym_block_comment] = STATE(264), - [sym_identifier] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_STAR] = ACTIONS(904), - [anon_sym_u8] = ACTIONS(416), - [anon_sym_i8] = ACTIONS(416), - [anon_sym_u16] = ACTIONS(416), - [anon_sym_i16] = ACTIONS(416), - [anon_sym_u32] = ACTIONS(416), - [anon_sym_i32] = ACTIONS(416), - [anon_sym_u64] = ACTIONS(416), - [anon_sym_i64] = ACTIONS(416), - [anon_sym_u128] = ACTIONS(416), - [anon_sym_i128] = ACTIONS(416), - [anon_sym_isize] = ACTIONS(416), - [anon_sym_usize] = ACTIONS(416), - [anon_sym_f32] = ACTIONS(416), - [anon_sym_f64] = ACTIONS(416), - [anon_sym_bool] = ACTIONS(416), - [anon_sym_str] = ACTIONS(416), - [anon_sym_char] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(904), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), + [267] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1857), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(225), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(267), + [sym_block_comment] = STATE(267), + [sym_identifier] = ACTIONS(480), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1306), + [anon_sym_AMP] = ACTIONS(1308), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1160), - [anon_sym_COLON_COLON] = ACTIONS(420), + [anon_sym_DOT_DOT] = ACTIONS(1310), + [anon_sym_COLON_COLON] = ACTIONS(486), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(422), - [anon_sym_break] = ACTIONS(424), - [anon_sym_const] = ACTIONS(426), - [anon_sym_continue] = ACTIONS(428), - [anon_sym_default] = ACTIONS(430), - [anon_sym_for] = ACTIONS(432), - [anon_sym_gen] = ACTIONS(434), - [anon_sym_if] = ACTIONS(436), - [anon_sym_loop] = ACTIONS(438), - [anon_sym_match] = ACTIONS(440), - [anon_sym_return] = ACTIONS(442), - [anon_sym_static] = ACTIONS(444), - [anon_sym_union] = ACTIONS(430), - [anon_sym_unsafe] = ACTIONS(446), - [anon_sym_while] = ACTIONS(448), - [sym_mutable_specifier] = ACTIONS(1378), - [anon_sym_raw] = ACTIONS(1380), - [anon_sym_yield] = ACTIONS(450), - [anon_sym_move] = ACTIONS(452), - [anon_sym_try] = ACTIONS(454), - [sym_integer_literal] = ACTIONS(456), - [aux_sym_string_literal_token1] = ACTIONS(458), - [sym_char_literal] = ACTIONS(456), - [anon_sym_true] = ACTIONS(460), - [anon_sym_false] = ACTIONS(460), + [anon_sym_async] = ACTIONS(488), + [anon_sym_break] = ACTIONS(490), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(492), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(494), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(496), + [anon_sym_static] = ACTIONS(498), + [anon_sym_union] = ACTIONS(492), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_raw] = ACTIONS(492), + [anon_sym_yield] = ACTIONS(500), + [anon_sym_move] = ACTIONS(502), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(462), - [sym_super] = ACTIONS(464), - [sym_crate] = ACTIONS(464), - [sym_metavariable] = ACTIONS(466), - [sym__raw_string_literal_start] = ACTIONS(468), - [sym_float_literal] = ACTIONS(456), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, - [STATE(265)] = { - [sym_attribute_item] = STATE(403), - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_self_parameter] = STATE(3279), - [sym_variadic_parameter] = STATE(3279), - [sym_parameter] = STATE(3279), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3071), - [sym_bracketed_type] = STATE(3694), - [sym_lifetime] = STATE(3065), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3341), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2582), - [sym_scoped_identifier] = STATE(2327), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(3276), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), - [sym_line_comment] = STATE(265), - [sym_block_comment] = STATE(265), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1058), - [anon_sym_LPAREN] = ACTIONS(1060), - [anon_sym_RPAREN] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1070), - [anon_sym_i8] = ACTIONS(1070), - [anon_sym_u16] = ACTIONS(1070), - [anon_sym_i16] = ACTIONS(1070), - [anon_sym_u32] = ACTIONS(1070), - [anon_sym_i32] = ACTIONS(1070), - [anon_sym_u64] = ACTIONS(1070), - [anon_sym_i64] = ACTIONS(1070), - [anon_sym_u128] = ACTIONS(1070), - [anon_sym_i128] = ACTIONS(1070), - [anon_sym_isize] = ACTIONS(1070), - [anon_sym_usize] = ACTIONS(1070), - [anon_sym_f32] = ACTIONS(1070), - [anon_sym_f64] = ACTIONS(1070), - [anon_sym_bool] = ACTIONS(1070), - [anon_sym_str] = ACTIONS(1070), - [anon_sym_char] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1076), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1356), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1084), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym_POUND] = ACTIONS(1092), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1106), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1106), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1118), - [anon_sym_raw] = ACTIONS(1106), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1126), - [sym_super] = ACTIONS(1128), - [sym_crate] = ACTIONS(1128), - [sym_metavariable] = ACTIONS(1130), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(266)] = { - [sym_attribute_item] = STATE(403), - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_self_parameter] = STATE(3279), - [sym_variadic_parameter] = STATE(3279), - [sym_parameter] = STATE(3279), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3071), - [sym_bracketed_type] = STATE(3694), - [sym_lifetime] = STATE(3065), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3341), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2582), - [sym_scoped_identifier] = STATE(2327), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(3276), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), - [sym_line_comment] = STATE(266), - [sym_block_comment] = STATE(266), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1058), - [anon_sym_LPAREN] = ACTIONS(1060), - [anon_sym_RPAREN] = ACTIONS(1384), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1070), - [anon_sym_i8] = ACTIONS(1070), - [anon_sym_u16] = ACTIONS(1070), - [anon_sym_i16] = ACTIONS(1070), - [anon_sym_u32] = ACTIONS(1070), - [anon_sym_i32] = ACTIONS(1070), - [anon_sym_u64] = ACTIONS(1070), - [anon_sym_i64] = ACTIONS(1070), - [anon_sym_u128] = ACTIONS(1070), - [anon_sym_i128] = ACTIONS(1070), - [anon_sym_isize] = ACTIONS(1070), - [anon_sym_usize] = ACTIONS(1070), - [anon_sym_f32] = ACTIONS(1070), - [anon_sym_f64] = ACTIONS(1070), - [anon_sym_bool] = ACTIONS(1070), - [anon_sym_str] = ACTIONS(1070), - [anon_sym_char] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1076), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1356), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1084), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym_POUND] = ACTIONS(1092), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1106), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1106), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1118), - [anon_sym_raw] = ACTIONS(1106), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1126), - [sym_super] = ACTIONS(1128), - [sym_crate] = ACTIONS(1128), - [sym_metavariable] = ACTIONS(1130), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [268] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1858), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(225), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(268), + [sym_block_comment] = STATE(268), + [sym_identifier] = ACTIONS(480), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1306), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1310), + [anon_sym_COLON_COLON] = ACTIONS(486), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(488), + [anon_sym_break] = ACTIONS(490), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(492), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(494), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(496), + [anon_sym_static] = ACTIONS(498), + [anon_sym_union] = ACTIONS(492), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_raw] = ACTIONS(492), + [anon_sym_yield] = ACTIONS(500), + [anon_sym_move] = ACTIONS(502), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), }, - [STATE(267)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1958), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(267), - [sym_block_comment] = STATE(267), - [sym_identifier] = ACTIONS(344), + [269] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1860), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(225), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(269), + [sym_block_comment] = STATE(269), + [sym_identifier] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), - [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(1306), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1306), + [anon_sym_AMP] = ACTIONS(1308), [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(1310), + [anon_sym_COLON_COLON] = ACTIONS(486), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), + [anon_sym_async] = ACTIONS(488), + [anon_sym_break] = ACTIONS(490), [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), + [anon_sym_default] = ACTIONS(492), [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), + [anon_sym_gen] = ACTIONS(494), [anon_sym_if] = ACTIONS(366), [anon_sym_loop] = ACTIONS(368), [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), + [anon_sym_return] = ACTIONS(496), + [anon_sym_static] = ACTIONS(498), + [anon_sym_union] = ACTIONS(492), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), + [anon_sym_raw] = ACTIONS(492), + [anon_sym_yield] = ACTIONS(500), + [anon_sym_move] = ACTIONS(502), [anon_sym_try] = ACTIONS(378), [sym_integer_literal] = ACTIONS(99), [aux_sym_string_literal_token1] = ACTIONS(101), @@ -48189,111 +48139,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(268)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1851), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(268), - [sym_block_comment] = STATE(268), - [sym_identifier] = ACTIONS(470), + [270] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1516), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(225), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(270), + [sym_block_comment] = STATE(270), + [sym_identifier] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1206), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1306), + [anon_sym_AMP] = ACTIONS(1308), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1208), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(1310), + [anon_sym_COLON_COLON] = ACTIONS(486), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), + [anon_sym_async] = ACTIONS(488), + [anon_sym_break] = ACTIONS(490), [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(482), + [anon_sym_default] = ACTIONS(492), [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(484), + [anon_sym_gen] = ACTIONS(494), [anon_sym_if] = ACTIONS(366), [anon_sym_loop] = ACTIONS(368), [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(486), - [anon_sym_static] = ACTIONS(488), - [anon_sym_union] = ACTIONS(482), + [anon_sym_return] = ACTIONS(496), + [anon_sym_static] = ACTIONS(498), + [anon_sym_union] = ACTIONS(492), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_move] = ACTIONS(492), + [anon_sym_raw] = ACTIONS(492), + [anon_sym_yield] = ACTIONS(500), + [anon_sym_move] = ACTIONS(502), [anon_sym_try] = ACTIONS(378), [sym_integer_literal] = ACTIONS(99), [aux_sym_string_literal_token1] = ACTIONS(101), @@ -48302,437 +48252,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(269)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1856), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(269), - [sym_block_comment] = STATE(269), - [sym_identifier] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1206), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1208), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(484), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(486), - [anon_sym_static] = ACTIONS(488), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_move] = ACTIONS(492), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), - }, - [STATE(270)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1692), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(270), - [sym_block_comment] = STATE(270), - [sym_identifier] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(898), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), - }, - [STATE(271)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1519), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [271] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1635), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(208), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), [sym_line_comment] = STATE(271), [sym_block_comment] = STATE(271), - [sym_identifier] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1206), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1208), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(484), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(486), - [anon_sym_static] = ACTIONS(488), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_move] = ACTIONS(492), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), - }, - [STATE(272)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1653), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(272), - [sym_block_comment] = STATE(272), - [sym_identifier] = ACTIONS(470), + [sym_identifier] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), [anon_sym_DASH] = ACTIONS(894), [anon_sym_BANG] = ACTIONS(894), [anon_sym_AMP] = ACTIONS(896), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(898), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_COLON_COLON] = ACTIONS(486), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(512), [anon_sym_break] = ACTIONS(514), [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), + [anon_sym_default] = ACTIONS(492), [anon_sym_for] = ACTIONS(362), [anon_sym_gen] = ACTIONS(518), [anon_sym_if] = ACTIONS(366), @@ -48740,10 +48351,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(370), [anon_sym_return] = ACTIONS(520), [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), + [anon_sym_union] = ACTIONS(492), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), + [anon_sym_raw] = ACTIONS(492), [anon_sym_yield] = ACTIONS(524), [anon_sym_move] = ACTIONS(526), [anon_sym_try] = ACTIONS(378), @@ -48754,63 +48365,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(273)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1965), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(273), - [sym_block_comment] = STATE(273), + [272] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1956), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(272), + [sym_block_comment] = STATE(272), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -48874,54 +48485,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(274)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1786), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [273] = { + [sym_bracketed_type] = STATE(3659), + [sym_generic_function] = STATE(1714), + [sym_generic_type_with_turbofish] = STATE(2899), + [sym__expression_except_range] = STATE(1670), + [sym__expression] = STATE(1929), + [sym_macro_invocation] = STATE(1893), + [sym_scoped_identifier] = STATE(1650), + [sym_scoped_type_identifier_in_expression_position] = STATE(3266), + [sym_range_expression] = STATE(1889), + [sym_unary_expression] = STATE(1714), + [sym_try_expression] = STATE(1714), + [sym_reference_expression] = STATE(1714), + [sym_binary_expression] = STATE(1714), + [sym_assignment_expression] = STATE(1714), + [sym_compound_assignment_expr] = STATE(1714), + [sym_type_cast_expression] = STATE(1714), + [sym_return_expression] = STATE(1714), + [sym_yield_expression] = STATE(1714), + [sym_call_expression] = STATE(1714), + [sym_array_expression] = STATE(1714), + [sym_parenthesized_expression] = STATE(1714), + [sym_tuple_expression] = STATE(1714), + [sym_unit_expression] = STATE(1714), + [sym_struct_expression] = STATE(1714), + [sym_if_expression] = STATE(1714), + [sym_match_expression] = STATE(1714), + [sym_while_expression] = STATE(1714), + [sym_loop_expression] = STATE(1714), + [sym_for_expression] = STATE(1714), + [sym_const_block] = STATE(1714), + [sym_closure_expression] = STATE(1714), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1714), + [sym_continue_expression] = STATE(1714), + [sym_index_expression] = STATE(1714), + [sym_await_expression] = STATE(1714), + [sym_field_expression] = STATE(1672), + [sym_unsafe_block] = STATE(1714), + [sym_async_block] = STATE(1714), + [sym_gen_block] = STATE(1714), + [sym_try_block] = STATE(1714), + [sym_block] = STATE(1714), + [sym__literal] = STATE(1714), + [sym_string_literal] = STATE(1766), + [sym_raw_string_literal] = STATE(1766), + [sym_boolean_literal] = STATE(1766), + [sym_line_comment] = STATE(273), + [sym_block_comment] = STATE(273), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(470), + [anon_sym_LBRACK] = ACTIONS(472), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(906), + [anon_sym_u8] = ACTIONS(416), + [anon_sym_i8] = ACTIONS(416), + [anon_sym_u16] = ACTIONS(416), + [anon_sym_i16] = ACTIONS(416), + [anon_sym_u32] = ACTIONS(416), + [anon_sym_i32] = ACTIONS(416), + [anon_sym_u64] = ACTIONS(416), + [anon_sym_i64] = ACTIONS(416), + [anon_sym_u128] = ACTIONS(416), + [anon_sym_i128] = ACTIONS(416), + [anon_sym_isize] = ACTIONS(416), + [anon_sym_usize] = ACTIONS(416), + [anon_sym_f32] = ACTIONS(416), + [anon_sym_f64] = ACTIONS(416), + [anon_sym_bool] = ACTIONS(416), + [anon_sym_str] = ACTIONS(416), + [anon_sym_char] = ACTIONS(416), + [anon_sym_DASH] = ACTIONS(906), + [anon_sym_BANG] = ACTIONS(906), + [anon_sym_AMP] = ACTIONS(908), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(910), + [anon_sym_COLON_COLON] = ACTIONS(420), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(422), + [anon_sym_break] = ACTIONS(424), + [anon_sym_const] = ACTIONS(426), + [anon_sym_continue] = ACTIONS(428), + [anon_sym_default] = ACTIONS(430), + [anon_sym_for] = ACTIONS(432), + [anon_sym_gen] = ACTIONS(434), + [anon_sym_if] = ACTIONS(436), + [anon_sym_loop] = ACTIONS(438), + [anon_sym_match] = ACTIONS(440), + [anon_sym_return] = ACTIONS(442), + [anon_sym_static] = ACTIONS(444), + [anon_sym_union] = ACTIONS(430), + [anon_sym_unsafe] = ACTIONS(446), + [anon_sym_while] = ACTIONS(448), + [anon_sym_raw] = ACTIONS(430), + [anon_sym_yield] = ACTIONS(450), + [anon_sym_move] = ACTIONS(452), + [anon_sym_try] = ACTIONS(454), + [sym_integer_literal] = ACTIONS(456), + [aux_sym_string_literal_token1] = ACTIONS(458), + [sym_char_literal] = ACTIONS(456), + [anon_sym_true] = ACTIONS(460), + [anon_sym_false] = ACTIONS(460), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(462), + [sym_super] = ACTIONS(464), + [sym_crate] = ACTIONS(464), + [sym_metavariable] = ACTIONS(466), + [sym__raw_string_literal_start] = ACTIONS(468), + [sym_float_literal] = ACTIONS(456), + }, + [274] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1788), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), [sym_line_comment] = STATE(274), [sym_block_comment] = STATE(274), [sym_identifier] = ACTIONS(344), @@ -48987,61 +48711,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(275)] = { - [sym_bracketed_type] = STATE(3669), - [sym_generic_function] = STATE(1894), - [sym_generic_type_with_turbofish] = STATE(3057), - [sym__expression_except_range] = STATE(1672), - [sym__expression] = STATE(1936), - [sym_macro_invocation] = STATE(1901), - [sym_scoped_identifier] = STATE(1644), - [sym_scoped_type_identifier_in_expression_position] = STATE(3253), - [sym_range_expression] = STATE(1897), - [sym_unary_expression] = STATE(1894), - [sym_try_expression] = STATE(1894), - [sym_reference_expression] = STATE(1894), - [sym_binary_expression] = STATE(1894), - [sym_assignment_expression] = STATE(1894), - [sym_compound_assignment_expr] = STATE(1894), - [sym_type_cast_expression] = STATE(1894), - [sym_return_expression] = STATE(1894), - [sym_yield_expression] = STATE(1894), - [sym_call_expression] = STATE(1894), - [sym_array_expression] = STATE(1894), - [sym_parenthesized_expression] = STATE(1894), - [sym_tuple_expression] = STATE(1894), - [sym_unit_expression] = STATE(1894), - [sym_struct_expression] = STATE(1894), - [sym_if_expression] = STATE(1894), - [sym_match_expression] = STATE(1894), - [sym_while_expression] = STATE(1894), - [sym_loop_expression] = STATE(1894), - [sym_for_expression] = STATE(1894), - [sym_const_block] = STATE(1894), - [sym_closure_expression] = STATE(1894), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3777), - [sym_break_expression] = STATE(1894), - [sym_continue_expression] = STATE(1894), - [sym_index_expression] = STATE(1894), - [sym_await_expression] = STATE(1894), - [sym_field_expression] = STATE(1674), - [sym_unsafe_block] = STATE(1894), - [sym_async_block] = STATE(1894), - [sym_gen_block] = STATE(1894), - [sym_try_block] = STATE(1894), - [sym_block] = STATE(1894), - [sym__literal] = STATE(1894), - [sym_string_literal] = STATE(1768), - [sym_raw_string_literal] = STATE(1768), - [sym_boolean_literal] = STATE(1768), + [275] = { + [sym_bracketed_type] = STATE(3659), + [sym_generic_function] = STATE(1714), + [sym_generic_type_with_turbofish] = STATE(2899), + [sym__expression_except_range] = STATE(1670), + [sym__expression] = STATE(1738), + [sym_macro_invocation] = STATE(1893), + [sym_scoped_identifier] = STATE(1650), + [sym_scoped_type_identifier_in_expression_position] = STATE(3266), + [sym_range_expression] = STATE(1889), + [sym_unary_expression] = STATE(1714), + [sym_try_expression] = STATE(1714), + [sym_reference_expression] = STATE(1714), + [sym_binary_expression] = STATE(1714), + [sym_assignment_expression] = STATE(1714), + [sym_compound_assignment_expr] = STATE(1714), + [sym_type_cast_expression] = STATE(1714), + [sym_return_expression] = STATE(1714), + [sym_yield_expression] = STATE(1714), + [sym_call_expression] = STATE(1714), + [sym_array_expression] = STATE(1714), + [sym_parenthesized_expression] = STATE(1714), + [sym_tuple_expression] = STATE(1714), + [sym_unit_expression] = STATE(1714), + [sym_struct_expression] = STATE(1714), + [sym_if_expression] = STATE(1714), + [sym_match_expression] = STATE(1714), + [sym_while_expression] = STATE(1714), + [sym_loop_expression] = STATE(1714), + [sym_for_expression] = STATE(1714), + [sym_const_block] = STATE(1714), + [sym_closure_expression] = STATE(1714), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1714), + [sym_continue_expression] = STATE(1714), + [sym_index_expression] = STATE(1714), + [sym_await_expression] = STATE(1714), + [sym_field_expression] = STATE(1672), + [sym_unsafe_block] = STATE(1714), + [sym_async_block] = STATE(1714), + [sym_gen_block] = STATE(1714), + [sym_try_block] = STATE(1714), + [sym_block] = STATE(1714), + [sym__literal] = STATE(1714), + [sym_string_literal] = STATE(1766), + [sym_raw_string_literal] = STATE(1766), + [sym_boolean_literal] = STATE(1766), [sym_line_comment] = STATE(275), [sym_block_comment] = STATE(275), [sym_identifier] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(502), + [anon_sym_LPAREN] = ACTIONS(470), + [anon_sym_LBRACK] = ACTIONS(472), [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_STAR] = ACTIONS(904), + [anon_sym_STAR] = ACTIONS(906), [anon_sym_u8] = ACTIONS(416), [anon_sym_i8] = ACTIONS(416), [anon_sym_u16] = ACTIONS(416), @@ -49059,12 +48783,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(416), [anon_sym_str] = ACTIONS(416), [anon_sym_char] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(904), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), + [anon_sym_DASH] = ACTIONS(906), + [anon_sym_BANG] = ACTIONS(906), + [anon_sym_AMP] = ACTIONS(908), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1160), + [anon_sym_DOT_DOT] = ACTIONS(910), [anon_sym_COLON_COLON] = ACTIONS(420), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(422), @@ -49100,174 +48824,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(468), [sym_float_literal] = ACTIONS(456), }, - [STATE(276)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1835), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [276] = { + [sym_bracketed_type] = STATE(3659), + [sym_generic_function] = STATE(1714), + [sym_generic_type_with_turbofish] = STATE(2899), + [sym__expression_except_range] = STATE(1670), + [sym__expression] = STATE(1803), + [sym_macro_invocation] = STATE(1893), + [sym_scoped_identifier] = STATE(1650), + [sym_scoped_type_identifier_in_expression_position] = STATE(3266), + [sym_range_expression] = STATE(1889), + [sym_unary_expression] = STATE(1714), + [sym_try_expression] = STATE(1714), + [sym_reference_expression] = STATE(1714), + [sym_binary_expression] = STATE(1714), + [sym_assignment_expression] = STATE(1714), + [sym_compound_assignment_expr] = STATE(1714), + [sym_type_cast_expression] = STATE(1714), + [sym_return_expression] = STATE(1714), + [sym_yield_expression] = STATE(1714), + [sym_call_expression] = STATE(1714), + [sym_array_expression] = STATE(1714), + [sym_parenthesized_expression] = STATE(1714), + [sym_tuple_expression] = STATE(1714), + [sym_unit_expression] = STATE(1714), + [sym_struct_expression] = STATE(1714), + [sym_if_expression] = STATE(1714), + [sym_match_expression] = STATE(1714), + [sym_while_expression] = STATE(1714), + [sym_loop_expression] = STATE(1714), + [sym_for_expression] = STATE(1714), + [sym_const_block] = STATE(1714), + [sym_closure_expression] = STATE(1714), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1714), + [sym_continue_expression] = STATE(1714), + [sym_index_expression] = STATE(1714), + [sym_await_expression] = STATE(1714), + [sym_field_expression] = STATE(1672), + [sym_unsafe_block] = STATE(1714), + [sym_async_block] = STATE(1714), + [sym_gen_block] = STATE(1714), + [sym_try_block] = STATE(1714), + [sym_block] = STATE(1714), + [sym__literal] = STATE(1714), + [sym_string_literal] = STATE(1766), + [sym_raw_string_literal] = STATE(1766), + [sym_boolean_literal] = STATE(1766), [sym_line_comment] = STATE(276), [sym_block_comment] = STATE(276), - [sym_identifier] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [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), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(470), + [anon_sym_LBRACK] = ACTIONS(472), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(906), + [anon_sym_u8] = ACTIONS(416), + [anon_sym_i8] = ACTIONS(416), + [anon_sym_u16] = ACTIONS(416), + [anon_sym_i16] = ACTIONS(416), + [anon_sym_u32] = ACTIONS(416), + [anon_sym_i32] = ACTIONS(416), + [anon_sym_u64] = ACTIONS(416), + [anon_sym_i64] = ACTIONS(416), + [anon_sym_u128] = ACTIONS(416), + [anon_sym_i128] = ACTIONS(416), + [anon_sym_isize] = ACTIONS(416), + [anon_sym_usize] = ACTIONS(416), + [anon_sym_f32] = ACTIONS(416), + [anon_sym_f64] = ACTIONS(416), + [anon_sym_bool] = ACTIONS(416), + [anon_sym_str] = ACTIONS(416), + [anon_sym_char] = ACTIONS(416), + [anon_sym_DASH] = ACTIONS(906), + [anon_sym_BANG] = ACTIONS(906), + [anon_sym_AMP] = ACTIONS(908), [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(910), + [anon_sym_COLON_COLON] = ACTIONS(420), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), + [anon_sym_async] = ACTIONS(422), + [anon_sym_break] = ACTIONS(424), + [anon_sym_const] = ACTIONS(426), + [anon_sym_continue] = ACTIONS(428), + [anon_sym_default] = ACTIONS(430), + [anon_sym_for] = ACTIONS(432), + [anon_sym_gen] = ACTIONS(434), + [anon_sym_if] = ACTIONS(436), + [anon_sym_loop] = ACTIONS(438), + [anon_sym_match] = ACTIONS(440), + [anon_sym_return] = ACTIONS(442), + [anon_sym_static] = ACTIONS(444), + [anon_sym_union] = ACTIONS(430), + [anon_sym_unsafe] = ACTIONS(446), + [anon_sym_while] = ACTIONS(448), + [anon_sym_raw] = ACTIONS(430), + [anon_sym_yield] = ACTIONS(450), + [anon_sym_move] = ACTIONS(452), + [anon_sym_try] = ACTIONS(454), + [sym_integer_literal] = ACTIONS(456), + [aux_sym_string_literal_token1] = ACTIONS(458), + [sym_char_literal] = ACTIONS(456), + [anon_sym_true] = ACTIONS(460), + [anon_sym_false] = ACTIONS(460), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [sym_self] = ACTIONS(462), + [sym_super] = ACTIONS(464), + [sym_crate] = ACTIONS(464), + [sym_metavariable] = ACTIONS(466), + [sym__raw_string_literal_start] = ACTIONS(468), + [sym_float_literal] = ACTIONS(456), }, - [STATE(277)] = { - [sym_bracketed_type] = STATE(3669), - [sym_generic_function] = STATE(1894), - [sym_generic_type_with_turbofish] = STATE(3057), - [sym__expression_except_range] = STATE(1672), - [sym__expression] = STATE(1741), - [sym_macro_invocation] = STATE(1901), - [sym_scoped_identifier] = STATE(1644), - [sym_scoped_type_identifier_in_expression_position] = STATE(3253), - [sym_range_expression] = STATE(1897), - [sym_unary_expression] = STATE(1894), - [sym_try_expression] = STATE(1894), - [sym_reference_expression] = STATE(1894), - [sym_binary_expression] = STATE(1894), - [sym_assignment_expression] = STATE(1894), - [sym_compound_assignment_expr] = STATE(1894), - [sym_type_cast_expression] = STATE(1894), - [sym_return_expression] = STATE(1894), - [sym_yield_expression] = STATE(1894), - [sym_call_expression] = STATE(1894), - [sym_array_expression] = STATE(1894), - [sym_parenthesized_expression] = STATE(1894), - [sym_tuple_expression] = STATE(1894), - [sym_unit_expression] = STATE(1894), - [sym_struct_expression] = STATE(1894), - [sym_if_expression] = STATE(1894), - [sym_match_expression] = STATE(1894), - [sym_while_expression] = STATE(1894), - [sym_loop_expression] = STATE(1894), - [sym_for_expression] = STATE(1894), - [sym_const_block] = STATE(1894), - [sym_closure_expression] = STATE(1894), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3777), - [sym_break_expression] = STATE(1894), - [sym_continue_expression] = STATE(1894), - [sym_index_expression] = STATE(1894), - [sym_await_expression] = STATE(1894), - [sym_field_expression] = STATE(1674), - [sym_unsafe_block] = STATE(1894), - [sym_async_block] = STATE(1894), - [sym_gen_block] = STATE(1894), - [sym_try_block] = STATE(1894), - [sym_block] = STATE(1894), - [sym__literal] = STATE(1894), - [sym_string_literal] = STATE(1768), - [sym_raw_string_literal] = STATE(1768), - [sym_boolean_literal] = STATE(1768), + [277] = { + [sym_bracketed_type] = STATE(3659), + [sym_generic_function] = STATE(1714), + [sym_generic_type_with_turbofish] = STATE(2899), + [sym__expression_except_range] = STATE(1670), + [sym__expression] = STATE(1739), + [sym_macro_invocation] = STATE(1893), + [sym_scoped_identifier] = STATE(1650), + [sym_scoped_type_identifier_in_expression_position] = STATE(3266), + [sym_range_expression] = STATE(1889), + [sym_unary_expression] = STATE(1714), + [sym_try_expression] = STATE(1714), + [sym_reference_expression] = STATE(1714), + [sym_binary_expression] = STATE(1714), + [sym_assignment_expression] = STATE(1714), + [sym_compound_assignment_expr] = STATE(1714), + [sym_type_cast_expression] = STATE(1714), + [sym_return_expression] = STATE(1714), + [sym_yield_expression] = STATE(1714), + [sym_call_expression] = STATE(1714), + [sym_array_expression] = STATE(1714), + [sym_parenthesized_expression] = STATE(1714), + [sym_tuple_expression] = STATE(1714), + [sym_unit_expression] = STATE(1714), + [sym_struct_expression] = STATE(1714), + [sym_if_expression] = STATE(1714), + [sym_match_expression] = STATE(1714), + [sym_while_expression] = STATE(1714), + [sym_loop_expression] = STATE(1714), + [sym_for_expression] = STATE(1714), + [sym_const_block] = STATE(1714), + [sym_closure_expression] = STATE(1714), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1714), + [sym_continue_expression] = STATE(1714), + [sym_index_expression] = STATE(1714), + [sym_await_expression] = STATE(1714), + [sym_field_expression] = STATE(1672), + [sym_unsafe_block] = STATE(1714), + [sym_async_block] = STATE(1714), + [sym_gen_block] = STATE(1714), + [sym_try_block] = STATE(1714), + [sym_block] = STATE(1714), + [sym__literal] = STATE(1714), + [sym_string_literal] = STATE(1766), + [sym_raw_string_literal] = STATE(1766), + [sym_boolean_literal] = STATE(1766), [sym_line_comment] = STATE(277), [sym_block_comment] = STATE(277), [sym_identifier] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(502), + [anon_sym_LPAREN] = ACTIONS(470), + [anon_sym_LBRACK] = ACTIONS(472), [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_STAR] = ACTIONS(904), + [anon_sym_STAR] = ACTIONS(906), [anon_sym_u8] = ACTIONS(416), [anon_sym_i8] = ACTIONS(416), [anon_sym_u16] = ACTIONS(416), @@ -49285,12 +49009,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(416), [anon_sym_str] = ACTIONS(416), [anon_sym_char] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(904), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), + [anon_sym_DASH] = ACTIONS(906), + [anon_sym_BANG] = ACTIONS(906), + [anon_sym_AMP] = ACTIONS(908), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1160), + [anon_sym_DOT_DOT] = ACTIONS(910), [anon_sym_COLON_COLON] = ACTIONS(420), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(422), @@ -49326,61 +49050,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(468), [sym_float_literal] = ACTIONS(456), }, - [STATE(278)] = { - [sym_bracketed_type] = STATE(3669), - [sym_generic_function] = STATE(1894), - [sym_generic_type_with_turbofish] = STATE(3057), - [sym__expression_except_range] = STATE(1672), - [sym__expression] = STATE(1880), - [sym_macro_invocation] = STATE(1901), - [sym_scoped_identifier] = STATE(1644), - [sym_scoped_type_identifier_in_expression_position] = STATE(3253), - [sym_range_expression] = STATE(1897), - [sym_unary_expression] = STATE(1894), - [sym_try_expression] = STATE(1894), - [sym_reference_expression] = STATE(1894), - [sym_binary_expression] = STATE(1894), - [sym_assignment_expression] = STATE(1894), - [sym_compound_assignment_expr] = STATE(1894), - [sym_type_cast_expression] = STATE(1894), - [sym_return_expression] = STATE(1894), - [sym_yield_expression] = STATE(1894), - [sym_call_expression] = STATE(1894), - [sym_array_expression] = STATE(1894), - [sym_parenthesized_expression] = STATE(1894), - [sym_tuple_expression] = STATE(1894), - [sym_unit_expression] = STATE(1894), - [sym_struct_expression] = STATE(1894), - [sym_if_expression] = STATE(1894), - [sym_match_expression] = STATE(1894), - [sym_while_expression] = STATE(1894), - [sym_loop_expression] = STATE(1894), - [sym_for_expression] = STATE(1894), - [sym_const_block] = STATE(1894), - [sym_closure_expression] = STATE(1894), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3777), - [sym_break_expression] = STATE(1894), - [sym_continue_expression] = STATE(1894), - [sym_index_expression] = STATE(1894), - [sym_await_expression] = STATE(1894), - [sym_field_expression] = STATE(1674), - [sym_unsafe_block] = STATE(1894), - [sym_async_block] = STATE(1894), - [sym_gen_block] = STATE(1894), - [sym_try_block] = STATE(1894), - [sym_block] = STATE(1894), - [sym__literal] = STATE(1894), - [sym_string_literal] = STATE(1768), - [sym_raw_string_literal] = STATE(1768), - [sym_boolean_literal] = STATE(1768), + [278] = { + [sym_bracketed_type] = STATE(3659), + [sym_generic_function] = STATE(1714), + [sym_generic_type_with_turbofish] = STATE(2899), + [sym__expression_except_range] = STATE(1670), + [sym__expression] = STATE(1740), + [sym_macro_invocation] = STATE(1893), + [sym_scoped_identifier] = STATE(1650), + [sym_scoped_type_identifier_in_expression_position] = STATE(3266), + [sym_range_expression] = STATE(1889), + [sym_unary_expression] = STATE(1714), + [sym_try_expression] = STATE(1714), + [sym_reference_expression] = STATE(1714), + [sym_binary_expression] = STATE(1714), + [sym_assignment_expression] = STATE(1714), + [sym_compound_assignment_expr] = STATE(1714), + [sym_type_cast_expression] = STATE(1714), + [sym_return_expression] = STATE(1714), + [sym_yield_expression] = STATE(1714), + [sym_call_expression] = STATE(1714), + [sym_array_expression] = STATE(1714), + [sym_parenthesized_expression] = STATE(1714), + [sym_tuple_expression] = STATE(1714), + [sym_unit_expression] = STATE(1714), + [sym_struct_expression] = STATE(1714), + [sym_if_expression] = STATE(1714), + [sym_match_expression] = STATE(1714), + [sym_while_expression] = STATE(1714), + [sym_loop_expression] = STATE(1714), + [sym_for_expression] = STATE(1714), + [sym_const_block] = STATE(1714), + [sym_closure_expression] = STATE(1714), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1714), + [sym_continue_expression] = STATE(1714), + [sym_index_expression] = STATE(1714), + [sym_await_expression] = STATE(1714), + [sym_field_expression] = STATE(1672), + [sym_unsafe_block] = STATE(1714), + [sym_async_block] = STATE(1714), + [sym_gen_block] = STATE(1714), + [sym_try_block] = STATE(1714), + [sym_block] = STATE(1714), + [sym__literal] = STATE(1714), + [sym_string_literal] = STATE(1766), + [sym_raw_string_literal] = STATE(1766), + [sym_boolean_literal] = STATE(1766), [sym_line_comment] = STATE(278), [sym_block_comment] = STATE(278), [sym_identifier] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(502), + [anon_sym_LPAREN] = ACTIONS(470), + [anon_sym_LBRACK] = ACTIONS(472), [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_STAR] = ACTIONS(904), + [anon_sym_STAR] = ACTIONS(906), [anon_sym_u8] = ACTIONS(416), [anon_sym_i8] = ACTIONS(416), [anon_sym_u16] = ACTIONS(416), @@ -49398,12 +49122,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(416), [anon_sym_str] = ACTIONS(416), [anon_sym_char] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(904), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), + [anon_sym_DASH] = ACTIONS(906), + [anon_sym_BANG] = ACTIONS(906), + [anon_sym_AMP] = ACTIONS(908), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1160), + [anon_sym_DOT_DOT] = ACTIONS(910), [anon_sym_COLON_COLON] = ACTIONS(420), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(422), @@ -49439,61 +49163,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(468), [sym_float_literal] = ACTIONS(456), }, - [STATE(279)] = { - [sym_bracketed_type] = STATE(3669), - [sym_generic_function] = STATE(1894), - [sym_generic_type_with_turbofish] = STATE(3057), - [sym__expression_except_range] = STATE(1672), - [sym__expression] = STATE(1742), - [sym_macro_invocation] = STATE(1901), - [sym_scoped_identifier] = STATE(1644), - [sym_scoped_type_identifier_in_expression_position] = STATE(3253), - [sym_range_expression] = STATE(1897), - [sym_unary_expression] = STATE(1894), - [sym_try_expression] = STATE(1894), - [sym_reference_expression] = STATE(1894), - [sym_binary_expression] = STATE(1894), - [sym_assignment_expression] = STATE(1894), - [sym_compound_assignment_expr] = STATE(1894), - [sym_type_cast_expression] = STATE(1894), - [sym_return_expression] = STATE(1894), - [sym_yield_expression] = STATE(1894), - [sym_call_expression] = STATE(1894), - [sym_array_expression] = STATE(1894), - [sym_parenthesized_expression] = STATE(1894), - [sym_tuple_expression] = STATE(1894), - [sym_unit_expression] = STATE(1894), - [sym_struct_expression] = STATE(1894), - [sym_if_expression] = STATE(1894), - [sym_match_expression] = STATE(1894), - [sym_while_expression] = STATE(1894), - [sym_loop_expression] = STATE(1894), - [sym_for_expression] = STATE(1894), - [sym_const_block] = STATE(1894), - [sym_closure_expression] = STATE(1894), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3777), - [sym_break_expression] = STATE(1894), - [sym_continue_expression] = STATE(1894), - [sym_index_expression] = STATE(1894), - [sym_await_expression] = STATE(1894), - [sym_field_expression] = STATE(1674), - [sym_unsafe_block] = STATE(1894), - [sym_async_block] = STATE(1894), - [sym_gen_block] = STATE(1894), - [sym_try_block] = STATE(1894), - [sym_block] = STATE(1894), - [sym__literal] = STATE(1894), - [sym_string_literal] = STATE(1768), - [sym_raw_string_literal] = STATE(1768), - [sym_boolean_literal] = STATE(1768), + [279] = { + [sym_bracketed_type] = STATE(3659), + [sym_generic_function] = STATE(1714), + [sym_generic_type_with_turbofish] = STATE(2899), + [sym__expression_except_range] = STATE(1670), + [sym__expression] = STATE(1741), + [sym_macro_invocation] = STATE(1893), + [sym_scoped_identifier] = STATE(1650), + [sym_scoped_type_identifier_in_expression_position] = STATE(3266), + [sym_range_expression] = STATE(1889), + [sym_unary_expression] = STATE(1714), + [sym_try_expression] = STATE(1714), + [sym_reference_expression] = STATE(1714), + [sym_binary_expression] = STATE(1714), + [sym_assignment_expression] = STATE(1714), + [sym_compound_assignment_expr] = STATE(1714), + [sym_type_cast_expression] = STATE(1714), + [sym_return_expression] = STATE(1714), + [sym_yield_expression] = STATE(1714), + [sym_call_expression] = STATE(1714), + [sym_array_expression] = STATE(1714), + [sym_parenthesized_expression] = STATE(1714), + [sym_tuple_expression] = STATE(1714), + [sym_unit_expression] = STATE(1714), + [sym_struct_expression] = STATE(1714), + [sym_if_expression] = STATE(1714), + [sym_match_expression] = STATE(1714), + [sym_while_expression] = STATE(1714), + [sym_loop_expression] = STATE(1714), + [sym_for_expression] = STATE(1714), + [sym_const_block] = STATE(1714), + [sym_closure_expression] = STATE(1714), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1714), + [sym_continue_expression] = STATE(1714), + [sym_index_expression] = STATE(1714), + [sym_await_expression] = STATE(1714), + [sym_field_expression] = STATE(1672), + [sym_unsafe_block] = STATE(1714), + [sym_async_block] = STATE(1714), + [sym_gen_block] = STATE(1714), + [sym_try_block] = STATE(1714), + [sym_block] = STATE(1714), + [sym__literal] = STATE(1714), + [sym_string_literal] = STATE(1766), + [sym_raw_string_literal] = STATE(1766), + [sym_boolean_literal] = STATE(1766), [sym_line_comment] = STATE(279), [sym_block_comment] = STATE(279), [sym_identifier] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(502), + [anon_sym_LPAREN] = ACTIONS(470), + [anon_sym_LBRACK] = ACTIONS(472), [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_STAR] = ACTIONS(904), + [anon_sym_STAR] = ACTIONS(906), [anon_sym_u8] = ACTIONS(416), [anon_sym_i8] = ACTIONS(416), [anon_sym_u16] = ACTIONS(416), @@ -49511,12 +49235,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(416), [anon_sym_str] = ACTIONS(416), [anon_sym_char] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(904), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), + [anon_sym_DASH] = ACTIONS(906), + [anon_sym_BANG] = ACTIONS(906), + [anon_sym_AMP] = ACTIONS(908), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1160), + [anon_sym_DOT_DOT] = ACTIONS(910), [anon_sym_COLON_COLON] = ACTIONS(420), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(422), @@ -49552,61 +49276,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(468), [sym_float_literal] = ACTIONS(456), }, - [STATE(280)] = { - [sym_bracketed_type] = STATE(3669), - [sym_generic_function] = STATE(1894), - [sym_generic_type_with_turbofish] = STATE(3057), - [sym__expression_except_range] = STATE(1672), - [sym__expression] = STATE(1743), - [sym_macro_invocation] = STATE(1901), - [sym_scoped_identifier] = STATE(1644), - [sym_scoped_type_identifier_in_expression_position] = STATE(3253), - [sym_range_expression] = STATE(1897), - [sym_unary_expression] = STATE(1894), - [sym_try_expression] = STATE(1894), - [sym_reference_expression] = STATE(1894), - [sym_binary_expression] = STATE(1894), - [sym_assignment_expression] = STATE(1894), - [sym_compound_assignment_expr] = STATE(1894), - [sym_type_cast_expression] = STATE(1894), - [sym_return_expression] = STATE(1894), - [sym_yield_expression] = STATE(1894), - [sym_call_expression] = STATE(1894), - [sym_array_expression] = STATE(1894), - [sym_parenthesized_expression] = STATE(1894), - [sym_tuple_expression] = STATE(1894), - [sym_unit_expression] = STATE(1894), - [sym_struct_expression] = STATE(1894), - [sym_if_expression] = STATE(1894), - [sym_match_expression] = STATE(1894), - [sym_while_expression] = STATE(1894), - [sym_loop_expression] = STATE(1894), - [sym_for_expression] = STATE(1894), - [sym_const_block] = STATE(1894), - [sym_closure_expression] = STATE(1894), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3777), - [sym_break_expression] = STATE(1894), - [sym_continue_expression] = STATE(1894), - [sym_index_expression] = STATE(1894), - [sym_await_expression] = STATE(1894), - [sym_field_expression] = STATE(1674), - [sym_unsafe_block] = STATE(1894), - [sym_async_block] = STATE(1894), - [sym_gen_block] = STATE(1894), - [sym_try_block] = STATE(1894), - [sym_block] = STATE(1894), - [sym__literal] = STATE(1894), - [sym_string_literal] = STATE(1768), - [sym_raw_string_literal] = STATE(1768), - [sym_boolean_literal] = STATE(1768), + [280] = { + [sym_bracketed_type] = STATE(3659), + [sym_generic_function] = STATE(1714), + [sym_generic_type_with_turbofish] = STATE(2899), + [sym__expression_except_range] = STATE(1670), + [sym__expression] = STATE(1742), + [sym_macro_invocation] = STATE(1893), + [sym_scoped_identifier] = STATE(1650), + [sym_scoped_type_identifier_in_expression_position] = STATE(3266), + [sym_range_expression] = STATE(1889), + [sym_unary_expression] = STATE(1714), + [sym_try_expression] = STATE(1714), + [sym_reference_expression] = STATE(1714), + [sym_binary_expression] = STATE(1714), + [sym_assignment_expression] = STATE(1714), + [sym_compound_assignment_expr] = STATE(1714), + [sym_type_cast_expression] = STATE(1714), + [sym_return_expression] = STATE(1714), + [sym_yield_expression] = STATE(1714), + [sym_call_expression] = STATE(1714), + [sym_array_expression] = STATE(1714), + [sym_parenthesized_expression] = STATE(1714), + [sym_tuple_expression] = STATE(1714), + [sym_unit_expression] = STATE(1714), + [sym_struct_expression] = STATE(1714), + [sym_if_expression] = STATE(1714), + [sym_match_expression] = STATE(1714), + [sym_while_expression] = STATE(1714), + [sym_loop_expression] = STATE(1714), + [sym_for_expression] = STATE(1714), + [sym_const_block] = STATE(1714), + [sym_closure_expression] = STATE(1714), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1714), + [sym_continue_expression] = STATE(1714), + [sym_index_expression] = STATE(1714), + [sym_await_expression] = STATE(1714), + [sym_field_expression] = STATE(1672), + [sym_unsafe_block] = STATE(1714), + [sym_async_block] = STATE(1714), + [sym_gen_block] = STATE(1714), + [sym_try_block] = STATE(1714), + [sym_block] = STATE(1714), + [sym__literal] = STATE(1714), + [sym_string_literal] = STATE(1766), + [sym_raw_string_literal] = STATE(1766), + [sym_boolean_literal] = STATE(1766), [sym_line_comment] = STATE(280), [sym_block_comment] = STATE(280), [sym_identifier] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(502), + [anon_sym_LPAREN] = ACTIONS(470), + [anon_sym_LBRACK] = ACTIONS(472), [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_STAR] = ACTIONS(904), + [anon_sym_STAR] = ACTIONS(906), [anon_sym_u8] = ACTIONS(416), [anon_sym_i8] = ACTIONS(416), [anon_sym_u16] = ACTIONS(416), @@ -49624,12 +49348,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(416), [anon_sym_str] = ACTIONS(416), [anon_sym_char] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(904), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), + [anon_sym_DASH] = ACTIONS(906), + [anon_sym_BANG] = ACTIONS(906), + [anon_sym_AMP] = ACTIONS(908), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1160), + [anon_sym_DOT_DOT] = ACTIONS(910), [anon_sym_COLON_COLON] = ACTIONS(420), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(422), @@ -49665,61 +49389,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(468), [sym_float_literal] = ACTIONS(456), }, - [STATE(281)] = { - [sym_bracketed_type] = STATE(3669), - [sym_generic_function] = STATE(1894), - [sym_generic_type_with_turbofish] = STATE(3057), - [sym__expression_except_range] = STATE(1672), - [sym__expression] = STATE(1744), - [sym_macro_invocation] = STATE(1901), - [sym_scoped_identifier] = STATE(1644), - [sym_scoped_type_identifier_in_expression_position] = STATE(3253), - [sym_range_expression] = STATE(1897), - [sym_unary_expression] = STATE(1894), - [sym_try_expression] = STATE(1894), - [sym_reference_expression] = STATE(1894), - [sym_binary_expression] = STATE(1894), - [sym_assignment_expression] = STATE(1894), - [sym_compound_assignment_expr] = STATE(1894), - [sym_type_cast_expression] = STATE(1894), - [sym_return_expression] = STATE(1894), - [sym_yield_expression] = STATE(1894), - [sym_call_expression] = STATE(1894), - [sym_array_expression] = STATE(1894), - [sym_parenthesized_expression] = STATE(1894), - [sym_tuple_expression] = STATE(1894), - [sym_unit_expression] = STATE(1894), - [sym_struct_expression] = STATE(1894), - [sym_if_expression] = STATE(1894), - [sym_match_expression] = STATE(1894), - [sym_while_expression] = STATE(1894), - [sym_loop_expression] = STATE(1894), - [sym_for_expression] = STATE(1894), - [sym_const_block] = STATE(1894), - [sym_closure_expression] = STATE(1894), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3777), - [sym_break_expression] = STATE(1894), - [sym_continue_expression] = STATE(1894), - [sym_index_expression] = STATE(1894), - [sym_await_expression] = STATE(1894), - [sym_field_expression] = STATE(1674), - [sym_unsafe_block] = STATE(1894), - [sym_async_block] = STATE(1894), - [sym_gen_block] = STATE(1894), - [sym_try_block] = STATE(1894), - [sym_block] = STATE(1894), - [sym__literal] = STATE(1894), - [sym_string_literal] = STATE(1768), - [sym_raw_string_literal] = STATE(1768), - [sym_boolean_literal] = STATE(1768), + [281] = { + [sym_bracketed_type] = STATE(3659), + [sym_generic_function] = STATE(1714), + [sym_generic_type_with_turbofish] = STATE(2899), + [sym__expression_except_range] = STATE(1670), + [sym__expression] = STATE(1743), + [sym_macro_invocation] = STATE(1893), + [sym_scoped_identifier] = STATE(1650), + [sym_scoped_type_identifier_in_expression_position] = STATE(3266), + [sym_range_expression] = STATE(1889), + [sym_unary_expression] = STATE(1714), + [sym_try_expression] = STATE(1714), + [sym_reference_expression] = STATE(1714), + [sym_binary_expression] = STATE(1714), + [sym_assignment_expression] = STATE(1714), + [sym_compound_assignment_expr] = STATE(1714), + [sym_type_cast_expression] = STATE(1714), + [sym_return_expression] = STATE(1714), + [sym_yield_expression] = STATE(1714), + [sym_call_expression] = STATE(1714), + [sym_array_expression] = STATE(1714), + [sym_parenthesized_expression] = STATE(1714), + [sym_tuple_expression] = STATE(1714), + [sym_unit_expression] = STATE(1714), + [sym_struct_expression] = STATE(1714), + [sym_if_expression] = STATE(1714), + [sym_match_expression] = STATE(1714), + [sym_while_expression] = STATE(1714), + [sym_loop_expression] = STATE(1714), + [sym_for_expression] = STATE(1714), + [sym_const_block] = STATE(1714), + [sym_closure_expression] = STATE(1714), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1714), + [sym_continue_expression] = STATE(1714), + [sym_index_expression] = STATE(1714), + [sym_await_expression] = STATE(1714), + [sym_field_expression] = STATE(1672), + [sym_unsafe_block] = STATE(1714), + [sym_async_block] = STATE(1714), + [sym_gen_block] = STATE(1714), + [sym_try_block] = STATE(1714), + [sym_block] = STATE(1714), + [sym__literal] = STATE(1714), + [sym_string_literal] = STATE(1766), + [sym_raw_string_literal] = STATE(1766), + [sym_boolean_literal] = STATE(1766), [sym_line_comment] = STATE(281), [sym_block_comment] = STATE(281), [sym_identifier] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(502), + [anon_sym_LPAREN] = ACTIONS(470), + [anon_sym_LBRACK] = ACTIONS(472), [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_STAR] = ACTIONS(904), + [anon_sym_STAR] = ACTIONS(906), [anon_sym_u8] = ACTIONS(416), [anon_sym_i8] = ACTIONS(416), [anon_sym_u16] = ACTIONS(416), @@ -49737,12 +49461,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(416), [anon_sym_str] = ACTIONS(416), [anon_sym_char] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(904), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), + [anon_sym_DASH] = ACTIONS(906), + [anon_sym_BANG] = ACTIONS(906), + [anon_sym_AMP] = ACTIONS(908), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1160), + [anon_sym_DOT_DOT] = ACTIONS(910), [anon_sym_COLON_COLON] = ACTIONS(420), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(422), @@ -49778,61 +49502,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(468), [sym_float_literal] = ACTIONS(456), }, - [STATE(282)] = { - [sym_bracketed_type] = STATE(3669), - [sym_generic_function] = STATE(1894), - [sym_generic_type_with_turbofish] = STATE(3057), - [sym__expression_except_range] = STATE(1672), - [sym__expression] = STATE(1745), - [sym_macro_invocation] = STATE(1901), - [sym_scoped_identifier] = STATE(1644), - [sym_scoped_type_identifier_in_expression_position] = STATE(3253), - [sym_range_expression] = STATE(1897), - [sym_unary_expression] = STATE(1894), - [sym_try_expression] = STATE(1894), - [sym_reference_expression] = STATE(1894), - [sym_binary_expression] = STATE(1894), - [sym_assignment_expression] = STATE(1894), - [sym_compound_assignment_expr] = STATE(1894), - [sym_type_cast_expression] = STATE(1894), - [sym_return_expression] = STATE(1894), - [sym_yield_expression] = STATE(1894), - [sym_call_expression] = STATE(1894), - [sym_array_expression] = STATE(1894), - [sym_parenthesized_expression] = STATE(1894), - [sym_tuple_expression] = STATE(1894), - [sym_unit_expression] = STATE(1894), - [sym_struct_expression] = STATE(1894), - [sym_if_expression] = STATE(1894), - [sym_match_expression] = STATE(1894), - [sym_while_expression] = STATE(1894), - [sym_loop_expression] = STATE(1894), - [sym_for_expression] = STATE(1894), - [sym_const_block] = STATE(1894), - [sym_closure_expression] = STATE(1894), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3777), - [sym_break_expression] = STATE(1894), - [sym_continue_expression] = STATE(1894), - [sym_index_expression] = STATE(1894), - [sym_await_expression] = STATE(1894), - [sym_field_expression] = STATE(1674), - [sym_unsafe_block] = STATE(1894), - [sym_async_block] = STATE(1894), - [sym_gen_block] = STATE(1894), - [sym_try_block] = STATE(1894), - [sym_block] = STATE(1894), - [sym__literal] = STATE(1894), - [sym_string_literal] = STATE(1768), - [sym_raw_string_literal] = STATE(1768), - [sym_boolean_literal] = STATE(1768), + [282] = { + [sym_bracketed_type] = STATE(3659), + [sym_generic_function] = STATE(1714), + [sym_generic_type_with_turbofish] = STATE(2899), + [sym__expression_except_range] = STATE(1670), + [sym__expression] = STATE(1744), + [sym_macro_invocation] = STATE(1893), + [sym_scoped_identifier] = STATE(1650), + [sym_scoped_type_identifier_in_expression_position] = STATE(3266), + [sym_range_expression] = STATE(1889), + [sym_unary_expression] = STATE(1714), + [sym_try_expression] = STATE(1714), + [sym_reference_expression] = STATE(1714), + [sym_binary_expression] = STATE(1714), + [sym_assignment_expression] = STATE(1714), + [sym_compound_assignment_expr] = STATE(1714), + [sym_type_cast_expression] = STATE(1714), + [sym_return_expression] = STATE(1714), + [sym_yield_expression] = STATE(1714), + [sym_call_expression] = STATE(1714), + [sym_array_expression] = STATE(1714), + [sym_parenthesized_expression] = STATE(1714), + [sym_tuple_expression] = STATE(1714), + [sym_unit_expression] = STATE(1714), + [sym_struct_expression] = STATE(1714), + [sym_if_expression] = STATE(1714), + [sym_match_expression] = STATE(1714), + [sym_while_expression] = STATE(1714), + [sym_loop_expression] = STATE(1714), + [sym_for_expression] = STATE(1714), + [sym_const_block] = STATE(1714), + [sym_closure_expression] = STATE(1714), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1714), + [sym_continue_expression] = STATE(1714), + [sym_index_expression] = STATE(1714), + [sym_await_expression] = STATE(1714), + [sym_field_expression] = STATE(1672), + [sym_unsafe_block] = STATE(1714), + [sym_async_block] = STATE(1714), + [sym_gen_block] = STATE(1714), + [sym_try_block] = STATE(1714), + [sym_block] = STATE(1714), + [sym__literal] = STATE(1714), + [sym_string_literal] = STATE(1766), + [sym_raw_string_literal] = STATE(1766), + [sym_boolean_literal] = STATE(1766), [sym_line_comment] = STATE(282), [sym_block_comment] = STATE(282), [sym_identifier] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(502), + [anon_sym_LPAREN] = ACTIONS(470), + [anon_sym_LBRACK] = ACTIONS(472), [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_STAR] = ACTIONS(904), + [anon_sym_STAR] = ACTIONS(906), [anon_sym_u8] = ACTIONS(416), [anon_sym_i8] = ACTIONS(416), [anon_sym_u16] = ACTIONS(416), @@ -49850,12 +49574,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(416), [anon_sym_str] = ACTIONS(416), [anon_sym_char] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(904), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), + [anon_sym_DASH] = ACTIONS(906), + [anon_sym_BANG] = ACTIONS(906), + [anon_sym_AMP] = ACTIONS(908), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1160), + [anon_sym_DOT_DOT] = ACTIONS(910), [anon_sym_COLON_COLON] = ACTIONS(420), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(422), @@ -49891,61 +49615,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(468), [sym_float_literal] = ACTIONS(456), }, - [STATE(283)] = { - [sym_bracketed_type] = STATE(3669), - [sym_generic_function] = STATE(1894), - [sym_generic_type_with_turbofish] = STATE(3057), - [sym__expression_except_range] = STATE(1672), - [sym__expression] = STATE(1746), - [sym_macro_invocation] = STATE(1901), - [sym_scoped_identifier] = STATE(1644), - [sym_scoped_type_identifier_in_expression_position] = STATE(3253), - [sym_range_expression] = STATE(1897), - [sym_unary_expression] = STATE(1894), - [sym_try_expression] = STATE(1894), - [sym_reference_expression] = STATE(1894), - [sym_binary_expression] = STATE(1894), - [sym_assignment_expression] = STATE(1894), - [sym_compound_assignment_expr] = STATE(1894), - [sym_type_cast_expression] = STATE(1894), - [sym_return_expression] = STATE(1894), - [sym_yield_expression] = STATE(1894), - [sym_call_expression] = STATE(1894), - [sym_array_expression] = STATE(1894), - [sym_parenthesized_expression] = STATE(1894), - [sym_tuple_expression] = STATE(1894), - [sym_unit_expression] = STATE(1894), - [sym_struct_expression] = STATE(1894), - [sym_if_expression] = STATE(1894), - [sym_match_expression] = STATE(1894), - [sym_while_expression] = STATE(1894), - [sym_loop_expression] = STATE(1894), - [sym_for_expression] = STATE(1894), - [sym_const_block] = STATE(1894), - [sym_closure_expression] = STATE(1894), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3777), - [sym_break_expression] = STATE(1894), - [sym_continue_expression] = STATE(1894), - [sym_index_expression] = STATE(1894), - [sym_await_expression] = STATE(1894), - [sym_field_expression] = STATE(1674), - [sym_unsafe_block] = STATE(1894), - [sym_async_block] = STATE(1894), - [sym_gen_block] = STATE(1894), - [sym_try_block] = STATE(1894), - [sym_block] = STATE(1894), - [sym__literal] = STATE(1894), - [sym_string_literal] = STATE(1768), - [sym_raw_string_literal] = STATE(1768), - [sym_boolean_literal] = STATE(1768), + [283] = { + [sym_bracketed_type] = STATE(3659), + [sym_generic_function] = STATE(1714), + [sym_generic_type_with_turbofish] = STATE(2899), + [sym__expression_except_range] = STATE(1670), + [sym__expression] = STATE(1745), + [sym_macro_invocation] = STATE(1893), + [sym_scoped_identifier] = STATE(1650), + [sym_scoped_type_identifier_in_expression_position] = STATE(3266), + [sym_range_expression] = STATE(1889), + [sym_unary_expression] = STATE(1714), + [sym_try_expression] = STATE(1714), + [sym_reference_expression] = STATE(1714), + [sym_binary_expression] = STATE(1714), + [sym_assignment_expression] = STATE(1714), + [sym_compound_assignment_expr] = STATE(1714), + [sym_type_cast_expression] = STATE(1714), + [sym_return_expression] = STATE(1714), + [sym_yield_expression] = STATE(1714), + [sym_call_expression] = STATE(1714), + [sym_array_expression] = STATE(1714), + [sym_parenthesized_expression] = STATE(1714), + [sym_tuple_expression] = STATE(1714), + [sym_unit_expression] = STATE(1714), + [sym_struct_expression] = STATE(1714), + [sym_if_expression] = STATE(1714), + [sym_match_expression] = STATE(1714), + [sym_while_expression] = STATE(1714), + [sym_loop_expression] = STATE(1714), + [sym_for_expression] = STATE(1714), + [sym_const_block] = STATE(1714), + [sym_closure_expression] = STATE(1714), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1714), + [sym_continue_expression] = STATE(1714), + [sym_index_expression] = STATE(1714), + [sym_await_expression] = STATE(1714), + [sym_field_expression] = STATE(1672), + [sym_unsafe_block] = STATE(1714), + [sym_async_block] = STATE(1714), + [sym_gen_block] = STATE(1714), + [sym_try_block] = STATE(1714), + [sym_block] = STATE(1714), + [sym__literal] = STATE(1714), + [sym_string_literal] = STATE(1766), + [sym_raw_string_literal] = STATE(1766), + [sym_boolean_literal] = STATE(1766), [sym_line_comment] = STATE(283), [sym_block_comment] = STATE(283), [sym_identifier] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(502), + [anon_sym_LPAREN] = ACTIONS(470), + [anon_sym_LBRACK] = ACTIONS(472), [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_STAR] = ACTIONS(904), + [anon_sym_STAR] = ACTIONS(906), [anon_sym_u8] = ACTIONS(416), [anon_sym_i8] = ACTIONS(416), [anon_sym_u16] = ACTIONS(416), @@ -49963,12 +49687,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(416), [anon_sym_str] = ACTIONS(416), [anon_sym_char] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(904), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), + [anon_sym_DASH] = ACTIONS(906), + [anon_sym_BANG] = ACTIONS(906), + [anon_sym_AMP] = ACTIONS(908), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1160), + [anon_sym_DOT_DOT] = ACTIONS(910), [anon_sym_COLON_COLON] = ACTIONS(420), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(422), @@ -50004,61 +49728,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(468), [sym_float_literal] = ACTIONS(456), }, - [STATE(284)] = { - [sym_bracketed_type] = STATE(3669), - [sym_generic_function] = STATE(1894), - [sym_generic_type_with_turbofish] = STATE(3057), - [sym__expression_except_range] = STATE(1672), - [sym__expression] = STATE(1747), - [sym_macro_invocation] = STATE(1901), - [sym_scoped_identifier] = STATE(1644), - [sym_scoped_type_identifier_in_expression_position] = STATE(3253), - [sym_range_expression] = STATE(1897), - [sym_unary_expression] = STATE(1894), - [sym_try_expression] = STATE(1894), - [sym_reference_expression] = STATE(1894), - [sym_binary_expression] = STATE(1894), - [sym_assignment_expression] = STATE(1894), - [sym_compound_assignment_expr] = STATE(1894), - [sym_type_cast_expression] = STATE(1894), - [sym_return_expression] = STATE(1894), - [sym_yield_expression] = STATE(1894), - [sym_call_expression] = STATE(1894), - [sym_array_expression] = STATE(1894), - [sym_parenthesized_expression] = STATE(1894), - [sym_tuple_expression] = STATE(1894), - [sym_unit_expression] = STATE(1894), - [sym_struct_expression] = STATE(1894), - [sym_if_expression] = STATE(1894), - [sym_match_expression] = STATE(1894), - [sym_while_expression] = STATE(1894), - [sym_loop_expression] = STATE(1894), - [sym_for_expression] = STATE(1894), - [sym_const_block] = STATE(1894), - [sym_closure_expression] = STATE(1894), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3777), - [sym_break_expression] = STATE(1894), - [sym_continue_expression] = STATE(1894), - [sym_index_expression] = STATE(1894), - [sym_await_expression] = STATE(1894), - [sym_field_expression] = STATE(1674), - [sym_unsafe_block] = STATE(1894), - [sym_async_block] = STATE(1894), - [sym_gen_block] = STATE(1894), - [sym_try_block] = STATE(1894), - [sym_block] = STATE(1894), - [sym__literal] = STATE(1894), - [sym_string_literal] = STATE(1768), - [sym_raw_string_literal] = STATE(1768), - [sym_boolean_literal] = STATE(1768), + [284] = { + [sym_bracketed_type] = STATE(3659), + [sym_generic_function] = STATE(1714), + [sym_generic_type_with_turbofish] = STATE(2899), + [sym__expression_except_range] = STATE(1670), + [sym__expression] = STATE(1746), + [sym_macro_invocation] = STATE(1893), + [sym_scoped_identifier] = STATE(1650), + [sym_scoped_type_identifier_in_expression_position] = STATE(3266), + [sym_range_expression] = STATE(1889), + [sym_unary_expression] = STATE(1714), + [sym_try_expression] = STATE(1714), + [sym_reference_expression] = STATE(1714), + [sym_binary_expression] = STATE(1714), + [sym_assignment_expression] = STATE(1714), + [sym_compound_assignment_expr] = STATE(1714), + [sym_type_cast_expression] = STATE(1714), + [sym_return_expression] = STATE(1714), + [sym_yield_expression] = STATE(1714), + [sym_call_expression] = STATE(1714), + [sym_array_expression] = STATE(1714), + [sym_parenthesized_expression] = STATE(1714), + [sym_tuple_expression] = STATE(1714), + [sym_unit_expression] = STATE(1714), + [sym_struct_expression] = STATE(1714), + [sym_if_expression] = STATE(1714), + [sym_match_expression] = STATE(1714), + [sym_while_expression] = STATE(1714), + [sym_loop_expression] = STATE(1714), + [sym_for_expression] = STATE(1714), + [sym_const_block] = STATE(1714), + [sym_closure_expression] = STATE(1714), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1714), + [sym_continue_expression] = STATE(1714), + [sym_index_expression] = STATE(1714), + [sym_await_expression] = STATE(1714), + [sym_field_expression] = STATE(1672), + [sym_unsafe_block] = STATE(1714), + [sym_async_block] = STATE(1714), + [sym_gen_block] = STATE(1714), + [sym_try_block] = STATE(1714), + [sym_block] = STATE(1714), + [sym__literal] = STATE(1714), + [sym_string_literal] = STATE(1766), + [sym_raw_string_literal] = STATE(1766), + [sym_boolean_literal] = STATE(1766), [sym_line_comment] = STATE(284), [sym_block_comment] = STATE(284), [sym_identifier] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(502), + [anon_sym_LPAREN] = ACTIONS(470), + [anon_sym_LBRACK] = ACTIONS(472), [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_STAR] = ACTIONS(904), + [anon_sym_STAR] = ACTIONS(906), [anon_sym_u8] = ACTIONS(416), [anon_sym_i8] = ACTIONS(416), [anon_sym_u16] = ACTIONS(416), @@ -50076,12 +49800,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(416), [anon_sym_str] = ACTIONS(416), [anon_sym_char] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(904), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), + [anon_sym_DASH] = ACTIONS(906), + [anon_sym_BANG] = ACTIONS(906), + [anon_sym_AMP] = ACTIONS(908), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1160), + [anon_sym_DOT_DOT] = ACTIONS(910), [anon_sym_COLON_COLON] = ACTIONS(420), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(422), @@ -50117,61 +49841,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(468), [sym_float_literal] = ACTIONS(456), }, - [STATE(285)] = { - [sym_bracketed_type] = STATE(3669), - [sym_generic_function] = STATE(1894), - [sym_generic_type_with_turbofish] = STATE(3057), - [sym__expression_except_range] = STATE(1672), - [sym__expression] = STATE(1748), - [sym_macro_invocation] = STATE(1901), - [sym_scoped_identifier] = STATE(1644), - [sym_scoped_type_identifier_in_expression_position] = STATE(3253), - [sym_range_expression] = STATE(1897), - [sym_unary_expression] = STATE(1894), - [sym_try_expression] = STATE(1894), - [sym_reference_expression] = STATE(1894), - [sym_binary_expression] = STATE(1894), - [sym_assignment_expression] = STATE(1894), - [sym_compound_assignment_expr] = STATE(1894), - [sym_type_cast_expression] = STATE(1894), - [sym_return_expression] = STATE(1894), - [sym_yield_expression] = STATE(1894), - [sym_call_expression] = STATE(1894), - [sym_array_expression] = STATE(1894), - [sym_parenthesized_expression] = STATE(1894), - [sym_tuple_expression] = STATE(1894), - [sym_unit_expression] = STATE(1894), - [sym_struct_expression] = STATE(1894), - [sym_if_expression] = STATE(1894), - [sym_match_expression] = STATE(1894), - [sym_while_expression] = STATE(1894), - [sym_loop_expression] = STATE(1894), - [sym_for_expression] = STATE(1894), - [sym_const_block] = STATE(1894), - [sym_closure_expression] = STATE(1894), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3777), - [sym_break_expression] = STATE(1894), - [sym_continue_expression] = STATE(1894), - [sym_index_expression] = STATE(1894), - [sym_await_expression] = STATE(1894), - [sym_field_expression] = STATE(1674), - [sym_unsafe_block] = STATE(1894), - [sym_async_block] = STATE(1894), - [sym_gen_block] = STATE(1894), - [sym_try_block] = STATE(1894), - [sym_block] = STATE(1894), - [sym__literal] = STATE(1894), - [sym_string_literal] = STATE(1768), - [sym_raw_string_literal] = STATE(1768), - [sym_boolean_literal] = STATE(1768), + [285] = { + [sym_bracketed_type] = STATE(3659), + [sym_generic_function] = STATE(1714), + [sym_generic_type_with_turbofish] = STATE(2899), + [sym__expression_except_range] = STATE(1670), + [sym__expression] = STATE(1747), + [sym_macro_invocation] = STATE(1893), + [sym_scoped_identifier] = STATE(1650), + [sym_scoped_type_identifier_in_expression_position] = STATE(3266), + [sym_range_expression] = STATE(1889), + [sym_unary_expression] = STATE(1714), + [sym_try_expression] = STATE(1714), + [sym_reference_expression] = STATE(1714), + [sym_binary_expression] = STATE(1714), + [sym_assignment_expression] = STATE(1714), + [sym_compound_assignment_expr] = STATE(1714), + [sym_type_cast_expression] = STATE(1714), + [sym_return_expression] = STATE(1714), + [sym_yield_expression] = STATE(1714), + [sym_call_expression] = STATE(1714), + [sym_array_expression] = STATE(1714), + [sym_parenthesized_expression] = STATE(1714), + [sym_tuple_expression] = STATE(1714), + [sym_unit_expression] = STATE(1714), + [sym_struct_expression] = STATE(1714), + [sym_if_expression] = STATE(1714), + [sym_match_expression] = STATE(1714), + [sym_while_expression] = STATE(1714), + [sym_loop_expression] = STATE(1714), + [sym_for_expression] = STATE(1714), + [sym_const_block] = STATE(1714), + [sym_closure_expression] = STATE(1714), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1714), + [sym_continue_expression] = STATE(1714), + [sym_index_expression] = STATE(1714), + [sym_await_expression] = STATE(1714), + [sym_field_expression] = STATE(1672), + [sym_unsafe_block] = STATE(1714), + [sym_async_block] = STATE(1714), + [sym_gen_block] = STATE(1714), + [sym_try_block] = STATE(1714), + [sym_block] = STATE(1714), + [sym__literal] = STATE(1714), + [sym_string_literal] = STATE(1766), + [sym_raw_string_literal] = STATE(1766), + [sym_boolean_literal] = STATE(1766), [sym_line_comment] = STATE(285), [sym_block_comment] = STATE(285), [sym_identifier] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(502), + [anon_sym_LPAREN] = ACTIONS(470), + [anon_sym_LBRACK] = ACTIONS(472), [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_STAR] = ACTIONS(904), + [anon_sym_STAR] = ACTIONS(906), [anon_sym_u8] = ACTIONS(416), [anon_sym_i8] = ACTIONS(416), [anon_sym_u16] = ACTIONS(416), @@ -50189,12 +49913,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(416), [anon_sym_str] = ACTIONS(416), [anon_sym_char] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(904), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), + [anon_sym_DASH] = ACTIONS(906), + [anon_sym_BANG] = ACTIONS(906), + [anon_sym_AMP] = ACTIONS(908), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1160), + [anon_sym_DOT_DOT] = ACTIONS(910), [anon_sym_COLON_COLON] = ACTIONS(420), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(422), @@ -50230,61 +49954,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(468), [sym_float_literal] = ACTIONS(456), }, - [STATE(286)] = { - [sym_bracketed_type] = STATE(3669), - [sym_generic_function] = STATE(1894), - [sym_generic_type_with_turbofish] = STATE(3057), - [sym__expression_except_range] = STATE(1672), - [sym__expression] = STATE(1749), - [sym_macro_invocation] = STATE(1901), - [sym_scoped_identifier] = STATE(1644), - [sym_scoped_type_identifier_in_expression_position] = STATE(3253), - [sym_range_expression] = STATE(1897), - [sym_unary_expression] = STATE(1894), - [sym_try_expression] = STATE(1894), - [sym_reference_expression] = STATE(1894), - [sym_binary_expression] = STATE(1894), - [sym_assignment_expression] = STATE(1894), - [sym_compound_assignment_expr] = STATE(1894), - [sym_type_cast_expression] = STATE(1894), - [sym_return_expression] = STATE(1894), - [sym_yield_expression] = STATE(1894), - [sym_call_expression] = STATE(1894), - [sym_array_expression] = STATE(1894), - [sym_parenthesized_expression] = STATE(1894), - [sym_tuple_expression] = STATE(1894), - [sym_unit_expression] = STATE(1894), - [sym_struct_expression] = STATE(1894), - [sym_if_expression] = STATE(1894), - [sym_match_expression] = STATE(1894), - [sym_while_expression] = STATE(1894), - [sym_loop_expression] = STATE(1894), - [sym_for_expression] = STATE(1894), - [sym_const_block] = STATE(1894), - [sym_closure_expression] = STATE(1894), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3777), - [sym_break_expression] = STATE(1894), - [sym_continue_expression] = STATE(1894), - [sym_index_expression] = STATE(1894), - [sym_await_expression] = STATE(1894), - [sym_field_expression] = STATE(1674), - [sym_unsafe_block] = STATE(1894), - [sym_async_block] = STATE(1894), - [sym_gen_block] = STATE(1894), - [sym_try_block] = STATE(1894), - [sym_block] = STATE(1894), - [sym__literal] = STATE(1894), - [sym_string_literal] = STATE(1768), - [sym_raw_string_literal] = STATE(1768), - [sym_boolean_literal] = STATE(1768), + [286] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1836), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), [sym_line_comment] = STATE(286), [sym_block_comment] = STATE(286), + [sym_identifier] = ACTIONS(344), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [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(356), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(360), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(364), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_raw] = ACTIONS(360), + [anon_sym_yield] = ACTIONS(93), + [anon_sym_move] = ACTIONS(95), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(111), + [sym_super] = ACTIONS(113), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(117), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [287] = { + [sym_bracketed_type] = STATE(3659), + [sym_generic_function] = STATE(1714), + [sym_generic_type_with_turbofish] = STATE(2899), + [sym__expression_except_range] = STATE(1670), + [sym__expression] = STATE(1748), + [sym_macro_invocation] = STATE(1893), + [sym_scoped_identifier] = STATE(1650), + [sym_scoped_type_identifier_in_expression_position] = STATE(3266), + [sym_range_expression] = STATE(1889), + [sym_unary_expression] = STATE(1714), + [sym_try_expression] = STATE(1714), + [sym_reference_expression] = STATE(1714), + [sym_binary_expression] = STATE(1714), + [sym_assignment_expression] = STATE(1714), + [sym_compound_assignment_expr] = STATE(1714), + [sym_type_cast_expression] = STATE(1714), + [sym_return_expression] = STATE(1714), + [sym_yield_expression] = STATE(1714), + [sym_call_expression] = STATE(1714), + [sym_array_expression] = STATE(1714), + [sym_parenthesized_expression] = STATE(1714), + [sym_tuple_expression] = STATE(1714), + [sym_unit_expression] = STATE(1714), + [sym_struct_expression] = STATE(1714), + [sym_if_expression] = STATE(1714), + [sym_match_expression] = STATE(1714), + [sym_while_expression] = STATE(1714), + [sym_loop_expression] = STATE(1714), + [sym_for_expression] = STATE(1714), + [sym_const_block] = STATE(1714), + [sym_closure_expression] = STATE(1714), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1714), + [sym_continue_expression] = STATE(1714), + [sym_index_expression] = STATE(1714), + [sym_await_expression] = STATE(1714), + [sym_field_expression] = STATE(1672), + [sym_unsafe_block] = STATE(1714), + [sym_async_block] = STATE(1714), + [sym_gen_block] = STATE(1714), + [sym_try_block] = STATE(1714), + [sym_block] = STATE(1714), + [sym__literal] = STATE(1714), + [sym_string_literal] = STATE(1766), + [sym_raw_string_literal] = STATE(1766), + [sym_boolean_literal] = STATE(1766), + [sym_line_comment] = STATE(287), + [sym_block_comment] = STATE(287), [sym_identifier] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(502), + [anon_sym_LPAREN] = ACTIONS(470), + [anon_sym_LBRACK] = ACTIONS(472), [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_STAR] = ACTIONS(904), + [anon_sym_STAR] = ACTIONS(906), [anon_sym_u8] = ACTIONS(416), [anon_sym_i8] = ACTIONS(416), [anon_sym_u16] = ACTIONS(416), @@ -50302,12 +50139,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(416), [anon_sym_str] = ACTIONS(416), [anon_sym_char] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(904), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), + [anon_sym_DASH] = ACTIONS(906), + [anon_sym_BANG] = ACTIONS(906), + [anon_sym_AMP] = ACTIONS(908), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1160), + [anon_sym_DOT_DOT] = ACTIONS(910), [anon_sym_COLON_COLON] = ACTIONS(420), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(422), @@ -50343,61 +50180,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(468), [sym_float_literal] = ACTIONS(456), }, - [STATE(287)] = { - [sym_bracketed_type] = STATE(3669), - [sym_generic_function] = STATE(1894), - [sym_generic_type_with_turbofish] = STATE(3057), - [sym__expression_except_range] = STATE(1672), - [sym__expression] = STATE(1750), - [sym_macro_invocation] = STATE(1901), - [sym_scoped_identifier] = STATE(1644), - [sym_scoped_type_identifier_in_expression_position] = STATE(3253), - [sym_range_expression] = STATE(1897), - [sym_unary_expression] = STATE(1894), - [sym_try_expression] = STATE(1894), - [sym_reference_expression] = STATE(1894), - [sym_binary_expression] = STATE(1894), - [sym_assignment_expression] = STATE(1894), - [sym_compound_assignment_expr] = STATE(1894), - [sym_type_cast_expression] = STATE(1894), - [sym_return_expression] = STATE(1894), - [sym_yield_expression] = STATE(1894), - [sym_call_expression] = STATE(1894), - [sym_array_expression] = STATE(1894), - [sym_parenthesized_expression] = STATE(1894), - [sym_tuple_expression] = STATE(1894), - [sym_unit_expression] = STATE(1894), - [sym_struct_expression] = STATE(1894), - [sym_if_expression] = STATE(1894), - [sym_match_expression] = STATE(1894), - [sym_while_expression] = STATE(1894), - [sym_loop_expression] = STATE(1894), - [sym_for_expression] = STATE(1894), - [sym_const_block] = STATE(1894), - [sym_closure_expression] = STATE(1894), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3777), - [sym_break_expression] = STATE(1894), - [sym_continue_expression] = STATE(1894), - [sym_index_expression] = STATE(1894), - [sym_await_expression] = STATE(1894), - [sym_field_expression] = STATE(1674), - [sym_unsafe_block] = STATE(1894), - [sym_async_block] = STATE(1894), - [sym_gen_block] = STATE(1894), - [sym_try_block] = STATE(1894), - [sym_block] = STATE(1894), - [sym__literal] = STATE(1894), - [sym_string_literal] = STATE(1768), - [sym_raw_string_literal] = STATE(1768), - [sym_boolean_literal] = STATE(1768), - [sym_line_comment] = STATE(287), - [sym_block_comment] = STATE(287), + [288] = { + [sym_bracketed_type] = STATE(3659), + [sym_generic_function] = STATE(1714), + [sym_generic_type_with_turbofish] = STATE(2899), + [sym__expression_except_range] = STATE(1670), + [sym__expression] = STATE(1787), + [sym_macro_invocation] = STATE(1893), + [sym_scoped_identifier] = STATE(1650), + [sym_scoped_type_identifier_in_expression_position] = STATE(3266), + [sym_range_expression] = STATE(1889), + [sym_unary_expression] = STATE(1714), + [sym_try_expression] = STATE(1714), + [sym_reference_expression] = STATE(1714), + [sym_binary_expression] = STATE(1714), + [sym_assignment_expression] = STATE(1714), + [sym_compound_assignment_expr] = STATE(1714), + [sym_type_cast_expression] = STATE(1714), + [sym_return_expression] = STATE(1714), + [sym_yield_expression] = STATE(1714), + [sym_call_expression] = STATE(1714), + [sym_array_expression] = STATE(1714), + [sym_parenthesized_expression] = STATE(1714), + [sym_tuple_expression] = STATE(1714), + [sym_unit_expression] = STATE(1714), + [sym_struct_expression] = STATE(1714), + [sym_if_expression] = STATE(1714), + [sym_match_expression] = STATE(1714), + [sym_while_expression] = STATE(1714), + [sym_loop_expression] = STATE(1714), + [sym_for_expression] = STATE(1714), + [sym_const_block] = STATE(1714), + [sym_closure_expression] = STATE(1714), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1714), + [sym_continue_expression] = STATE(1714), + [sym_index_expression] = STATE(1714), + [sym_await_expression] = STATE(1714), + [sym_field_expression] = STATE(1672), + [sym_unsafe_block] = STATE(1714), + [sym_async_block] = STATE(1714), + [sym_gen_block] = STATE(1714), + [sym_try_block] = STATE(1714), + [sym_block] = STATE(1714), + [sym__literal] = STATE(1714), + [sym_string_literal] = STATE(1766), + [sym_raw_string_literal] = STATE(1766), + [sym_boolean_literal] = STATE(1766), + [sym_line_comment] = STATE(288), + [sym_block_comment] = STATE(288), [sym_identifier] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(502), + [anon_sym_LPAREN] = ACTIONS(470), + [anon_sym_LBRACK] = ACTIONS(472), [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_STAR] = ACTIONS(904), + [anon_sym_STAR] = ACTIONS(906), [anon_sym_u8] = ACTIONS(416), [anon_sym_i8] = ACTIONS(416), [anon_sym_u16] = ACTIONS(416), @@ -50415,12 +50252,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(416), [anon_sym_str] = ACTIONS(416), [anon_sym_char] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(904), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), + [anon_sym_DASH] = ACTIONS(906), + [anon_sym_BANG] = ACTIONS(906), + [anon_sym_AMP] = ACTIONS(908), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1160), + [anon_sym_DOT_DOT] = ACTIONS(910), [anon_sym_COLON_COLON] = ACTIONS(420), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(422), @@ -50456,60 +50293,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(468), [sym_float_literal] = ACTIONS(456), }, - [STATE(288)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1836), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(489), - [sym_match_expression] = STATE(489), - [sym_while_expression] = STATE(489), - [sym_loop_expression] = STATE(489), - [sym_for_expression] = STATE(489), - [sym_const_block] = STATE(489), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3771), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(489), - [sym_async_block] = STATE(489), - [sym_gen_block] = STATE(489), - [sym_try_block] = STATE(489), - [sym_block] = STATE(489), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(288), - [sym_block_comment] = STATE(288), + [289] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1837), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(486), + [sym_match_expression] = STATE(486), + [sym_while_expression] = STATE(486), + [sym_loop_expression] = STATE(486), + [sym_for_expression] = STATE(486), + [sym_const_block] = STATE(486), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3761), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(486), + [sym_async_block] = STATE(486), + [sym_gen_block] = STATE(486), + [sym_try_block] = STATE(486), + [sym_block] = STATE(486), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(289), + [sym_block_comment] = STATE(289), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1380), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -50536,25 +50373,25 @@ 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(1388), + [anon_sym_async] = ACTIONS(1382), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1390), + [anon_sym_const] = ACTIONS(1384), [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(1392), - [anon_sym_gen] = ACTIONS(1394), - [anon_sym_if] = ACTIONS(1396), - [anon_sym_loop] = ACTIONS(1398), - [anon_sym_match] = ACTIONS(1400), + [anon_sym_for] = ACTIONS(1386), + [anon_sym_gen] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(1390), + [anon_sym_loop] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1394), [anon_sym_return] = ACTIONS(71), [anon_sym_static] = ACTIONS(372), [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1404), + [anon_sym_unsafe] = ACTIONS(1396), + [anon_sym_while] = ACTIONS(1398), [anon_sym_raw] = ACTIONS(360), [anon_sym_yield] = ACTIONS(93), [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(1406), + [anon_sym_try] = ACTIONS(1400), [sym_integer_literal] = ACTIONS(99), [aux_sym_string_literal_token1] = ACTIONS(101), [sym_char_literal] = ACTIONS(99), @@ -50569,104 +50406,217 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(289)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1857), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(289), - [sym_block_comment] = STATE(289), - [sym_identifier] = ACTIONS(470), + [290] = { + [sym_else_clause] = STATE(403), + [sym_line_comment] = STATE(290), + [sym_block_comment] = STATE(290), + [ts_builtin_sym_end] = ACTIONS(1402), + [sym_identifier] = ACTIONS(1404), + [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_macro_rules_BANG] = ACTIONS(1402), + [anon_sym_LPAREN] = ACTIONS(1402), + [anon_sym_LBRACK] = ACTIONS(1402), + [anon_sym_LBRACE] = ACTIONS(1402), + [anon_sym_RBRACE] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1404), + [anon_sym_STAR] = ACTIONS(1404), + [anon_sym_QMARK] = ACTIONS(1402), + [anon_sym_u8] = ACTIONS(1404), + [anon_sym_i8] = ACTIONS(1404), + [anon_sym_u16] = ACTIONS(1404), + [anon_sym_i16] = ACTIONS(1404), + [anon_sym_u32] = ACTIONS(1404), + [anon_sym_i32] = ACTIONS(1404), + [anon_sym_u64] = ACTIONS(1404), + [anon_sym_i64] = ACTIONS(1404), + [anon_sym_u128] = ACTIONS(1404), + [anon_sym_i128] = ACTIONS(1404), + [anon_sym_isize] = ACTIONS(1404), + [anon_sym_usize] = ACTIONS(1404), + [anon_sym_f32] = ACTIONS(1404), + [anon_sym_f64] = ACTIONS(1404), + [anon_sym_bool] = ACTIONS(1404), + [anon_sym_str] = ACTIONS(1404), + [anon_sym_char] = ACTIONS(1404), + [anon_sym_DASH] = ACTIONS(1404), + [anon_sym_SLASH] = ACTIONS(1404), + [anon_sym_PERCENT] = ACTIONS(1404), + [anon_sym_CARET] = ACTIONS(1404), + [anon_sym_BANG] = ACTIONS(1404), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_PIPE] = ACTIONS(1404), + [anon_sym_AMP_AMP] = ACTIONS(1402), + [anon_sym_PIPE_PIPE] = ACTIONS(1402), + [anon_sym_LT_LT] = ACTIONS(1404), + [anon_sym_GT_GT] = ACTIONS(1404), + [anon_sym_PLUS_EQ] = ACTIONS(1402), + [anon_sym_DASH_EQ] = ACTIONS(1402), + [anon_sym_STAR_EQ] = ACTIONS(1402), + [anon_sym_SLASH_EQ] = ACTIONS(1402), + [anon_sym_PERCENT_EQ] = ACTIONS(1402), + [anon_sym_CARET_EQ] = ACTIONS(1402), + [anon_sym_AMP_EQ] = ACTIONS(1402), + [anon_sym_PIPE_EQ] = ACTIONS(1402), + [anon_sym_LT_LT_EQ] = ACTIONS(1402), + [anon_sym_GT_GT_EQ] = ACTIONS(1402), + [anon_sym_EQ] = ACTIONS(1404), + [anon_sym_EQ_EQ] = ACTIONS(1402), + [anon_sym_BANG_EQ] = ACTIONS(1402), + [anon_sym_GT] = ACTIONS(1404), + [anon_sym_LT] = ACTIONS(1404), + [anon_sym_GT_EQ] = ACTIONS(1402), + [anon_sym_LT_EQ] = ACTIONS(1402), + [anon_sym_DOT] = ACTIONS(1404), + [anon_sym_DOT_DOT] = ACTIONS(1404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1402), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1402), + [anon_sym_COLON_COLON] = ACTIONS(1402), + [anon_sym_POUND] = ACTIONS(1402), + [anon_sym_SQUOTE] = ACTIONS(1404), + [anon_sym_as] = ACTIONS(1404), + [anon_sym_async] = ACTIONS(1404), + [anon_sym_break] = ACTIONS(1404), + [anon_sym_const] = ACTIONS(1404), + [anon_sym_continue] = ACTIONS(1404), + [anon_sym_default] = ACTIONS(1404), + [anon_sym_enum] = ACTIONS(1404), + [anon_sym_fn] = ACTIONS(1404), + [anon_sym_for] = ACTIONS(1404), + [anon_sym_gen] = ACTIONS(1404), + [anon_sym_if] = ACTIONS(1404), + [anon_sym_impl] = ACTIONS(1404), + [anon_sym_let] = ACTIONS(1404), + [anon_sym_loop] = ACTIONS(1404), + [anon_sym_match] = ACTIONS(1404), + [anon_sym_mod] = ACTIONS(1404), + [anon_sym_pub] = ACTIONS(1404), + [anon_sym_return] = ACTIONS(1404), + [anon_sym_static] = ACTIONS(1404), + [anon_sym_struct] = ACTIONS(1404), + [anon_sym_trait] = ACTIONS(1404), + [anon_sym_type] = ACTIONS(1404), + [anon_sym_union] = ACTIONS(1404), + [anon_sym_unsafe] = ACTIONS(1404), + [anon_sym_use] = ACTIONS(1404), + [anon_sym_while] = ACTIONS(1404), + [anon_sym_extern] = ACTIONS(1404), + [anon_sym_else] = ACTIONS(1406), + [anon_sym_raw] = ACTIONS(1404), + [anon_sym_yield] = ACTIONS(1404), + [anon_sym_move] = ACTIONS(1404), + [anon_sym_try] = ACTIONS(1404), + [sym_integer_literal] = ACTIONS(1402), + [aux_sym_string_literal_token1] = ACTIONS(1402), + [sym_char_literal] = ACTIONS(1402), + [anon_sym_true] = ACTIONS(1404), + [anon_sym_false] = ACTIONS(1404), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1404), + [sym_super] = ACTIONS(1404), + [sym_crate] = ACTIONS(1404), + [sym_metavariable] = ACTIONS(1402), + [sym__raw_string_literal_start] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1402), + }, + [291] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1962), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(291), + [sym_block_comment] = STATE(291), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1206), + [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(1408), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(482), + [anon_sym_default] = ACTIONS(360), [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(484), + [anon_sym_gen] = ACTIONS(364), [anon_sym_if] = ACTIONS(366), [anon_sym_loop] = ACTIONS(368), [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(486), - [anon_sym_static] = ACTIONS(488), - [anon_sym_union] = ACTIONS(482), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_move] = ACTIONS(492), + [anon_sym_raw] = ACTIONS(360), + [anon_sym_yield] = ACTIONS(93), + [anon_sym_move] = ACTIONS(95), [anon_sym_try] = ACTIONS(378), [sym_integer_literal] = ACTIONS(99), [aux_sym_string_literal_token1] = ACTIONS(101), @@ -50675,287 +50625,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), + [sym_self] = ACTIONS(111), + [sym_super] = ACTIONS(113), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(117), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(290)] = { - [sym_else_clause] = STATE(406), - [sym_line_comment] = STATE(290), - [sym_block_comment] = STATE(290), - [ts_builtin_sym_end] = ACTIONS(1410), - [sym_identifier] = ACTIONS(1412), - [anon_sym_SEMI] = ACTIONS(1410), - [anon_sym_macro_rules_BANG] = ACTIONS(1410), - [anon_sym_LPAREN] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1410), - [anon_sym_RBRACE] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1412), - [anon_sym_STAR] = ACTIONS(1412), - [anon_sym_QMARK] = ACTIONS(1410), - [anon_sym_u8] = ACTIONS(1412), - [anon_sym_i8] = ACTIONS(1412), - [anon_sym_u16] = ACTIONS(1412), - [anon_sym_i16] = ACTIONS(1412), - [anon_sym_u32] = ACTIONS(1412), - [anon_sym_i32] = ACTIONS(1412), - [anon_sym_u64] = ACTIONS(1412), - [anon_sym_i64] = ACTIONS(1412), - [anon_sym_u128] = ACTIONS(1412), - [anon_sym_i128] = ACTIONS(1412), - [anon_sym_isize] = ACTIONS(1412), - [anon_sym_usize] = ACTIONS(1412), - [anon_sym_f32] = ACTIONS(1412), - [anon_sym_f64] = ACTIONS(1412), - [anon_sym_bool] = ACTIONS(1412), - [anon_sym_str] = ACTIONS(1412), - [anon_sym_char] = ACTIONS(1412), - [anon_sym_DASH] = ACTIONS(1412), - [anon_sym_SLASH] = ACTIONS(1412), - [anon_sym_PERCENT] = ACTIONS(1412), - [anon_sym_CARET] = ACTIONS(1412), - [anon_sym_BANG] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1412), - [anon_sym_PIPE] = ACTIONS(1412), - [anon_sym_AMP_AMP] = ACTIONS(1410), - [anon_sym_PIPE_PIPE] = ACTIONS(1410), - [anon_sym_LT_LT] = ACTIONS(1412), - [anon_sym_GT_GT] = ACTIONS(1412), - [anon_sym_PLUS_EQ] = ACTIONS(1410), - [anon_sym_DASH_EQ] = ACTIONS(1410), - [anon_sym_STAR_EQ] = ACTIONS(1410), - [anon_sym_SLASH_EQ] = ACTIONS(1410), - [anon_sym_PERCENT_EQ] = ACTIONS(1410), - [anon_sym_CARET_EQ] = ACTIONS(1410), - [anon_sym_AMP_EQ] = ACTIONS(1410), - [anon_sym_PIPE_EQ] = ACTIONS(1410), - [anon_sym_LT_LT_EQ] = ACTIONS(1410), - [anon_sym_GT_GT_EQ] = ACTIONS(1410), - [anon_sym_EQ] = ACTIONS(1412), - [anon_sym_EQ_EQ] = ACTIONS(1410), - [anon_sym_BANG_EQ] = ACTIONS(1410), - [anon_sym_GT] = ACTIONS(1412), - [anon_sym_LT] = ACTIONS(1412), - [anon_sym_GT_EQ] = ACTIONS(1410), - [anon_sym_LT_EQ] = ACTIONS(1410), - [anon_sym_DOT] = ACTIONS(1412), - [anon_sym_DOT_DOT] = ACTIONS(1412), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1410), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1410), - [anon_sym_COLON_COLON] = ACTIONS(1410), - [anon_sym_POUND] = ACTIONS(1410), - [anon_sym_SQUOTE] = ACTIONS(1412), - [anon_sym_as] = ACTIONS(1412), - [anon_sym_async] = ACTIONS(1412), - [anon_sym_break] = ACTIONS(1412), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_continue] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(1412), - [anon_sym_enum] = ACTIONS(1412), - [anon_sym_fn] = ACTIONS(1412), - [anon_sym_for] = ACTIONS(1412), - [anon_sym_gen] = ACTIONS(1412), - [anon_sym_if] = ACTIONS(1412), - [anon_sym_impl] = ACTIONS(1412), - [anon_sym_let] = ACTIONS(1412), - [anon_sym_loop] = ACTIONS(1412), - [anon_sym_match] = ACTIONS(1412), - [anon_sym_mod] = ACTIONS(1412), - [anon_sym_pub] = ACTIONS(1412), - [anon_sym_return] = ACTIONS(1412), - [anon_sym_static] = ACTIONS(1412), - [anon_sym_struct] = ACTIONS(1412), - [anon_sym_trait] = ACTIONS(1412), - [anon_sym_type] = ACTIONS(1412), - [anon_sym_union] = ACTIONS(1412), - [anon_sym_unsafe] = ACTIONS(1412), - [anon_sym_use] = ACTIONS(1412), - [anon_sym_while] = ACTIONS(1412), - [anon_sym_extern] = ACTIONS(1412), - [anon_sym_else] = ACTIONS(1414), - [anon_sym_raw] = ACTIONS(1412), - [anon_sym_yield] = ACTIONS(1412), - [anon_sym_move] = ACTIONS(1412), - [anon_sym_try] = ACTIONS(1412), - [sym_integer_literal] = ACTIONS(1410), - [aux_sym_string_literal_token1] = ACTIONS(1410), - [sym_char_literal] = ACTIONS(1410), - [anon_sym_true] = ACTIONS(1412), - [anon_sym_false] = ACTIONS(1412), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1412), - [sym_super] = ACTIONS(1412), - [sym_crate] = ACTIONS(1412), - [sym_metavariable] = ACTIONS(1410), - [sym__raw_string_literal_start] = ACTIONS(1410), - [sym_float_literal] = ACTIONS(1410), - }, - [STATE(291)] = { - [sym_bracketed_type] = STATE(3669), - [sym_generic_function] = STATE(1894), - [sym_generic_type_with_turbofish] = STATE(3057), - [sym__expression_except_range] = STATE(1672), - [sym__expression] = STATE(1911), - [sym_macro_invocation] = STATE(1901), - [sym_scoped_identifier] = STATE(1644), - [sym_scoped_type_identifier_in_expression_position] = STATE(3253), - [sym_range_expression] = STATE(1897), - [sym_unary_expression] = STATE(1894), - [sym_try_expression] = STATE(1894), - [sym_reference_expression] = STATE(1894), - [sym_binary_expression] = STATE(1894), - [sym_assignment_expression] = STATE(1894), - [sym_compound_assignment_expr] = STATE(1894), - [sym_type_cast_expression] = STATE(1894), - [sym_return_expression] = STATE(1894), - [sym_yield_expression] = STATE(1894), - [sym_call_expression] = STATE(1894), - [sym_array_expression] = STATE(1894), - [sym_parenthesized_expression] = STATE(1894), - [sym_tuple_expression] = STATE(1894), - [sym_unit_expression] = STATE(1894), - [sym_struct_expression] = STATE(1894), - [sym_if_expression] = STATE(1894), - [sym_match_expression] = STATE(1894), - [sym_while_expression] = STATE(1894), - [sym_loop_expression] = STATE(1894), - [sym_for_expression] = STATE(1894), - [sym_const_block] = STATE(1894), - [sym_closure_expression] = STATE(1894), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3777), - [sym_break_expression] = STATE(1894), - [sym_continue_expression] = STATE(1894), - [sym_index_expression] = STATE(1894), - [sym_await_expression] = STATE(1894), - [sym_field_expression] = STATE(1674), - [sym_unsafe_block] = STATE(1894), - [sym_async_block] = STATE(1894), - [sym_gen_block] = STATE(1894), - [sym_try_block] = STATE(1894), - [sym_block] = STATE(1894), - [sym__literal] = STATE(1894), - [sym_string_literal] = STATE(1768), - [sym_raw_string_literal] = STATE(1768), - [sym_boolean_literal] = STATE(1768), - [sym_line_comment] = STATE(291), - [sym_block_comment] = STATE(291), - [sym_identifier] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_STAR] = ACTIONS(904), - [anon_sym_u8] = ACTIONS(416), - [anon_sym_i8] = ACTIONS(416), - [anon_sym_u16] = ACTIONS(416), - [anon_sym_i16] = ACTIONS(416), - [anon_sym_u32] = ACTIONS(416), - [anon_sym_i32] = ACTIONS(416), - [anon_sym_u64] = ACTIONS(416), - [anon_sym_i64] = ACTIONS(416), - [anon_sym_u128] = ACTIONS(416), - [anon_sym_i128] = ACTIONS(416), - [anon_sym_isize] = ACTIONS(416), - [anon_sym_usize] = ACTIONS(416), - [anon_sym_f32] = ACTIONS(416), - [anon_sym_f64] = ACTIONS(416), - [anon_sym_bool] = ACTIONS(416), - [anon_sym_str] = ACTIONS(416), - [anon_sym_char] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(904), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1160), - [anon_sym_COLON_COLON] = ACTIONS(420), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(422), - [anon_sym_break] = ACTIONS(424), - [anon_sym_const] = ACTIONS(426), - [anon_sym_continue] = ACTIONS(428), - [anon_sym_default] = ACTIONS(430), - [anon_sym_for] = ACTIONS(432), - [anon_sym_gen] = ACTIONS(434), - [anon_sym_if] = ACTIONS(436), - [anon_sym_loop] = ACTIONS(438), - [anon_sym_match] = ACTIONS(440), - [anon_sym_return] = ACTIONS(442), - [anon_sym_static] = ACTIONS(444), - [anon_sym_union] = ACTIONS(430), - [anon_sym_unsafe] = ACTIONS(446), - [anon_sym_while] = ACTIONS(448), - [anon_sym_raw] = ACTIONS(430), - [anon_sym_yield] = ACTIONS(450), - [anon_sym_move] = ACTIONS(452), - [anon_sym_try] = ACTIONS(454), - [sym_integer_literal] = ACTIONS(456), - [aux_sym_string_literal_token1] = ACTIONS(458), - [sym_char_literal] = ACTIONS(456), - [anon_sym_true] = ACTIONS(460), - [anon_sym_false] = ACTIONS(460), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(462), - [sym_super] = ACTIONS(464), - [sym_crate] = ACTIONS(464), - [sym_metavariable] = ACTIONS(466), - [sym__raw_string_literal_start] = ACTIONS(468), - [sym_float_literal] = ACTIONS(456), - }, - [STATE(292)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1971), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [292] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1718), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), [sym_line_comment] = STATE(292), [sym_block_comment] = STATE(292), [sym_identifier] = ACTIONS(344), @@ -51021,54 +50745,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(293)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), + [293] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), [sym__expression] = STATE(1723), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), [sym_line_comment] = STATE(293), [sym_block_comment] = STATE(293), [sym_identifier] = ACTIONS(344), @@ -51134,54 +50858,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(294)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1725), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [294] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1881), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), [sym_line_comment] = STATE(294), [sym_block_comment] = STATE(294), [sym_identifier] = ACTIONS(344), @@ -51247,56 +50971,282 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(295)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1882), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [295] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1645), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(208), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), [sym_line_comment] = STATE(295), [sym_block_comment] = STATE(295), + [sym_identifier] = ACTIONS(480), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(894), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_AMP] = ACTIONS(896), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(898), + [anon_sym_COLON_COLON] = ACTIONS(486), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(512), + [anon_sym_break] = ACTIONS(514), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_default] = ACTIONS(492), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(518), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(522), + [anon_sym_union] = ACTIONS(492), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_raw] = ACTIONS(492), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_move] = ACTIONS(526), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [296] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1476), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(208), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(296), + [sym_block_comment] = STATE(296), + [sym_identifier] = ACTIONS(480), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(894), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_AMP] = ACTIONS(896), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(898), + [anon_sym_COLON_COLON] = ACTIONS(486), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(512), + [anon_sym_break] = ACTIONS(514), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_default] = ACTIONS(492), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(518), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(522), + [anon_sym_union] = ACTIONS(492), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_raw] = ACTIONS(492), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_move] = ACTIONS(526), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [297] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1737), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(297), + [sym_block_comment] = STATE(297), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -51360,104 +51310,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(296)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1656), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(296), - [sym_block_comment] = STATE(296), - [sym_identifier] = ACTIONS(470), + [298] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1476), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(298), + [sym_block_comment] = STATE(298), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), + [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(898), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(360), [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), + [anon_sym_gen] = ACTIONS(364), [anon_sym_if] = ACTIONS(366), [anon_sym_loop] = ACTIONS(368), [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), + [anon_sym_raw] = ACTIONS(360), + [anon_sym_yield] = ACTIONS(93), + [anon_sym_move] = ACTIONS(95), [anon_sym_try] = ACTIONS(378), [sym_integer_literal] = ACTIONS(99), [aux_sym_string_literal_token1] = ACTIONS(101), @@ -51466,111 +51416,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), + [sym_self] = ACTIONS(111), + [sym_super] = ACTIONS(113), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(117), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(297)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1692), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(297), - [sym_block_comment] = STATE(297), - [sym_identifier] = ACTIONS(470), + [299] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1791), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(299), + [sym_block_comment] = STATE(299), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), + [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(1144), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(360), [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), + [anon_sym_gen] = ACTIONS(364), [anon_sym_if] = ACTIONS(366), [anon_sym_loop] = ACTIONS(368), [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), + [anon_sym_raw] = ACTIONS(360), + [anon_sym_yield] = ACTIONS(93), + [anon_sym_move] = ACTIONS(95), [anon_sym_try] = ACTIONS(378), [sym_integer_literal] = ACTIONS(99), [aux_sym_string_literal_token1] = ACTIONS(101), @@ -51579,63 +51529,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), + [sym_self] = ACTIONS(111), + [sym_super] = ACTIONS(113), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(117), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(298)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1734), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(298), - [sym_block_comment] = STATE(298), + [300] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1793), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(300), + [sym_block_comment] = STATE(300), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -51699,395 +51649,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(299)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1857), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(299), - [sym_block_comment] = STATE(299), - [sym_identifier] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1206), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1208), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(484), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(486), - [anon_sym_static] = ACTIONS(488), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_move] = ACTIONS(492), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), - }, - [STATE(300)] = { - [sym_bracketed_type] = STATE(3669), - [sym_generic_function] = STATE(1894), - [sym_generic_type_with_turbofish] = STATE(3057), - [sym__expression_except_range] = STATE(1672), - [sym__expression] = STATE(1751), - [sym_macro_invocation] = STATE(1901), - [sym_scoped_identifier] = STATE(1644), - [sym_scoped_type_identifier_in_expression_position] = STATE(3253), - [sym_range_expression] = STATE(1897), - [sym_unary_expression] = STATE(1894), - [sym_try_expression] = STATE(1894), - [sym_reference_expression] = STATE(1894), - [sym_binary_expression] = STATE(1894), - [sym_assignment_expression] = STATE(1894), - [sym_compound_assignment_expr] = STATE(1894), - [sym_type_cast_expression] = STATE(1894), - [sym_return_expression] = STATE(1894), - [sym_yield_expression] = STATE(1894), - [sym_call_expression] = STATE(1894), - [sym_array_expression] = STATE(1894), - [sym_parenthesized_expression] = STATE(1894), - [sym_tuple_expression] = STATE(1894), - [sym_unit_expression] = STATE(1894), - [sym_struct_expression] = STATE(1894), - [sym_if_expression] = STATE(1894), - [sym_match_expression] = STATE(1894), - [sym_while_expression] = STATE(1894), - [sym_loop_expression] = STATE(1894), - [sym_for_expression] = STATE(1894), - [sym_const_block] = STATE(1894), - [sym_closure_expression] = STATE(1894), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3777), - [sym_break_expression] = STATE(1894), - [sym_continue_expression] = STATE(1894), - [sym_index_expression] = STATE(1894), - [sym_await_expression] = STATE(1894), - [sym_field_expression] = STATE(1674), - [sym_unsafe_block] = STATE(1894), - [sym_async_block] = STATE(1894), - [sym_gen_block] = STATE(1894), - [sym_try_block] = STATE(1894), - [sym_block] = STATE(1894), - [sym__literal] = STATE(1894), - [sym_string_literal] = STATE(1768), - [sym_raw_string_literal] = STATE(1768), - [sym_boolean_literal] = STATE(1768), - [sym_line_comment] = STATE(300), - [sym_block_comment] = STATE(300), - [sym_identifier] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_STAR] = ACTIONS(904), - [anon_sym_u8] = ACTIONS(416), - [anon_sym_i8] = ACTIONS(416), - [anon_sym_u16] = ACTIONS(416), - [anon_sym_i16] = ACTIONS(416), - [anon_sym_u32] = ACTIONS(416), - [anon_sym_i32] = ACTIONS(416), - [anon_sym_u64] = ACTIONS(416), - [anon_sym_i64] = ACTIONS(416), - [anon_sym_u128] = ACTIONS(416), - [anon_sym_i128] = ACTIONS(416), - [anon_sym_isize] = ACTIONS(416), - [anon_sym_usize] = ACTIONS(416), - [anon_sym_f32] = ACTIONS(416), - [anon_sym_f64] = ACTIONS(416), - [anon_sym_bool] = ACTIONS(416), - [anon_sym_str] = ACTIONS(416), - [anon_sym_char] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(904), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(908), - [anon_sym_COLON_COLON] = ACTIONS(420), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(422), - [anon_sym_break] = ACTIONS(424), - [anon_sym_const] = ACTIONS(426), - [anon_sym_continue] = ACTIONS(428), - [anon_sym_default] = ACTIONS(430), - [anon_sym_for] = ACTIONS(432), - [anon_sym_gen] = ACTIONS(434), - [anon_sym_if] = ACTIONS(436), - [anon_sym_loop] = ACTIONS(438), - [anon_sym_match] = ACTIONS(440), - [anon_sym_return] = ACTIONS(442), - [anon_sym_static] = ACTIONS(444), - [anon_sym_union] = ACTIONS(430), - [anon_sym_unsafe] = ACTIONS(446), - [anon_sym_while] = ACTIONS(448), - [anon_sym_raw] = ACTIONS(430), - [anon_sym_yield] = ACTIONS(450), - [anon_sym_move] = ACTIONS(452), - [anon_sym_try] = ACTIONS(454), - [sym_integer_literal] = ACTIONS(456), - [aux_sym_string_literal_token1] = ACTIONS(458), - [sym_char_literal] = ACTIONS(456), - [anon_sym_true] = ACTIONS(460), - [anon_sym_false] = ACTIONS(460), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(462), - [sym_super] = ACTIONS(464), - [sym_crate] = ACTIONS(464), - [sym_metavariable] = ACTIONS(466), - [sym__raw_string_literal_start] = ACTIONS(468), - [sym_float_literal] = ACTIONS(456), - }, - [STATE(301)] = { - [sym_bracketed_type] = STATE(3669), - [sym_generic_function] = STATE(1894), - [sym_generic_type_with_turbofish] = STATE(3057), - [sym__expression_except_range] = STATE(1672), - [sym__expression] = STATE(1751), - [sym_macro_invocation] = STATE(1901), - [sym_scoped_identifier] = STATE(1644), - [sym_scoped_type_identifier_in_expression_position] = STATE(3253), - [sym_range_expression] = STATE(1897), - [sym_unary_expression] = STATE(1894), - [sym_try_expression] = STATE(1894), - [sym_reference_expression] = STATE(1894), - [sym_binary_expression] = STATE(1894), - [sym_assignment_expression] = STATE(1894), - [sym_compound_assignment_expr] = STATE(1894), - [sym_type_cast_expression] = STATE(1894), - [sym_return_expression] = STATE(1894), - [sym_yield_expression] = STATE(1894), - [sym_call_expression] = STATE(1894), - [sym_array_expression] = STATE(1894), - [sym_parenthesized_expression] = STATE(1894), - [sym_tuple_expression] = STATE(1894), - [sym_unit_expression] = STATE(1894), - [sym_struct_expression] = STATE(1894), - [sym_if_expression] = STATE(1894), - [sym_match_expression] = STATE(1894), - [sym_while_expression] = STATE(1894), - [sym_loop_expression] = STATE(1894), - [sym_for_expression] = STATE(1894), - [sym_const_block] = STATE(1894), - [sym_closure_expression] = STATE(1894), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3777), - [sym_break_expression] = STATE(1894), - [sym_continue_expression] = STATE(1894), - [sym_index_expression] = STATE(1894), - [sym_await_expression] = STATE(1894), - [sym_field_expression] = STATE(1674), - [sym_unsafe_block] = STATE(1894), - [sym_async_block] = STATE(1894), - [sym_gen_block] = STATE(1894), - [sym_try_block] = STATE(1894), - [sym_block] = STATE(1894), - [sym__literal] = STATE(1894), - [sym_string_literal] = STATE(1768), - [sym_raw_string_literal] = STATE(1768), - [sym_boolean_literal] = STATE(1768), + [301] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1802), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), [sym_line_comment] = STATE(301), [sym_block_comment] = STATE(301), - [sym_identifier] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_STAR] = ACTIONS(904), - [anon_sym_u8] = ACTIONS(416), - [anon_sym_i8] = ACTIONS(416), - [anon_sym_u16] = ACTIONS(416), - [anon_sym_i16] = ACTIONS(416), - [anon_sym_u32] = ACTIONS(416), - [anon_sym_i32] = ACTIONS(416), - [anon_sym_u64] = ACTIONS(416), - [anon_sym_i64] = ACTIONS(416), - [anon_sym_u128] = ACTIONS(416), - [anon_sym_i128] = ACTIONS(416), - [anon_sym_isize] = ACTIONS(416), - [anon_sym_usize] = ACTIONS(416), - [anon_sym_f32] = ACTIONS(416), - [anon_sym_f64] = ACTIONS(416), - [anon_sym_bool] = ACTIONS(416), - [anon_sym_str] = ACTIONS(416), - [anon_sym_char] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(904), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1160), - [anon_sym_COLON_COLON] = ACTIONS(420), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(422), - [anon_sym_break] = ACTIONS(424), - [anon_sym_const] = ACTIONS(426), - [anon_sym_continue] = ACTIONS(428), - [anon_sym_default] = ACTIONS(430), - [anon_sym_for] = ACTIONS(432), - [anon_sym_gen] = ACTIONS(434), - [anon_sym_if] = ACTIONS(436), - [anon_sym_loop] = ACTIONS(438), - [anon_sym_match] = ACTIONS(440), - [anon_sym_return] = ACTIONS(442), - [anon_sym_static] = ACTIONS(444), - [anon_sym_union] = ACTIONS(430), - [anon_sym_unsafe] = ACTIONS(446), - [anon_sym_while] = ACTIONS(448), - [anon_sym_raw] = ACTIONS(430), - [anon_sym_yield] = ACTIONS(450), - [anon_sym_move] = ACTIONS(452), - [anon_sym_try] = ACTIONS(454), - [sym_integer_literal] = ACTIONS(456), - [aux_sym_string_literal_token1] = ACTIONS(458), - [sym_char_literal] = ACTIONS(456), - [anon_sym_true] = ACTIONS(460), - [anon_sym_false] = ACTIONS(460), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(462), - [sym_super] = ACTIONS(464), - [sym_crate] = ACTIONS(464), - [sym_metavariable] = ACTIONS(466), - [sym__raw_string_literal_start] = ACTIONS(468), - [sym_float_literal] = ACTIONS(456), - }, - [STATE(302)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1471), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(302), - [sym_block_comment] = STATE(302), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -52115,7 +51726,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(1140), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(356), @@ -52151,60 +51762,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(303)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1787), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(303), - [sym_block_comment] = STATE(303), + [302] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1804), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(474), + [sym_match_expression] = STATE(474), + [sym_while_expression] = STATE(474), + [sym_loop_expression] = STATE(474), + [sym_for_expression] = STATE(474), + [sym_const_block] = STATE(474), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3761), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(474), + [sym_async_block] = STATE(474), + [sym_gen_block] = STATE(474), + [sym_try_block] = STATE(474), + [sym_block] = STATE(474), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(302), + [sym_block_comment] = STATE(302), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(1380), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -52231,25 +51842,25 @@ 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(356), + [anon_sym_async] = ACTIONS(1382), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), + [anon_sym_const] = ACTIONS(1384), [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), + [anon_sym_for] = ACTIONS(1386), + [anon_sym_gen] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(1390), + [anon_sym_loop] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1394), [anon_sym_return] = ACTIONS(71), [anon_sym_static] = ACTIONS(372), [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), + [anon_sym_unsafe] = ACTIONS(1396), + [anon_sym_while] = ACTIONS(1398), [anon_sym_raw] = ACTIONS(360), [anon_sym_yield] = ACTIONS(93), [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), + [anon_sym_try] = ACTIONS(1400), [sym_integer_literal] = ACTIONS(99), [aux_sym_string_literal_token1] = ACTIONS(101), [sym_char_literal] = ACTIONS(99), @@ -52264,56 +51875,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(304)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1789), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(304), - [sym_block_comment] = STATE(304), + [303] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1972), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(303), + [sym_block_comment] = STATE(303), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -52377,169 +51988,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(305)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1471), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(305), - [sym_block_comment] = STATE(305), - [sym_identifier] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), - }, - [STATE(306)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1800), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(306), - [sym_block_comment] = STATE(306), + [304] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1942), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(304), + [sym_block_comment] = STATE(304), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -52603,60 +52101,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(307)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1802), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(479), - [sym_match_expression] = STATE(479), - [sym_while_expression] = STATE(479), - [sym_loop_expression] = STATE(479), - [sym_for_expression] = STATE(479), - [sym_const_block] = STATE(479), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3771), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(479), - [sym_async_block] = STATE(479), - [sym_gen_block] = STATE(479), - [sym_try_block] = STATE(479), - [sym_block] = STATE(479), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(307), - [sym_block_comment] = STATE(307), + [305] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1954), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(305), + [sym_block_comment] = STATE(305), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -52683,25 +52181,25 @@ 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(1388), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1390), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(1392), - [anon_sym_gen] = ACTIONS(1394), - [anon_sym_if] = ACTIONS(1396), - [anon_sym_loop] = ACTIONS(1398), - [anon_sym_match] = ACTIONS(1400), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(364), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), [anon_sym_return] = ACTIONS(71), [anon_sym_static] = ACTIONS(372), [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1404), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), [anon_sym_raw] = ACTIONS(360), [anon_sym_yield] = ACTIONS(93), [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(1406), + [anon_sym_try] = ACTIONS(378), [sym_integer_literal] = ACTIONS(99), [aux_sym_string_literal_token1] = ACTIONS(101), [sym_char_literal] = ACTIONS(99), @@ -52716,56 +52214,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(308)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1976), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(308), - [sym_block_comment] = STATE(308), + [306] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1582), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(306), + [sym_block_comment] = STATE(306), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -52829,56 +52327,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(309)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1949), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(309), - [sym_block_comment] = STATE(309), + [307] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1497), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(307), + [sym_block_comment] = STATE(307), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -52942,56 +52440,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(310)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1961), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(310), - [sym_block_comment] = STATE(310), + [308] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1580), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(308), + [sym_block_comment] = STATE(308), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -53055,56 +52553,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(311)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1578), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(311), - [sym_block_comment] = STATE(311), + [309] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1583), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(309), + [sym_block_comment] = STATE(309), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -53132,7 +52630,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(1140), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(356), @@ -53168,56 +52666,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(312)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1501), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(312), - [sym_block_comment] = STATE(312), + [310] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2737), + [sym_bracketed_type] = STATE(3692), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3423), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2535), + [sym_scoped_identifier] = STATE(2193), + [sym_scoped_type_identifier] = STATE(2206), + [sym_const_block] = STATE(2198), + [sym_closure_expression] = STATE(3158), + [sym_closure_parameters] = STATE(227), + [sym__pattern] = STATE(2620), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), + [sym_line_comment] = STATE(310), + [sym_block_comment] = STATE(310), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(1150), + [anon_sym_RPAREN] = ACTIONS(1408), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1154), + [anon_sym_i8] = ACTIONS(1154), + [anon_sym_u16] = ACTIONS(1154), + [anon_sym_i16] = ACTIONS(1154), + [anon_sym_u32] = ACTIONS(1154), + [anon_sym_i32] = ACTIONS(1154), + [anon_sym_u64] = ACTIONS(1154), + [anon_sym_i64] = ACTIONS(1154), + [anon_sym_u128] = ACTIONS(1154), + [anon_sym_i128] = ACTIONS(1154), + [anon_sym_isize] = ACTIONS(1154), + [anon_sym_usize] = ACTIONS(1154), + [anon_sym_f32] = ACTIONS(1154), + [anon_sym_f64] = ACTIONS(1154), + [anon_sym_bool] = ACTIONS(1154), + [anon_sym_str] = ACTIONS(1154), + [anon_sym_char] = ACTIONS(1154), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1410), + [anon_sym_PIPE] = ACTIONS(1412), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COMMA] = ACTIONS(1416), + [anon_sym_COLON_COLON] = ACTIONS(1162), + [anon_sym_SQUOTE] = ACTIONS(1088), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_const] = ACTIONS(1092), + [anon_sym_default] = ACTIONS(1164), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1166), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_static] = ACTIONS(1420), + [anon_sym_union] = ACTIONS(1166), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_ref] = ACTIONS(1108), + [anon_sym_dyn] = ACTIONS(1110), + [sym_mutable_specifier] = ACTIONS(1422), + [anon_sym_raw] = ACTIONS(1166), + [anon_sym_move] = ACTIONS(1424), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1170), + [sym_super] = ACTIONS(1170), + [sym_crate] = ACTIONS(1170), + [sym_metavariable] = ACTIONS(1172), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [311] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1579), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(311), + [sym_block_comment] = STATE(311), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -53245,7 +52856,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(1140), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(356), @@ -53281,56 +52892,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(313)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1579), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(313), - [sym_block_comment] = STATE(313), + [312] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1587), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(312), + [sym_block_comment] = STATE(312), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -53358,7 +52969,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(1140), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(356), @@ -53394,56 +53005,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(314)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1580), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(314), - [sym_block_comment] = STATE(314), + [313] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1565), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(313), + [sym_block_comment] = STATE(313), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -53471,7 +53082,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(1140), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(356), @@ -53507,56 +53118,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(315)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1581), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(315), - [sym_block_comment] = STATE(315), + [314] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1969), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(314), + [sym_block_comment] = STATE(314), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -53584,7 +53195,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(1140), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(356), @@ -53620,54 +53231,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(316)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1575), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [315] = { + [sym_attribute_item] = STATE(395), + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_self_parameter] = STATE(3284), + [sym_variadic_parameter] = STATE(3284), + [sym_parameter] = STATE(3284), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(3066), + [sym_bracketed_type] = STATE(3684), + [sym_lifetime] = STATE(3061), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3340), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2527), + [sym_scoped_identifier] = STATE(2319), + [sym_scoped_type_identifier] = STATE(2206), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(3283), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), + [sym_line_comment] = STATE(315), + [sym_block_comment] = STATE(315), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1052), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1064), + [anon_sym_i8] = ACTIONS(1064), + [anon_sym_u16] = ACTIONS(1064), + [anon_sym_i16] = ACTIONS(1064), + [anon_sym_u32] = ACTIONS(1064), + [anon_sym_i32] = ACTIONS(1064), + [anon_sym_u64] = ACTIONS(1064), + [anon_sym_i64] = ACTIONS(1064), + [anon_sym_u128] = ACTIONS(1064), + [anon_sym_i128] = ACTIONS(1064), + [anon_sym_isize] = ACTIONS(1064), + [anon_sym_usize] = ACTIONS(1064), + [anon_sym_f32] = ACTIONS(1064), + [anon_sym_f64] = ACTIONS(1064), + [anon_sym_bool] = ACTIONS(1064), + [anon_sym_str] = ACTIONS(1064), + [anon_sym_char] = ACTIONS(1064), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1070), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1346), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1078), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1084), + [anon_sym_POUND] = ACTIONS(1086), + [anon_sym_SQUOTE] = ACTIONS(1088), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1092), + [anon_sym_default] = ACTIONS(1094), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1100), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1100), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_ref] = ACTIONS(1108), + [anon_sym_dyn] = ACTIONS(1110), + [sym_mutable_specifier] = ACTIONS(1112), + [anon_sym_raw] = ACTIONS(1100), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1120), + [sym_super] = ACTIONS(1122), + [sym_crate] = ACTIONS(1122), + [sym_metavariable] = ACTIONS(1124), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [316] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1821), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), [sym_line_comment] = STATE(316), [sym_block_comment] = STATE(316), [sym_identifier] = ACTIONS(344), @@ -53697,7 +53421,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(1140), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(356), @@ -53733,60 +53457,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(317)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1574), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [317] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1953), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(486), + [sym_match_expression] = STATE(486), + [sym_while_expression] = STATE(486), + [sym_loop_expression] = STATE(486), + [sym_for_expression] = STATE(486), + [sym_const_block] = STATE(486), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3761), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(486), + [sym_async_block] = STATE(486), + [sym_gen_block] = STATE(486), + [sym_try_block] = STATE(486), + [sym_block] = STATE(486), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), [sym_line_comment] = STATE(317), [sym_block_comment] = STATE(317), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_LBRACE] = ACTIONS(1380), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -53810,28 +53534,28 @@ 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(1140), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), + [anon_sym_async] = ACTIONS(1382), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), + [anon_sym_const] = ACTIONS(1384), [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), + [anon_sym_for] = ACTIONS(1386), + [anon_sym_gen] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(1390), + [anon_sym_loop] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1394), [anon_sym_return] = ACTIONS(71), [anon_sym_static] = ACTIONS(372), [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), + [anon_sym_unsafe] = ACTIONS(1396), + [anon_sym_while] = ACTIONS(1398), [anon_sym_raw] = ACTIONS(360), [anon_sym_yield] = ACTIONS(93), [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), + [anon_sym_try] = ACTIONS(1400), [sym_integer_literal] = ACTIONS(99), [aux_sym_string_literal_token1] = ACTIONS(101), [sym_char_literal] = ACTIONS(99), @@ -53846,54 +53570,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(318)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1974), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [318] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1955), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), [sym_line_comment] = STATE(318), [sym_block_comment] = STATE(318), [sym_identifier] = ACTIONS(344), @@ -53959,282 +53683,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(319)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2646), - [sym_bracketed_type] = STATE(3702), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3434), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2533), - [sym_scoped_identifier] = STATE(2200), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym_closure_expression] = STATE(3030), - [sym_closure_parameters] = STATE(242), - [sym__pattern] = STATE(2669), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [319] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1960), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), [sym_line_comment] = STATE(319), [sym_block_comment] = STATE(319), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1162), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_RPAREN] = ACTIONS(1416), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1168), - [anon_sym_i8] = ACTIONS(1168), - [anon_sym_u16] = ACTIONS(1168), - [anon_sym_i16] = ACTIONS(1168), - [anon_sym_u32] = ACTIONS(1168), - [anon_sym_i32] = ACTIONS(1168), - [anon_sym_u64] = ACTIONS(1168), - [anon_sym_i64] = ACTIONS(1168), - [anon_sym_u128] = ACTIONS(1168), - [anon_sym_i128] = ACTIONS(1168), - [anon_sym_isize] = ACTIONS(1168), - [anon_sym_usize] = ACTIONS(1168), - [anon_sym_f32] = ACTIONS(1168), - [anon_sym_f64] = ACTIONS(1168), - [anon_sym_bool] = ACTIONS(1168), - [anon_sym_str] = ACTIONS(1168), - [anon_sym_char] = ACTIONS(1168), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_PIPE] = ACTIONS(1420), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COMMA] = ACTIONS(1424), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1426), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1178), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1180), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_static] = ACTIONS(1428), - [anon_sym_union] = ACTIONS(1180), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1180), - [anon_sym_move] = ACTIONS(1432), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1184), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(320)] = { - [sym_attribute_item] = STATE(403), - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_self_parameter] = STATE(3279), - [sym_variadic_parameter] = STATE(3279), - [sym_parameter] = STATE(3279), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3071), - [sym_bracketed_type] = STATE(3694), - [sym_lifetime] = STATE(3065), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3341), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2582), - [sym_scoped_identifier] = STATE(2327), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(3276), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), - [sym_line_comment] = STATE(320), - [sym_block_comment] = STATE(320), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1058), - [anon_sym_LPAREN] = ACTIONS(1060), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1070), - [anon_sym_i8] = ACTIONS(1070), - [anon_sym_u16] = ACTIONS(1070), - [anon_sym_i16] = ACTIONS(1070), - [anon_sym_u32] = ACTIONS(1070), - [anon_sym_i32] = ACTIONS(1070), - [anon_sym_u64] = ACTIONS(1070), - [anon_sym_i64] = ACTIONS(1070), - [anon_sym_u128] = ACTIONS(1070), - [anon_sym_i128] = ACTIONS(1070), - [anon_sym_isize] = ACTIONS(1070), - [anon_sym_usize] = ACTIONS(1070), - [anon_sym_f32] = ACTIONS(1070), - [anon_sym_f64] = ACTIONS(1070), - [anon_sym_bool] = ACTIONS(1070), - [anon_sym_str] = ACTIONS(1070), - [anon_sym_char] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1076), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1356), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1084), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym_POUND] = ACTIONS(1092), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1106), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1106), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1118), - [anon_sym_raw] = ACTIONS(1106), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1126), - [sym_super] = ACTIONS(1128), - [sym_crate] = ACTIONS(1128), - [sym_metavariable] = ACTIONS(1130), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(321)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1821), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(321), - [sym_block_comment] = STATE(321), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -54298,60 +53796,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(322)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1960), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(489), - [sym_match_expression] = STATE(489), - [sym_while_expression] = STATE(489), - [sym_loop_expression] = STATE(489), - [sym_for_expression] = STATE(489), - [sym_const_block] = STATE(489), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3771), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(489), - [sym_async_block] = STATE(489), - [sym_gen_block] = STATE(489), - [sym_try_block] = STATE(489), - [sym_block] = STATE(489), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(322), - [sym_block_comment] = STATE(322), + [320] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2737), + [sym_bracketed_type] = STATE(3692), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3423), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2535), + [sym_scoped_identifier] = STATE(2193), + [sym_scoped_type_identifier] = STATE(2206), + [sym_const_block] = STATE(2198), + [sym_closure_expression] = STATE(3158), + [sym_closure_parameters] = STATE(227), + [sym__pattern] = STATE(2620), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), + [sym_line_comment] = STATE(320), + [sym_block_comment] = STATE(320), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(1150), + [anon_sym_RPAREN] = ACTIONS(1426), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1154), + [anon_sym_i8] = ACTIONS(1154), + [anon_sym_u16] = ACTIONS(1154), + [anon_sym_i16] = ACTIONS(1154), + [anon_sym_u32] = ACTIONS(1154), + [anon_sym_i32] = ACTIONS(1154), + [anon_sym_u64] = ACTIONS(1154), + [anon_sym_i64] = ACTIONS(1154), + [anon_sym_u128] = ACTIONS(1154), + [anon_sym_i128] = ACTIONS(1154), + [anon_sym_isize] = ACTIONS(1154), + [anon_sym_usize] = ACTIONS(1154), + [anon_sym_f32] = ACTIONS(1154), + [anon_sym_f64] = ACTIONS(1154), + [anon_sym_bool] = ACTIONS(1154), + [anon_sym_str] = ACTIONS(1154), + [anon_sym_char] = ACTIONS(1154), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1410), + [anon_sym_PIPE] = ACTIONS(1412), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COMMA] = ACTIONS(1416), + [anon_sym_COLON_COLON] = ACTIONS(1162), + [anon_sym_SQUOTE] = ACTIONS(1088), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_const] = ACTIONS(1092), + [anon_sym_default] = ACTIONS(1164), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1166), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_static] = ACTIONS(1420), + [anon_sym_union] = ACTIONS(1166), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_ref] = ACTIONS(1108), + [anon_sym_dyn] = ACTIONS(1110), + [sym_mutable_specifier] = ACTIONS(1422), + [anon_sym_raw] = ACTIONS(1166), + [anon_sym_move] = ACTIONS(1424), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1170), + [sym_super] = ACTIONS(1170), + [sym_crate] = ACTIONS(1170), + [sym_metavariable] = ACTIONS(1172), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [321] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1957), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(474), + [sym_match_expression] = STATE(474), + [sym_while_expression] = STATE(474), + [sym_loop_expression] = STATE(474), + [sym_for_expression] = STATE(474), + [sym_const_block] = STATE(474), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3761), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(474), + [sym_async_block] = STATE(474), + [sym_gen_block] = STATE(474), + [sym_try_block] = STATE(474), + [sym_block] = STATE(474), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(321), + [sym_block_comment] = STATE(321), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1380), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -54378,25 +53989,25 @@ 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(1388), + [anon_sym_async] = ACTIONS(1382), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1390), + [anon_sym_const] = ACTIONS(1384), [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(1392), - [anon_sym_gen] = ACTIONS(1394), - [anon_sym_if] = ACTIONS(1396), - [anon_sym_loop] = ACTIONS(1398), - [anon_sym_match] = ACTIONS(1400), + [anon_sym_for] = ACTIONS(1386), + [anon_sym_gen] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(1390), + [anon_sym_loop] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1394), [anon_sym_return] = ACTIONS(71), [anon_sym_static] = ACTIONS(372), [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1404), + [anon_sym_unsafe] = ACTIONS(1396), + [anon_sym_while] = ACTIONS(1398), [anon_sym_raw] = ACTIONS(360), [anon_sym_yield] = ACTIONS(93), [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(1406), + [anon_sym_try] = ACTIONS(1400), [sym_integer_literal] = ACTIONS(99), [aux_sym_string_literal_token1] = ACTIONS(101), [sym_char_literal] = ACTIONS(99), @@ -54411,56 +54022,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(323)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1962), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(323), - [sym_block_comment] = STATE(323), + [322] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1978), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(322), + [sym_block_comment] = STATE(322), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -54524,56 +54135,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(324)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1982), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(324), - [sym_block_comment] = STATE(324), + [323] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1946), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(323), + [sym_block_comment] = STATE(323), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -54637,217 +54248,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(325)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2646), - [sym_bracketed_type] = STATE(3702), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3434), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2533), - [sym_scoped_identifier] = STATE(2200), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym_closure_expression] = STATE(3030), - [sym_closure_parameters] = STATE(242), - [sym__pattern] = STATE(2669), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), - [sym_line_comment] = STATE(325), - [sym_block_comment] = STATE(325), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1162), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_RPAREN] = ACTIONS(1434), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1168), - [anon_sym_i8] = ACTIONS(1168), - [anon_sym_u16] = ACTIONS(1168), - [anon_sym_i16] = ACTIONS(1168), - [anon_sym_u32] = ACTIONS(1168), - [anon_sym_i32] = ACTIONS(1168), - [anon_sym_u64] = ACTIONS(1168), - [anon_sym_i64] = ACTIONS(1168), - [anon_sym_u128] = ACTIONS(1168), - [anon_sym_i128] = ACTIONS(1168), - [anon_sym_isize] = ACTIONS(1168), - [anon_sym_usize] = ACTIONS(1168), - [anon_sym_f32] = ACTIONS(1168), - [anon_sym_f64] = ACTIONS(1168), - [anon_sym_bool] = ACTIONS(1168), - [anon_sym_str] = ACTIONS(1168), - [anon_sym_char] = ACTIONS(1168), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_PIPE] = ACTIONS(1420), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COMMA] = ACTIONS(1424), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1426), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1178), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1180), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_static] = ACTIONS(1428), - [anon_sym_union] = ACTIONS(1180), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1180), - [anon_sym_move] = ACTIONS(1432), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1184), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(326)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1850), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(326), - [sym_block_comment] = STATE(326), - [sym_identifier] = ACTIONS(470), + [324] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1705), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(208), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(324), + [sym_block_comment] = STATE(324), + [sym_identifier] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1206), + [anon_sym_STAR] = ACTIONS(894), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_AMP] = ACTIONS(896), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1208), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(898), + [anon_sym_COLON_COLON] = ACTIONS(486), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), + [anon_sym_async] = ACTIONS(512), + [anon_sym_break] = ACTIONS(514), [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(482), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_default] = ACTIONS(492), [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(484), + [anon_sym_gen] = ACTIONS(518), [anon_sym_if] = ACTIONS(366), [anon_sym_loop] = ACTIONS(368), [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(486), - [anon_sym_static] = ACTIONS(488), - [anon_sym_union] = ACTIONS(482), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(522), + [anon_sym_union] = ACTIONS(492), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_move] = ACTIONS(492), + [anon_sym_raw] = ACTIONS(492), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_move] = ACTIONS(526), [anon_sym_try] = ACTIONS(378), [sym_integer_literal] = ACTIONS(99), [aux_sym_string_literal_token1] = ACTIONS(101), @@ -54856,63 +54354,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(327)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1969), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(327), - [sym_block_comment] = STATE(327), + [325] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1566), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(325), + [sym_block_comment] = STATE(325), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -54976,217 +54474,217 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(328)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1952), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(328), - [sym_block_comment] = STATE(328), - [sym_identifier] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [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), + [326] = { + [sym_bracketed_type] = STATE(3659), + [sym_generic_function] = STATE(1714), + [sym_generic_type_with_turbofish] = STATE(2899), + [sym__expression_except_range] = STATE(1670), + [sym__expression] = STATE(1896), + [sym_macro_invocation] = STATE(1893), + [sym_scoped_identifier] = STATE(1650), + [sym_scoped_type_identifier_in_expression_position] = STATE(3266), + [sym_range_expression] = STATE(1889), + [sym_unary_expression] = STATE(1714), + [sym_try_expression] = STATE(1714), + [sym_reference_expression] = STATE(1714), + [sym_binary_expression] = STATE(1714), + [sym_assignment_expression] = STATE(1714), + [sym_compound_assignment_expr] = STATE(1714), + [sym_type_cast_expression] = STATE(1714), + [sym_return_expression] = STATE(1714), + [sym_yield_expression] = STATE(1714), + [sym_call_expression] = STATE(1714), + [sym_array_expression] = STATE(1714), + [sym_parenthesized_expression] = STATE(1714), + [sym_tuple_expression] = STATE(1714), + [sym_unit_expression] = STATE(1714), + [sym_struct_expression] = STATE(1714), + [sym_if_expression] = STATE(1714), + [sym_match_expression] = STATE(1714), + [sym_while_expression] = STATE(1714), + [sym_loop_expression] = STATE(1714), + [sym_for_expression] = STATE(1714), + [sym_const_block] = STATE(1714), + [sym_closure_expression] = STATE(1714), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1714), + [sym_continue_expression] = STATE(1714), + [sym_index_expression] = STATE(1714), + [sym_await_expression] = STATE(1714), + [sym_field_expression] = STATE(1672), + [sym_unsafe_block] = STATE(1714), + [sym_async_block] = STATE(1714), + [sym_gen_block] = STATE(1714), + [sym_try_block] = STATE(1714), + [sym_block] = STATE(1714), + [sym__literal] = STATE(1714), + [sym_string_literal] = STATE(1766), + [sym_raw_string_literal] = STATE(1766), + [sym_boolean_literal] = STATE(1766), + [sym_line_comment] = STATE(326), + [sym_block_comment] = STATE(326), + [sym_identifier] = ACTIONS(410), + [anon_sym_LPAREN] = ACTIONS(470), + [anon_sym_LBRACK] = ACTIONS(472), + [anon_sym_LBRACE] = ACTIONS(412), + [anon_sym_STAR] = ACTIONS(906), + [anon_sym_u8] = ACTIONS(416), + [anon_sym_i8] = ACTIONS(416), + [anon_sym_u16] = ACTIONS(416), + [anon_sym_i16] = ACTIONS(416), + [anon_sym_u32] = ACTIONS(416), + [anon_sym_i32] = ACTIONS(416), + [anon_sym_u64] = ACTIONS(416), + [anon_sym_i64] = ACTIONS(416), + [anon_sym_u128] = ACTIONS(416), + [anon_sym_i128] = ACTIONS(416), + [anon_sym_isize] = ACTIONS(416), + [anon_sym_usize] = ACTIONS(416), + [anon_sym_f32] = ACTIONS(416), + [anon_sym_f64] = ACTIONS(416), + [anon_sym_bool] = ACTIONS(416), + [anon_sym_str] = ACTIONS(416), + [anon_sym_char] = ACTIONS(416), + [anon_sym_DASH] = ACTIONS(906), + [anon_sym_BANG] = ACTIONS(906), + [anon_sym_AMP] = ACTIONS(908), [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(910), + [anon_sym_COLON_COLON] = ACTIONS(420), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), + [anon_sym_async] = ACTIONS(422), + [anon_sym_break] = ACTIONS(424), + [anon_sym_const] = ACTIONS(426), + [anon_sym_continue] = ACTIONS(428), + [anon_sym_default] = ACTIONS(430), + [anon_sym_for] = ACTIONS(432), + [anon_sym_gen] = ACTIONS(434), + [anon_sym_if] = ACTIONS(436), + [anon_sym_loop] = ACTIONS(438), + [anon_sym_match] = ACTIONS(440), + [anon_sym_return] = ACTIONS(442), + [anon_sym_static] = ACTIONS(444), + [anon_sym_union] = ACTIONS(430), + [anon_sym_unsafe] = ACTIONS(446), + [anon_sym_while] = ACTIONS(448), + [anon_sym_raw] = ACTIONS(430), + [anon_sym_yield] = ACTIONS(450), + [anon_sym_move] = ACTIONS(452), + [anon_sym_try] = ACTIONS(454), + [sym_integer_literal] = ACTIONS(456), + [aux_sym_string_literal_token1] = ACTIONS(458), + [sym_char_literal] = ACTIONS(456), + [anon_sym_true] = ACTIONS(460), + [anon_sym_false] = ACTIONS(460), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), + [sym_self] = ACTIONS(462), + [sym_super] = ACTIONS(464), + [sym_crate] = ACTIONS(464), + [sym_metavariable] = ACTIONS(466), + [sym__raw_string_literal_start] = ACTIONS(468), + [sym_float_literal] = ACTIONS(456), }, - [STATE(329)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1953), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(329), - [sym_block_comment] = STATE(329), - [sym_identifier] = ACTIONS(344), + [327] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1476), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(225), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(327), + [sym_block_comment] = STATE(327), + [sym_identifier] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), - [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(1306), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1306), + [anon_sym_AMP] = ACTIONS(1308), [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(1310), + [anon_sym_COLON_COLON] = ACTIONS(486), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), + [anon_sym_async] = ACTIONS(488), + [anon_sym_break] = ACTIONS(490), [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), + [anon_sym_default] = ACTIONS(492), [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), + [anon_sym_gen] = ACTIONS(494), [anon_sym_if] = ACTIONS(366), [anon_sym_loop] = ACTIONS(368), [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), + [anon_sym_return] = ACTIONS(496), + [anon_sym_static] = ACTIONS(498), + [anon_sym_union] = ACTIONS(492), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), + [anon_sym_raw] = ACTIONS(492), + [anon_sym_yield] = ACTIONS(500), + [anon_sym_move] = ACTIONS(502), [anon_sym_try] = ACTIONS(378), [sym_integer_literal] = ACTIONS(99), [aux_sym_string_literal_token1] = ACTIONS(101), @@ -55195,63 +54693,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(330)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1577), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(330), - [sym_block_comment] = STATE(330), + [328] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1567), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(328), + [sym_block_comment] = STATE(328), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -55279,7 +54777,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(1140), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(356), @@ -55315,169 +54813,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(331)] = { - [sym_bracketed_type] = STATE(3669), - [sym_generic_function] = STATE(1894), - [sym_generic_type_with_turbofish] = STATE(3057), - [sym__expression_except_range] = STATE(1672), - [sym__expression] = STATE(1904), - [sym_macro_invocation] = STATE(1901), - [sym_scoped_identifier] = STATE(1644), - [sym_scoped_type_identifier_in_expression_position] = STATE(3253), - [sym_range_expression] = STATE(1897), - [sym_unary_expression] = STATE(1894), - [sym_try_expression] = STATE(1894), - [sym_reference_expression] = STATE(1894), - [sym_binary_expression] = STATE(1894), - [sym_assignment_expression] = STATE(1894), - [sym_compound_assignment_expr] = STATE(1894), - [sym_type_cast_expression] = STATE(1894), - [sym_return_expression] = STATE(1894), - [sym_yield_expression] = STATE(1894), - [sym_call_expression] = STATE(1894), - [sym_array_expression] = STATE(1894), - [sym_parenthesized_expression] = STATE(1894), - [sym_tuple_expression] = STATE(1894), - [sym_unit_expression] = STATE(1894), - [sym_struct_expression] = STATE(1894), - [sym_if_expression] = STATE(1894), - [sym_match_expression] = STATE(1894), - [sym_while_expression] = STATE(1894), - [sym_loop_expression] = STATE(1894), - [sym_for_expression] = STATE(1894), - [sym_const_block] = STATE(1894), - [sym_closure_expression] = STATE(1894), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3777), - [sym_break_expression] = STATE(1894), - [sym_continue_expression] = STATE(1894), - [sym_index_expression] = STATE(1894), - [sym_await_expression] = STATE(1894), - [sym_field_expression] = STATE(1674), - [sym_unsafe_block] = STATE(1894), - [sym_async_block] = STATE(1894), - [sym_gen_block] = STATE(1894), - [sym_try_block] = STATE(1894), - [sym_block] = STATE(1894), - [sym__literal] = STATE(1894), - [sym_string_literal] = STATE(1768), - [sym_raw_string_literal] = STATE(1768), - [sym_boolean_literal] = STATE(1768), - [sym_line_comment] = STATE(331), - [sym_block_comment] = STATE(331), - [sym_identifier] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(502), - [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_STAR] = ACTIONS(904), - [anon_sym_u8] = ACTIONS(416), - [anon_sym_i8] = ACTIONS(416), - [anon_sym_u16] = ACTIONS(416), - [anon_sym_i16] = ACTIONS(416), - [anon_sym_u32] = ACTIONS(416), - [anon_sym_i32] = ACTIONS(416), - [anon_sym_u64] = ACTIONS(416), - [anon_sym_i64] = ACTIONS(416), - [anon_sym_u128] = ACTIONS(416), - [anon_sym_i128] = ACTIONS(416), - [anon_sym_isize] = ACTIONS(416), - [anon_sym_usize] = ACTIONS(416), - [anon_sym_f32] = ACTIONS(416), - [anon_sym_f64] = ACTIONS(416), - [anon_sym_bool] = ACTIONS(416), - [anon_sym_str] = ACTIONS(416), - [anon_sym_char] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(904), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1160), - [anon_sym_COLON_COLON] = ACTIONS(420), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(422), - [anon_sym_break] = ACTIONS(424), - [anon_sym_const] = ACTIONS(426), - [anon_sym_continue] = ACTIONS(428), - [anon_sym_default] = ACTIONS(430), - [anon_sym_for] = ACTIONS(432), - [anon_sym_gen] = ACTIONS(434), - [anon_sym_if] = ACTIONS(436), - [anon_sym_loop] = ACTIONS(438), - [anon_sym_match] = ACTIONS(440), - [anon_sym_return] = ACTIONS(442), - [anon_sym_static] = ACTIONS(444), - [anon_sym_union] = ACTIONS(430), - [anon_sym_unsafe] = ACTIONS(446), - [anon_sym_while] = ACTIONS(448), - [anon_sym_raw] = ACTIONS(430), - [anon_sym_yield] = ACTIONS(450), - [anon_sym_move] = ACTIONS(452), - [anon_sym_try] = ACTIONS(454), - [sym_integer_literal] = ACTIONS(456), - [aux_sym_string_literal_token1] = ACTIONS(458), - [sym_char_literal] = ACTIONS(456), - [anon_sym_true] = ACTIONS(460), - [anon_sym_false] = ACTIONS(460), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(462), - [sym_super] = ACTIONS(464), - [sym_crate] = ACTIONS(464), - [sym_metavariable] = ACTIONS(466), - [sym__raw_string_literal_start] = ACTIONS(468), - [sym_float_literal] = ACTIONS(456), - }, - [STATE(332)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1582), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(332), - [sym_block_comment] = STATE(332), + [329] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1568), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(329), + [sym_block_comment] = STATE(329), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -55505,7 +54890,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(1140), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(356), @@ -55541,56 +54926,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(333)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1583), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(333), - [sym_block_comment] = STATE(333), + [330] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1569), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(330), + [sym_block_comment] = STATE(330), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -55618,7 +55003,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(1140), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(356), @@ -55654,56 +55039,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(334)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1584), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(334), - [sym_block_comment] = STATE(334), + [331] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1542), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(331), + [sym_block_comment] = STATE(331), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -55731,7 +55116,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(1140), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(356), @@ -55767,56 +55152,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(335)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1544), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(335), - [sym_block_comment] = STATE(335), + [332] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1570), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(332), + [sym_block_comment] = STATE(332), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -55844,7 +55229,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(1140), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(356), @@ -55880,104 +55265,443 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(336)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1471), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [333] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1542), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(208), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(333), + [sym_block_comment] = STATE(333), + [sym_identifier] = ACTIONS(480), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(894), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_AMP] = ACTIONS(896), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(898), + [anon_sym_COLON_COLON] = ACTIONS(486), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(512), + [anon_sym_break] = ACTIONS(514), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_default] = ACTIONS(492), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(518), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(522), + [anon_sym_union] = ACTIONS(492), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_raw] = ACTIONS(492), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_move] = ACTIONS(526), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [334] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2737), + [sym_bracketed_type] = STATE(3692), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3423), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2535), + [sym_scoped_identifier] = STATE(2193), + [sym_scoped_type_identifier] = STATE(2206), + [sym_const_block] = STATE(2198), + [sym_closure_expression] = STATE(3158), + [sym_closure_parameters] = STATE(227), + [sym__pattern] = STATE(2620), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), + [sym_line_comment] = STATE(334), + [sym_block_comment] = STATE(334), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(1150), + [anon_sym_RPAREN] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1154), + [anon_sym_i8] = ACTIONS(1154), + [anon_sym_u16] = ACTIONS(1154), + [anon_sym_i16] = ACTIONS(1154), + [anon_sym_u32] = ACTIONS(1154), + [anon_sym_i32] = ACTIONS(1154), + [anon_sym_u64] = ACTIONS(1154), + [anon_sym_i64] = ACTIONS(1154), + [anon_sym_u128] = ACTIONS(1154), + [anon_sym_i128] = ACTIONS(1154), + [anon_sym_isize] = ACTIONS(1154), + [anon_sym_usize] = ACTIONS(1154), + [anon_sym_f32] = ACTIONS(1154), + [anon_sym_f64] = ACTIONS(1154), + [anon_sym_bool] = ACTIONS(1154), + [anon_sym_str] = ACTIONS(1154), + [anon_sym_char] = ACTIONS(1154), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1410), + [anon_sym_PIPE] = ACTIONS(1412), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COMMA] = ACTIONS(1416), + [anon_sym_COLON_COLON] = ACTIONS(1162), + [anon_sym_SQUOTE] = ACTIONS(1088), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_const] = ACTIONS(1092), + [anon_sym_default] = ACTIONS(1164), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1166), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_static] = ACTIONS(1420), + [anon_sym_union] = ACTIONS(1166), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_ref] = ACTIONS(1108), + [anon_sym_dyn] = ACTIONS(1110), + [sym_mutable_specifier] = ACTIONS(1422), + [anon_sym_raw] = ACTIONS(1166), + [anon_sym_move] = ACTIONS(1424), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1170), + [sym_super] = ACTIONS(1170), + [sym_crate] = ACTIONS(1170), + [sym_metavariable] = ACTIONS(1172), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [335] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1659), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(208), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(335), + [sym_block_comment] = STATE(335), + [sym_identifier] = ACTIONS(480), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(894), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_AMP] = ACTIONS(896), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(898), + [anon_sym_COLON_COLON] = ACTIONS(486), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(512), + [anon_sym_break] = ACTIONS(514), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_default] = ACTIONS(492), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(518), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(522), + [anon_sym_union] = ACTIONS(492), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_raw] = ACTIONS(492), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_move] = ACTIONS(526), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [336] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1497), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(208), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), [sym_line_comment] = STATE(336), [sym_block_comment] = STATE(336), - [sym_identifier] = ACTIONS(470), + [sym_identifier] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1206), + [anon_sym_STAR] = ACTIONS(894), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_AMP] = ACTIONS(896), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1208), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(898), + [anon_sym_COLON_COLON] = ACTIONS(486), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), + [anon_sym_async] = ACTIONS(512), + [anon_sym_break] = ACTIONS(514), [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(482), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_default] = ACTIONS(492), [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(484), + [anon_sym_gen] = ACTIONS(518), [anon_sym_if] = ACTIONS(366), [anon_sym_loop] = ACTIONS(368), [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(486), - [anon_sym_static] = ACTIONS(488), - [anon_sym_union] = ACTIONS(482), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(522), + [anon_sym_union] = ACTIONS(492), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_move] = ACTIONS(492), + [anon_sym_raw] = ACTIONS(492), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_move] = ACTIONS(526), [anon_sym_try] = ACTIONS(378), [sym_integer_literal] = ACTIONS(99), [aux_sym_string_literal_token1] = ACTIONS(101), @@ -55986,111 +55710,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(337)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1572), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [337] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1663), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(208), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), [sym_line_comment] = STATE(337), [sym_block_comment] = STATE(337), - [sym_identifier] = ACTIONS(344), + [sym_identifier] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), - [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(894), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_AMP] = ACTIONS(896), [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(898), + [anon_sym_COLON_COLON] = ACTIONS(486), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), + [anon_sym_async] = ACTIONS(512), + [anon_sym_break] = ACTIONS(514), [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), + [anon_sym_continue] = ACTIONS(516), + [anon_sym_default] = ACTIONS(492), [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), + [anon_sym_gen] = ACTIONS(518), [anon_sym_if] = ACTIONS(366), [anon_sym_loop] = ACTIONS(368), [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), + [anon_sym_return] = ACTIONS(520), + [anon_sym_static] = ACTIONS(522), + [anon_sym_union] = ACTIONS(492), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), + [anon_sym_raw] = ACTIONS(492), + [anon_sym_yield] = ACTIONS(524), + [anon_sym_move] = ACTIONS(526), [anon_sym_try] = ACTIONS(378), [sym_integer_literal] = ACTIONS(99), [aux_sym_string_literal_token1] = ACTIONS(101), @@ -56099,98 +55823,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(338)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1544), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [338] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1680), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(208), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), [sym_line_comment] = STATE(338), [sym_block_comment] = STATE(338), - [sym_identifier] = ACTIONS(470), + [sym_identifier] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), [anon_sym_DASH] = ACTIONS(894), [anon_sym_BANG] = ACTIONS(894), [anon_sym_AMP] = ACTIONS(896), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(898), + [anon_sym_COLON_COLON] = ACTIONS(486), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(512), [anon_sym_break] = ACTIONS(514), [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), + [anon_sym_default] = ACTIONS(492), [anon_sym_for] = ACTIONS(362), [anon_sym_gen] = ACTIONS(518), [anon_sym_if] = ACTIONS(366), @@ -56198,10 +55922,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(370), [anon_sym_return] = ACTIONS(520), [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), + [anon_sym_union] = ACTIONS(492), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), + [anon_sym_raw] = ACTIONS(492), [anon_sym_yield] = ACTIONS(524), [anon_sym_move] = ACTIONS(526), [anon_sym_try] = ACTIONS(378), @@ -56212,98 +55936,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(339)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1691), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [339] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1651), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(208), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), [sym_line_comment] = STATE(339), [sym_block_comment] = STATE(339), - [sym_identifier] = ACTIONS(470), + [sym_identifier] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), [anon_sym_DASH] = ACTIONS(894), [anon_sym_BANG] = ACTIONS(894), [anon_sym_AMP] = ACTIONS(896), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(898), + [anon_sym_COLON_COLON] = ACTIONS(486), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(512), [anon_sym_break] = ACTIONS(514), [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), + [anon_sym_default] = ACTIONS(492), [anon_sym_for] = ACTIONS(362), [anon_sym_gen] = ACTIONS(518), [anon_sym_if] = ACTIONS(366), @@ -56311,10 +56035,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(370), [anon_sym_return] = ACTIONS(520), [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), + [anon_sym_union] = ACTIONS(492), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), + [anon_sym_raw] = ACTIONS(492), [anon_sym_yield] = ACTIONS(524), [anon_sym_move] = ACTIONS(526), [anon_sym_try] = ACTIONS(378), @@ -56325,211 +56049,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(340)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2646), - [sym_bracketed_type] = STATE(3702), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3434), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2533), - [sym_scoped_identifier] = STATE(2200), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym_closure_expression] = STATE(3030), - [sym_closure_parameters] = STATE(242), - [sym__pattern] = STATE(2669), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [340] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1851), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(225), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), [sym_line_comment] = STATE(340), [sym_block_comment] = STATE(340), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1162), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_RPAREN] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1168), - [anon_sym_i8] = ACTIONS(1168), - [anon_sym_u16] = ACTIONS(1168), - [anon_sym_i16] = ACTIONS(1168), - [anon_sym_u32] = ACTIONS(1168), - [anon_sym_i32] = ACTIONS(1168), - [anon_sym_u64] = ACTIONS(1168), - [anon_sym_i64] = ACTIONS(1168), - [anon_sym_u128] = ACTIONS(1168), - [anon_sym_i128] = ACTIONS(1168), - [anon_sym_isize] = ACTIONS(1168), - [anon_sym_usize] = ACTIONS(1168), - [anon_sym_f32] = ACTIONS(1168), - [anon_sym_f64] = ACTIONS(1168), - [anon_sym_bool] = ACTIONS(1168), - [anon_sym_str] = ACTIONS(1168), - [anon_sym_char] = ACTIONS(1168), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_PIPE] = ACTIONS(1420), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COMMA] = ACTIONS(1424), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1426), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1178), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1180), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_static] = ACTIONS(1428), - [anon_sym_union] = ACTIONS(1180), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1180), - [anon_sym_move] = ACTIONS(1432), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), + [sym_identifier] = ACTIONS(480), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(348), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1306), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1310), + [anon_sym_COLON_COLON] = ACTIONS(486), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(488), + [anon_sym_break] = ACTIONS(490), + [anon_sym_const] = ACTIONS(358), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(492), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(494), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), + [anon_sym_return] = ACTIONS(496), + [anon_sym_static] = ACTIONS(498), + [anon_sym_union] = ACTIONS(492), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), + [anon_sym_raw] = ACTIONS(492), + [anon_sym_yield] = ACTIONS(500), + [anon_sym_move] = ACTIONS(502), + [anon_sym_try] = ACTIONS(378), + [sym_integer_literal] = ACTIONS(99), + [aux_sym_string_literal_token1] = ACTIONS(101), + [sym_char_literal] = ACTIONS(99), + [anon_sym_true] = ACTIONS(103), + [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1184), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(341)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1501), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), + [sym__raw_string_literal_start] = ACTIONS(119), + [sym_float_literal] = ACTIONS(99), + }, + [341] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1696), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(208), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), [sym_line_comment] = STATE(341), [sym_block_comment] = STATE(341), - [sym_identifier] = ACTIONS(470), + [sym_identifier] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), [anon_sym_DASH] = ACTIONS(894), [anon_sym_BANG] = ACTIONS(894), [anon_sym_AMP] = ACTIONS(896), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(898), + [anon_sym_COLON_COLON] = ACTIONS(486), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(512), [anon_sym_break] = ACTIONS(514), [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), + [anon_sym_default] = ACTIONS(492), [anon_sym_for] = ACTIONS(362), [anon_sym_gen] = ACTIONS(518), [anon_sym_if] = ACTIONS(366), @@ -56537,10 +56261,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(370), [anon_sym_return] = ACTIONS(520), [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), + [anon_sym_union] = ACTIONS(492), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), + [anon_sym_raw] = ACTIONS(492), [anon_sym_yield] = ACTIONS(524), [anon_sym_move] = ACTIONS(526), [anon_sym_try] = ACTIONS(378), @@ -56551,98 +56275,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(342)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1694), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [342] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1706), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(208), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), [sym_line_comment] = STATE(342), [sym_block_comment] = STATE(342), - [sym_identifier] = ACTIONS(470), + [sym_identifier] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), [anon_sym_DASH] = ACTIONS(894), [anon_sym_BANG] = ACTIONS(894), [anon_sym_AMP] = ACTIONS(896), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(898), + [anon_sym_COLON_COLON] = ACTIONS(486), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(512), [anon_sym_break] = ACTIONS(514), [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), + [anon_sym_default] = ACTIONS(492), [anon_sym_for] = ACTIONS(362), [anon_sym_gen] = ACTIONS(518), [anon_sym_if] = ACTIONS(366), @@ -56650,10 +56374,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(370), [anon_sym_return] = ACTIONS(520), [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), + [anon_sym_union] = ACTIONS(492), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), + [anon_sym_raw] = ACTIONS(492), [anon_sym_yield] = ACTIONS(524), [anon_sym_move] = ACTIONS(526), [anon_sym_try] = ACTIONS(378), @@ -56664,98 +56388,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(343)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1710), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [343] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1679), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(208), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), [sym_line_comment] = STATE(343), [sym_block_comment] = STATE(343), - [sym_identifier] = ACTIONS(470), + [sym_identifier] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), [anon_sym_DASH] = ACTIONS(894), [anon_sym_BANG] = ACTIONS(894), [anon_sym_AMP] = ACTIONS(896), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(898), + [anon_sym_COLON_COLON] = ACTIONS(486), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(512), [anon_sym_break] = ACTIONS(514), [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), + [anon_sym_default] = ACTIONS(492), [anon_sym_for] = ACTIONS(362), [anon_sym_gen] = ACTIONS(518), [anon_sym_if] = ACTIONS(366), @@ -56763,10 +56487,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(370), [anon_sym_return] = ACTIONS(520), [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), + [anon_sym_union] = ACTIONS(492), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), + [anon_sym_raw] = ACTIONS(492), [anon_sym_yield] = ACTIONS(524), [anon_sym_move] = ACTIONS(526), [anon_sym_try] = ACTIONS(378), @@ -56777,98 +56501,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(344)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1700), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [344] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1684), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(208), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), [sym_line_comment] = STATE(344), [sym_block_comment] = STATE(344), - [sym_identifier] = ACTIONS(470), + [sym_identifier] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), [anon_sym_DASH] = ACTIONS(894), [anon_sym_BANG] = ACTIONS(894), [anon_sym_AMP] = ACTIONS(896), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(898), + [anon_sym_COLON_COLON] = ACTIONS(486), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(512), [anon_sym_break] = ACTIONS(514), [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), + [anon_sym_default] = ACTIONS(492), [anon_sym_for] = ACTIONS(362), [anon_sym_gen] = ACTIONS(518), [anon_sym_if] = ACTIONS(366), @@ -56876,10 +56600,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(370), [anon_sym_return] = ACTIONS(520), [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), + [anon_sym_union] = ACTIONS(492), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), + [anon_sym_raw] = ACTIONS(492), [anon_sym_yield] = ACTIONS(524), [anon_sym_move] = ACTIONS(526), [anon_sym_try] = ACTIONS(378), @@ -56890,550 +56614,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(345)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1847), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), + [345] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1691), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(208), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), [sym_line_comment] = STATE(345), [sym_block_comment] = STATE(345), - [sym_identifier] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1206), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1208), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(484), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(486), - [anon_sym_static] = ACTIONS(488), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_move] = ACTIONS(492), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), - }, - [STATE(346)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1661), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(346), - [sym_block_comment] = STATE(346), - [sym_identifier] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), - }, - [STATE(347)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1683), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(347), - [sym_block_comment] = STATE(347), - [sym_identifier] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), - }, - [STATE(348)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1686), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(348), - [sym_block_comment] = STATE(348), - [sym_identifier] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), - }, - [STATE(349)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1721), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(349), - [sym_block_comment] = STATE(349), - [sym_identifier] = ACTIONS(470), + [sym_identifier] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), [anon_sym_DASH] = ACTIONS(894), [anon_sym_BANG] = ACTIONS(894), [anon_sym_AMP] = ACTIONS(896), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(898), + [anon_sym_COLON_COLON] = ACTIONS(486), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(512), [anon_sym_break] = ACTIONS(514), [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), + [anon_sym_default] = ACTIONS(492), [anon_sym_for] = ACTIONS(362), [anon_sym_gen] = ACTIONS(518), [anon_sym_if] = ACTIONS(366), @@ -57441,10 +56713,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(370), [anon_sym_return] = ACTIONS(520), [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), + [anon_sym_union] = ACTIONS(492), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), + [anon_sym_raw] = ACTIONS(492), [anon_sym_yield] = ACTIONS(524), [anon_sym_move] = ACTIONS(526), [anon_sym_try] = ACTIONS(378), @@ -57455,98 +56727,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(350)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1669), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(350), - [sym_block_comment] = STATE(350), - [sym_identifier] = ACTIONS(470), + [346] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1839), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(208), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(346), + [sym_block_comment] = STATE(346), + [sym_identifier] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), [anon_sym_DASH] = ACTIONS(894), [anon_sym_BANG] = ACTIONS(894), [anon_sym_AMP] = ACTIONS(896), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(898), + [anon_sym_COLON_COLON] = ACTIONS(486), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(512), [anon_sym_break] = ACTIONS(514), [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), + [anon_sym_default] = ACTIONS(492), [anon_sym_for] = ACTIONS(362), [anon_sym_gen] = ACTIONS(518), [anon_sym_if] = ACTIONS(366), @@ -57554,10 +56826,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(370), [anon_sym_return] = ACTIONS(520), [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), + [anon_sym_union] = ACTIONS(492), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), + [anon_sym_raw] = ACTIONS(492), [anon_sym_yield] = ACTIONS(524), [anon_sym_move] = ACTIONS(526), [anon_sym_try] = ACTIONS(378), @@ -57568,98 +56840,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(351)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1837), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(351), - [sym_block_comment] = STATE(351), - [sym_identifier] = ACTIONS(470), + [347] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1654), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(208), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(347), + [sym_block_comment] = STATE(347), + [sym_identifier] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), [anon_sym_DASH] = ACTIONS(894), [anon_sym_BANG] = ACTIONS(894), [anon_sym_AMP] = ACTIONS(896), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(898), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_COLON_COLON] = ACTIONS(486), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(512), [anon_sym_break] = ACTIONS(514), [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), + [anon_sym_default] = ACTIONS(492), [anon_sym_for] = ACTIONS(362), [anon_sym_gen] = ACTIONS(518), [anon_sym_if] = ACTIONS(366), @@ -57667,10 +56939,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(370), [anon_sym_return] = ACTIONS(520), [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), + [anon_sym_union] = ACTIONS(492), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), + [anon_sym_raw] = ACTIONS(492), [anon_sym_yield] = ACTIONS(524), [anon_sym_move] = ACTIONS(526), [anon_sym_try] = ACTIONS(378), @@ -57681,211 +56953,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), - }, - [STATE(352)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1572), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(352), - [sym_block_comment] = STATE(352), - [sym_identifier] = ACTIONS(344), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [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(1140), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(353)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1519), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(353), - [sym_block_comment] = STATE(353), - [sym_identifier] = ACTIONS(470), + [348] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1516), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(208), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(348), + [sym_block_comment] = STATE(348), + [sym_identifier] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), [anon_sym_DASH] = ACTIONS(894), [anon_sym_BANG] = ACTIONS(894), [anon_sym_AMP] = ACTIONS(896), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(898), + [anon_sym_COLON_COLON] = ACTIONS(486), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(512), [anon_sym_break] = ACTIONS(514), [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), + [anon_sym_default] = ACTIONS(492), [anon_sym_for] = ACTIONS(362), [anon_sym_gen] = ACTIONS(518), [anon_sym_if] = ACTIONS(366), @@ -57893,10 +57052,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(370), [anon_sym_return] = ACTIONS(520), [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), + [anon_sym_union] = ACTIONS(492), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), + [anon_sym_raw] = ACTIONS(492), [anon_sym_yield] = ACTIONS(524), [anon_sym_move] = ACTIONS(526), [anon_sym_try] = ACTIONS(378), @@ -57907,63 +57066,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(354)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1853), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(354), - [sym_block_comment] = STATE(354), + [349] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1854), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(349), + [sym_block_comment] = STATE(349), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -58027,61 +57186,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(355)] = { - [sym_bracketed_type] = STATE(3669), - [sym_generic_function] = STATE(1894), - [sym_generic_type_with_turbofish] = STATE(3057), - [sym__expression_except_range] = STATE(1672), + [350] = { + [sym_bracketed_type] = STATE(3659), + [sym_generic_function] = STATE(1714), + [sym_generic_type_with_turbofish] = STATE(2899), + [sym__expression_except_range] = STATE(1670), [sym__expression] = STATE(1964), - [sym_macro_invocation] = STATE(1901), - [sym_scoped_identifier] = STATE(1644), - [sym_scoped_type_identifier_in_expression_position] = STATE(3253), - [sym_range_expression] = STATE(1897), - [sym_unary_expression] = STATE(1894), - [sym_try_expression] = STATE(1894), - [sym_reference_expression] = STATE(1894), - [sym_binary_expression] = STATE(1894), - [sym_assignment_expression] = STATE(1894), - [sym_compound_assignment_expr] = STATE(1894), - [sym_type_cast_expression] = STATE(1894), - [sym_return_expression] = STATE(1894), - [sym_yield_expression] = STATE(1894), - [sym_call_expression] = STATE(1894), - [sym_array_expression] = STATE(1894), - [sym_parenthesized_expression] = STATE(1894), - [sym_tuple_expression] = STATE(1894), - [sym_unit_expression] = STATE(1894), - [sym_struct_expression] = STATE(1894), - [sym_if_expression] = STATE(1894), - [sym_match_expression] = STATE(1894), - [sym_while_expression] = STATE(1894), - [sym_loop_expression] = STATE(1894), - [sym_for_expression] = STATE(1894), - [sym_const_block] = STATE(1894), - [sym_closure_expression] = STATE(1894), - [sym_closure_parameters] = STATE(220), - [sym_label] = STATE(3777), - [sym_break_expression] = STATE(1894), - [sym_continue_expression] = STATE(1894), - [sym_index_expression] = STATE(1894), - [sym_await_expression] = STATE(1894), - [sym_field_expression] = STATE(1674), - [sym_unsafe_block] = STATE(1894), - [sym_async_block] = STATE(1894), - [sym_gen_block] = STATE(1894), - [sym_try_block] = STATE(1894), - [sym_block] = STATE(1894), - [sym__literal] = STATE(1894), - [sym_string_literal] = STATE(1768), - [sym_raw_string_literal] = STATE(1768), - [sym_boolean_literal] = STATE(1768), - [sym_line_comment] = STATE(355), - [sym_block_comment] = STATE(355), + [sym_macro_invocation] = STATE(1893), + [sym_scoped_identifier] = STATE(1650), + [sym_scoped_type_identifier_in_expression_position] = STATE(3266), + [sym_range_expression] = STATE(1889), + [sym_unary_expression] = STATE(1714), + [sym_try_expression] = STATE(1714), + [sym_reference_expression] = STATE(1714), + [sym_binary_expression] = STATE(1714), + [sym_assignment_expression] = STATE(1714), + [sym_compound_assignment_expr] = STATE(1714), + [sym_type_cast_expression] = STATE(1714), + [sym_return_expression] = STATE(1714), + [sym_yield_expression] = STATE(1714), + [sym_call_expression] = STATE(1714), + [sym_array_expression] = STATE(1714), + [sym_parenthesized_expression] = STATE(1714), + [sym_tuple_expression] = STATE(1714), + [sym_unit_expression] = STATE(1714), + [sym_struct_expression] = STATE(1714), + [sym_if_expression] = STATE(1714), + [sym_match_expression] = STATE(1714), + [sym_while_expression] = STATE(1714), + [sym_loop_expression] = STATE(1714), + [sym_for_expression] = STATE(1714), + [sym_const_block] = STATE(1714), + [sym_closure_expression] = STATE(1714), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3767), + [sym_break_expression] = STATE(1714), + [sym_continue_expression] = STATE(1714), + [sym_index_expression] = STATE(1714), + [sym_await_expression] = STATE(1714), + [sym_field_expression] = STATE(1672), + [sym_unsafe_block] = STATE(1714), + [sym_async_block] = STATE(1714), + [sym_gen_block] = STATE(1714), + [sym_try_block] = STATE(1714), + [sym_block] = STATE(1714), + [sym__literal] = STATE(1714), + [sym_string_literal] = STATE(1766), + [sym_raw_string_literal] = STATE(1766), + [sym_boolean_literal] = STATE(1766), + [sym_line_comment] = STATE(350), + [sym_block_comment] = STATE(350), [sym_identifier] = ACTIONS(410), - [anon_sym_LPAREN] = ACTIONS(500), - [anon_sym_LBRACK] = ACTIONS(502), + [anon_sym_LPAREN] = ACTIONS(470), + [anon_sym_LBRACK] = ACTIONS(472), [anon_sym_LBRACE] = ACTIONS(412), - [anon_sym_STAR] = ACTIONS(904), + [anon_sym_STAR] = ACTIONS(906), [anon_sym_u8] = ACTIONS(416), [anon_sym_i8] = ACTIONS(416), [anon_sym_u16] = ACTIONS(416), @@ -58099,12 +57258,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(416), [anon_sym_str] = ACTIONS(416), [anon_sym_char] = ACTIONS(416), - [anon_sym_DASH] = ACTIONS(904), - [anon_sym_BANG] = ACTIONS(904), - [anon_sym_AMP] = ACTIONS(906), + [anon_sym_DASH] = ACTIONS(906), + [anon_sym_BANG] = ACTIONS(906), + [anon_sym_AMP] = ACTIONS(908), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(908), + [anon_sym_DOT_DOT] = ACTIONS(910), [anon_sym_COLON_COLON] = ACTIONS(420), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(422), @@ -58140,56 +57299,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(468), [sym_float_literal] = ACTIONS(456), }, - [STATE(356)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1968), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(356), - [sym_block_comment] = STATE(356), + [351] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1959), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(351), + [sym_block_comment] = STATE(351), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -58253,56 +57412,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(357)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1916), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(357), - [sym_block_comment] = STATE(357), + [352] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1906), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(352), + [sym_block_comment] = STATE(352), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -58366,56 +57525,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(358)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1924), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(358), - [sym_block_comment] = STATE(358), + [353] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1917), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(353), + [sym_block_comment] = STATE(353), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -58479,104 +57638,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(359)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1730), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(359), - [sym_block_comment] = STATE(359), - [sym_identifier] = ACTIONS(470), + [354] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1728), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(225), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(354), + [sym_block_comment] = STATE(354), + [sym_identifier] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1206), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1306), + [anon_sym_AMP] = ACTIONS(1308), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1408), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(1310), + [anon_sym_COLON_COLON] = ACTIONS(486), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), + [anon_sym_async] = ACTIONS(488), + [anon_sym_break] = ACTIONS(490), [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(482), + [anon_sym_default] = ACTIONS(492), [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(484), + [anon_sym_gen] = ACTIONS(494), [anon_sym_if] = ACTIONS(366), [anon_sym_loop] = ACTIONS(368), [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(486), - [anon_sym_static] = ACTIONS(488), - [anon_sym_union] = ACTIONS(482), + [anon_sym_return] = ACTIONS(496), + [anon_sym_static] = ACTIONS(498), + [anon_sym_union] = ACTIONS(492), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_move] = ACTIONS(492), + [anon_sym_raw] = ACTIONS(492), + [anon_sym_yield] = ACTIONS(500), + [anon_sym_move] = ACTIONS(502), [anon_sym_try] = ACTIONS(378), [sym_integer_literal] = ACTIONS(99), [aux_sym_string_literal_token1] = ACTIONS(101), @@ -58585,63 +57744,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(360)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1519), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(360), - [sym_block_comment] = STATE(360), + [355] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1516), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(355), + [sym_block_comment] = STATE(355), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -58669,7 +57828,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(1140), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(356), @@ -58705,217 +57864,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(361)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1544), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(361), - [sym_block_comment] = STATE(361), - [sym_identifier] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1206), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1208), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(484), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(486), - [anon_sym_static] = ACTIONS(488), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_move] = ACTIONS(492), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), - }, - [STATE(362)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1795), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(362), - [sym_block_comment] = STATE(362), - [sym_identifier] = ACTIONS(470), + [356] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1542), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(225), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(356), + [sym_block_comment] = STATE(356), + [sym_identifier] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1206), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1306), + [anon_sym_AMP] = ACTIONS(1308), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1408), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(1310), + [anon_sym_COLON_COLON] = ACTIONS(486), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), + [anon_sym_async] = ACTIONS(488), + [anon_sym_break] = ACTIONS(490), [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(482), + [anon_sym_default] = ACTIONS(492), [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(484), + [anon_sym_gen] = ACTIONS(494), [anon_sym_if] = ACTIONS(366), [anon_sym_loop] = ACTIONS(368), [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(486), - [anon_sym_static] = ACTIONS(488), - [anon_sym_union] = ACTIONS(482), + [anon_sym_return] = ACTIONS(496), + [anon_sym_static] = ACTIONS(498), + [anon_sym_union] = ACTIONS(492), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_move] = ACTIONS(492), + [anon_sym_raw] = ACTIONS(492), + [anon_sym_yield] = ACTIONS(500), + [anon_sym_move] = ACTIONS(502), [anon_sym_try] = ACTIONS(378), [sym_integer_literal] = ACTIONS(99), [aux_sym_string_literal_token1] = ACTIONS(101), @@ -58924,111 +57970,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(363)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1979), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(363), - [sym_block_comment] = STATE(363), - [sym_identifier] = ACTIONS(344), + [357] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1796), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(225), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(357), + [sym_block_comment] = STATE(357), + [sym_identifier] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), - [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(1306), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1306), + [anon_sym_AMP] = ACTIONS(1308), [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(1310), + [anon_sym_COLON_COLON] = ACTIONS(486), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(356), - [anon_sym_break] = ACTIONS(41), + [anon_sym_async] = ACTIONS(488), + [anon_sym_break] = ACTIONS(490), [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(360), + [anon_sym_default] = ACTIONS(492), [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(364), + [anon_sym_gen] = ACTIONS(494), [anon_sym_if] = ACTIONS(366), [anon_sym_loop] = ACTIONS(368), [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(372), - [anon_sym_union] = ACTIONS(360), + [anon_sym_return] = ACTIONS(496), + [anon_sym_static] = ACTIONS(498), + [anon_sym_union] = ACTIONS(492), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(360), - [anon_sym_yield] = ACTIONS(93), - [anon_sym_move] = ACTIONS(95), + [anon_sym_raw] = ACTIONS(492), + [anon_sym_yield] = ACTIONS(500), + [anon_sym_move] = ACTIONS(502), [anon_sym_try] = ACTIONS(378), [sym_integer_literal] = ACTIONS(99), [aux_sym_string_literal_token1] = ACTIONS(101), @@ -59037,63 +58083,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(111), - [sym_super] = ACTIONS(113), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(117), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(364)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1981), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(364), - [sym_block_comment] = STATE(364), + [358] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1970), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(358), + [sym_block_comment] = STATE(358), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -59157,91 +58203,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(365)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1638), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(365), - [sym_block_comment] = STATE(365), - [sym_identifier] = ACTIONS(470), + [359] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1649), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(208), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(359), + [sym_block_comment] = STATE(359), + [sym_identifier] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), [anon_sym_DASH] = ACTIONS(894), [anon_sym_BANG] = ACTIONS(894), [anon_sym_AMP] = ACTIONS(896), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(898), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_COLON_COLON] = ACTIONS(486), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(512), [anon_sym_break] = ACTIONS(514), [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), + [anon_sym_default] = ACTIONS(492), [anon_sym_for] = ACTIONS(362), [anon_sym_gen] = ACTIONS(518), [anon_sym_if] = ACTIONS(366), @@ -59249,10 +58295,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(370), [anon_sym_return] = ACTIONS(520), [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), + [anon_sym_union] = ACTIONS(492), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), + [anon_sym_raw] = ACTIONS(492), [anon_sym_yield] = ACTIONS(524), [anon_sym_move] = ACTIONS(526), [anon_sym_try] = ACTIONS(378), @@ -59263,63 +58309,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(366)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1809), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(366), - [sym_block_comment] = STATE(366), + [360] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1808), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(360), + [sym_block_comment] = STATE(360), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -59383,169 +58429,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(367)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1842), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(367), - [sym_block_comment] = STATE(367), - [sym_identifier] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1206), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1208), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(484), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(486), - [anon_sym_static] = ACTIONS(488), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_move] = ACTIONS(492), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), - }, - [STATE(368)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1950), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(368), - [sym_block_comment] = STATE(368), + [361] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1940), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(361), + [sym_block_comment] = STATE(361), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -59609,56 +58542,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(369)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1951), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(369), - [sym_block_comment] = STATE(369), + [362] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1941), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(362), + [sym_block_comment] = STATE(362), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -59722,56 +58655,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(370)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1815), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(370), - [sym_block_comment] = STATE(370), + [363] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1814), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(363), + [sym_block_comment] = STATE(363), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -59835,56 +58768,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(371)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1954), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(371), - [sym_block_comment] = STATE(371), + [364] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1944), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(364), + [sym_block_comment] = STATE(364), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -59948,56 +58881,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(372)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1820), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(372), - [sym_block_comment] = STATE(372), + [365] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1817), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(365), + [sym_block_comment] = STATE(365), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -60061,56 +58994,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(373)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1955), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(373), - [sym_block_comment] = STATE(373), + [366] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1945), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(366), + [sym_block_comment] = STATE(366), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -60174,91 +59107,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(374)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1646), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(374), - [sym_block_comment] = STATE(374), - [sym_identifier] = ACTIONS(470), + [367] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1639), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(208), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(367), + [sym_block_comment] = STATE(367), + [sym_identifier] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), [anon_sym_DASH] = ACTIONS(894), [anon_sym_BANG] = ACTIONS(894), [anon_sym_AMP] = ACTIONS(896), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(898), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_COLON_COLON] = ACTIONS(486), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(512), [anon_sym_break] = ACTIONS(514), [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), + [anon_sym_default] = ACTIONS(492), [anon_sym_for] = ACTIONS(362), [anon_sym_gen] = ACTIONS(518), [anon_sym_if] = ACTIONS(366), @@ -60266,10 +59199,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(370), [anon_sym_return] = ACTIONS(520), [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), + [anon_sym_union] = ACTIONS(492), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), + [anon_sym_raw] = ACTIONS(492), [anon_sym_yield] = ACTIONS(524), [anon_sym_move] = ACTIONS(526), [anon_sym_try] = ACTIONS(378), @@ -60280,63 +59213,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(375)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1824), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(375), - [sym_block_comment] = STATE(375), + [368] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1820), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(368), + [sym_block_comment] = STATE(368), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -60400,56 +59333,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(376)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1956), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(376), - [sym_block_comment] = STATE(376), + [369] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1947), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(369), + [sym_block_comment] = STATE(369), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -60513,56 +59446,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(377)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1957), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(377), - [sym_block_comment] = STATE(377), + [370] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1948), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(370), + [sym_block_comment] = STATE(370), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -60626,169 +59559,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(378)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1501), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(378), - [sym_block_comment] = STATE(378), - [sym_identifier] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1206), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1208), - [anon_sym_COLON_COLON] = ACTIONS(476), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), - [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(482), - [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(484), - [anon_sym_if] = ACTIONS(366), - [anon_sym_loop] = ACTIONS(368), - [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(486), - [anon_sym_static] = ACTIONS(488), - [anon_sym_union] = ACTIONS(482), - [anon_sym_unsafe] = ACTIONS(374), - [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_move] = ACTIONS(492), - [anon_sym_try] = ACTIONS(378), - [sym_integer_literal] = ACTIONS(99), - [aux_sym_string_literal_token1] = ACTIONS(101), - [sym_char_literal] = ACTIONS(99), - [anon_sym_true] = ACTIONS(103), - [anon_sym_false] = ACTIONS(103), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), - [sym__raw_string_literal_start] = ACTIONS(119), - [sym_float_literal] = ACTIONS(99), - }, - [STATE(379)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1959), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(379), - [sym_block_comment] = STATE(379), + [371] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1949), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(371), + [sym_block_comment] = STATE(371), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -60852,104 +59672,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(380)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1843), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(380), - [sym_block_comment] = STATE(380), - [sym_identifier] = ACTIONS(470), + [372] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1950), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(372), + [sym_block_comment] = STATE(372), + [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1206), + [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(1208), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), + [anon_sym_async] = ACTIONS(356), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(482), + [anon_sym_default] = ACTIONS(360), [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(484), + [anon_sym_gen] = ACTIONS(364), [anon_sym_if] = ACTIONS(366), [anon_sym_loop] = ACTIONS(368), [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(486), - [anon_sym_static] = ACTIONS(488), - [anon_sym_union] = ACTIONS(482), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(372), + [anon_sym_union] = ACTIONS(360), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_move] = ACTIONS(492), + [anon_sym_raw] = ACTIONS(360), + [anon_sym_yield] = ACTIONS(93), + [anon_sym_move] = ACTIONS(95), [anon_sym_try] = ACTIONS(378), [sym_integer_literal] = ACTIONS(99), [aux_sym_string_literal_token1] = ACTIONS(101), @@ -60958,111 +59778,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), + [sym_self] = ACTIONS(111), + [sym_super] = ACTIONS(113), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(117), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(381)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1831), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(381), - [sym_block_comment] = STATE(381), - [sym_identifier] = ACTIONS(470), + [373] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1827), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(225), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(373), + [sym_block_comment] = STATE(373), + [sym_identifier] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1206), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1306), + [anon_sym_AMP] = ACTIONS(1308), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1408), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(1310), + [anon_sym_COLON_COLON] = ACTIONS(486), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), + [anon_sym_async] = ACTIONS(488), + [anon_sym_break] = ACTIONS(490), [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(482), + [anon_sym_default] = ACTIONS(492), [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(484), + [anon_sym_gen] = ACTIONS(494), [anon_sym_if] = ACTIONS(366), [anon_sym_loop] = ACTIONS(368), [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(486), - [anon_sym_static] = ACTIONS(488), - [anon_sym_union] = ACTIONS(482), + [anon_sym_return] = ACTIONS(496), + [anon_sym_static] = ACTIONS(498), + [anon_sym_union] = ACTIONS(492), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_move] = ACTIONS(492), + [anon_sym_raw] = ACTIONS(492), + [anon_sym_yield] = ACTIONS(500), + [anon_sym_move] = ACTIONS(502), [anon_sym_try] = ACTIONS(378), [sym_integer_literal] = ACTIONS(99), [aux_sym_string_literal_token1] = ACTIONS(101), @@ -61071,111 +59891,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(382)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1844), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(382), - [sym_block_comment] = STATE(382), - [sym_identifier] = ACTIONS(470), + [374] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1847), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(225), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(374), + [sym_block_comment] = STATE(374), + [sym_identifier] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1206), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1306), + [anon_sym_AMP] = ACTIONS(1308), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1208), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(1310), + [anon_sym_COLON_COLON] = ACTIONS(486), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), + [anon_sym_async] = ACTIONS(488), + [anon_sym_break] = ACTIONS(490), [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(482), + [anon_sym_default] = ACTIONS(492), [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(484), + [anon_sym_gen] = ACTIONS(494), [anon_sym_if] = ACTIONS(366), [anon_sym_loop] = ACTIONS(368), [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(486), - [anon_sym_static] = ACTIONS(488), - [anon_sym_union] = ACTIONS(482), + [anon_sym_return] = ACTIONS(496), + [anon_sym_static] = ACTIONS(498), + [anon_sym_union] = ACTIONS(492), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_move] = ACTIONS(492), + [anon_sym_raw] = ACTIONS(492), + [anon_sym_yield] = ACTIONS(500), + [anon_sym_move] = ACTIONS(502), [anon_sym_try] = ACTIONS(378), [sym_integer_literal] = ACTIONS(99), [aux_sym_string_literal_token1] = ACTIONS(101), @@ -61184,98 +60004,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(383)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1658), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(383), - [sym_block_comment] = STATE(383), - [sym_identifier] = ACTIONS(470), + [375] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1636), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(208), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(375), + [sym_block_comment] = STATE(375), + [sym_identifier] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), [anon_sym_DASH] = ACTIONS(894), [anon_sym_BANG] = ACTIONS(894), [anon_sym_AMP] = ACTIONS(896), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(898), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_COLON_COLON] = ACTIONS(486), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(512), [anon_sym_break] = ACTIONS(514), [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), + [anon_sym_default] = ACTIONS(492), [anon_sym_for] = ACTIONS(362), [anon_sym_gen] = ACTIONS(518), [anon_sym_if] = ACTIONS(366), @@ -61283,10 +60103,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(370), [anon_sym_return] = ACTIONS(520), [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), + [anon_sym_union] = ACTIONS(492), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), + [anon_sym_raw] = ACTIONS(492), [anon_sym_yield] = ACTIONS(524), [anon_sym_move] = ACTIONS(526), [anon_sym_try] = ACTIONS(378), @@ -61297,111 +60117,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(384)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1946), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(384), - [sym_block_comment] = STATE(384), - [sym_identifier] = ACTIONS(470), + [376] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1497), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(225), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(376), + [sym_block_comment] = STATE(376), + [sym_identifier] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1206), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1306), + [anon_sym_AMP] = ACTIONS(1308), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1208), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(1310), + [anon_sym_COLON_COLON] = ACTIONS(486), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), + [anon_sym_async] = ACTIONS(488), + [anon_sym_break] = ACTIONS(490), [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(482), + [anon_sym_default] = ACTIONS(492), [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(484), + [anon_sym_gen] = ACTIONS(494), [anon_sym_if] = ACTIONS(366), [anon_sym_loop] = ACTIONS(368), [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(486), - [anon_sym_static] = ACTIONS(488), - [anon_sym_union] = ACTIONS(482), + [anon_sym_return] = ACTIONS(496), + [anon_sym_static] = ACTIONS(498), + [anon_sym_union] = ACTIONS(492), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_move] = ACTIONS(492), + [anon_sym_raw] = ACTIONS(492), + [anon_sym_yield] = ACTIONS(500), + [anon_sym_move] = ACTIONS(502), [anon_sym_try] = ACTIONS(378), [sym_integer_literal] = ACTIONS(99), [aux_sym_string_literal_token1] = ACTIONS(101), @@ -61410,63 +60230,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(385)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1947), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(385), - [sym_block_comment] = STATE(385), + [377] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1939), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(377), + [sym_block_comment] = STATE(377), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -61530,91 +60350,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(386)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1629), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(386), - [sym_block_comment] = STATE(386), - [sym_identifier] = ACTIONS(470), + [378] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1634), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(208), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(378), + [sym_block_comment] = STATE(378), + [sym_identifier] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), [anon_sym_DASH] = ACTIONS(894), [anon_sym_BANG] = ACTIONS(894), [anon_sym_AMP] = ACTIONS(896), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(898), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_COLON_COLON] = ACTIONS(486), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(512), [anon_sym_break] = ACTIONS(514), [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), + [anon_sym_default] = ACTIONS(492), [anon_sym_for] = ACTIONS(362), [anon_sym_gen] = ACTIONS(518), [anon_sym_if] = ACTIONS(366), @@ -61622,10 +60442,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(370), [anon_sym_return] = ACTIONS(520), [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), + [anon_sym_union] = ACTIONS(492), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), + [anon_sym_raw] = ACTIONS(492), [anon_sym_yield] = ACTIONS(524), [anon_sym_move] = ACTIONS(526), [anon_sym_try] = ACTIONS(378), @@ -61636,111 +60456,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(387)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1668), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(387), - [sym_block_comment] = STATE(387), - [sym_identifier] = ACTIONS(470), + [379] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1848), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(225), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(379), + [sym_block_comment] = STATE(379), + [sym_identifier] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(894), - [anon_sym_BANG] = ACTIONS(894), - [anon_sym_AMP] = ACTIONS(896), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1306), + [anon_sym_AMP] = ACTIONS(1308), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1144), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(1310), + [anon_sym_COLON_COLON] = ACTIONS(486), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(512), - [anon_sym_break] = ACTIONS(514), + [anon_sym_async] = ACTIONS(488), + [anon_sym_break] = ACTIONS(490), [anon_sym_const] = ACTIONS(358), - [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(492), [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(518), + [anon_sym_gen] = ACTIONS(494), [anon_sym_if] = ACTIONS(366), [anon_sym_loop] = ACTIONS(368), [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(520), - [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), + [anon_sym_return] = ACTIONS(496), + [anon_sym_static] = ACTIONS(498), + [anon_sym_union] = ACTIONS(492), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(524), - [anon_sym_move] = ACTIONS(526), + [anon_sym_raw] = ACTIONS(492), + [anon_sym_yield] = ACTIONS(500), + [anon_sym_move] = ACTIONS(502), [anon_sym_try] = ACTIONS(378), [sym_integer_literal] = ACTIONS(99), [aux_sym_string_literal_token1] = ACTIONS(101), @@ -61749,111 +60569,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(388)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1854), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(388), - [sym_block_comment] = STATE(388), - [sym_identifier] = ACTIONS(470), + [380] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1845), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(225), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(380), + [sym_block_comment] = STATE(380), + [sym_identifier] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1206), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1306), + [anon_sym_AMP] = ACTIONS(1308), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1408), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(1310), + [anon_sym_COLON_COLON] = ACTIONS(486), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), + [anon_sym_async] = ACTIONS(488), + [anon_sym_break] = ACTIONS(490), [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(482), + [anon_sym_default] = ACTIONS(492), [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(484), + [anon_sym_gen] = ACTIONS(494), [anon_sym_if] = ACTIONS(366), [anon_sym_loop] = ACTIONS(368), [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(486), - [anon_sym_static] = ACTIONS(488), - [anon_sym_union] = ACTIONS(482), + [anon_sym_return] = ACTIONS(496), + [anon_sym_static] = ACTIONS(498), + [anon_sym_union] = ACTIONS(492), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_move] = ACTIONS(492), + [anon_sym_raw] = ACTIONS(492), + [anon_sym_yield] = ACTIONS(500), + [anon_sym_move] = ACTIONS(502), [anon_sym_try] = ACTIONS(378), [sym_integer_literal] = ACTIONS(99), [aux_sym_string_literal_token1] = ACTIONS(101), @@ -61862,111 +60682,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(389)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1848), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(389), - [sym_block_comment] = STATE(389), - [sym_identifier] = ACTIONS(470), + [381] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1849), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(225), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(381), + [sym_block_comment] = STATE(381), + [sym_identifier] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1206), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1306), + [anon_sym_AMP] = ACTIONS(1308), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1208), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(1310), + [anon_sym_COLON_COLON] = ACTIONS(486), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), + [anon_sym_async] = ACTIONS(488), + [anon_sym_break] = ACTIONS(490), [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(482), + [anon_sym_default] = ACTIONS(492), [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(484), + [anon_sym_gen] = ACTIONS(494), [anon_sym_if] = ACTIONS(366), [anon_sym_loop] = ACTIONS(368), [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(486), - [anon_sym_static] = ACTIONS(488), - [anon_sym_union] = ACTIONS(482), + [anon_sym_return] = ACTIONS(496), + [anon_sym_static] = ACTIONS(498), + [anon_sym_union] = ACTIONS(492), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_move] = ACTIONS(492), + [anon_sym_raw] = ACTIONS(492), + [anon_sym_yield] = ACTIONS(500), + [anon_sym_move] = ACTIONS(502), [anon_sym_try] = ACTIONS(378), [sym_integer_literal] = ACTIONS(99), [aux_sym_string_literal_token1] = ACTIONS(101), @@ -61975,98 +60795,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(390)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1632), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(390), - [sym_block_comment] = STATE(390), - [sym_identifier] = ACTIONS(470), + [382] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1623), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(208), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(382), + [sym_block_comment] = STATE(382), + [sym_identifier] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), [anon_sym_DASH] = ACTIONS(894), [anon_sym_BANG] = ACTIONS(894), [anon_sym_AMP] = ACTIONS(896), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(898), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_COLON_COLON] = ACTIONS(486), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(512), [anon_sym_break] = ACTIONS(514), [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), + [anon_sym_default] = ACTIONS(492), [anon_sym_for] = ACTIONS(362), [anon_sym_gen] = ACTIONS(518), [anon_sym_if] = ACTIONS(366), @@ -62074,10 +60894,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(370), [anon_sym_return] = ACTIONS(520), [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), + [anon_sym_union] = ACTIONS(492), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), + [anon_sym_raw] = ACTIONS(492), [anon_sym_yield] = ACTIONS(524), [anon_sym_move] = ACTIONS(526), [anon_sym_try] = ACTIONS(378), @@ -62088,111 +60908,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(391)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1849), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(228), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(391), - [sym_block_comment] = STATE(391), - [sym_identifier] = ACTIONS(470), + [383] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1850), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(225), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(383), + [sym_block_comment] = STATE(383), + [sym_identifier] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), - [anon_sym_STAR] = ACTIONS(1204), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), - [anon_sym_DASH] = ACTIONS(1204), - [anon_sym_BANG] = ACTIONS(1204), - [anon_sym_AMP] = ACTIONS(1206), + [anon_sym_STAR] = ACTIONS(1306), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_BANG] = ACTIONS(1306), + [anon_sym_AMP] = ACTIONS(1308), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1208), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_DOT_DOT] = ACTIONS(1310), + [anon_sym_COLON_COLON] = ACTIONS(486), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(478), - [anon_sym_break] = ACTIONS(480), + [anon_sym_async] = ACTIONS(488), + [anon_sym_break] = ACTIONS(490), [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(482), + [anon_sym_default] = ACTIONS(492), [anon_sym_for] = ACTIONS(362), - [anon_sym_gen] = ACTIONS(484), + [anon_sym_gen] = ACTIONS(494), [anon_sym_if] = ACTIONS(366), [anon_sym_loop] = ACTIONS(368), [anon_sym_match] = ACTIONS(370), - [anon_sym_return] = ACTIONS(486), - [anon_sym_static] = ACTIONS(488), - [anon_sym_union] = ACTIONS(482), + [anon_sym_return] = ACTIONS(496), + [anon_sym_static] = ACTIONS(498), + [anon_sym_union] = ACTIONS(492), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), - [anon_sym_yield] = ACTIONS(490), - [anon_sym_move] = ACTIONS(492), + [anon_sym_raw] = ACTIONS(492), + [anon_sym_yield] = ACTIONS(500), + [anon_sym_move] = ACTIONS(502), [anon_sym_try] = ACTIONS(378), [sym_integer_literal] = ACTIONS(99), [aux_sym_string_literal_token1] = ACTIONS(101), @@ -62201,98 +61021,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(392)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3100), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1627), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1614), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(1507), - [sym_match_expression] = STATE(1507), - [sym_while_expression] = STATE(1507), - [sym_loop_expression] = STATE(1507), - [sym_for_expression] = STATE(1507), - [sym_const_block] = STATE(1507), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(210), - [sym_label] = STATE(3711), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(1507), - [sym_async_block] = STATE(1507), - [sym_gen_block] = STATE(1507), - [sym_try_block] = STATE(1507), - [sym_block] = STATE(1507), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(392), - [sym_block_comment] = STATE(392), - [sym_identifier] = ACTIONS(470), + [384] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3089), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1626), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1606), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(208), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(384), + [sym_block_comment] = STATE(384), + [sym_identifier] = ACTIONS(480), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(894), - [anon_sym_u8] = ACTIONS(472), - [anon_sym_i8] = ACTIONS(472), - [anon_sym_u16] = ACTIONS(472), - [anon_sym_i16] = ACTIONS(472), - [anon_sym_u32] = ACTIONS(472), - [anon_sym_i32] = ACTIONS(472), - [anon_sym_u64] = ACTIONS(472), - [anon_sym_i64] = ACTIONS(472), - [anon_sym_u128] = ACTIONS(472), - [anon_sym_i128] = ACTIONS(472), - [anon_sym_isize] = ACTIONS(472), - [anon_sym_usize] = ACTIONS(472), - [anon_sym_f32] = ACTIONS(472), - [anon_sym_f64] = ACTIONS(472), - [anon_sym_bool] = ACTIONS(472), - [anon_sym_str] = ACTIONS(472), - [anon_sym_char] = ACTIONS(472), + [anon_sym_u8] = ACTIONS(482), + [anon_sym_i8] = ACTIONS(482), + [anon_sym_u16] = ACTIONS(482), + [anon_sym_i16] = ACTIONS(482), + [anon_sym_u32] = ACTIONS(482), + [anon_sym_i32] = ACTIONS(482), + [anon_sym_u64] = ACTIONS(482), + [anon_sym_i64] = ACTIONS(482), + [anon_sym_u128] = ACTIONS(482), + [anon_sym_i128] = ACTIONS(482), + [anon_sym_isize] = ACTIONS(482), + [anon_sym_usize] = ACTIONS(482), + [anon_sym_f32] = ACTIONS(482), + [anon_sym_f64] = ACTIONS(482), + [anon_sym_bool] = ACTIONS(482), + [anon_sym_str] = ACTIONS(482), + [anon_sym_char] = ACTIONS(482), [anon_sym_DASH] = ACTIONS(894), [anon_sym_BANG] = ACTIONS(894), [anon_sym_AMP] = ACTIONS(896), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(898), - [anon_sym_COLON_COLON] = ACTIONS(476), + [anon_sym_COLON_COLON] = ACTIONS(486), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(512), [anon_sym_break] = ACTIONS(514), [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(516), - [anon_sym_default] = ACTIONS(482), + [anon_sym_default] = ACTIONS(492), [anon_sym_for] = ACTIONS(362), [anon_sym_gen] = ACTIONS(518), [anon_sym_if] = ACTIONS(366), @@ -62300,10 +61120,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_match] = ACTIONS(370), [anon_sym_return] = ACTIONS(520), [anon_sym_static] = ACTIONS(522), - [anon_sym_union] = ACTIONS(482), + [anon_sym_union] = ACTIONS(492), [anon_sym_unsafe] = ACTIONS(374), [anon_sym_while] = ACTIONS(376), - [anon_sym_raw] = ACTIONS(482), + [anon_sym_raw] = ACTIONS(492), [anon_sym_yield] = ACTIONS(524), [anon_sym_move] = ACTIONS(526), [anon_sym_try] = ACTIONS(378), @@ -62314,67 +61134,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(103), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(494), - [sym_super] = ACTIONS(496), - [sym_crate] = ACTIONS(496), - [sym_metavariable] = ACTIONS(498), + [sym_self] = ACTIONS(504), + [sym_super] = ACTIONS(506), + [sym_crate] = ACTIONS(506), + [sym_metavariable] = ACTIONS(508), [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(393)] = { - [sym_bracketed_type] = STATE(3502), - [sym_generic_function] = STATE(1507), - [sym_generic_type_with_turbofish] = STATE(3142), - [sym__expression_except_range] = STATE(1412), - [sym__expression] = STATE(1966), - [sym_macro_invocation] = STATE(1462), - [sym_scoped_identifier] = STATE(1524), - [sym_scoped_type_identifier_in_expression_position] = STATE(3278), - [sym_range_expression] = STATE(1454), - [sym_unary_expression] = STATE(1507), - [sym_try_expression] = STATE(1507), - [sym_reference_expression] = STATE(1507), - [sym_binary_expression] = STATE(1507), - [sym_assignment_expression] = STATE(1507), - [sym_compound_assignment_expr] = STATE(1507), - [sym_type_cast_expression] = STATE(1507), - [sym_return_expression] = STATE(1507), - [sym_yield_expression] = STATE(1507), - [sym_call_expression] = STATE(1507), - [sym_array_expression] = STATE(1507), - [sym_parenthesized_expression] = STATE(1507), - [sym_tuple_expression] = STATE(1507), - [sym_unit_expression] = STATE(1507), - [sym_struct_expression] = STATE(1507), - [sym_if_expression] = STATE(479), - [sym_match_expression] = STATE(479), - [sym_while_expression] = STATE(479), - [sym_loop_expression] = STATE(479), - [sym_for_expression] = STATE(479), - [sym_const_block] = STATE(479), - [sym_closure_expression] = STATE(1507), - [sym_closure_parameters] = STATE(209), - [sym_label] = STATE(3771), - [sym_break_expression] = STATE(1507), - [sym_continue_expression] = STATE(1507), - [sym_index_expression] = STATE(1507), - [sym_await_expression] = STATE(1507), - [sym_field_expression] = STATE(1424), - [sym_unsafe_block] = STATE(479), - [sym_async_block] = STATE(479), - [sym_gen_block] = STATE(479), - [sym_try_block] = STATE(479), - [sym_block] = STATE(479), - [sym__literal] = STATE(1507), - [sym_string_literal] = STATE(1442), - [sym_raw_string_literal] = STATE(1442), - [sym_boolean_literal] = STATE(1442), - [sym_line_comment] = STATE(393), - [sym_block_comment] = STATE(393), + [385] = { + [sym_bracketed_type] = STATE(3770), + [sym_generic_function] = STATE(1504), + [sym_generic_type_with_turbofish] = STATE(3150), + [sym__expression_except_range] = STATE(1426), + [sym__expression] = STATE(1951), + [sym_macro_invocation] = STATE(1467), + [sym_scoped_identifier] = STATE(1520), + [sym_scoped_type_identifier_in_expression_position] = STATE(3354), + [sym_range_expression] = STATE(1456), + [sym_unary_expression] = STATE(1504), + [sym_try_expression] = STATE(1504), + [sym_reference_expression] = STATE(1504), + [sym_binary_expression] = STATE(1504), + [sym_assignment_expression] = STATE(1504), + [sym_compound_assignment_expr] = STATE(1504), + [sym_type_cast_expression] = STATE(1504), + [sym_return_expression] = STATE(1504), + [sym_yield_expression] = STATE(1504), + [sym_call_expression] = STATE(1504), + [sym_array_expression] = STATE(1504), + [sym_parenthesized_expression] = STATE(1504), + [sym_tuple_expression] = STATE(1504), + [sym_unit_expression] = STATE(1504), + [sym_struct_expression] = STATE(1504), + [sym_if_expression] = STATE(1504), + [sym_match_expression] = STATE(1504), + [sym_while_expression] = STATE(1504), + [sym_loop_expression] = STATE(1504), + [sym_for_expression] = STATE(1504), + [sym_const_block] = STATE(1504), + [sym_closure_expression] = STATE(1504), + [sym_closure_parameters] = STATE(207), + [sym_label] = STATE(3701), + [sym_break_expression] = STATE(1504), + [sym_continue_expression] = STATE(1504), + [sym_index_expression] = STATE(1504), + [sym_await_expression] = STATE(1504), + [sym_field_expression] = STATE(1423), + [sym_unsafe_block] = STATE(1504), + [sym_async_block] = STATE(1504), + [sym_gen_block] = STATE(1504), + [sym_try_block] = STATE(1504), + [sym_block] = STATE(1504), + [sym__literal] = STATE(1504), + [sym_string_literal] = STATE(1522), + [sym_raw_string_literal] = STATE(1522), + [sym_boolean_literal] = STATE(1522), + [sym_line_comment] = STATE(385), + [sym_block_comment] = STATE(385), [sym_identifier] = ACTIONS(344), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(348), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -62401,25 +61221,25 @@ 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(1388), + [anon_sym_async] = ACTIONS(356), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1390), + [anon_sym_const] = ACTIONS(358), [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(360), - [anon_sym_for] = ACTIONS(1392), - [anon_sym_gen] = ACTIONS(1394), - [anon_sym_if] = ACTIONS(1396), - [anon_sym_loop] = ACTIONS(1398), - [anon_sym_match] = ACTIONS(1400), + [anon_sym_for] = ACTIONS(362), + [anon_sym_gen] = ACTIONS(364), + [anon_sym_if] = ACTIONS(366), + [anon_sym_loop] = ACTIONS(368), + [anon_sym_match] = ACTIONS(370), [anon_sym_return] = ACTIONS(71), [anon_sym_static] = ACTIONS(372), [anon_sym_union] = ACTIONS(360), - [anon_sym_unsafe] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1404), + [anon_sym_unsafe] = ACTIONS(374), + [anon_sym_while] = ACTIONS(376), [anon_sym_raw] = ACTIONS(360), [anon_sym_yield] = ACTIONS(93), [anon_sym_move] = ACTIONS(95), - [anon_sym_try] = ACTIONS(1406), + [anon_sym_try] = ACTIONS(378), [sym_integer_literal] = ACTIONS(99), [aux_sym_string_literal_token1] = ACTIONS(101), [sym_char_literal] = ACTIONS(99), @@ -62434,9 +61254,233 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(119), [sym_float_literal] = ACTIONS(99), }, - [STATE(394)] = { - [sym_line_comment] = STATE(394), - [sym_block_comment] = STATE(394), + [386] = { + [sym_line_comment] = STATE(386), + [sym_block_comment] = STATE(386), + [ts_builtin_sym_end] = ACTIONS(1430), + [sym_identifier] = ACTIONS(1432), + [anon_sym_SEMI] = ACTIONS(1430), + [anon_sym_macro_rules_BANG] = ACTIONS(1430), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1430), + [anon_sym_RBRACE] = ACTIONS(1430), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_STAR] = ACTIONS(1432), + [anon_sym_QMARK] = ACTIONS(1430), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u128] = ACTIONS(1432), + [anon_sym_i128] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_str] = ACTIONS(1432), + [anon_sym_char] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1432), + [anon_sym_SLASH] = ACTIONS(1432), + [anon_sym_PERCENT] = ACTIONS(1432), + [anon_sym_CARET] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1432), + [anon_sym_PIPE] = ACTIONS(1432), + [anon_sym_AMP_AMP] = ACTIONS(1430), + [anon_sym_PIPE_PIPE] = ACTIONS(1430), + [anon_sym_LT_LT] = ACTIONS(1432), + [anon_sym_GT_GT] = ACTIONS(1432), + [anon_sym_PLUS_EQ] = ACTIONS(1430), + [anon_sym_DASH_EQ] = ACTIONS(1430), + [anon_sym_STAR_EQ] = ACTIONS(1430), + [anon_sym_SLASH_EQ] = ACTIONS(1430), + [anon_sym_PERCENT_EQ] = ACTIONS(1430), + [anon_sym_CARET_EQ] = ACTIONS(1430), + [anon_sym_AMP_EQ] = ACTIONS(1430), + [anon_sym_PIPE_EQ] = ACTIONS(1430), + [anon_sym_LT_LT_EQ] = ACTIONS(1430), + [anon_sym_GT_GT_EQ] = ACTIONS(1430), + [anon_sym_EQ] = ACTIONS(1432), + [anon_sym_EQ_EQ] = ACTIONS(1430), + [anon_sym_BANG_EQ] = ACTIONS(1430), + [anon_sym_GT] = ACTIONS(1432), + [anon_sym_LT] = ACTIONS(1432), + [anon_sym_GT_EQ] = ACTIONS(1430), + [anon_sym_LT_EQ] = ACTIONS(1430), + [anon_sym_DOT] = ACTIONS(1432), + [anon_sym_DOT_DOT] = ACTIONS(1432), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1430), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1430), + [anon_sym_COLON_COLON] = ACTIONS(1430), + [anon_sym_POUND] = ACTIONS(1430), + [anon_sym_SQUOTE] = ACTIONS(1432), + [anon_sym_as] = ACTIONS(1432), + [anon_sym_async] = ACTIONS(1432), + [anon_sym_break] = ACTIONS(1432), + [anon_sym_const] = ACTIONS(1432), + [anon_sym_continue] = ACTIONS(1432), + [anon_sym_default] = ACTIONS(1432), + [anon_sym_enum] = ACTIONS(1432), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_for] = ACTIONS(1432), + [anon_sym_gen] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1432), + [anon_sym_impl] = ACTIONS(1432), + [anon_sym_let] = ACTIONS(1432), + [anon_sym_loop] = ACTIONS(1432), + [anon_sym_match] = ACTIONS(1432), + [anon_sym_mod] = ACTIONS(1432), + [anon_sym_pub] = ACTIONS(1432), + [anon_sym_return] = ACTIONS(1432), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_struct] = ACTIONS(1432), + [anon_sym_trait] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_union] = ACTIONS(1432), + [anon_sym_unsafe] = ACTIONS(1432), + [anon_sym_use] = ACTIONS(1432), + [anon_sym_while] = ACTIONS(1432), + [anon_sym_extern] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(1432), + [anon_sym_raw] = ACTIONS(1432), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_move] = ACTIONS(1432), + [anon_sym_try] = ACTIONS(1432), + [sym_integer_literal] = ACTIONS(1430), + [aux_sym_string_literal_token1] = ACTIONS(1430), + [sym_char_literal] = ACTIONS(1430), + [anon_sym_true] = ACTIONS(1432), + [anon_sym_false] = ACTIONS(1432), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1432), + [sym_super] = ACTIONS(1432), + [sym_crate] = ACTIONS(1432), + [sym_metavariable] = ACTIONS(1430), + [sym__raw_string_literal_start] = ACTIONS(1430), + [sym_float_literal] = ACTIONS(1430), + }, + [387] = { + [sym_line_comment] = STATE(387), + [sym_block_comment] = STATE(387), + [ts_builtin_sym_end] = ACTIONS(1434), + [sym_identifier] = ACTIONS(1436), + [anon_sym_SEMI] = ACTIONS(1434), + [anon_sym_macro_rules_BANG] = ACTIONS(1434), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_LBRACK] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1434), + [anon_sym_RBRACE] = ACTIONS(1434), + [anon_sym_PLUS] = ACTIONS(1436), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_QMARK] = ACTIONS(1434), + [anon_sym_u8] = ACTIONS(1436), + [anon_sym_i8] = ACTIONS(1436), + [anon_sym_u16] = ACTIONS(1436), + [anon_sym_i16] = ACTIONS(1436), + [anon_sym_u32] = ACTIONS(1436), + [anon_sym_i32] = ACTIONS(1436), + [anon_sym_u64] = ACTIONS(1436), + [anon_sym_i64] = ACTIONS(1436), + [anon_sym_u128] = ACTIONS(1436), + [anon_sym_i128] = ACTIONS(1436), + [anon_sym_isize] = ACTIONS(1436), + [anon_sym_usize] = ACTIONS(1436), + [anon_sym_f32] = ACTIONS(1436), + [anon_sym_f64] = ACTIONS(1436), + [anon_sym_bool] = ACTIONS(1436), + [anon_sym_str] = ACTIONS(1436), + [anon_sym_char] = ACTIONS(1436), + [anon_sym_DASH] = ACTIONS(1436), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_CARET] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1436), + [anon_sym_AMP] = ACTIONS(1436), + [anon_sym_PIPE] = ACTIONS(1436), + [anon_sym_AMP_AMP] = ACTIONS(1434), + [anon_sym_PIPE_PIPE] = ACTIONS(1434), + [anon_sym_LT_LT] = ACTIONS(1436), + [anon_sym_GT_GT] = ACTIONS(1436), + [anon_sym_PLUS_EQ] = ACTIONS(1434), + [anon_sym_DASH_EQ] = ACTIONS(1434), + [anon_sym_STAR_EQ] = ACTIONS(1434), + [anon_sym_SLASH_EQ] = ACTIONS(1434), + [anon_sym_PERCENT_EQ] = ACTIONS(1434), + [anon_sym_CARET_EQ] = ACTIONS(1434), + [anon_sym_AMP_EQ] = ACTIONS(1434), + [anon_sym_PIPE_EQ] = ACTIONS(1434), + [anon_sym_LT_LT_EQ] = ACTIONS(1434), + [anon_sym_GT_GT_EQ] = ACTIONS(1434), + [anon_sym_EQ] = ACTIONS(1436), + [anon_sym_EQ_EQ] = ACTIONS(1434), + [anon_sym_BANG_EQ] = ACTIONS(1434), + [anon_sym_GT] = ACTIONS(1436), + [anon_sym_LT] = ACTIONS(1436), + [anon_sym_GT_EQ] = ACTIONS(1434), + [anon_sym_LT_EQ] = ACTIONS(1434), + [anon_sym_DOT] = ACTIONS(1436), + [anon_sym_DOT_DOT] = ACTIONS(1436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1434), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1434), + [anon_sym_COLON_COLON] = ACTIONS(1434), + [anon_sym_POUND] = ACTIONS(1434), + [anon_sym_SQUOTE] = ACTIONS(1436), + [anon_sym_as] = ACTIONS(1436), + [anon_sym_async] = ACTIONS(1436), + [anon_sym_break] = ACTIONS(1436), + [anon_sym_const] = ACTIONS(1436), + [anon_sym_continue] = ACTIONS(1436), + [anon_sym_default] = ACTIONS(1436), + [anon_sym_enum] = ACTIONS(1436), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_for] = ACTIONS(1436), + [anon_sym_gen] = ACTIONS(1436), + [anon_sym_if] = ACTIONS(1436), + [anon_sym_impl] = ACTIONS(1436), + [anon_sym_let] = ACTIONS(1436), + [anon_sym_loop] = ACTIONS(1436), + [anon_sym_match] = ACTIONS(1436), + [anon_sym_mod] = ACTIONS(1436), + [anon_sym_pub] = ACTIONS(1436), + [anon_sym_return] = ACTIONS(1436), + [anon_sym_static] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1436), + [anon_sym_trait] = ACTIONS(1436), + [anon_sym_type] = ACTIONS(1436), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_unsafe] = ACTIONS(1436), + [anon_sym_use] = ACTIONS(1436), + [anon_sym_while] = ACTIONS(1436), + [anon_sym_extern] = ACTIONS(1436), + [anon_sym_else] = ACTIONS(1436), + [anon_sym_raw] = ACTIONS(1436), + [anon_sym_yield] = ACTIONS(1436), + [anon_sym_move] = ACTIONS(1436), + [anon_sym_try] = ACTIONS(1436), + [sym_integer_literal] = ACTIONS(1434), + [aux_sym_string_literal_token1] = ACTIONS(1434), + [sym_char_literal] = ACTIONS(1434), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1436), + [sym_super] = ACTIONS(1436), + [sym_crate] = ACTIONS(1436), + [sym_metavariable] = ACTIONS(1434), + [sym__raw_string_literal_start] = ACTIONS(1434), + [sym_float_literal] = ACTIONS(1434), + }, + [388] = { + [sym_line_comment] = STATE(388), + [sym_block_comment] = STATE(388), [ts_builtin_sym_end] = ACTIONS(1438), [sym_identifier] = ACTIONS(1440), [anon_sym_SEMI] = ACTIONS(1438), @@ -62546,9 +61590,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1438), [sym_float_literal] = ACTIONS(1438), }, - [STATE(395)] = { - [sym_line_comment] = STATE(395), - [sym_block_comment] = STATE(395), + [389] = { + [sym_line_comment] = STATE(389), + [sym_block_comment] = STATE(389), [ts_builtin_sym_end] = ACTIONS(1442), [sym_identifier] = ACTIONS(1444), [anon_sym_SEMI] = ACTIONS(1442), @@ -62658,9 +61702,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1442), [sym_float_literal] = ACTIONS(1442), }, - [STATE(396)] = { - [sym_line_comment] = STATE(396), - [sym_block_comment] = STATE(396), + [390] = { + [sym_line_comment] = STATE(390), + [sym_block_comment] = STATE(390), [ts_builtin_sym_end] = ACTIONS(1446), [sym_identifier] = ACTIONS(1448), [anon_sym_SEMI] = ACTIONS(1446), @@ -62770,344 +61814,564 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1446), [sym_float_literal] = ACTIONS(1446), }, - [STATE(397)] = { - [sym_line_comment] = STATE(397), - [sym_block_comment] = STATE(397), - [ts_builtin_sym_end] = ACTIONS(1450), - [sym_identifier] = ACTIONS(1452), - [anon_sym_SEMI] = ACTIONS(1450), - [anon_sym_macro_rules_BANG] = ACTIONS(1450), - [anon_sym_LPAREN] = ACTIONS(1450), - [anon_sym_LBRACK] = ACTIONS(1450), - [anon_sym_LBRACE] = ACTIONS(1450), - [anon_sym_RBRACE] = ACTIONS(1450), - [anon_sym_PLUS] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1452), - [anon_sym_QMARK] = ACTIONS(1450), - [anon_sym_u8] = ACTIONS(1452), - [anon_sym_i8] = ACTIONS(1452), - [anon_sym_u16] = ACTIONS(1452), - [anon_sym_i16] = ACTIONS(1452), - [anon_sym_u32] = ACTIONS(1452), - [anon_sym_i32] = ACTIONS(1452), - [anon_sym_u64] = ACTIONS(1452), - [anon_sym_i64] = ACTIONS(1452), - [anon_sym_u128] = ACTIONS(1452), - [anon_sym_i128] = ACTIONS(1452), - [anon_sym_isize] = ACTIONS(1452), - [anon_sym_usize] = ACTIONS(1452), - [anon_sym_f32] = ACTIONS(1452), - [anon_sym_f64] = ACTIONS(1452), - [anon_sym_bool] = ACTIONS(1452), - [anon_sym_str] = ACTIONS(1452), - [anon_sym_char] = ACTIONS(1452), - [anon_sym_DASH] = ACTIONS(1452), - [anon_sym_SLASH] = ACTIONS(1452), - [anon_sym_PERCENT] = ACTIONS(1452), - [anon_sym_CARET] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(1452), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_PIPE] = ACTIONS(1452), - [anon_sym_AMP_AMP] = ACTIONS(1450), - [anon_sym_PIPE_PIPE] = ACTIONS(1450), - [anon_sym_LT_LT] = ACTIONS(1452), - [anon_sym_GT_GT] = ACTIONS(1452), - [anon_sym_PLUS_EQ] = ACTIONS(1450), - [anon_sym_DASH_EQ] = ACTIONS(1450), - [anon_sym_STAR_EQ] = ACTIONS(1450), - [anon_sym_SLASH_EQ] = ACTIONS(1450), - [anon_sym_PERCENT_EQ] = ACTIONS(1450), - [anon_sym_CARET_EQ] = ACTIONS(1450), - [anon_sym_AMP_EQ] = ACTIONS(1450), - [anon_sym_PIPE_EQ] = ACTIONS(1450), - [anon_sym_LT_LT_EQ] = ACTIONS(1450), - [anon_sym_GT_GT_EQ] = ACTIONS(1450), - [anon_sym_EQ] = ACTIONS(1452), - [anon_sym_EQ_EQ] = ACTIONS(1450), - [anon_sym_BANG_EQ] = ACTIONS(1450), - [anon_sym_GT] = ACTIONS(1452), - [anon_sym_LT] = ACTIONS(1452), - [anon_sym_GT_EQ] = ACTIONS(1450), - [anon_sym_LT_EQ] = ACTIONS(1450), - [anon_sym_DOT] = ACTIONS(1452), - [anon_sym_DOT_DOT] = ACTIONS(1452), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1450), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1450), - [anon_sym_COLON_COLON] = ACTIONS(1450), - [anon_sym_POUND] = ACTIONS(1450), - [anon_sym_SQUOTE] = ACTIONS(1452), - [anon_sym_as] = ACTIONS(1452), - [anon_sym_async] = ACTIONS(1452), - [anon_sym_break] = ACTIONS(1452), - [anon_sym_const] = ACTIONS(1452), - [anon_sym_continue] = ACTIONS(1452), - [anon_sym_default] = ACTIONS(1452), - [anon_sym_enum] = ACTIONS(1452), - [anon_sym_fn] = ACTIONS(1452), - [anon_sym_for] = ACTIONS(1452), - [anon_sym_gen] = ACTIONS(1452), - [anon_sym_if] = ACTIONS(1452), - [anon_sym_impl] = ACTIONS(1452), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_loop] = ACTIONS(1452), - [anon_sym_match] = ACTIONS(1452), - [anon_sym_mod] = ACTIONS(1452), - [anon_sym_pub] = ACTIONS(1452), - [anon_sym_return] = ACTIONS(1452), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_struct] = ACTIONS(1452), - [anon_sym_trait] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_union] = ACTIONS(1452), - [anon_sym_unsafe] = ACTIONS(1452), - [anon_sym_use] = ACTIONS(1452), - [anon_sym_while] = ACTIONS(1452), - [anon_sym_extern] = ACTIONS(1452), - [anon_sym_else] = ACTIONS(1452), - [anon_sym_raw] = ACTIONS(1452), - [anon_sym_yield] = ACTIONS(1452), - [anon_sym_move] = ACTIONS(1452), - [anon_sym_try] = ACTIONS(1452), - [sym_integer_literal] = ACTIONS(1450), - [aux_sym_string_literal_token1] = ACTIONS(1450), - [sym_char_literal] = ACTIONS(1450), - [anon_sym_true] = ACTIONS(1452), - [anon_sym_false] = ACTIONS(1452), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1452), - [sym_super] = ACTIONS(1452), - [sym_crate] = ACTIONS(1452), - [sym_metavariable] = ACTIONS(1450), - [sym__raw_string_literal_start] = ACTIONS(1450), - [sym_float_literal] = ACTIONS(1450), - }, - [STATE(398)] = { - [sym_line_comment] = STATE(398), - [sym_block_comment] = STATE(398), - [ts_builtin_sym_end] = ACTIONS(1454), - [sym_identifier] = ACTIONS(1456), - [anon_sym_SEMI] = ACTIONS(1454), - [anon_sym_macro_rules_BANG] = ACTIONS(1454), - [anon_sym_LPAREN] = ACTIONS(1454), - [anon_sym_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(1454), - [anon_sym_RBRACE] = ACTIONS(1454), - [anon_sym_PLUS] = ACTIONS(1456), - [anon_sym_STAR] = ACTIONS(1456), - [anon_sym_QMARK] = ACTIONS(1454), - [anon_sym_u8] = ACTIONS(1456), - [anon_sym_i8] = ACTIONS(1456), - [anon_sym_u16] = ACTIONS(1456), - [anon_sym_i16] = ACTIONS(1456), - [anon_sym_u32] = ACTIONS(1456), - [anon_sym_i32] = ACTIONS(1456), - [anon_sym_u64] = ACTIONS(1456), - [anon_sym_i64] = ACTIONS(1456), - [anon_sym_u128] = ACTIONS(1456), - [anon_sym_i128] = ACTIONS(1456), - [anon_sym_isize] = ACTIONS(1456), - [anon_sym_usize] = ACTIONS(1456), - [anon_sym_f32] = ACTIONS(1456), - [anon_sym_f64] = ACTIONS(1456), - [anon_sym_bool] = ACTIONS(1456), - [anon_sym_str] = ACTIONS(1456), - [anon_sym_char] = ACTIONS(1456), - [anon_sym_DASH] = ACTIONS(1456), - [anon_sym_SLASH] = ACTIONS(1456), - [anon_sym_PERCENT] = ACTIONS(1456), - [anon_sym_CARET] = ACTIONS(1456), - [anon_sym_BANG] = ACTIONS(1456), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1456), - [anon_sym_AMP_AMP] = ACTIONS(1454), - [anon_sym_PIPE_PIPE] = ACTIONS(1454), - [anon_sym_LT_LT] = ACTIONS(1456), - [anon_sym_GT_GT] = ACTIONS(1456), - [anon_sym_PLUS_EQ] = ACTIONS(1454), - [anon_sym_DASH_EQ] = ACTIONS(1454), - [anon_sym_STAR_EQ] = ACTIONS(1454), - [anon_sym_SLASH_EQ] = ACTIONS(1454), - [anon_sym_PERCENT_EQ] = ACTIONS(1454), - [anon_sym_CARET_EQ] = ACTIONS(1454), - [anon_sym_AMP_EQ] = ACTIONS(1454), - [anon_sym_PIPE_EQ] = ACTIONS(1454), - [anon_sym_LT_LT_EQ] = ACTIONS(1454), - [anon_sym_GT_GT_EQ] = ACTIONS(1454), - [anon_sym_EQ] = ACTIONS(1456), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_BANG_EQ] = ACTIONS(1454), - [anon_sym_GT] = ACTIONS(1456), - [anon_sym_LT] = ACTIONS(1456), - [anon_sym_GT_EQ] = ACTIONS(1454), - [anon_sym_LT_EQ] = ACTIONS(1454), - [anon_sym_DOT] = ACTIONS(1456), - [anon_sym_DOT_DOT] = ACTIONS(1456), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1454), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1454), - [anon_sym_COLON_COLON] = ACTIONS(1454), - [anon_sym_POUND] = ACTIONS(1454), - [anon_sym_SQUOTE] = ACTIONS(1456), - [anon_sym_as] = ACTIONS(1456), - [anon_sym_async] = ACTIONS(1456), - [anon_sym_break] = ACTIONS(1456), - [anon_sym_const] = ACTIONS(1456), - [anon_sym_continue] = ACTIONS(1456), - [anon_sym_default] = ACTIONS(1456), - [anon_sym_enum] = ACTIONS(1456), - [anon_sym_fn] = ACTIONS(1456), - [anon_sym_for] = ACTIONS(1456), - [anon_sym_gen] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1456), - [anon_sym_impl] = ACTIONS(1456), - [anon_sym_let] = ACTIONS(1456), - [anon_sym_loop] = ACTIONS(1456), - [anon_sym_match] = ACTIONS(1456), - [anon_sym_mod] = ACTIONS(1456), - [anon_sym_pub] = ACTIONS(1456), - [anon_sym_return] = ACTIONS(1456), - [anon_sym_static] = ACTIONS(1456), - [anon_sym_struct] = ACTIONS(1456), - [anon_sym_trait] = ACTIONS(1456), - [anon_sym_type] = ACTIONS(1456), - [anon_sym_union] = ACTIONS(1456), - [anon_sym_unsafe] = ACTIONS(1456), - [anon_sym_use] = ACTIONS(1456), - [anon_sym_while] = ACTIONS(1456), - [anon_sym_extern] = ACTIONS(1456), - [anon_sym_else] = ACTIONS(1456), - [anon_sym_raw] = ACTIONS(1456), - [anon_sym_yield] = ACTIONS(1456), - [anon_sym_move] = ACTIONS(1456), - [anon_sym_try] = ACTIONS(1456), - [sym_integer_literal] = ACTIONS(1454), - [aux_sym_string_literal_token1] = ACTIONS(1454), - [sym_char_literal] = ACTIONS(1454), - [anon_sym_true] = ACTIONS(1456), - [anon_sym_false] = ACTIONS(1456), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1456), - [sym_super] = ACTIONS(1456), - [sym_crate] = ACTIONS(1456), - [sym_metavariable] = ACTIONS(1454), - [sym__raw_string_literal_start] = ACTIONS(1454), - [sym_float_literal] = ACTIONS(1454), - }, - [STATE(399)] = { - [sym_line_comment] = STATE(399), - [sym_block_comment] = STATE(399), - [ts_builtin_sym_end] = ACTIONS(1458), - [sym_identifier] = ACTIONS(1460), - [anon_sym_SEMI] = ACTIONS(1458), - [anon_sym_macro_rules_BANG] = ACTIONS(1458), - [anon_sym_LPAREN] = ACTIONS(1458), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_LBRACE] = ACTIONS(1458), - [anon_sym_RBRACE] = ACTIONS(1458), - [anon_sym_PLUS] = ACTIONS(1460), - [anon_sym_STAR] = ACTIONS(1460), - [anon_sym_QMARK] = ACTIONS(1458), - [anon_sym_u8] = ACTIONS(1460), - [anon_sym_i8] = ACTIONS(1460), - [anon_sym_u16] = ACTIONS(1460), - [anon_sym_i16] = ACTIONS(1460), - [anon_sym_u32] = ACTIONS(1460), - [anon_sym_i32] = ACTIONS(1460), - [anon_sym_u64] = ACTIONS(1460), - [anon_sym_i64] = ACTIONS(1460), - [anon_sym_u128] = ACTIONS(1460), - [anon_sym_i128] = ACTIONS(1460), - [anon_sym_isize] = ACTIONS(1460), - [anon_sym_usize] = ACTIONS(1460), - [anon_sym_f32] = ACTIONS(1460), - [anon_sym_f64] = ACTIONS(1460), - [anon_sym_bool] = ACTIONS(1460), - [anon_sym_str] = ACTIONS(1460), - [anon_sym_char] = ACTIONS(1460), - [anon_sym_DASH] = ACTIONS(1460), - [anon_sym_SLASH] = ACTIONS(1460), - [anon_sym_PERCENT] = ACTIONS(1460), - [anon_sym_CARET] = ACTIONS(1460), - [anon_sym_BANG] = ACTIONS(1460), - [anon_sym_AMP] = ACTIONS(1460), - [anon_sym_PIPE] = ACTIONS(1460), - [anon_sym_AMP_AMP] = ACTIONS(1458), - [anon_sym_PIPE_PIPE] = ACTIONS(1458), - [anon_sym_LT_LT] = ACTIONS(1460), - [anon_sym_GT_GT] = ACTIONS(1460), - [anon_sym_PLUS_EQ] = ACTIONS(1458), - [anon_sym_DASH_EQ] = ACTIONS(1458), - [anon_sym_STAR_EQ] = ACTIONS(1458), - [anon_sym_SLASH_EQ] = ACTIONS(1458), - [anon_sym_PERCENT_EQ] = ACTIONS(1458), - [anon_sym_CARET_EQ] = ACTIONS(1458), - [anon_sym_AMP_EQ] = ACTIONS(1458), - [anon_sym_PIPE_EQ] = ACTIONS(1458), - [anon_sym_LT_LT_EQ] = ACTIONS(1458), - [anon_sym_GT_GT_EQ] = ACTIONS(1458), - [anon_sym_EQ] = ACTIONS(1460), - [anon_sym_EQ_EQ] = ACTIONS(1458), - [anon_sym_BANG_EQ] = ACTIONS(1458), - [anon_sym_GT] = ACTIONS(1460), - [anon_sym_LT] = ACTIONS(1460), - [anon_sym_GT_EQ] = ACTIONS(1458), - [anon_sym_LT_EQ] = ACTIONS(1458), - [anon_sym_DOT] = ACTIONS(1460), - [anon_sym_DOT_DOT] = ACTIONS(1460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1458), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1458), - [anon_sym_COLON_COLON] = ACTIONS(1458), - [anon_sym_POUND] = ACTIONS(1458), - [anon_sym_SQUOTE] = ACTIONS(1460), - [anon_sym_as] = ACTIONS(1460), - [anon_sym_async] = ACTIONS(1460), - [anon_sym_break] = ACTIONS(1460), - [anon_sym_const] = ACTIONS(1460), - [anon_sym_continue] = ACTIONS(1460), - [anon_sym_default] = ACTIONS(1460), - [anon_sym_enum] = ACTIONS(1460), - [anon_sym_fn] = ACTIONS(1460), - [anon_sym_for] = ACTIONS(1460), - [anon_sym_gen] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1460), - [anon_sym_impl] = ACTIONS(1460), - [anon_sym_let] = ACTIONS(1460), - [anon_sym_loop] = ACTIONS(1460), - [anon_sym_match] = ACTIONS(1460), - [anon_sym_mod] = ACTIONS(1460), - [anon_sym_pub] = ACTIONS(1460), - [anon_sym_return] = ACTIONS(1460), - [anon_sym_static] = ACTIONS(1460), - [anon_sym_struct] = ACTIONS(1460), - [anon_sym_trait] = ACTIONS(1460), - [anon_sym_type] = ACTIONS(1460), - [anon_sym_union] = ACTIONS(1460), - [anon_sym_unsafe] = ACTIONS(1460), - [anon_sym_use] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1460), - [anon_sym_extern] = ACTIONS(1460), - [anon_sym_raw] = ACTIONS(1460), - [anon_sym_yield] = ACTIONS(1460), - [anon_sym_move] = ACTIONS(1460), - [anon_sym_try] = ACTIONS(1460), - [sym_integer_literal] = ACTIONS(1458), - [aux_sym_string_literal_token1] = ACTIONS(1458), - [sym_char_literal] = ACTIONS(1458), - [anon_sym_true] = ACTIONS(1460), - [anon_sym_false] = ACTIONS(1460), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1460), - [sym_super] = ACTIONS(1460), - [sym_crate] = ACTIONS(1460), - [sym_metavariable] = ACTIONS(1458), - [sym__raw_string_literal_start] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1458), - }, - [STATE(400)] = { - [sym_line_comment] = STATE(400), - [sym_block_comment] = STATE(400), + [391] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_self_parameter] = STATE(3124), + [sym_variadic_parameter] = STATE(3124), + [sym_parameter] = STATE(3124), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2827), + [sym_bracketed_type] = STATE(3684), + [sym_lifetime] = STATE(3061), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3340), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2527), + [sym_scoped_identifier] = STATE(2319), + [sym_scoped_type_identifier] = STATE(2206), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(3283), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), + [sym_line_comment] = STATE(391), + [sym_block_comment] = STATE(391), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1052), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1064), + [anon_sym_i8] = ACTIONS(1064), + [anon_sym_u16] = ACTIONS(1064), + [anon_sym_i16] = ACTIONS(1064), + [anon_sym_u32] = ACTIONS(1064), + [anon_sym_i32] = ACTIONS(1064), + [anon_sym_u64] = ACTIONS(1064), + [anon_sym_i64] = ACTIONS(1064), + [anon_sym_u128] = ACTIONS(1064), + [anon_sym_i128] = ACTIONS(1064), + [anon_sym_isize] = ACTIONS(1064), + [anon_sym_usize] = ACTIONS(1064), + [anon_sym_f32] = ACTIONS(1064), + [anon_sym_f64] = ACTIONS(1064), + [anon_sym_bool] = ACTIONS(1064), + [anon_sym_str] = ACTIONS(1064), + [anon_sym_char] = ACTIONS(1064), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1070), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1450), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1078), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1084), + [anon_sym_SQUOTE] = ACTIONS(1088), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1092), + [anon_sym_default] = ACTIONS(1094), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1100), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1100), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_ref] = ACTIONS(1108), + [anon_sym_dyn] = ACTIONS(1110), + [sym_mutable_specifier] = ACTIONS(1112), + [anon_sym_raw] = ACTIONS(1100), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1120), + [sym_super] = ACTIONS(1122), + [sym_crate] = ACTIONS(1122), + [sym_metavariable] = ACTIONS(1124), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [392] = { + [sym_line_comment] = STATE(392), + [sym_block_comment] = STATE(392), + [ts_builtin_sym_end] = ACTIONS(1296), + [sym_identifier] = ACTIONS(1294), + [anon_sym_SEMI] = ACTIONS(1296), + [anon_sym_macro_rules_BANG] = ACTIONS(1296), + [anon_sym_LPAREN] = ACTIONS(1296), + [anon_sym_LBRACK] = ACTIONS(1296), + [anon_sym_LBRACE] = ACTIONS(1296), + [anon_sym_RBRACE] = ACTIONS(1296), + [anon_sym_PLUS] = ACTIONS(1294), + [anon_sym_STAR] = ACTIONS(1294), + [anon_sym_QMARK] = ACTIONS(1296), + [anon_sym_u8] = ACTIONS(1294), + [anon_sym_i8] = ACTIONS(1294), + [anon_sym_u16] = ACTIONS(1294), + [anon_sym_i16] = ACTIONS(1294), + [anon_sym_u32] = ACTIONS(1294), + [anon_sym_i32] = ACTIONS(1294), + [anon_sym_u64] = ACTIONS(1294), + [anon_sym_i64] = ACTIONS(1294), + [anon_sym_u128] = ACTIONS(1294), + [anon_sym_i128] = ACTIONS(1294), + [anon_sym_isize] = ACTIONS(1294), + [anon_sym_usize] = ACTIONS(1294), + [anon_sym_f32] = ACTIONS(1294), + [anon_sym_f64] = ACTIONS(1294), + [anon_sym_bool] = ACTIONS(1294), + [anon_sym_str] = ACTIONS(1294), + [anon_sym_char] = ACTIONS(1294), + [anon_sym_DASH] = ACTIONS(1294), + [anon_sym_SLASH] = ACTIONS(1294), + [anon_sym_PERCENT] = ACTIONS(1294), + [anon_sym_CARET] = ACTIONS(1294), + [anon_sym_BANG] = ACTIONS(1294), + [anon_sym_AMP] = ACTIONS(1294), + [anon_sym_PIPE] = ACTIONS(1294), + [anon_sym_AMP_AMP] = ACTIONS(1296), + [anon_sym_PIPE_PIPE] = ACTIONS(1296), + [anon_sym_LT_LT] = ACTIONS(1294), + [anon_sym_GT_GT] = ACTIONS(1294), + [anon_sym_PLUS_EQ] = ACTIONS(1296), + [anon_sym_DASH_EQ] = ACTIONS(1296), + [anon_sym_STAR_EQ] = ACTIONS(1296), + [anon_sym_SLASH_EQ] = ACTIONS(1296), + [anon_sym_PERCENT_EQ] = ACTIONS(1296), + [anon_sym_CARET_EQ] = ACTIONS(1296), + [anon_sym_AMP_EQ] = ACTIONS(1296), + [anon_sym_PIPE_EQ] = ACTIONS(1296), + [anon_sym_LT_LT_EQ] = ACTIONS(1296), + [anon_sym_GT_GT_EQ] = ACTIONS(1296), + [anon_sym_EQ] = ACTIONS(1294), + [anon_sym_EQ_EQ] = ACTIONS(1296), + [anon_sym_BANG_EQ] = ACTIONS(1296), + [anon_sym_GT] = ACTIONS(1294), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_GT_EQ] = ACTIONS(1296), + [anon_sym_LT_EQ] = ACTIONS(1296), + [anon_sym_DOT] = ACTIONS(1294), + [anon_sym_DOT_DOT] = ACTIONS(1294), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1296), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1296), + [anon_sym_COLON_COLON] = ACTIONS(1296), + [anon_sym_POUND] = ACTIONS(1296), + [anon_sym_SQUOTE] = ACTIONS(1294), + [anon_sym_as] = ACTIONS(1294), + [anon_sym_async] = ACTIONS(1294), + [anon_sym_break] = ACTIONS(1294), + [anon_sym_const] = ACTIONS(1294), + [anon_sym_continue] = ACTIONS(1294), + [anon_sym_default] = ACTIONS(1294), + [anon_sym_enum] = ACTIONS(1294), + [anon_sym_fn] = ACTIONS(1294), + [anon_sym_for] = ACTIONS(1294), + [anon_sym_gen] = ACTIONS(1294), + [anon_sym_if] = ACTIONS(1294), + [anon_sym_impl] = ACTIONS(1294), + [anon_sym_let] = ACTIONS(1294), + [anon_sym_loop] = ACTIONS(1294), + [anon_sym_match] = ACTIONS(1294), + [anon_sym_mod] = ACTIONS(1294), + [anon_sym_pub] = ACTIONS(1294), + [anon_sym_return] = ACTIONS(1294), + [anon_sym_static] = ACTIONS(1294), + [anon_sym_struct] = ACTIONS(1294), + [anon_sym_trait] = ACTIONS(1294), + [anon_sym_type] = ACTIONS(1294), + [anon_sym_union] = ACTIONS(1294), + [anon_sym_unsafe] = ACTIONS(1294), + [anon_sym_use] = ACTIONS(1294), + [anon_sym_while] = ACTIONS(1294), + [anon_sym_extern] = ACTIONS(1294), + [anon_sym_raw] = ACTIONS(1294), + [anon_sym_yield] = ACTIONS(1294), + [anon_sym_move] = ACTIONS(1294), + [anon_sym_try] = ACTIONS(1294), + [sym_integer_literal] = ACTIONS(1296), + [aux_sym_string_literal_token1] = ACTIONS(1296), + [sym_char_literal] = ACTIONS(1296), + [anon_sym_true] = ACTIONS(1294), + [anon_sym_false] = ACTIONS(1294), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1294), + [sym_super] = ACTIONS(1294), + [sym_crate] = ACTIONS(1294), + [sym_metavariable] = ACTIONS(1296), + [sym__raw_string_literal_start] = ACTIONS(1296), + [sym_float_literal] = ACTIONS(1296), + }, + [393] = { + [sym_line_comment] = STATE(393), + [sym_block_comment] = STATE(393), + [ts_builtin_sym_end] = ACTIONS(1452), + [sym_identifier] = ACTIONS(1454), + [anon_sym_SEMI] = ACTIONS(1452), + [anon_sym_macro_rules_BANG] = ACTIONS(1452), + [anon_sym_LPAREN] = ACTIONS(1452), + [anon_sym_LBRACK] = ACTIONS(1452), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_RBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1454), + [anon_sym_STAR] = ACTIONS(1454), + [anon_sym_QMARK] = ACTIONS(1452), + [anon_sym_u8] = ACTIONS(1454), + [anon_sym_i8] = ACTIONS(1454), + [anon_sym_u16] = ACTIONS(1454), + [anon_sym_i16] = ACTIONS(1454), + [anon_sym_u32] = ACTIONS(1454), + [anon_sym_i32] = ACTIONS(1454), + [anon_sym_u64] = ACTIONS(1454), + [anon_sym_i64] = ACTIONS(1454), + [anon_sym_u128] = ACTIONS(1454), + [anon_sym_i128] = ACTIONS(1454), + [anon_sym_isize] = ACTIONS(1454), + [anon_sym_usize] = ACTIONS(1454), + [anon_sym_f32] = ACTIONS(1454), + [anon_sym_f64] = ACTIONS(1454), + [anon_sym_bool] = ACTIONS(1454), + [anon_sym_str] = ACTIONS(1454), + [anon_sym_char] = ACTIONS(1454), + [anon_sym_DASH] = ACTIONS(1454), + [anon_sym_SLASH] = ACTIONS(1454), + [anon_sym_PERCENT] = ACTIONS(1454), + [anon_sym_CARET] = ACTIONS(1454), + [anon_sym_BANG] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_PIPE] = ACTIONS(1454), + [anon_sym_AMP_AMP] = ACTIONS(1452), + [anon_sym_PIPE_PIPE] = ACTIONS(1452), + [anon_sym_LT_LT] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(1454), + [anon_sym_PLUS_EQ] = ACTIONS(1452), + [anon_sym_DASH_EQ] = ACTIONS(1452), + [anon_sym_STAR_EQ] = ACTIONS(1452), + [anon_sym_SLASH_EQ] = ACTIONS(1452), + [anon_sym_PERCENT_EQ] = ACTIONS(1452), + [anon_sym_CARET_EQ] = ACTIONS(1452), + [anon_sym_AMP_EQ] = ACTIONS(1452), + [anon_sym_PIPE_EQ] = ACTIONS(1452), + [anon_sym_LT_LT_EQ] = ACTIONS(1452), + [anon_sym_GT_GT_EQ] = ACTIONS(1452), + [anon_sym_EQ] = ACTIONS(1454), + [anon_sym_EQ_EQ] = ACTIONS(1452), + [anon_sym_BANG_EQ] = ACTIONS(1452), + [anon_sym_GT] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1454), + [anon_sym_GT_EQ] = ACTIONS(1452), + [anon_sym_LT_EQ] = ACTIONS(1452), + [anon_sym_DOT] = ACTIONS(1454), + [anon_sym_DOT_DOT] = ACTIONS(1454), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1452), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1452), + [anon_sym_COLON_COLON] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(1452), + [anon_sym_SQUOTE] = ACTIONS(1454), + [anon_sym_as] = ACTIONS(1454), + [anon_sym_async] = ACTIONS(1454), + [anon_sym_break] = ACTIONS(1454), + [anon_sym_const] = ACTIONS(1454), + [anon_sym_continue] = ACTIONS(1454), + [anon_sym_default] = ACTIONS(1454), + [anon_sym_enum] = ACTIONS(1454), + [anon_sym_fn] = ACTIONS(1454), + [anon_sym_for] = ACTIONS(1454), + [anon_sym_gen] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1454), + [anon_sym_impl] = ACTIONS(1454), + [anon_sym_let] = ACTIONS(1454), + [anon_sym_loop] = ACTIONS(1454), + [anon_sym_match] = ACTIONS(1454), + [anon_sym_mod] = ACTIONS(1454), + [anon_sym_pub] = ACTIONS(1454), + [anon_sym_return] = ACTIONS(1454), + [anon_sym_static] = ACTIONS(1454), + [anon_sym_struct] = ACTIONS(1454), + [anon_sym_trait] = ACTIONS(1454), + [anon_sym_type] = ACTIONS(1454), + [anon_sym_union] = ACTIONS(1454), + [anon_sym_unsafe] = ACTIONS(1454), + [anon_sym_use] = ACTIONS(1454), + [anon_sym_while] = ACTIONS(1454), + [anon_sym_extern] = ACTIONS(1454), + [anon_sym_raw] = ACTIONS(1454), + [anon_sym_yield] = ACTIONS(1454), + [anon_sym_move] = ACTIONS(1454), + [anon_sym_try] = ACTIONS(1454), + [sym_integer_literal] = ACTIONS(1452), + [aux_sym_string_literal_token1] = ACTIONS(1452), + [sym_char_literal] = ACTIONS(1452), + [anon_sym_true] = ACTIONS(1454), + [anon_sym_false] = ACTIONS(1454), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1454), + [sym_super] = ACTIONS(1454), + [sym_crate] = ACTIONS(1454), + [sym_metavariable] = ACTIONS(1452), + [sym__raw_string_literal_start] = ACTIONS(1452), + [sym_float_literal] = ACTIONS(1452), + }, + [394] = { + [sym_line_comment] = STATE(394), + [sym_block_comment] = STATE(394), + [ts_builtin_sym_end] = ACTIONS(1456), + [sym_identifier] = ACTIONS(1458), + [anon_sym_SEMI] = ACTIONS(1456), + [anon_sym_macro_rules_BANG] = ACTIONS(1456), + [anon_sym_LPAREN] = ACTIONS(1456), + [anon_sym_LBRACK] = ACTIONS(1456), + [anon_sym_LBRACE] = ACTIONS(1456), + [anon_sym_RBRACE] = ACTIONS(1456), + [anon_sym_PLUS] = ACTIONS(1458), + [anon_sym_STAR] = ACTIONS(1458), + [anon_sym_QMARK] = ACTIONS(1456), + [anon_sym_u8] = ACTIONS(1458), + [anon_sym_i8] = ACTIONS(1458), + [anon_sym_u16] = ACTIONS(1458), + [anon_sym_i16] = ACTIONS(1458), + [anon_sym_u32] = ACTIONS(1458), + [anon_sym_i32] = ACTIONS(1458), + [anon_sym_u64] = ACTIONS(1458), + [anon_sym_i64] = ACTIONS(1458), + [anon_sym_u128] = ACTIONS(1458), + [anon_sym_i128] = ACTIONS(1458), + [anon_sym_isize] = ACTIONS(1458), + [anon_sym_usize] = ACTIONS(1458), + [anon_sym_f32] = ACTIONS(1458), + [anon_sym_f64] = ACTIONS(1458), + [anon_sym_bool] = ACTIONS(1458), + [anon_sym_str] = ACTIONS(1458), + [anon_sym_char] = ACTIONS(1458), + [anon_sym_DASH] = ACTIONS(1458), + [anon_sym_SLASH] = ACTIONS(1458), + [anon_sym_PERCENT] = ACTIONS(1458), + [anon_sym_CARET] = ACTIONS(1458), + [anon_sym_BANG] = ACTIONS(1458), + [anon_sym_AMP] = ACTIONS(1458), + [anon_sym_PIPE] = ACTIONS(1458), + [anon_sym_AMP_AMP] = ACTIONS(1456), + [anon_sym_PIPE_PIPE] = ACTIONS(1456), + [anon_sym_LT_LT] = ACTIONS(1458), + [anon_sym_GT_GT] = ACTIONS(1458), + [anon_sym_PLUS_EQ] = ACTIONS(1456), + [anon_sym_DASH_EQ] = ACTIONS(1456), + [anon_sym_STAR_EQ] = ACTIONS(1456), + [anon_sym_SLASH_EQ] = ACTIONS(1456), + [anon_sym_PERCENT_EQ] = ACTIONS(1456), + [anon_sym_CARET_EQ] = ACTIONS(1456), + [anon_sym_AMP_EQ] = ACTIONS(1456), + [anon_sym_PIPE_EQ] = ACTIONS(1456), + [anon_sym_LT_LT_EQ] = ACTIONS(1456), + [anon_sym_GT_GT_EQ] = ACTIONS(1456), + [anon_sym_EQ] = ACTIONS(1458), + [anon_sym_EQ_EQ] = ACTIONS(1456), + [anon_sym_BANG_EQ] = ACTIONS(1456), + [anon_sym_GT] = ACTIONS(1458), + [anon_sym_LT] = ACTIONS(1458), + [anon_sym_GT_EQ] = ACTIONS(1456), + [anon_sym_LT_EQ] = ACTIONS(1456), + [anon_sym_DOT] = ACTIONS(1458), + [anon_sym_DOT_DOT] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1456), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1456), + [anon_sym_COLON_COLON] = ACTIONS(1456), + [anon_sym_POUND] = ACTIONS(1456), + [anon_sym_SQUOTE] = ACTIONS(1458), + [anon_sym_as] = ACTIONS(1458), + [anon_sym_async] = ACTIONS(1458), + [anon_sym_break] = ACTIONS(1458), + [anon_sym_const] = ACTIONS(1458), + [anon_sym_continue] = ACTIONS(1458), + [anon_sym_default] = ACTIONS(1458), + [anon_sym_enum] = ACTIONS(1458), + [anon_sym_fn] = ACTIONS(1458), + [anon_sym_for] = ACTIONS(1458), + [anon_sym_gen] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1458), + [anon_sym_impl] = ACTIONS(1458), + [anon_sym_let] = ACTIONS(1458), + [anon_sym_loop] = ACTIONS(1458), + [anon_sym_match] = ACTIONS(1458), + [anon_sym_mod] = ACTIONS(1458), + [anon_sym_pub] = ACTIONS(1458), + [anon_sym_return] = ACTIONS(1458), + [anon_sym_static] = ACTIONS(1458), + [anon_sym_struct] = ACTIONS(1458), + [anon_sym_trait] = ACTIONS(1458), + [anon_sym_type] = ACTIONS(1458), + [anon_sym_union] = ACTIONS(1458), + [anon_sym_unsafe] = ACTIONS(1458), + [anon_sym_use] = ACTIONS(1458), + [anon_sym_while] = ACTIONS(1458), + [anon_sym_extern] = ACTIONS(1458), + [anon_sym_raw] = ACTIONS(1458), + [anon_sym_yield] = ACTIONS(1458), + [anon_sym_move] = ACTIONS(1458), + [anon_sym_try] = ACTIONS(1458), + [sym_integer_literal] = ACTIONS(1456), + [aux_sym_string_literal_token1] = ACTIONS(1456), + [sym_char_literal] = ACTIONS(1456), + [anon_sym_true] = ACTIONS(1458), + [anon_sym_false] = ACTIONS(1458), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1458), + [sym_super] = ACTIONS(1458), + [sym_crate] = ACTIONS(1458), + [sym_metavariable] = ACTIONS(1456), + [sym__raw_string_literal_start] = ACTIONS(1456), + [sym_float_literal] = ACTIONS(1456), + }, + [395] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_self_parameter] = STATE(3394), + [sym_variadic_parameter] = STATE(3394), + [sym_parameter] = STATE(3394), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(3155), + [sym_bracketed_type] = STATE(3684), + [sym_lifetime] = STATE(3061), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3340), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2527), + [sym_scoped_identifier] = STATE(2319), + [sym_scoped_type_identifier] = STATE(2206), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(3283), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), + [sym_line_comment] = STATE(395), + [sym_block_comment] = STATE(395), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1052), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1064), + [anon_sym_i8] = ACTIONS(1064), + [anon_sym_u16] = ACTIONS(1064), + [anon_sym_i16] = ACTIONS(1064), + [anon_sym_u32] = ACTIONS(1064), + [anon_sym_i32] = ACTIONS(1064), + [anon_sym_u64] = ACTIONS(1064), + [anon_sym_i64] = ACTIONS(1064), + [anon_sym_u128] = ACTIONS(1064), + [anon_sym_i128] = ACTIONS(1064), + [anon_sym_isize] = ACTIONS(1064), + [anon_sym_usize] = ACTIONS(1064), + [anon_sym_f32] = ACTIONS(1064), + [anon_sym_f64] = ACTIONS(1064), + [anon_sym_bool] = ACTIONS(1064), + [anon_sym_str] = ACTIONS(1064), + [anon_sym_char] = ACTIONS(1064), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1070), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1460), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1078), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1084), + [anon_sym_SQUOTE] = ACTIONS(1088), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1092), + [anon_sym_default] = ACTIONS(1094), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1100), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1100), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_ref] = ACTIONS(1108), + [anon_sym_dyn] = ACTIONS(1110), + [sym_mutable_specifier] = ACTIONS(1112), + [anon_sym_raw] = ACTIONS(1100), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1120), + [sym_super] = ACTIONS(1122), + [sym_crate] = ACTIONS(1122), + [sym_metavariable] = ACTIONS(1124), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [396] = { + [sym_line_comment] = STATE(396), + [sym_block_comment] = STATE(396), [ts_builtin_sym_end] = ACTIONS(1462), [sym_identifier] = ACTIONS(1464), [anon_sym_SEMI] = ACTIONS(1462), @@ -63216,9 +62480,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1462), [sym_float_literal] = ACTIONS(1462), }, - [STATE(401)] = { - [sym_line_comment] = STATE(401), - [sym_block_comment] = STATE(401), + [397] = { + [sym_line_comment] = STATE(397), + [sym_block_comment] = STATE(397), [ts_builtin_sym_end] = ACTIONS(1466), [sym_identifier] = ACTIONS(1468), [anon_sym_SEMI] = ACTIONS(1466), @@ -63327,9 +62591,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1466), [sym_float_literal] = ACTIONS(1466), }, - [STATE(402)] = { - [sym_line_comment] = STATE(402), - [sym_block_comment] = STATE(402), + [398] = { + [sym_line_comment] = STATE(398), + [sym_block_comment] = STATE(398), [ts_builtin_sym_end] = ACTIONS(1470), [sym_identifier] = ACTIONS(1472), [anon_sym_SEMI] = ACTIONS(1470), @@ -63433,1568 +62697,1457 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(1472), [sym_super] = ACTIONS(1472), - [sym_crate] = ACTIONS(1472), - [sym_metavariable] = ACTIONS(1470), - [sym__raw_string_literal_start] = ACTIONS(1470), - [sym_float_literal] = ACTIONS(1470), - }, - [STATE(403)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_self_parameter] = STATE(3421), - [sym_variadic_parameter] = STATE(3421), - [sym_parameter] = STATE(3421), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3170), - [sym_bracketed_type] = STATE(3694), - [sym_lifetime] = STATE(3065), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3341), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2582), - [sym_scoped_identifier] = STATE(2327), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(3276), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), - [sym_line_comment] = STATE(403), - [sym_block_comment] = STATE(403), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1058), - [anon_sym_LPAREN] = ACTIONS(1060), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1070), - [anon_sym_i8] = ACTIONS(1070), - [anon_sym_u16] = ACTIONS(1070), - [anon_sym_i16] = ACTIONS(1070), - [anon_sym_u32] = ACTIONS(1070), - [anon_sym_i32] = ACTIONS(1070), - [anon_sym_u64] = ACTIONS(1070), - [anon_sym_i64] = ACTIONS(1070), - [anon_sym_u128] = ACTIONS(1070), - [anon_sym_i128] = ACTIONS(1070), - [anon_sym_isize] = ACTIONS(1070), - [anon_sym_usize] = ACTIONS(1070), - [anon_sym_f32] = ACTIONS(1070), - [anon_sym_f64] = ACTIONS(1070), - [anon_sym_bool] = ACTIONS(1070), - [anon_sym_str] = ACTIONS(1070), - [anon_sym_char] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1076), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1474), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1084), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1106), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1106), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1118), - [anon_sym_raw] = ACTIONS(1106), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1126), - [sym_super] = ACTIONS(1128), - [sym_crate] = ACTIONS(1128), - [sym_metavariable] = ACTIONS(1130), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(404)] = { - [sym_line_comment] = STATE(404), - [sym_block_comment] = STATE(404), - [ts_builtin_sym_end] = ACTIONS(1476), - [sym_identifier] = ACTIONS(1478), - [anon_sym_SEMI] = ACTIONS(1476), - [anon_sym_macro_rules_BANG] = ACTIONS(1476), - [anon_sym_LPAREN] = ACTIONS(1476), - [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1476), - [anon_sym_RBRACE] = ACTIONS(1476), - [anon_sym_PLUS] = ACTIONS(1478), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_QMARK] = ACTIONS(1476), - [anon_sym_u8] = ACTIONS(1478), - [anon_sym_i8] = ACTIONS(1478), - [anon_sym_u16] = ACTIONS(1478), - [anon_sym_i16] = ACTIONS(1478), - [anon_sym_u32] = ACTIONS(1478), - [anon_sym_i32] = ACTIONS(1478), - [anon_sym_u64] = ACTIONS(1478), - [anon_sym_i64] = ACTIONS(1478), - [anon_sym_u128] = ACTIONS(1478), - [anon_sym_i128] = ACTIONS(1478), - [anon_sym_isize] = ACTIONS(1478), - [anon_sym_usize] = ACTIONS(1478), - [anon_sym_f32] = ACTIONS(1478), - [anon_sym_f64] = ACTIONS(1478), - [anon_sym_bool] = ACTIONS(1478), - [anon_sym_str] = ACTIONS(1478), - [anon_sym_char] = ACTIONS(1478), - [anon_sym_DASH] = ACTIONS(1478), - [anon_sym_SLASH] = ACTIONS(1478), - [anon_sym_PERCENT] = ACTIONS(1478), - [anon_sym_CARET] = ACTIONS(1478), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_AMP_AMP] = ACTIONS(1476), - [anon_sym_PIPE_PIPE] = ACTIONS(1476), - [anon_sym_LT_LT] = ACTIONS(1478), - [anon_sym_GT_GT] = ACTIONS(1478), - [anon_sym_PLUS_EQ] = ACTIONS(1476), - [anon_sym_DASH_EQ] = ACTIONS(1476), - [anon_sym_STAR_EQ] = ACTIONS(1476), - [anon_sym_SLASH_EQ] = ACTIONS(1476), - [anon_sym_PERCENT_EQ] = ACTIONS(1476), - [anon_sym_CARET_EQ] = ACTIONS(1476), - [anon_sym_AMP_EQ] = ACTIONS(1476), - [anon_sym_PIPE_EQ] = ACTIONS(1476), - [anon_sym_LT_LT_EQ] = ACTIONS(1476), - [anon_sym_GT_GT_EQ] = ACTIONS(1476), - [anon_sym_EQ] = ACTIONS(1478), - [anon_sym_EQ_EQ] = ACTIONS(1476), - [anon_sym_BANG_EQ] = ACTIONS(1476), - [anon_sym_GT] = ACTIONS(1478), - [anon_sym_LT] = ACTIONS(1478), - [anon_sym_GT_EQ] = ACTIONS(1476), - [anon_sym_LT_EQ] = ACTIONS(1476), - [anon_sym_DOT] = ACTIONS(1478), - [anon_sym_DOT_DOT] = ACTIONS(1478), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1476), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1476), - [anon_sym_COLON_COLON] = ACTIONS(1476), - [anon_sym_POUND] = ACTIONS(1476), - [anon_sym_SQUOTE] = ACTIONS(1478), - [anon_sym_as] = ACTIONS(1478), - [anon_sym_async] = ACTIONS(1478), - [anon_sym_break] = ACTIONS(1478), - [anon_sym_const] = ACTIONS(1478), - [anon_sym_continue] = ACTIONS(1478), - [anon_sym_default] = ACTIONS(1478), - [anon_sym_enum] = ACTIONS(1478), - [anon_sym_fn] = ACTIONS(1478), - [anon_sym_for] = ACTIONS(1478), - [anon_sym_gen] = ACTIONS(1478), - [anon_sym_if] = ACTIONS(1478), - [anon_sym_impl] = ACTIONS(1478), - [anon_sym_let] = ACTIONS(1478), - [anon_sym_loop] = ACTIONS(1478), - [anon_sym_match] = ACTIONS(1478), - [anon_sym_mod] = ACTIONS(1478), - [anon_sym_pub] = ACTIONS(1478), - [anon_sym_return] = ACTIONS(1478), - [anon_sym_static] = ACTIONS(1478), - [anon_sym_struct] = ACTIONS(1478), - [anon_sym_trait] = ACTIONS(1478), - [anon_sym_type] = ACTIONS(1478), - [anon_sym_union] = ACTIONS(1478), - [anon_sym_unsafe] = ACTIONS(1478), - [anon_sym_use] = ACTIONS(1478), - [anon_sym_while] = ACTIONS(1478), - [anon_sym_extern] = ACTIONS(1478), - [anon_sym_raw] = ACTIONS(1478), - [anon_sym_yield] = ACTIONS(1478), - [anon_sym_move] = ACTIONS(1478), - [anon_sym_try] = ACTIONS(1478), - [sym_integer_literal] = ACTIONS(1476), - [aux_sym_string_literal_token1] = ACTIONS(1476), - [sym_char_literal] = ACTIONS(1476), - [anon_sym_true] = ACTIONS(1478), - [anon_sym_false] = ACTIONS(1478), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1478), - [sym_super] = ACTIONS(1478), - [sym_crate] = ACTIONS(1478), - [sym_metavariable] = ACTIONS(1476), - [sym__raw_string_literal_start] = ACTIONS(1476), - [sym_float_literal] = ACTIONS(1476), - }, - [STATE(405)] = { - [sym_line_comment] = STATE(405), - [sym_block_comment] = STATE(405), - [ts_builtin_sym_end] = ACTIONS(1480), - [sym_identifier] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1480), - [anon_sym_macro_rules_BANG] = ACTIONS(1480), - [anon_sym_LPAREN] = ACTIONS(1480), - [anon_sym_LBRACK] = ACTIONS(1480), - [anon_sym_LBRACE] = ACTIONS(1480), - [anon_sym_RBRACE] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_STAR] = ACTIONS(1482), - [anon_sym_QMARK] = ACTIONS(1480), - [anon_sym_u8] = ACTIONS(1482), - [anon_sym_i8] = ACTIONS(1482), - [anon_sym_u16] = ACTIONS(1482), - [anon_sym_i16] = ACTIONS(1482), - [anon_sym_u32] = ACTIONS(1482), - [anon_sym_i32] = ACTIONS(1482), - [anon_sym_u64] = ACTIONS(1482), - [anon_sym_i64] = ACTIONS(1482), - [anon_sym_u128] = ACTIONS(1482), - [anon_sym_i128] = ACTIONS(1482), - [anon_sym_isize] = ACTIONS(1482), - [anon_sym_usize] = ACTIONS(1482), - [anon_sym_f32] = ACTIONS(1482), - [anon_sym_f64] = ACTIONS(1482), - [anon_sym_bool] = ACTIONS(1482), - [anon_sym_str] = ACTIONS(1482), - [anon_sym_char] = ACTIONS(1482), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_SLASH] = ACTIONS(1482), - [anon_sym_PERCENT] = ACTIONS(1482), - [anon_sym_CARET] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1482), - [anon_sym_AMP] = ACTIONS(1482), - [anon_sym_PIPE] = ACTIONS(1482), - [anon_sym_AMP_AMP] = ACTIONS(1480), - [anon_sym_PIPE_PIPE] = ACTIONS(1480), - [anon_sym_LT_LT] = ACTIONS(1482), - [anon_sym_GT_GT] = ACTIONS(1482), - [anon_sym_PLUS_EQ] = ACTIONS(1480), - [anon_sym_DASH_EQ] = ACTIONS(1480), - [anon_sym_STAR_EQ] = ACTIONS(1480), - [anon_sym_SLASH_EQ] = ACTIONS(1480), - [anon_sym_PERCENT_EQ] = ACTIONS(1480), - [anon_sym_CARET_EQ] = ACTIONS(1480), - [anon_sym_AMP_EQ] = ACTIONS(1480), - [anon_sym_PIPE_EQ] = ACTIONS(1480), - [anon_sym_LT_LT_EQ] = ACTIONS(1480), - [anon_sym_GT_GT_EQ] = ACTIONS(1480), - [anon_sym_EQ] = ACTIONS(1482), - [anon_sym_EQ_EQ] = ACTIONS(1480), - [anon_sym_BANG_EQ] = ACTIONS(1480), - [anon_sym_GT] = ACTIONS(1482), - [anon_sym_LT] = ACTIONS(1482), - [anon_sym_GT_EQ] = ACTIONS(1480), - [anon_sym_LT_EQ] = ACTIONS(1480), - [anon_sym_DOT] = ACTIONS(1482), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1480), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1480), - [anon_sym_COLON_COLON] = ACTIONS(1480), - [anon_sym_POUND] = ACTIONS(1480), - [anon_sym_SQUOTE] = ACTIONS(1482), - [anon_sym_as] = ACTIONS(1482), - [anon_sym_async] = ACTIONS(1482), - [anon_sym_break] = ACTIONS(1482), - [anon_sym_const] = ACTIONS(1482), - [anon_sym_continue] = ACTIONS(1482), - [anon_sym_default] = ACTIONS(1482), - [anon_sym_enum] = ACTIONS(1482), - [anon_sym_fn] = ACTIONS(1482), - [anon_sym_for] = ACTIONS(1482), - [anon_sym_gen] = ACTIONS(1482), - [anon_sym_if] = ACTIONS(1482), - [anon_sym_impl] = ACTIONS(1482), - [anon_sym_let] = ACTIONS(1482), - [anon_sym_loop] = ACTIONS(1482), - [anon_sym_match] = ACTIONS(1482), - [anon_sym_mod] = ACTIONS(1482), - [anon_sym_pub] = ACTIONS(1482), - [anon_sym_return] = ACTIONS(1482), - [anon_sym_static] = ACTIONS(1482), - [anon_sym_struct] = ACTIONS(1482), - [anon_sym_trait] = ACTIONS(1482), - [anon_sym_type] = ACTIONS(1482), - [anon_sym_union] = ACTIONS(1482), - [anon_sym_unsafe] = ACTIONS(1482), - [anon_sym_use] = ACTIONS(1482), - [anon_sym_while] = ACTIONS(1482), - [anon_sym_extern] = ACTIONS(1482), - [anon_sym_raw] = ACTIONS(1482), - [anon_sym_yield] = ACTIONS(1482), - [anon_sym_move] = ACTIONS(1482), - [anon_sym_try] = ACTIONS(1482), - [sym_integer_literal] = ACTIONS(1480), - [aux_sym_string_literal_token1] = ACTIONS(1480), - [sym_char_literal] = ACTIONS(1480), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1482), - [sym_super] = ACTIONS(1482), - [sym_crate] = ACTIONS(1482), - [sym_metavariable] = ACTIONS(1480), - [sym__raw_string_literal_start] = ACTIONS(1480), - [sym_float_literal] = ACTIONS(1480), - }, - [STATE(406)] = { - [sym_line_comment] = STATE(406), - [sym_block_comment] = STATE(406), - [ts_builtin_sym_end] = ACTIONS(1484), - [sym_identifier] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1484), - [anon_sym_macro_rules_BANG] = ACTIONS(1484), - [anon_sym_LPAREN] = ACTIONS(1484), - [anon_sym_LBRACK] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1484), - [anon_sym_RBRACE] = ACTIONS(1484), - [anon_sym_PLUS] = ACTIONS(1486), - [anon_sym_STAR] = ACTIONS(1486), - [anon_sym_QMARK] = ACTIONS(1484), - [anon_sym_u8] = ACTIONS(1486), - [anon_sym_i8] = ACTIONS(1486), - [anon_sym_u16] = ACTIONS(1486), - [anon_sym_i16] = ACTIONS(1486), - [anon_sym_u32] = ACTIONS(1486), - [anon_sym_i32] = ACTIONS(1486), - [anon_sym_u64] = ACTIONS(1486), - [anon_sym_i64] = ACTIONS(1486), - [anon_sym_u128] = ACTIONS(1486), - [anon_sym_i128] = ACTIONS(1486), - [anon_sym_isize] = ACTIONS(1486), - [anon_sym_usize] = ACTIONS(1486), - [anon_sym_f32] = ACTIONS(1486), - [anon_sym_f64] = ACTIONS(1486), - [anon_sym_bool] = ACTIONS(1486), - [anon_sym_str] = ACTIONS(1486), - [anon_sym_char] = ACTIONS(1486), - [anon_sym_DASH] = ACTIONS(1486), - [anon_sym_SLASH] = ACTIONS(1486), - [anon_sym_PERCENT] = ACTIONS(1486), - [anon_sym_CARET] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1486), - [anon_sym_AMP] = ACTIONS(1486), - [anon_sym_PIPE] = ACTIONS(1486), - [anon_sym_AMP_AMP] = ACTIONS(1484), - [anon_sym_PIPE_PIPE] = ACTIONS(1484), - [anon_sym_LT_LT] = ACTIONS(1486), - [anon_sym_GT_GT] = ACTIONS(1486), - [anon_sym_PLUS_EQ] = ACTIONS(1484), - [anon_sym_DASH_EQ] = ACTIONS(1484), - [anon_sym_STAR_EQ] = ACTIONS(1484), - [anon_sym_SLASH_EQ] = ACTIONS(1484), - [anon_sym_PERCENT_EQ] = ACTIONS(1484), - [anon_sym_CARET_EQ] = ACTIONS(1484), - [anon_sym_AMP_EQ] = ACTIONS(1484), - [anon_sym_PIPE_EQ] = ACTIONS(1484), - [anon_sym_LT_LT_EQ] = ACTIONS(1484), - [anon_sym_GT_GT_EQ] = ACTIONS(1484), - [anon_sym_EQ] = ACTIONS(1486), - [anon_sym_EQ_EQ] = ACTIONS(1484), - [anon_sym_BANG_EQ] = ACTIONS(1484), - [anon_sym_GT] = ACTIONS(1486), - [anon_sym_LT] = ACTIONS(1486), - [anon_sym_GT_EQ] = ACTIONS(1484), - [anon_sym_LT_EQ] = ACTIONS(1484), - [anon_sym_DOT] = ACTIONS(1486), - [anon_sym_DOT_DOT] = ACTIONS(1486), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1484), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1484), - [anon_sym_COLON_COLON] = ACTIONS(1484), - [anon_sym_POUND] = ACTIONS(1484), - [anon_sym_SQUOTE] = ACTIONS(1486), - [anon_sym_as] = ACTIONS(1486), - [anon_sym_async] = ACTIONS(1486), - [anon_sym_break] = ACTIONS(1486), - [anon_sym_const] = ACTIONS(1486), - [anon_sym_continue] = ACTIONS(1486), - [anon_sym_default] = ACTIONS(1486), - [anon_sym_enum] = ACTIONS(1486), - [anon_sym_fn] = ACTIONS(1486), - [anon_sym_for] = ACTIONS(1486), - [anon_sym_gen] = ACTIONS(1486), - [anon_sym_if] = ACTIONS(1486), - [anon_sym_impl] = ACTIONS(1486), - [anon_sym_let] = ACTIONS(1486), - [anon_sym_loop] = ACTIONS(1486), - [anon_sym_match] = ACTIONS(1486), - [anon_sym_mod] = ACTIONS(1486), - [anon_sym_pub] = ACTIONS(1486), - [anon_sym_return] = ACTIONS(1486), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_struct] = ACTIONS(1486), - [anon_sym_trait] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(1486), - [anon_sym_union] = ACTIONS(1486), - [anon_sym_unsafe] = ACTIONS(1486), - [anon_sym_use] = ACTIONS(1486), - [anon_sym_while] = ACTIONS(1486), - [anon_sym_extern] = ACTIONS(1486), - [anon_sym_raw] = ACTIONS(1486), - [anon_sym_yield] = ACTIONS(1486), - [anon_sym_move] = ACTIONS(1486), - [anon_sym_try] = ACTIONS(1486), - [sym_integer_literal] = ACTIONS(1484), - [aux_sym_string_literal_token1] = ACTIONS(1484), - [sym_char_literal] = ACTIONS(1484), - [anon_sym_true] = ACTIONS(1486), - [anon_sym_false] = ACTIONS(1486), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1486), - [sym_super] = ACTIONS(1486), - [sym_crate] = ACTIONS(1486), - [sym_metavariable] = ACTIONS(1484), - [sym__raw_string_literal_start] = ACTIONS(1484), - [sym_float_literal] = ACTIONS(1484), - }, - [STATE(407)] = { - [sym_line_comment] = STATE(407), - [sym_block_comment] = STATE(407), - [ts_builtin_sym_end] = ACTIONS(1488), - [sym_identifier] = ACTIONS(1490), - [anon_sym_SEMI] = ACTIONS(1488), - [anon_sym_macro_rules_BANG] = ACTIONS(1488), - [anon_sym_LPAREN] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_RBRACE] = ACTIONS(1488), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_STAR] = ACTIONS(1490), - [anon_sym_QMARK] = ACTIONS(1488), - [anon_sym_u8] = ACTIONS(1490), - [anon_sym_i8] = ACTIONS(1490), - [anon_sym_u16] = ACTIONS(1490), - [anon_sym_i16] = ACTIONS(1490), - [anon_sym_u32] = ACTIONS(1490), - [anon_sym_i32] = ACTIONS(1490), - [anon_sym_u64] = ACTIONS(1490), - [anon_sym_i64] = ACTIONS(1490), - [anon_sym_u128] = ACTIONS(1490), - [anon_sym_i128] = ACTIONS(1490), - [anon_sym_isize] = ACTIONS(1490), - [anon_sym_usize] = ACTIONS(1490), - [anon_sym_f32] = ACTIONS(1490), - [anon_sym_f64] = ACTIONS(1490), - [anon_sym_bool] = ACTIONS(1490), - [anon_sym_str] = ACTIONS(1490), - [anon_sym_char] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_SLASH] = ACTIONS(1490), - [anon_sym_PERCENT] = ACTIONS(1490), - [anon_sym_CARET] = ACTIONS(1490), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_AMP] = ACTIONS(1490), - [anon_sym_PIPE] = ACTIONS(1490), - [anon_sym_AMP_AMP] = ACTIONS(1488), - [anon_sym_PIPE_PIPE] = ACTIONS(1488), - [anon_sym_LT_LT] = ACTIONS(1490), - [anon_sym_GT_GT] = ACTIONS(1490), - [anon_sym_PLUS_EQ] = ACTIONS(1488), - [anon_sym_DASH_EQ] = ACTIONS(1488), - [anon_sym_STAR_EQ] = ACTIONS(1488), - [anon_sym_SLASH_EQ] = ACTIONS(1488), - [anon_sym_PERCENT_EQ] = ACTIONS(1488), - [anon_sym_CARET_EQ] = ACTIONS(1488), - [anon_sym_AMP_EQ] = ACTIONS(1488), - [anon_sym_PIPE_EQ] = ACTIONS(1488), - [anon_sym_LT_LT_EQ] = ACTIONS(1488), - [anon_sym_GT_GT_EQ] = ACTIONS(1488), - [anon_sym_EQ] = ACTIONS(1490), - [anon_sym_EQ_EQ] = ACTIONS(1488), - [anon_sym_BANG_EQ] = ACTIONS(1488), - [anon_sym_GT] = ACTIONS(1490), - [anon_sym_LT] = ACTIONS(1490), - [anon_sym_GT_EQ] = ACTIONS(1488), - [anon_sym_LT_EQ] = ACTIONS(1488), - [anon_sym_DOT] = ACTIONS(1490), - [anon_sym_DOT_DOT] = ACTIONS(1490), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1488), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1488), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_POUND] = ACTIONS(1488), - [anon_sym_SQUOTE] = ACTIONS(1490), - [anon_sym_as] = ACTIONS(1490), - [anon_sym_async] = ACTIONS(1490), - [anon_sym_break] = ACTIONS(1490), - [anon_sym_const] = ACTIONS(1490), - [anon_sym_continue] = ACTIONS(1490), - [anon_sym_default] = ACTIONS(1490), - [anon_sym_enum] = ACTIONS(1490), - [anon_sym_fn] = ACTIONS(1490), - [anon_sym_for] = ACTIONS(1490), - [anon_sym_gen] = ACTIONS(1490), - [anon_sym_if] = ACTIONS(1490), - [anon_sym_impl] = ACTIONS(1490), - [anon_sym_let] = ACTIONS(1490), - [anon_sym_loop] = ACTIONS(1490), - [anon_sym_match] = ACTIONS(1490), - [anon_sym_mod] = ACTIONS(1490), - [anon_sym_pub] = ACTIONS(1490), - [anon_sym_return] = ACTIONS(1490), - [anon_sym_static] = ACTIONS(1490), - [anon_sym_struct] = ACTIONS(1490), - [anon_sym_trait] = ACTIONS(1490), - [anon_sym_type] = ACTIONS(1490), - [anon_sym_union] = ACTIONS(1490), - [anon_sym_unsafe] = ACTIONS(1490), - [anon_sym_use] = ACTIONS(1490), - [anon_sym_while] = ACTIONS(1490), - [anon_sym_extern] = ACTIONS(1490), - [anon_sym_raw] = ACTIONS(1490), - [anon_sym_yield] = ACTIONS(1490), - [anon_sym_move] = ACTIONS(1490), - [anon_sym_try] = ACTIONS(1490), - [sym_integer_literal] = ACTIONS(1488), - [aux_sym_string_literal_token1] = ACTIONS(1488), - [sym_char_literal] = ACTIONS(1488), - [anon_sym_true] = ACTIONS(1490), - [anon_sym_false] = ACTIONS(1490), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1490), - [sym_super] = ACTIONS(1490), - [sym_crate] = ACTIONS(1490), - [sym_metavariable] = ACTIONS(1488), - [sym__raw_string_literal_start] = ACTIONS(1488), - [sym_float_literal] = ACTIONS(1488), - }, - [STATE(408)] = { - [sym_line_comment] = STATE(408), - [sym_block_comment] = STATE(408), - [ts_builtin_sym_end] = ACTIONS(1492), - [sym_identifier] = ACTIONS(1494), - [anon_sym_SEMI] = ACTIONS(1492), - [anon_sym_macro_rules_BANG] = ACTIONS(1492), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_LBRACK] = ACTIONS(1492), - [anon_sym_LBRACE] = ACTIONS(1492), - [anon_sym_RBRACE] = ACTIONS(1492), - [anon_sym_PLUS] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1494), - [anon_sym_QMARK] = ACTIONS(1492), - [anon_sym_u8] = ACTIONS(1494), - [anon_sym_i8] = ACTIONS(1494), - [anon_sym_u16] = ACTIONS(1494), - [anon_sym_i16] = ACTIONS(1494), - [anon_sym_u32] = ACTIONS(1494), - [anon_sym_i32] = ACTIONS(1494), - [anon_sym_u64] = ACTIONS(1494), - [anon_sym_i64] = ACTIONS(1494), - [anon_sym_u128] = ACTIONS(1494), - [anon_sym_i128] = ACTIONS(1494), - [anon_sym_isize] = ACTIONS(1494), - [anon_sym_usize] = ACTIONS(1494), - [anon_sym_f32] = ACTIONS(1494), - [anon_sym_f64] = ACTIONS(1494), - [anon_sym_bool] = ACTIONS(1494), - [anon_sym_str] = ACTIONS(1494), - [anon_sym_char] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_SLASH] = ACTIONS(1494), - [anon_sym_PERCENT] = ACTIONS(1494), - [anon_sym_CARET] = ACTIONS(1494), - [anon_sym_BANG] = ACTIONS(1494), - [anon_sym_AMP] = ACTIONS(1494), - [anon_sym_PIPE] = ACTIONS(1494), - [anon_sym_AMP_AMP] = ACTIONS(1492), - [anon_sym_PIPE_PIPE] = ACTIONS(1492), - [anon_sym_LT_LT] = ACTIONS(1494), - [anon_sym_GT_GT] = ACTIONS(1494), - [anon_sym_PLUS_EQ] = ACTIONS(1492), - [anon_sym_DASH_EQ] = ACTIONS(1492), - [anon_sym_STAR_EQ] = ACTIONS(1492), - [anon_sym_SLASH_EQ] = ACTIONS(1492), - [anon_sym_PERCENT_EQ] = ACTIONS(1492), - [anon_sym_CARET_EQ] = ACTIONS(1492), - [anon_sym_AMP_EQ] = ACTIONS(1492), - [anon_sym_PIPE_EQ] = ACTIONS(1492), - [anon_sym_LT_LT_EQ] = ACTIONS(1492), - [anon_sym_GT_GT_EQ] = ACTIONS(1492), - [anon_sym_EQ] = ACTIONS(1494), - [anon_sym_EQ_EQ] = ACTIONS(1492), - [anon_sym_BANG_EQ] = ACTIONS(1492), - [anon_sym_GT] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(1494), - [anon_sym_GT_EQ] = ACTIONS(1492), - [anon_sym_LT_EQ] = ACTIONS(1492), - [anon_sym_DOT] = ACTIONS(1494), - [anon_sym_DOT_DOT] = ACTIONS(1494), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1492), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1492), - [anon_sym_COLON_COLON] = ACTIONS(1492), - [anon_sym_POUND] = ACTIONS(1492), - [anon_sym_SQUOTE] = ACTIONS(1494), - [anon_sym_as] = ACTIONS(1494), - [anon_sym_async] = ACTIONS(1494), - [anon_sym_break] = ACTIONS(1494), - [anon_sym_const] = ACTIONS(1494), - [anon_sym_continue] = ACTIONS(1494), - [anon_sym_default] = ACTIONS(1494), - [anon_sym_enum] = ACTIONS(1494), - [anon_sym_fn] = ACTIONS(1494), - [anon_sym_for] = ACTIONS(1494), - [anon_sym_gen] = ACTIONS(1494), - [anon_sym_if] = ACTIONS(1494), - [anon_sym_impl] = ACTIONS(1494), - [anon_sym_let] = ACTIONS(1494), - [anon_sym_loop] = ACTIONS(1494), - [anon_sym_match] = ACTIONS(1494), - [anon_sym_mod] = ACTIONS(1494), - [anon_sym_pub] = ACTIONS(1494), - [anon_sym_return] = ACTIONS(1494), - [anon_sym_static] = ACTIONS(1494), - [anon_sym_struct] = ACTIONS(1494), - [anon_sym_trait] = ACTIONS(1494), - [anon_sym_type] = ACTIONS(1494), - [anon_sym_union] = ACTIONS(1494), - [anon_sym_unsafe] = ACTIONS(1494), - [anon_sym_use] = ACTIONS(1494), - [anon_sym_while] = ACTIONS(1494), - [anon_sym_extern] = ACTIONS(1494), - [anon_sym_raw] = ACTIONS(1494), - [anon_sym_yield] = ACTIONS(1494), - [anon_sym_move] = ACTIONS(1494), - [anon_sym_try] = ACTIONS(1494), - [sym_integer_literal] = ACTIONS(1492), - [aux_sym_string_literal_token1] = ACTIONS(1492), - [sym_char_literal] = ACTIONS(1492), - [anon_sym_true] = ACTIONS(1494), - [anon_sym_false] = ACTIONS(1494), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1494), - [sym_super] = ACTIONS(1494), - [sym_crate] = ACTIONS(1494), - [sym_metavariable] = ACTIONS(1492), - [sym__raw_string_literal_start] = ACTIONS(1492), - [sym_float_literal] = ACTIONS(1492), - }, - [STATE(409)] = { - [sym_line_comment] = STATE(409), - [sym_block_comment] = STATE(409), - [ts_builtin_sym_end] = ACTIONS(1496), - [sym_identifier] = ACTIONS(1498), - [anon_sym_SEMI] = ACTIONS(1496), - [anon_sym_macro_rules_BANG] = ACTIONS(1496), - [anon_sym_LPAREN] = ACTIONS(1496), - [anon_sym_LBRACK] = ACTIONS(1496), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_RBRACE] = ACTIONS(1496), - [anon_sym_PLUS] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(1498), - [anon_sym_QMARK] = ACTIONS(1496), - [anon_sym_u8] = ACTIONS(1498), - [anon_sym_i8] = ACTIONS(1498), - [anon_sym_u16] = ACTIONS(1498), - [anon_sym_i16] = ACTIONS(1498), - [anon_sym_u32] = ACTIONS(1498), - [anon_sym_i32] = ACTIONS(1498), - [anon_sym_u64] = ACTIONS(1498), - [anon_sym_i64] = ACTIONS(1498), - [anon_sym_u128] = ACTIONS(1498), - [anon_sym_i128] = ACTIONS(1498), - [anon_sym_isize] = ACTIONS(1498), - [anon_sym_usize] = ACTIONS(1498), - [anon_sym_f32] = ACTIONS(1498), - [anon_sym_f64] = ACTIONS(1498), - [anon_sym_bool] = ACTIONS(1498), - [anon_sym_str] = ACTIONS(1498), - [anon_sym_char] = ACTIONS(1498), - [anon_sym_DASH] = ACTIONS(1498), - [anon_sym_SLASH] = ACTIONS(1498), - [anon_sym_PERCENT] = ACTIONS(1498), - [anon_sym_CARET] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1498), - [anon_sym_AMP] = ACTIONS(1498), - [anon_sym_PIPE] = ACTIONS(1498), - [anon_sym_AMP_AMP] = ACTIONS(1496), - [anon_sym_PIPE_PIPE] = ACTIONS(1496), - [anon_sym_LT_LT] = ACTIONS(1498), - [anon_sym_GT_GT] = ACTIONS(1498), - [anon_sym_PLUS_EQ] = ACTIONS(1496), - [anon_sym_DASH_EQ] = ACTIONS(1496), - [anon_sym_STAR_EQ] = ACTIONS(1496), - [anon_sym_SLASH_EQ] = ACTIONS(1496), - [anon_sym_PERCENT_EQ] = ACTIONS(1496), - [anon_sym_CARET_EQ] = ACTIONS(1496), - [anon_sym_AMP_EQ] = ACTIONS(1496), - [anon_sym_PIPE_EQ] = ACTIONS(1496), - [anon_sym_LT_LT_EQ] = ACTIONS(1496), - [anon_sym_GT_GT_EQ] = ACTIONS(1496), - [anon_sym_EQ] = ACTIONS(1498), - [anon_sym_EQ_EQ] = ACTIONS(1496), - [anon_sym_BANG_EQ] = ACTIONS(1496), - [anon_sym_GT] = ACTIONS(1498), - [anon_sym_LT] = ACTIONS(1498), - [anon_sym_GT_EQ] = ACTIONS(1496), - [anon_sym_LT_EQ] = ACTIONS(1496), - [anon_sym_DOT] = ACTIONS(1498), - [anon_sym_DOT_DOT] = ACTIONS(1498), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1496), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1496), - [anon_sym_COLON_COLON] = ACTIONS(1496), - [anon_sym_POUND] = ACTIONS(1496), - [anon_sym_SQUOTE] = ACTIONS(1498), - [anon_sym_as] = ACTIONS(1498), - [anon_sym_async] = ACTIONS(1498), - [anon_sym_break] = ACTIONS(1498), - [anon_sym_const] = ACTIONS(1498), - [anon_sym_continue] = ACTIONS(1498), - [anon_sym_default] = ACTIONS(1498), - [anon_sym_enum] = ACTIONS(1498), - [anon_sym_fn] = ACTIONS(1498), - [anon_sym_for] = ACTIONS(1498), - [anon_sym_gen] = ACTIONS(1498), - [anon_sym_if] = ACTIONS(1498), - [anon_sym_impl] = ACTIONS(1498), - [anon_sym_let] = ACTIONS(1498), - [anon_sym_loop] = ACTIONS(1498), - [anon_sym_match] = ACTIONS(1498), - [anon_sym_mod] = ACTIONS(1498), - [anon_sym_pub] = ACTIONS(1498), - [anon_sym_return] = ACTIONS(1498), - [anon_sym_static] = ACTIONS(1498), - [anon_sym_struct] = ACTIONS(1498), - [anon_sym_trait] = ACTIONS(1498), - [anon_sym_type] = ACTIONS(1498), - [anon_sym_union] = ACTIONS(1498), - [anon_sym_unsafe] = ACTIONS(1498), - [anon_sym_use] = ACTIONS(1498), - [anon_sym_while] = ACTIONS(1498), - [anon_sym_extern] = ACTIONS(1498), - [anon_sym_raw] = ACTIONS(1498), - [anon_sym_yield] = ACTIONS(1498), - [anon_sym_move] = ACTIONS(1498), - [anon_sym_try] = ACTIONS(1498), - [sym_integer_literal] = ACTIONS(1496), - [aux_sym_string_literal_token1] = ACTIONS(1496), - [sym_char_literal] = ACTIONS(1496), - [anon_sym_true] = ACTIONS(1498), - [anon_sym_false] = ACTIONS(1498), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1498), - [sym_super] = ACTIONS(1498), - [sym_crate] = ACTIONS(1498), - [sym_metavariable] = ACTIONS(1496), - [sym__raw_string_literal_start] = ACTIONS(1496), - [sym_float_literal] = ACTIONS(1496), - }, - [STATE(410)] = { - [sym_line_comment] = STATE(410), - [sym_block_comment] = STATE(410), - [ts_builtin_sym_end] = ACTIONS(1500), - [sym_identifier] = ACTIONS(1502), - [anon_sym_SEMI] = ACTIONS(1504), - [anon_sym_macro_rules_BANG] = ACTIONS(1500), - [anon_sym_LPAREN] = ACTIONS(1504), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_RBRACE] = ACTIONS(1504), - [anon_sym_PLUS] = ACTIONS(1506), - [anon_sym_STAR] = ACTIONS(1506), - [anon_sym_QMARK] = ACTIONS(1504), - [anon_sym_u8] = ACTIONS(1502), - [anon_sym_i8] = ACTIONS(1502), - [anon_sym_u16] = ACTIONS(1502), - [anon_sym_i16] = ACTIONS(1502), - [anon_sym_u32] = ACTIONS(1502), - [anon_sym_i32] = ACTIONS(1502), - [anon_sym_u64] = ACTIONS(1502), - [anon_sym_i64] = ACTIONS(1502), - [anon_sym_u128] = ACTIONS(1502), - [anon_sym_i128] = ACTIONS(1502), - [anon_sym_isize] = ACTIONS(1502), - [anon_sym_usize] = ACTIONS(1502), - [anon_sym_f32] = ACTIONS(1502), - [anon_sym_f64] = ACTIONS(1502), - [anon_sym_bool] = ACTIONS(1502), - [anon_sym_str] = ACTIONS(1502), - [anon_sym_char] = ACTIONS(1502), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_SLASH] = ACTIONS(1506), - [anon_sym_PERCENT] = ACTIONS(1506), - [anon_sym_CARET] = ACTIONS(1506), - [anon_sym_BANG] = ACTIONS(1502), - [anon_sym_AMP] = ACTIONS(1506), - [anon_sym_PIPE] = ACTIONS(1506), - [anon_sym_AMP_AMP] = ACTIONS(1504), - [anon_sym_PIPE_PIPE] = ACTIONS(1504), - [anon_sym_LT_LT] = ACTIONS(1506), - [anon_sym_GT_GT] = ACTIONS(1506), - [anon_sym_PLUS_EQ] = ACTIONS(1504), - [anon_sym_DASH_EQ] = ACTIONS(1504), - [anon_sym_STAR_EQ] = ACTIONS(1504), - [anon_sym_SLASH_EQ] = ACTIONS(1504), - [anon_sym_PERCENT_EQ] = ACTIONS(1504), - [anon_sym_CARET_EQ] = ACTIONS(1504), - [anon_sym_AMP_EQ] = ACTIONS(1504), - [anon_sym_PIPE_EQ] = ACTIONS(1504), - [anon_sym_LT_LT_EQ] = ACTIONS(1504), - [anon_sym_GT_GT_EQ] = ACTIONS(1504), - [anon_sym_EQ] = ACTIONS(1506), - [anon_sym_EQ_EQ] = ACTIONS(1504), - [anon_sym_BANG_EQ] = ACTIONS(1504), - [anon_sym_GT] = ACTIONS(1506), - [anon_sym_LT] = ACTIONS(1506), - [anon_sym_GT_EQ] = ACTIONS(1504), - [anon_sym_LT_EQ] = ACTIONS(1504), - [anon_sym_DOT] = ACTIONS(1506), - [anon_sym_DOT_DOT] = ACTIONS(1506), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1504), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1504), - [anon_sym_COLON_COLON] = ACTIONS(1500), - [anon_sym_POUND] = ACTIONS(1500), - [anon_sym_SQUOTE] = ACTIONS(1502), - [anon_sym_as] = ACTIONS(1506), - [anon_sym_async] = ACTIONS(1502), - [anon_sym_break] = ACTIONS(1502), - [anon_sym_const] = ACTIONS(1502), - [anon_sym_continue] = ACTIONS(1502), - [anon_sym_default] = ACTIONS(1502), - [anon_sym_enum] = ACTIONS(1502), - [anon_sym_fn] = ACTIONS(1502), - [anon_sym_for] = ACTIONS(1502), - [anon_sym_gen] = ACTIONS(1502), - [anon_sym_if] = ACTIONS(1502), - [anon_sym_impl] = ACTIONS(1502), - [anon_sym_let] = ACTIONS(1502), - [anon_sym_loop] = ACTIONS(1502), - [anon_sym_match] = ACTIONS(1502), - [anon_sym_mod] = ACTIONS(1502), - [anon_sym_pub] = ACTIONS(1502), - [anon_sym_return] = ACTIONS(1502), - [anon_sym_static] = ACTIONS(1502), - [anon_sym_struct] = ACTIONS(1502), - [anon_sym_trait] = ACTIONS(1502), - [anon_sym_type] = ACTIONS(1502), - [anon_sym_union] = ACTIONS(1502), - [anon_sym_unsafe] = ACTIONS(1502), - [anon_sym_use] = ACTIONS(1502), - [anon_sym_while] = ACTIONS(1502), - [anon_sym_extern] = ACTIONS(1502), - [anon_sym_raw] = ACTIONS(1502), - [anon_sym_yield] = ACTIONS(1502), - [anon_sym_move] = ACTIONS(1502), - [anon_sym_try] = ACTIONS(1502), - [sym_integer_literal] = ACTIONS(1500), - [aux_sym_string_literal_token1] = ACTIONS(1500), - [sym_char_literal] = ACTIONS(1500), - [anon_sym_true] = ACTIONS(1502), - [anon_sym_false] = ACTIONS(1502), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1502), - [sym_super] = ACTIONS(1502), - [sym_crate] = ACTIONS(1502), - [sym_metavariable] = ACTIONS(1500), - [sym__raw_string_literal_start] = ACTIONS(1500), - [sym_float_literal] = ACTIONS(1500), - }, - [STATE(411)] = { - [sym_line_comment] = STATE(411), - [sym_block_comment] = STATE(411), - [ts_builtin_sym_end] = ACTIONS(1508), - [sym_identifier] = ACTIONS(1510), - [anon_sym_SEMI] = ACTIONS(1508), - [anon_sym_macro_rules_BANG] = ACTIONS(1508), - [anon_sym_LPAREN] = ACTIONS(1508), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_LBRACE] = ACTIONS(1508), - [anon_sym_RBRACE] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1510), - [anon_sym_STAR] = ACTIONS(1510), - [anon_sym_QMARK] = ACTIONS(1508), - [anon_sym_u8] = ACTIONS(1510), - [anon_sym_i8] = ACTIONS(1510), - [anon_sym_u16] = ACTIONS(1510), - [anon_sym_i16] = ACTIONS(1510), - [anon_sym_u32] = ACTIONS(1510), - [anon_sym_i32] = ACTIONS(1510), - [anon_sym_u64] = ACTIONS(1510), - [anon_sym_i64] = ACTIONS(1510), - [anon_sym_u128] = ACTIONS(1510), - [anon_sym_i128] = ACTIONS(1510), - [anon_sym_isize] = ACTIONS(1510), - [anon_sym_usize] = ACTIONS(1510), - [anon_sym_f32] = ACTIONS(1510), - [anon_sym_f64] = ACTIONS(1510), - [anon_sym_bool] = ACTIONS(1510), - [anon_sym_str] = ACTIONS(1510), - [anon_sym_char] = ACTIONS(1510), - [anon_sym_DASH] = ACTIONS(1510), - [anon_sym_SLASH] = ACTIONS(1510), - [anon_sym_PERCENT] = ACTIONS(1510), - [anon_sym_CARET] = ACTIONS(1510), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(1510), - [anon_sym_PIPE] = ACTIONS(1510), - [anon_sym_AMP_AMP] = ACTIONS(1508), - [anon_sym_PIPE_PIPE] = ACTIONS(1508), - [anon_sym_LT_LT] = ACTIONS(1510), - [anon_sym_GT_GT] = ACTIONS(1510), - [anon_sym_PLUS_EQ] = ACTIONS(1508), - [anon_sym_DASH_EQ] = ACTIONS(1508), - [anon_sym_STAR_EQ] = ACTIONS(1508), - [anon_sym_SLASH_EQ] = ACTIONS(1508), - [anon_sym_PERCENT_EQ] = ACTIONS(1508), - [anon_sym_CARET_EQ] = ACTIONS(1508), - [anon_sym_AMP_EQ] = ACTIONS(1508), - [anon_sym_PIPE_EQ] = ACTIONS(1508), - [anon_sym_LT_LT_EQ] = ACTIONS(1508), - [anon_sym_GT_GT_EQ] = ACTIONS(1508), - [anon_sym_EQ] = ACTIONS(1510), - [anon_sym_EQ_EQ] = ACTIONS(1508), - [anon_sym_BANG_EQ] = ACTIONS(1508), - [anon_sym_GT] = ACTIONS(1510), - [anon_sym_LT] = ACTIONS(1510), - [anon_sym_GT_EQ] = ACTIONS(1508), - [anon_sym_LT_EQ] = ACTIONS(1508), - [anon_sym_DOT] = ACTIONS(1510), - [anon_sym_DOT_DOT] = ACTIONS(1510), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1508), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1508), - [anon_sym_COLON_COLON] = ACTIONS(1508), - [anon_sym_POUND] = ACTIONS(1508), - [anon_sym_SQUOTE] = ACTIONS(1510), - [anon_sym_as] = ACTIONS(1510), - [anon_sym_async] = ACTIONS(1510), - [anon_sym_break] = ACTIONS(1510), - [anon_sym_const] = ACTIONS(1510), - [anon_sym_continue] = ACTIONS(1510), - [anon_sym_default] = ACTIONS(1510), - [anon_sym_enum] = ACTIONS(1510), - [anon_sym_fn] = ACTIONS(1510), - [anon_sym_for] = ACTIONS(1510), - [anon_sym_gen] = ACTIONS(1510), - [anon_sym_if] = ACTIONS(1510), - [anon_sym_impl] = ACTIONS(1510), - [anon_sym_let] = ACTIONS(1510), - [anon_sym_loop] = ACTIONS(1510), - [anon_sym_match] = ACTIONS(1510), - [anon_sym_mod] = ACTIONS(1510), - [anon_sym_pub] = ACTIONS(1510), - [anon_sym_return] = ACTIONS(1510), - [anon_sym_static] = ACTIONS(1510), - [anon_sym_struct] = ACTIONS(1510), - [anon_sym_trait] = ACTIONS(1510), - [anon_sym_type] = ACTIONS(1510), - [anon_sym_union] = ACTIONS(1510), - [anon_sym_unsafe] = ACTIONS(1510), - [anon_sym_use] = ACTIONS(1510), - [anon_sym_while] = ACTIONS(1510), - [anon_sym_extern] = ACTIONS(1510), - [anon_sym_raw] = ACTIONS(1510), - [anon_sym_yield] = ACTIONS(1510), - [anon_sym_move] = ACTIONS(1510), - [anon_sym_try] = ACTIONS(1510), - [sym_integer_literal] = ACTIONS(1508), - [aux_sym_string_literal_token1] = ACTIONS(1508), - [sym_char_literal] = ACTIONS(1508), - [anon_sym_true] = ACTIONS(1510), - [anon_sym_false] = ACTIONS(1510), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1510), - [sym_super] = ACTIONS(1510), - [sym_crate] = ACTIONS(1510), - [sym_metavariable] = ACTIONS(1508), - [sym__raw_string_literal_start] = ACTIONS(1508), - [sym_float_literal] = ACTIONS(1508), - }, - [STATE(412)] = { - [sym_line_comment] = STATE(412), - [sym_block_comment] = STATE(412), - [ts_builtin_sym_end] = ACTIONS(1512), - [sym_identifier] = ACTIONS(1514), - [anon_sym_SEMI] = ACTIONS(1512), - [anon_sym_macro_rules_BANG] = ACTIONS(1512), - [anon_sym_LPAREN] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(1512), - [anon_sym_LBRACE] = ACTIONS(1512), - [anon_sym_RBRACE] = ACTIONS(1512), - [anon_sym_PLUS] = ACTIONS(1514), - [anon_sym_STAR] = ACTIONS(1514), - [anon_sym_QMARK] = ACTIONS(1512), - [anon_sym_u8] = ACTIONS(1514), - [anon_sym_i8] = ACTIONS(1514), - [anon_sym_u16] = ACTIONS(1514), - [anon_sym_i16] = ACTIONS(1514), - [anon_sym_u32] = ACTIONS(1514), - [anon_sym_i32] = ACTIONS(1514), - [anon_sym_u64] = ACTIONS(1514), - [anon_sym_i64] = ACTIONS(1514), - [anon_sym_u128] = ACTIONS(1514), - [anon_sym_i128] = ACTIONS(1514), - [anon_sym_isize] = ACTIONS(1514), - [anon_sym_usize] = ACTIONS(1514), - [anon_sym_f32] = ACTIONS(1514), - [anon_sym_f64] = ACTIONS(1514), - [anon_sym_bool] = ACTIONS(1514), - [anon_sym_str] = ACTIONS(1514), - [anon_sym_char] = ACTIONS(1514), - [anon_sym_DASH] = ACTIONS(1514), - [anon_sym_SLASH] = ACTIONS(1514), - [anon_sym_PERCENT] = ACTIONS(1514), - [anon_sym_CARET] = ACTIONS(1514), - [anon_sym_BANG] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(1514), - [anon_sym_PIPE] = ACTIONS(1514), - [anon_sym_AMP_AMP] = ACTIONS(1512), - [anon_sym_PIPE_PIPE] = ACTIONS(1512), - [anon_sym_LT_LT] = ACTIONS(1514), - [anon_sym_GT_GT] = ACTIONS(1514), - [anon_sym_PLUS_EQ] = ACTIONS(1512), - [anon_sym_DASH_EQ] = ACTIONS(1512), - [anon_sym_STAR_EQ] = ACTIONS(1512), - [anon_sym_SLASH_EQ] = ACTIONS(1512), - [anon_sym_PERCENT_EQ] = ACTIONS(1512), - [anon_sym_CARET_EQ] = ACTIONS(1512), - [anon_sym_AMP_EQ] = ACTIONS(1512), - [anon_sym_PIPE_EQ] = ACTIONS(1512), - [anon_sym_LT_LT_EQ] = ACTIONS(1512), - [anon_sym_GT_GT_EQ] = ACTIONS(1512), - [anon_sym_EQ] = ACTIONS(1514), - [anon_sym_EQ_EQ] = ACTIONS(1512), - [anon_sym_BANG_EQ] = ACTIONS(1512), - [anon_sym_GT] = ACTIONS(1514), - [anon_sym_LT] = ACTIONS(1514), - [anon_sym_GT_EQ] = ACTIONS(1512), - [anon_sym_LT_EQ] = ACTIONS(1512), - [anon_sym_DOT] = ACTIONS(1514), - [anon_sym_DOT_DOT] = ACTIONS(1514), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1512), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1512), - [anon_sym_COLON_COLON] = ACTIONS(1512), - [anon_sym_POUND] = ACTIONS(1512), - [anon_sym_SQUOTE] = ACTIONS(1514), - [anon_sym_as] = ACTIONS(1514), - [anon_sym_async] = ACTIONS(1514), - [anon_sym_break] = ACTIONS(1514), - [anon_sym_const] = ACTIONS(1514), - [anon_sym_continue] = ACTIONS(1514), - [anon_sym_default] = ACTIONS(1514), - [anon_sym_enum] = ACTIONS(1514), - [anon_sym_fn] = ACTIONS(1514), - [anon_sym_for] = ACTIONS(1514), - [anon_sym_gen] = ACTIONS(1514), - [anon_sym_if] = ACTIONS(1514), - [anon_sym_impl] = ACTIONS(1514), - [anon_sym_let] = ACTIONS(1514), - [anon_sym_loop] = ACTIONS(1514), - [anon_sym_match] = ACTIONS(1514), - [anon_sym_mod] = ACTIONS(1514), - [anon_sym_pub] = ACTIONS(1514), - [anon_sym_return] = ACTIONS(1514), - [anon_sym_static] = ACTIONS(1514), - [anon_sym_struct] = ACTIONS(1514), - [anon_sym_trait] = ACTIONS(1514), - [anon_sym_type] = ACTIONS(1514), - [anon_sym_union] = ACTIONS(1514), - [anon_sym_unsafe] = ACTIONS(1514), - [anon_sym_use] = ACTIONS(1514), - [anon_sym_while] = ACTIONS(1514), - [anon_sym_extern] = ACTIONS(1514), - [anon_sym_raw] = ACTIONS(1514), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_move] = ACTIONS(1514), - [anon_sym_try] = ACTIONS(1514), - [sym_integer_literal] = ACTIONS(1512), - [aux_sym_string_literal_token1] = ACTIONS(1512), - [sym_char_literal] = ACTIONS(1512), - [anon_sym_true] = ACTIONS(1514), - [anon_sym_false] = ACTIONS(1514), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1514), - [sym_super] = ACTIONS(1514), - [sym_crate] = ACTIONS(1514), - [sym_metavariable] = ACTIONS(1512), - [sym__raw_string_literal_start] = ACTIONS(1512), - [sym_float_literal] = ACTIONS(1512), - }, - [STATE(413)] = { - [sym_line_comment] = STATE(413), - [sym_block_comment] = STATE(413), - [ts_builtin_sym_end] = ACTIONS(1136), - [sym_identifier] = ACTIONS(1134), - [anon_sym_SEMI] = ACTIONS(1136), - [anon_sym_macro_rules_BANG] = ACTIONS(1136), - [anon_sym_LPAREN] = ACTIONS(1136), - [anon_sym_LBRACK] = ACTIONS(1136), - [anon_sym_LBRACE] = ACTIONS(1136), - [anon_sym_RBRACE] = ACTIONS(1136), - [anon_sym_PLUS] = ACTIONS(1134), - [anon_sym_STAR] = ACTIONS(1134), - [anon_sym_QMARK] = ACTIONS(1136), - [anon_sym_u8] = ACTIONS(1134), - [anon_sym_i8] = ACTIONS(1134), - [anon_sym_u16] = ACTIONS(1134), - [anon_sym_i16] = ACTIONS(1134), - [anon_sym_u32] = ACTIONS(1134), - [anon_sym_i32] = ACTIONS(1134), - [anon_sym_u64] = ACTIONS(1134), - [anon_sym_i64] = ACTIONS(1134), - [anon_sym_u128] = ACTIONS(1134), - [anon_sym_i128] = ACTIONS(1134), - [anon_sym_isize] = ACTIONS(1134), - [anon_sym_usize] = ACTIONS(1134), - [anon_sym_f32] = ACTIONS(1134), - [anon_sym_f64] = ACTIONS(1134), - [anon_sym_bool] = ACTIONS(1134), - [anon_sym_str] = ACTIONS(1134), - [anon_sym_char] = ACTIONS(1134), - [anon_sym_DASH] = ACTIONS(1134), - [anon_sym_SLASH] = ACTIONS(1134), - [anon_sym_PERCENT] = ACTIONS(1134), - [anon_sym_CARET] = ACTIONS(1134), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_AMP] = ACTIONS(1134), - [anon_sym_PIPE] = ACTIONS(1134), - [anon_sym_AMP_AMP] = ACTIONS(1136), - [anon_sym_PIPE_PIPE] = ACTIONS(1136), - [anon_sym_LT_LT] = ACTIONS(1134), - [anon_sym_GT_GT] = ACTIONS(1134), - [anon_sym_PLUS_EQ] = ACTIONS(1136), - [anon_sym_DASH_EQ] = ACTIONS(1136), - [anon_sym_STAR_EQ] = ACTIONS(1136), - [anon_sym_SLASH_EQ] = ACTIONS(1136), - [anon_sym_PERCENT_EQ] = ACTIONS(1136), - [anon_sym_CARET_EQ] = ACTIONS(1136), - [anon_sym_AMP_EQ] = ACTIONS(1136), - [anon_sym_PIPE_EQ] = ACTIONS(1136), - [anon_sym_LT_LT_EQ] = ACTIONS(1136), - [anon_sym_GT_GT_EQ] = ACTIONS(1136), - [anon_sym_EQ] = ACTIONS(1134), - [anon_sym_EQ_EQ] = ACTIONS(1136), - [anon_sym_BANG_EQ] = ACTIONS(1136), - [anon_sym_GT] = ACTIONS(1134), - [anon_sym_LT] = ACTIONS(1134), - [anon_sym_GT_EQ] = ACTIONS(1136), - [anon_sym_LT_EQ] = ACTIONS(1136), - [anon_sym_DOT] = ACTIONS(1134), - [anon_sym_DOT_DOT] = ACTIONS(1134), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1136), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1136), - [anon_sym_COLON_COLON] = ACTIONS(1136), - [anon_sym_POUND] = ACTIONS(1136), - [anon_sym_SQUOTE] = ACTIONS(1134), - [anon_sym_as] = ACTIONS(1134), - [anon_sym_async] = ACTIONS(1134), - [anon_sym_break] = ACTIONS(1134), - [anon_sym_const] = ACTIONS(1134), - [anon_sym_continue] = ACTIONS(1134), - [anon_sym_default] = ACTIONS(1134), - [anon_sym_enum] = ACTIONS(1134), - [anon_sym_fn] = ACTIONS(1134), - [anon_sym_for] = ACTIONS(1134), - [anon_sym_gen] = ACTIONS(1134), - [anon_sym_if] = ACTIONS(1134), - [anon_sym_impl] = ACTIONS(1134), - [anon_sym_let] = ACTIONS(1134), - [anon_sym_loop] = ACTIONS(1134), - [anon_sym_match] = ACTIONS(1134), - [anon_sym_mod] = ACTIONS(1134), - [anon_sym_pub] = ACTIONS(1134), - [anon_sym_return] = ACTIONS(1134), - [anon_sym_static] = ACTIONS(1134), - [anon_sym_struct] = ACTIONS(1134), - [anon_sym_trait] = ACTIONS(1134), - [anon_sym_type] = ACTIONS(1134), - [anon_sym_union] = ACTIONS(1134), - [anon_sym_unsafe] = ACTIONS(1134), - [anon_sym_use] = ACTIONS(1134), - [anon_sym_while] = ACTIONS(1134), - [anon_sym_extern] = ACTIONS(1134), - [anon_sym_raw] = ACTIONS(1134), - [anon_sym_yield] = ACTIONS(1134), - [anon_sym_move] = ACTIONS(1134), - [anon_sym_try] = ACTIONS(1134), - [sym_integer_literal] = ACTIONS(1136), - [aux_sym_string_literal_token1] = ACTIONS(1136), - [sym_char_literal] = ACTIONS(1136), - [anon_sym_true] = ACTIONS(1134), - [anon_sym_false] = ACTIONS(1134), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1134), - [sym_super] = ACTIONS(1134), - [sym_crate] = ACTIONS(1134), - [sym_metavariable] = ACTIONS(1136), - [sym__raw_string_literal_start] = ACTIONS(1136), - [sym_float_literal] = ACTIONS(1136), + [sym_crate] = ACTIONS(1472), + [sym_metavariable] = ACTIONS(1470), + [sym__raw_string_literal_start] = ACTIONS(1470), + [sym_float_literal] = ACTIONS(1470), }, - [STATE(414)] = { - [sym_line_comment] = STATE(414), - [sym_block_comment] = STATE(414), - [ts_builtin_sym_end] = ACTIONS(1516), - [sym_identifier] = ACTIONS(1518), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_macro_rules_BANG] = ACTIONS(1516), - [anon_sym_LPAREN] = ACTIONS(1516), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1516), - [anon_sym_RBRACE] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1518), - [anon_sym_STAR] = ACTIONS(1518), - [anon_sym_QMARK] = ACTIONS(1516), - [anon_sym_u8] = ACTIONS(1518), - [anon_sym_i8] = ACTIONS(1518), - [anon_sym_u16] = ACTIONS(1518), - [anon_sym_i16] = ACTIONS(1518), - [anon_sym_u32] = ACTIONS(1518), - [anon_sym_i32] = ACTIONS(1518), - [anon_sym_u64] = ACTIONS(1518), - [anon_sym_i64] = ACTIONS(1518), - [anon_sym_u128] = ACTIONS(1518), - [anon_sym_i128] = ACTIONS(1518), - [anon_sym_isize] = ACTIONS(1518), - [anon_sym_usize] = ACTIONS(1518), - [anon_sym_f32] = ACTIONS(1518), - [anon_sym_f64] = ACTIONS(1518), - [anon_sym_bool] = ACTIONS(1518), - [anon_sym_str] = ACTIONS(1518), - [anon_sym_char] = ACTIONS(1518), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_SLASH] = ACTIONS(1518), - [anon_sym_PERCENT] = ACTIONS(1518), - [anon_sym_CARET] = ACTIONS(1518), - [anon_sym_BANG] = ACTIONS(1518), - [anon_sym_AMP] = ACTIONS(1518), - [anon_sym_PIPE] = ACTIONS(1518), - [anon_sym_AMP_AMP] = ACTIONS(1516), - [anon_sym_PIPE_PIPE] = ACTIONS(1516), - [anon_sym_LT_LT] = ACTIONS(1518), - [anon_sym_GT_GT] = ACTIONS(1518), - [anon_sym_PLUS_EQ] = ACTIONS(1516), - [anon_sym_DASH_EQ] = ACTIONS(1516), - [anon_sym_STAR_EQ] = ACTIONS(1516), - [anon_sym_SLASH_EQ] = ACTIONS(1516), - [anon_sym_PERCENT_EQ] = ACTIONS(1516), - [anon_sym_CARET_EQ] = ACTIONS(1516), - [anon_sym_AMP_EQ] = ACTIONS(1516), - [anon_sym_PIPE_EQ] = ACTIONS(1516), - [anon_sym_LT_LT_EQ] = ACTIONS(1516), - [anon_sym_GT_GT_EQ] = ACTIONS(1516), - [anon_sym_EQ] = ACTIONS(1518), - [anon_sym_EQ_EQ] = ACTIONS(1516), - [anon_sym_BANG_EQ] = ACTIONS(1516), - [anon_sym_GT] = ACTIONS(1518), - [anon_sym_LT] = ACTIONS(1518), - [anon_sym_GT_EQ] = ACTIONS(1516), - [anon_sym_LT_EQ] = ACTIONS(1516), - [anon_sym_DOT] = ACTIONS(1518), - [anon_sym_DOT_DOT] = ACTIONS(1518), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1516), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1516), - [anon_sym_COLON_COLON] = ACTIONS(1516), - [anon_sym_POUND] = ACTIONS(1516), - [anon_sym_SQUOTE] = ACTIONS(1518), - [anon_sym_as] = ACTIONS(1518), - [anon_sym_async] = ACTIONS(1518), - [anon_sym_break] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1518), - [anon_sym_continue] = ACTIONS(1518), - [anon_sym_default] = ACTIONS(1518), - [anon_sym_enum] = ACTIONS(1518), - [anon_sym_fn] = ACTIONS(1518), - [anon_sym_for] = ACTIONS(1518), - [anon_sym_gen] = ACTIONS(1518), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_impl] = ACTIONS(1518), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_loop] = ACTIONS(1518), - [anon_sym_match] = ACTIONS(1518), - [anon_sym_mod] = ACTIONS(1518), - [anon_sym_pub] = ACTIONS(1518), - [anon_sym_return] = ACTIONS(1518), - [anon_sym_static] = ACTIONS(1518), - [anon_sym_struct] = ACTIONS(1518), - [anon_sym_trait] = ACTIONS(1518), - [anon_sym_type] = ACTIONS(1518), - [anon_sym_union] = ACTIONS(1518), - [anon_sym_unsafe] = ACTIONS(1518), - [anon_sym_use] = ACTIONS(1518), - [anon_sym_while] = ACTIONS(1518), - [anon_sym_extern] = ACTIONS(1518), - [anon_sym_raw] = ACTIONS(1518), - [anon_sym_yield] = ACTIONS(1518), - [anon_sym_move] = ACTIONS(1518), - [anon_sym_try] = ACTIONS(1518), - [sym_integer_literal] = ACTIONS(1516), - [aux_sym_string_literal_token1] = ACTIONS(1516), - [sym_char_literal] = ACTIONS(1516), - [anon_sym_true] = ACTIONS(1518), - [anon_sym_false] = ACTIONS(1518), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1518), - [sym_super] = ACTIONS(1518), - [sym_crate] = ACTIONS(1518), - [sym_metavariable] = ACTIONS(1516), - [sym__raw_string_literal_start] = ACTIONS(1516), - [sym_float_literal] = ACTIONS(1516), - }, - [STATE(415)] = { - [sym_line_comment] = STATE(415), - [sym_block_comment] = STATE(415), - [ts_builtin_sym_end] = ACTIONS(1520), - [sym_identifier] = ACTIONS(1522), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_macro_rules_BANG] = ACTIONS(1520), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1520), - [anon_sym_RBRACE] = ACTIONS(1520), - [anon_sym_PLUS] = ACTIONS(1522), - [anon_sym_STAR] = ACTIONS(1522), - [anon_sym_QMARK] = ACTIONS(1520), - [anon_sym_u8] = ACTIONS(1522), - [anon_sym_i8] = ACTIONS(1522), - [anon_sym_u16] = ACTIONS(1522), - [anon_sym_i16] = ACTIONS(1522), - [anon_sym_u32] = ACTIONS(1522), - [anon_sym_i32] = ACTIONS(1522), - [anon_sym_u64] = ACTIONS(1522), - [anon_sym_i64] = ACTIONS(1522), - [anon_sym_u128] = ACTIONS(1522), - [anon_sym_i128] = ACTIONS(1522), - [anon_sym_isize] = ACTIONS(1522), - [anon_sym_usize] = ACTIONS(1522), - [anon_sym_f32] = ACTIONS(1522), - [anon_sym_f64] = ACTIONS(1522), - [anon_sym_bool] = ACTIONS(1522), - [anon_sym_str] = ACTIONS(1522), - [anon_sym_char] = ACTIONS(1522), - [anon_sym_DASH] = ACTIONS(1522), - [anon_sym_SLASH] = ACTIONS(1522), - [anon_sym_PERCENT] = ACTIONS(1522), - [anon_sym_CARET] = ACTIONS(1522), - [anon_sym_BANG] = ACTIONS(1522), - [anon_sym_AMP] = ACTIONS(1522), - [anon_sym_PIPE] = ACTIONS(1522), - [anon_sym_AMP_AMP] = ACTIONS(1520), - [anon_sym_PIPE_PIPE] = ACTIONS(1520), - [anon_sym_LT_LT] = ACTIONS(1522), - [anon_sym_GT_GT] = ACTIONS(1522), - [anon_sym_PLUS_EQ] = ACTIONS(1520), - [anon_sym_DASH_EQ] = ACTIONS(1520), - [anon_sym_STAR_EQ] = ACTIONS(1520), - [anon_sym_SLASH_EQ] = ACTIONS(1520), - [anon_sym_PERCENT_EQ] = ACTIONS(1520), - [anon_sym_CARET_EQ] = ACTIONS(1520), - [anon_sym_AMP_EQ] = ACTIONS(1520), - [anon_sym_PIPE_EQ] = ACTIONS(1520), - [anon_sym_LT_LT_EQ] = ACTIONS(1520), - [anon_sym_GT_GT_EQ] = ACTIONS(1520), - [anon_sym_EQ] = ACTIONS(1522), - [anon_sym_EQ_EQ] = ACTIONS(1520), - [anon_sym_BANG_EQ] = ACTIONS(1520), - [anon_sym_GT] = ACTIONS(1522), - [anon_sym_LT] = ACTIONS(1522), - [anon_sym_GT_EQ] = ACTIONS(1520), - [anon_sym_LT_EQ] = ACTIONS(1520), - [anon_sym_DOT] = ACTIONS(1522), - [anon_sym_DOT_DOT] = ACTIONS(1522), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1520), - [anon_sym_COLON_COLON] = ACTIONS(1520), - [anon_sym_POUND] = ACTIONS(1520), - [anon_sym_SQUOTE] = ACTIONS(1522), - [anon_sym_as] = ACTIONS(1522), - [anon_sym_async] = ACTIONS(1522), - [anon_sym_break] = ACTIONS(1522), - [anon_sym_const] = ACTIONS(1522), - [anon_sym_continue] = ACTIONS(1522), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_enum] = ACTIONS(1522), - [anon_sym_fn] = ACTIONS(1522), - [anon_sym_for] = ACTIONS(1522), - [anon_sym_gen] = ACTIONS(1522), - [anon_sym_if] = ACTIONS(1522), - [anon_sym_impl] = ACTIONS(1522), - [anon_sym_let] = ACTIONS(1522), - [anon_sym_loop] = ACTIONS(1522), - [anon_sym_match] = ACTIONS(1522), - [anon_sym_mod] = ACTIONS(1522), - [anon_sym_pub] = ACTIONS(1522), - [anon_sym_return] = ACTIONS(1522), - [anon_sym_static] = ACTIONS(1522), - [anon_sym_struct] = ACTIONS(1522), - [anon_sym_trait] = ACTIONS(1522), - [anon_sym_type] = ACTIONS(1522), - [anon_sym_union] = ACTIONS(1522), - [anon_sym_unsafe] = ACTIONS(1522), - [anon_sym_use] = ACTIONS(1522), - [anon_sym_while] = ACTIONS(1522), - [anon_sym_extern] = ACTIONS(1522), - [anon_sym_raw] = ACTIONS(1522), - [anon_sym_yield] = ACTIONS(1522), - [anon_sym_move] = ACTIONS(1522), - [anon_sym_try] = ACTIONS(1522), - [sym_integer_literal] = ACTIONS(1520), - [aux_sym_string_literal_token1] = ACTIONS(1520), - [sym_char_literal] = ACTIONS(1520), - [anon_sym_true] = ACTIONS(1522), - [anon_sym_false] = ACTIONS(1522), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1522), - [sym_super] = ACTIONS(1522), - [sym_crate] = ACTIONS(1522), - [sym_metavariable] = ACTIONS(1520), - [sym__raw_string_literal_start] = ACTIONS(1520), - [sym_float_literal] = ACTIONS(1520), - }, - [STATE(416)] = { - [sym_line_comment] = STATE(416), - [sym_block_comment] = STATE(416), - [ts_builtin_sym_end] = ACTIONS(1524), - [sym_identifier] = ACTIONS(1526), - [anon_sym_SEMI] = ACTIONS(1524), - [anon_sym_macro_rules_BANG] = ACTIONS(1524), - [anon_sym_LPAREN] = ACTIONS(1524), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_RBRACE] = ACTIONS(1524), - [anon_sym_PLUS] = ACTIONS(1526), - [anon_sym_STAR] = ACTIONS(1526), - [anon_sym_QMARK] = ACTIONS(1524), - [anon_sym_u8] = ACTIONS(1526), - [anon_sym_i8] = ACTIONS(1526), - [anon_sym_u16] = ACTIONS(1526), - [anon_sym_i16] = ACTIONS(1526), - [anon_sym_u32] = ACTIONS(1526), - [anon_sym_i32] = ACTIONS(1526), - [anon_sym_u64] = ACTIONS(1526), - [anon_sym_i64] = ACTIONS(1526), - [anon_sym_u128] = ACTIONS(1526), - [anon_sym_i128] = ACTIONS(1526), - [anon_sym_isize] = ACTIONS(1526), - [anon_sym_usize] = ACTIONS(1526), - [anon_sym_f32] = ACTIONS(1526), - [anon_sym_f64] = ACTIONS(1526), - [anon_sym_bool] = ACTIONS(1526), - [anon_sym_str] = ACTIONS(1526), - [anon_sym_char] = ACTIONS(1526), - [anon_sym_DASH] = ACTIONS(1526), - [anon_sym_SLASH] = ACTIONS(1526), - [anon_sym_PERCENT] = ACTIONS(1526), - [anon_sym_CARET] = ACTIONS(1526), - [anon_sym_BANG] = ACTIONS(1526), - [anon_sym_AMP] = ACTIONS(1526), - [anon_sym_PIPE] = ACTIONS(1526), - [anon_sym_AMP_AMP] = ACTIONS(1524), - [anon_sym_PIPE_PIPE] = ACTIONS(1524), - [anon_sym_LT_LT] = ACTIONS(1526), - [anon_sym_GT_GT] = ACTIONS(1526), - [anon_sym_PLUS_EQ] = ACTIONS(1524), - [anon_sym_DASH_EQ] = ACTIONS(1524), - [anon_sym_STAR_EQ] = ACTIONS(1524), - [anon_sym_SLASH_EQ] = ACTIONS(1524), - [anon_sym_PERCENT_EQ] = ACTIONS(1524), - [anon_sym_CARET_EQ] = ACTIONS(1524), - [anon_sym_AMP_EQ] = ACTIONS(1524), - [anon_sym_PIPE_EQ] = ACTIONS(1524), - [anon_sym_LT_LT_EQ] = ACTIONS(1524), - [anon_sym_GT_GT_EQ] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(1526), - [anon_sym_EQ_EQ] = ACTIONS(1524), - [anon_sym_BANG_EQ] = ACTIONS(1524), - [anon_sym_GT] = ACTIONS(1526), - [anon_sym_LT] = ACTIONS(1526), - [anon_sym_GT_EQ] = ACTIONS(1524), - [anon_sym_LT_EQ] = ACTIONS(1524), - [anon_sym_DOT] = ACTIONS(1526), - [anon_sym_DOT_DOT] = ACTIONS(1526), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1524), - [anon_sym_COLON_COLON] = ACTIONS(1524), - [anon_sym_POUND] = ACTIONS(1524), - [anon_sym_SQUOTE] = ACTIONS(1526), - [anon_sym_as] = ACTIONS(1526), - [anon_sym_async] = ACTIONS(1526), - [anon_sym_break] = ACTIONS(1526), - [anon_sym_const] = ACTIONS(1526), - [anon_sym_continue] = ACTIONS(1526), - [anon_sym_default] = ACTIONS(1526), - [anon_sym_enum] = ACTIONS(1526), - [anon_sym_fn] = ACTIONS(1526), - [anon_sym_for] = ACTIONS(1526), - [anon_sym_gen] = ACTIONS(1526), - [anon_sym_if] = ACTIONS(1526), - [anon_sym_impl] = ACTIONS(1526), - [anon_sym_let] = ACTIONS(1526), - [anon_sym_loop] = ACTIONS(1526), - [anon_sym_match] = ACTIONS(1526), - [anon_sym_mod] = ACTIONS(1526), - [anon_sym_pub] = ACTIONS(1526), - [anon_sym_return] = ACTIONS(1526), - [anon_sym_static] = ACTIONS(1526), - [anon_sym_struct] = ACTIONS(1526), - [anon_sym_trait] = ACTIONS(1526), - [anon_sym_type] = ACTIONS(1526), - [anon_sym_union] = ACTIONS(1526), - [anon_sym_unsafe] = ACTIONS(1526), - [anon_sym_use] = ACTIONS(1526), - [anon_sym_while] = ACTIONS(1526), - [anon_sym_extern] = ACTIONS(1526), - [anon_sym_raw] = ACTIONS(1526), - [anon_sym_yield] = ACTIONS(1526), - [anon_sym_move] = ACTIONS(1526), - [anon_sym_try] = ACTIONS(1526), - [sym_integer_literal] = ACTIONS(1524), - [aux_sym_string_literal_token1] = ACTIONS(1524), - [sym_char_literal] = ACTIONS(1524), - [anon_sym_true] = ACTIONS(1526), - [anon_sym_false] = ACTIONS(1526), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1526), - [sym_super] = ACTIONS(1526), - [sym_crate] = ACTIONS(1526), - [sym_metavariable] = ACTIONS(1524), - [sym__raw_string_literal_start] = ACTIONS(1524), - [sym_float_literal] = ACTIONS(1524), - }, - [STATE(417)] = { - [sym_line_comment] = STATE(417), - [sym_block_comment] = STATE(417), + [399] = { + [sym_line_comment] = STATE(399), + [sym_block_comment] = STATE(399), + [ts_builtin_sym_end] = ACTIONS(1474), + [sym_identifier] = ACTIONS(1476), + [anon_sym_SEMI] = ACTIONS(1474), + [anon_sym_macro_rules_BANG] = ACTIONS(1474), + [anon_sym_LPAREN] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(1474), + [anon_sym_LBRACE] = ACTIONS(1474), + [anon_sym_RBRACE] = ACTIONS(1474), + [anon_sym_PLUS] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1476), + [anon_sym_QMARK] = ACTIONS(1474), + [anon_sym_u8] = ACTIONS(1476), + [anon_sym_i8] = ACTIONS(1476), + [anon_sym_u16] = ACTIONS(1476), + [anon_sym_i16] = ACTIONS(1476), + [anon_sym_u32] = ACTIONS(1476), + [anon_sym_i32] = ACTIONS(1476), + [anon_sym_u64] = ACTIONS(1476), + [anon_sym_i64] = ACTIONS(1476), + [anon_sym_u128] = ACTIONS(1476), + [anon_sym_i128] = ACTIONS(1476), + [anon_sym_isize] = ACTIONS(1476), + [anon_sym_usize] = ACTIONS(1476), + [anon_sym_f32] = ACTIONS(1476), + [anon_sym_f64] = ACTIONS(1476), + [anon_sym_bool] = ACTIONS(1476), + [anon_sym_str] = ACTIONS(1476), + [anon_sym_char] = ACTIONS(1476), + [anon_sym_DASH] = ACTIONS(1476), + [anon_sym_SLASH] = ACTIONS(1476), + [anon_sym_PERCENT] = ACTIONS(1476), + [anon_sym_CARET] = ACTIONS(1476), + [anon_sym_BANG] = ACTIONS(1476), + [anon_sym_AMP] = ACTIONS(1476), + [anon_sym_PIPE] = ACTIONS(1476), + [anon_sym_AMP_AMP] = ACTIONS(1474), + [anon_sym_PIPE_PIPE] = ACTIONS(1474), + [anon_sym_LT_LT] = ACTIONS(1476), + [anon_sym_GT_GT] = ACTIONS(1476), + [anon_sym_PLUS_EQ] = ACTIONS(1474), + [anon_sym_DASH_EQ] = ACTIONS(1474), + [anon_sym_STAR_EQ] = ACTIONS(1474), + [anon_sym_SLASH_EQ] = ACTIONS(1474), + [anon_sym_PERCENT_EQ] = ACTIONS(1474), + [anon_sym_CARET_EQ] = ACTIONS(1474), + [anon_sym_AMP_EQ] = ACTIONS(1474), + [anon_sym_PIPE_EQ] = ACTIONS(1474), + [anon_sym_LT_LT_EQ] = ACTIONS(1474), + [anon_sym_GT_GT_EQ] = ACTIONS(1474), + [anon_sym_EQ] = ACTIONS(1476), + [anon_sym_EQ_EQ] = ACTIONS(1474), + [anon_sym_BANG_EQ] = ACTIONS(1474), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_GT_EQ] = ACTIONS(1474), + [anon_sym_LT_EQ] = ACTIONS(1474), + [anon_sym_DOT] = ACTIONS(1476), + [anon_sym_DOT_DOT] = ACTIONS(1476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1474), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1474), + [anon_sym_COLON_COLON] = ACTIONS(1474), + [anon_sym_POUND] = ACTIONS(1474), + [anon_sym_SQUOTE] = ACTIONS(1476), + [anon_sym_as] = ACTIONS(1476), + [anon_sym_async] = ACTIONS(1476), + [anon_sym_break] = ACTIONS(1476), + [anon_sym_const] = ACTIONS(1476), + [anon_sym_continue] = ACTIONS(1476), + [anon_sym_default] = ACTIONS(1476), + [anon_sym_enum] = ACTIONS(1476), + [anon_sym_fn] = ACTIONS(1476), + [anon_sym_for] = ACTIONS(1476), + [anon_sym_gen] = ACTIONS(1476), + [anon_sym_if] = ACTIONS(1476), + [anon_sym_impl] = ACTIONS(1476), + [anon_sym_let] = ACTIONS(1476), + [anon_sym_loop] = ACTIONS(1476), + [anon_sym_match] = ACTIONS(1476), + [anon_sym_mod] = ACTIONS(1476), + [anon_sym_pub] = ACTIONS(1476), + [anon_sym_return] = ACTIONS(1476), + [anon_sym_static] = ACTIONS(1476), + [anon_sym_struct] = ACTIONS(1476), + [anon_sym_trait] = ACTIONS(1476), + [anon_sym_type] = ACTIONS(1476), + [anon_sym_union] = ACTIONS(1476), + [anon_sym_unsafe] = ACTIONS(1476), + [anon_sym_use] = ACTIONS(1476), + [anon_sym_while] = ACTIONS(1476), + [anon_sym_extern] = ACTIONS(1476), + [anon_sym_raw] = ACTIONS(1476), + [anon_sym_yield] = ACTIONS(1476), + [anon_sym_move] = ACTIONS(1476), + [anon_sym_try] = ACTIONS(1476), + [sym_integer_literal] = ACTIONS(1474), + [aux_sym_string_literal_token1] = ACTIONS(1474), + [sym_char_literal] = ACTIONS(1474), + [anon_sym_true] = ACTIONS(1476), + [anon_sym_false] = ACTIONS(1476), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1476), + [sym_super] = ACTIONS(1476), + [sym_crate] = ACTIONS(1476), + [sym_metavariable] = ACTIONS(1474), + [sym__raw_string_literal_start] = ACTIONS(1474), + [sym_float_literal] = ACTIONS(1474), + }, + [400] = { + [sym_line_comment] = STATE(400), + [sym_block_comment] = STATE(400), + [ts_builtin_sym_end] = ACTIONS(1478), + [sym_identifier] = ACTIONS(1480), + [anon_sym_SEMI] = ACTIONS(1478), + [anon_sym_macro_rules_BANG] = ACTIONS(1478), + [anon_sym_LPAREN] = ACTIONS(1478), + [anon_sym_LBRACK] = ACTIONS(1478), + [anon_sym_LBRACE] = ACTIONS(1478), + [anon_sym_RBRACE] = ACTIONS(1478), + [anon_sym_PLUS] = ACTIONS(1480), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_QMARK] = ACTIONS(1478), + [anon_sym_u8] = ACTIONS(1480), + [anon_sym_i8] = ACTIONS(1480), + [anon_sym_u16] = ACTIONS(1480), + [anon_sym_i16] = ACTIONS(1480), + [anon_sym_u32] = ACTIONS(1480), + [anon_sym_i32] = ACTIONS(1480), + [anon_sym_u64] = ACTIONS(1480), + [anon_sym_i64] = ACTIONS(1480), + [anon_sym_u128] = ACTIONS(1480), + [anon_sym_i128] = ACTIONS(1480), + [anon_sym_isize] = ACTIONS(1480), + [anon_sym_usize] = ACTIONS(1480), + [anon_sym_f32] = ACTIONS(1480), + [anon_sym_f64] = ACTIONS(1480), + [anon_sym_bool] = ACTIONS(1480), + [anon_sym_str] = ACTIONS(1480), + [anon_sym_char] = ACTIONS(1480), + [anon_sym_DASH] = ACTIONS(1480), + [anon_sym_SLASH] = ACTIONS(1480), + [anon_sym_PERCENT] = ACTIONS(1480), + [anon_sym_CARET] = ACTIONS(1480), + [anon_sym_BANG] = ACTIONS(1480), + [anon_sym_AMP] = ACTIONS(1480), + [anon_sym_PIPE] = ACTIONS(1480), + [anon_sym_AMP_AMP] = ACTIONS(1478), + [anon_sym_PIPE_PIPE] = ACTIONS(1478), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [anon_sym_PLUS_EQ] = ACTIONS(1478), + [anon_sym_DASH_EQ] = ACTIONS(1478), + [anon_sym_STAR_EQ] = ACTIONS(1478), + [anon_sym_SLASH_EQ] = ACTIONS(1478), + [anon_sym_PERCENT_EQ] = ACTIONS(1478), + [anon_sym_CARET_EQ] = ACTIONS(1478), + [anon_sym_AMP_EQ] = ACTIONS(1478), + [anon_sym_PIPE_EQ] = ACTIONS(1478), + [anon_sym_LT_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_GT_EQ] = ACTIONS(1478), + [anon_sym_EQ] = ACTIONS(1480), + [anon_sym_EQ_EQ] = ACTIONS(1478), + [anon_sym_BANG_EQ] = ACTIONS(1478), + [anon_sym_GT] = ACTIONS(1480), + [anon_sym_LT] = ACTIONS(1480), + [anon_sym_GT_EQ] = ACTIONS(1478), + [anon_sym_LT_EQ] = ACTIONS(1478), + [anon_sym_DOT] = ACTIONS(1480), + [anon_sym_DOT_DOT] = ACTIONS(1480), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1478), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1478), + [anon_sym_COLON_COLON] = ACTIONS(1478), + [anon_sym_POUND] = ACTIONS(1478), + [anon_sym_SQUOTE] = ACTIONS(1480), + [anon_sym_as] = ACTIONS(1480), + [anon_sym_async] = ACTIONS(1480), + [anon_sym_break] = ACTIONS(1480), + [anon_sym_const] = ACTIONS(1480), + [anon_sym_continue] = ACTIONS(1480), + [anon_sym_default] = ACTIONS(1480), + [anon_sym_enum] = ACTIONS(1480), + [anon_sym_fn] = ACTIONS(1480), + [anon_sym_for] = ACTIONS(1480), + [anon_sym_gen] = ACTIONS(1480), + [anon_sym_if] = ACTIONS(1480), + [anon_sym_impl] = ACTIONS(1480), + [anon_sym_let] = ACTIONS(1480), + [anon_sym_loop] = ACTIONS(1480), + [anon_sym_match] = ACTIONS(1480), + [anon_sym_mod] = ACTIONS(1480), + [anon_sym_pub] = ACTIONS(1480), + [anon_sym_return] = ACTIONS(1480), + [anon_sym_static] = ACTIONS(1480), + [anon_sym_struct] = ACTIONS(1480), + [anon_sym_trait] = ACTIONS(1480), + [anon_sym_type] = ACTIONS(1480), + [anon_sym_union] = ACTIONS(1480), + [anon_sym_unsafe] = ACTIONS(1480), + [anon_sym_use] = ACTIONS(1480), + [anon_sym_while] = ACTIONS(1480), + [anon_sym_extern] = ACTIONS(1480), + [anon_sym_raw] = ACTIONS(1480), + [anon_sym_yield] = ACTIONS(1480), + [anon_sym_move] = ACTIONS(1480), + [anon_sym_try] = ACTIONS(1480), + [sym_integer_literal] = ACTIONS(1478), + [aux_sym_string_literal_token1] = ACTIONS(1478), + [sym_char_literal] = ACTIONS(1478), + [anon_sym_true] = ACTIONS(1480), + [anon_sym_false] = ACTIONS(1480), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1480), + [sym_super] = ACTIONS(1480), + [sym_crate] = ACTIONS(1480), + [sym_metavariable] = ACTIONS(1478), + [sym__raw_string_literal_start] = ACTIONS(1478), + [sym_float_literal] = ACTIONS(1478), + }, + [401] = { + [sym_line_comment] = STATE(401), + [sym_block_comment] = STATE(401), + [ts_builtin_sym_end] = ACTIONS(1482), + [sym_identifier] = ACTIONS(1484), + [anon_sym_SEMI] = ACTIONS(1482), + [anon_sym_macro_rules_BANG] = ACTIONS(1482), + [anon_sym_LPAREN] = ACTIONS(1482), + [anon_sym_LBRACK] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(1482), + [anon_sym_RBRACE] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1484), + [anon_sym_STAR] = ACTIONS(1484), + [anon_sym_QMARK] = ACTIONS(1482), + [anon_sym_u8] = ACTIONS(1484), + [anon_sym_i8] = ACTIONS(1484), + [anon_sym_u16] = ACTIONS(1484), + [anon_sym_i16] = ACTIONS(1484), + [anon_sym_u32] = ACTIONS(1484), + [anon_sym_i32] = ACTIONS(1484), + [anon_sym_u64] = ACTIONS(1484), + [anon_sym_i64] = ACTIONS(1484), + [anon_sym_u128] = ACTIONS(1484), + [anon_sym_i128] = ACTIONS(1484), + [anon_sym_isize] = ACTIONS(1484), + [anon_sym_usize] = ACTIONS(1484), + [anon_sym_f32] = ACTIONS(1484), + [anon_sym_f64] = ACTIONS(1484), + [anon_sym_bool] = ACTIONS(1484), + [anon_sym_str] = ACTIONS(1484), + [anon_sym_char] = ACTIONS(1484), + [anon_sym_DASH] = ACTIONS(1484), + [anon_sym_SLASH] = ACTIONS(1484), + [anon_sym_PERCENT] = ACTIONS(1484), + [anon_sym_CARET] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1484), + [anon_sym_AMP] = ACTIONS(1484), + [anon_sym_PIPE] = ACTIONS(1484), + [anon_sym_AMP_AMP] = ACTIONS(1482), + [anon_sym_PIPE_PIPE] = ACTIONS(1482), + [anon_sym_LT_LT] = ACTIONS(1484), + [anon_sym_GT_GT] = ACTIONS(1484), + [anon_sym_PLUS_EQ] = ACTIONS(1482), + [anon_sym_DASH_EQ] = ACTIONS(1482), + [anon_sym_STAR_EQ] = ACTIONS(1482), + [anon_sym_SLASH_EQ] = ACTIONS(1482), + [anon_sym_PERCENT_EQ] = ACTIONS(1482), + [anon_sym_CARET_EQ] = ACTIONS(1482), + [anon_sym_AMP_EQ] = ACTIONS(1482), + [anon_sym_PIPE_EQ] = ACTIONS(1482), + [anon_sym_LT_LT_EQ] = ACTIONS(1482), + [anon_sym_GT_GT_EQ] = ACTIONS(1482), + [anon_sym_EQ] = ACTIONS(1484), + [anon_sym_EQ_EQ] = ACTIONS(1482), + [anon_sym_BANG_EQ] = ACTIONS(1482), + [anon_sym_GT] = ACTIONS(1484), + [anon_sym_LT] = ACTIONS(1484), + [anon_sym_GT_EQ] = ACTIONS(1482), + [anon_sym_LT_EQ] = ACTIONS(1482), + [anon_sym_DOT] = ACTIONS(1484), + [anon_sym_DOT_DOT] = ACTIONS(1484), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1482), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1482), + [anon_sym_COLON_COLON] = ACTIONS(1482), + [anon_sym_POUND] = ACTIONS(1482), + [anon_sym_SQUOTE] = ACTIONS(1484), + [anon_sym_as] = ACTIONS(1484), + [anon_sym_async] = ACTIONS(1484), + [anon_sym_break] = ACTIONS(1484), + [anon_sym_const] = ACTIONS(1484), + [anon_sym_continue] = ACTIONS(1484), + [anon_sym_default] = ACTIONS(1484), + [anon_sym_enum] = ACTIONS(1484), + [anon_sym_fn] = ACTIONS(1484), + [anon_sym_for] = ACTIONS(1484), + [anon_sym_gen] = ACTIONS(1484), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_impl] = ACTIONS(1484), + [anon_sym_let] = ACTIONS(1484), + [anon_sym_loop] = ACTIONS(1484), + [anon_sym_match] = ACTIONS(1484), + [anon_sym_mod] = ACTIONS(1484), + [anon_sym_pub] = ACTIONS(1484), + [anon_sym_return] = ACTIONS(1484), + [anon_sym_static] = ACTIONS(1484), + [anon_sym_struct] = ACTIONS(1484), + [anon_sym_trait] = ACTIONS(1484), + [anon_sym_type] = ACTIONS(1484), + [anon_sym_union] = ACTIONS(1484), + [anon_sym_unsafe] = ACTIONS(1484), + [anon_sym_use] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(1484), + [anon_sym_extern] = ACTIONS(1484), + [anon_sym_raw] = ACTIONS(1484), + [anon_sym_yield] = ACTIONS(1484), + [anon_sym_move] = ACTIONS(1484), + [anon_sym_try] = ACTIONS(1484), + [sym_integer_literal] = ACTIONS(1482), + [aux_sym_string_literal_token1] = ACTIONS(1482), + [sym_char_literal] = ACTIONS(1482), + [anon_sym_true] = ACTIONS(1484), + [anon_sym_false] = ACTIONS(1484), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1484), + [sym_super] = ACTIONS(1484), + [sym_crate] = ACTIONS(1484), + [sym_metavariable] = ACTIONS(1482), + [sym__raw_string_literal_start] = ACTIONS(1482), + [sym_float_literal] = ACTIONS(1482), + }, + [402] = { + [sym_line_comment] = STATE(402), + [sym_block_comment] = STATE(402), + [ts_builtin_sym_end] = ACTIONS(1486), + [sym_identifier] = ACTIONS(1488), + [anon_sym_SEMI] = ACTIONS(1486), + [anon_sym_macro_rules_BANG] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1486), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_RBRACE] = ACTIONS(1486), + [anon_sym_PLUS] = ACTIONS(1488), + [anon_sym_STAR] = ACTIONS(1488), + [anon_sym_QMARK] = ACTIONS(1486), + [anon_sym_u8] = ACTIONS(1488), + [anon_sym_i8] = ACTIONS(1488), + [anon_sym_u16] = ACTIONS(1488), + [anon_sym_i16] = ACTIONS(1488), + [anon_sym_u32] = ACTIONS(1488), + [anon_sym_i32] = ACTIONS(1488), + [anon_sym_u64] = ACTIONS(1488), + [anon_sym_i64] = ACTIONS(1488), + [anon_sym_u128] = ACTIONS(1488), + [anon_sym_i128] = ACTIONS(1488), + [anon_sym_isize] = ACTIONS(1488), + [anon_sym_usize] = ACTIONS(1488), + [anon_sym_f32] = ACTIONS(1488), + [anon_sym_f64] = ACTIONS(1488), + [anon_sym_bool] = ACTIONS(1488), + [anon_sym_str] = ACTIONS(1488), + [anon_sym_char] = ACTIONS(1488), + [anon_sym_DASH] = ACTIONS(1488), + [anon_sym_SLASH] = ACTIONS(1488), + [anon_sym_PERCENT] = ACTIONS(1488), + [anon_sym_CARET] = ACTIONS(1488), + [anon_sym_BANG] = ACTIONS(1488), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_PIPE] = ACTIONS(1488), + [anon_sym_AMP_AMP] = ACTIONS(1486), + [anon_sym_PIPE_PIPE] = ACTIONS(1486), + [anon_sym_LT_LT] = ACTIONS(1488), + [anon_sym_GT_GT] = ACTIONS(1488), + [anon_sym_PLUS_EQ] = ACTIONS(1486), + [anon_sym_DASH_EQ] = ACTIONS(1486), + [anon_sym_STAR_EQ] = ACTIONS(1486), + [anon_sym_SLASH_EQ] = ACTIONS(1486), + [anon_sym_PERCENT_EQ] = ACTIONS(1486), + [anon_sym_CARET_EQ] = ACTIONS(1486), + [anon_sym_AMP_EQ] = ACTIONS(1486), + [anon_sym_PIPE_EQ] = ACTIONS(1486), + [anon_sym_LT_LT_EQ] = ACTIONS(1486), + [anon_sym_GT_GT_EQ] = ACTIONS(1486), + [anon_sym_EQ] = ACTIONS(1488), + [anon_sym_EQ_EQ] = ACTIONS(1486), + [anon_sym_BANG_EQ] = ACTIONS(1486), + [anon_sym_GT] = ACTIONS(1488), + [anon_sym_LT] = ACTIONS(1488), + [anon_sym_GT_EQ] = ACTIONS(1486), + [anon_sym_LT_EQ] = ACTIONS(1486), + [anon_sym_DOT] = ACTIONS(1488), + [anon_sym_DOT_DOT] = ACTIONS(1488), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1486), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1486), + [anon_sym_COLON_COLON] = ACTIONS(1486), + [anon_sym_POUND] = ACTIONS(1486), + [anon_sym_SQUOTE] = ACTIONS(1488), + [anon_sym_as] = ACTIONS(1488), + [anon_sym_async] = ACTIONS(1488), + [anon_sym_break] = ACTIONS(1488), + [anon_sym_const] = ACTIONS(1488), + [anon_sym_continue] = ACTIONS(1488), + [anon_sym_default] = ACTIONS(1488), + [anon_sym_enum] = ACTIONS(1488), + [anon_sym_fn] = ACTIONS(1488), + [anon_sym_for] = ACTIONS(1488), + [anon_sym_gen] = ACTIONS(1488), + [anon_sym_if] = ACTIONS(1488), + [anon_sym_impl] = ACTIONS(1488), + [anon_sym_let] = ACTIONS(1488), + [anon_sym_loop] = ACTIONS(1488), + [anon_sym_match] = ACTIONS(1488), + [anon_sym_mod] = ACTIONS(1488), + [anon_sym_pub] = ACTIONS(1488), + [anon_sym_return] = ACTIONS(1488), + [anon_sym_static] = ACTIONS(1488), + [anon_sym_struct] = ACTIONS(1488), + [anon_sym_trait] = ACTIONS(1488), + [anon_sym_type] = ACTIONS(1488), + [anon_sym_union] = ACTIONS(1488), + [anon_sym_unsafe] = ACTIONS(1488), + [anon_sym_use] = ACTIONS(1488), + [anon_sym_while] = ACTIONS(1488), + [anon_sym_extern] = ACTIONS(1488), + [anon_sym_raw] = ACTIONS(1488), + [anon_sym_yield] = ACTIONS(1488), + [anon_sym_move] = ACTIONS(1488), + [anon_sym_try] = ACTIONS(1488), + [sym_integer_literal] = ACTIONS(1486), + [aux_sym_string_literal_token1] = ACTIONS(1486), + [sym_char_literal] = ACTIONS(1486), + [anon_sym_true] = ACTIONS(1488), + [anon_sym_false] = ACTIONS(1488), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1488), + [sym_super] = ACTIONS(1488), + [sym_crate] = ACTIONS(1488), + [sym_metavariable] = ACTIONS(1486), + [sym__raw_string_literal_start] = ACTIONS(1486), + [sym_float_literal] = ACTIONS(1486), + }, + [403] = { + [sym_line_comment] = STATE(403), + [sym_block_comment] = STATE(403), + [ts_builtin_sym_end] = ACTIONS(1490), + [sym_identifier] = ACTIONS(1492), + [anon_sym_SEMI] = ACTIONS(1490), + [anon_sym_macro_rules_BANG] = ACTIONS(1490), + [anon_sym_LPAREN] = ACTIONS(1490), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_LBRACE] = ACTIONS(1490), + [anon_sym_RBRACE] = ACTIONS(1490), + [anon_sym_PLUS] = ACTIONS(1492), + [anon_sym_STAR] = ACTIONS(1492), + [anon_sym_QMARK] = ACTIONS(1490), + [anon_sym_u8] = ACTIONS(1492), + [anon_sym_i8] = ACTIONS(1492), + [anon_sym_u16] = ACTIONS(1492), + [anon_sym_i16] = ACTIONS(1492), + [anon_sym_u32] = ACTIONS(1492), + [anon_sym_i32] = ACTIONS(1492), + [anon_sym_u64] = ACTIONS(1492), + [anon_sym_i64] = ACTIONS(1492), + [anon_sym_u128] = ACTIONS(1492), + [anon_sym_i128] = ACTIONS(1492), + [anon_sym_isize] = ACTIONS(1492), + [anon_sym_usize] = ACTIONS(1492), + [anon_sym_f32] = ACTIONS(1492), + [anon_sym_f64] = ACTIONS(1492), + [anon_sym_bool] = ACTIONS(1492), + [anon_sym_str] = ACTIONS(1492), + [anon_sym_char] = ACTIONS(1492), + [anon_sym_DASH] = ACTIONS(1492), + [anon_sym_SLASH] = ACTIONS(1492), + [anon_sym_PERCENT] = ACTIONS(1492), + [anon_sym_CARET] = ACTIONS(1492), + [anon_sym_BANG] = ACTIONS(1492), + [anon_sym_AMP] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_AMP_AMP] = ACTIONS(1490), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym_LT_LT] = ACTIONS(1492), + [anon_sym_GT_GT] = ACTIONS(1492), + [anon_sym_PLUS_EQ] = ACTIONS(1490), + [anon_sym_DASH_EQ] = ACTIONS(1490), + [anon_sym_STAR_EQ] = ACTIONS(1490), + [anon_sym_SLASH_EQ] = ACTIONS(1490), + [anon_sym_PERCENT_EQ] = ACTIONS(1490), + [anon_sym_CARET_EQ] = ACTIONS(1490), + [anon_sym_AMP_EQ] = ACTIONS(1490), + [anon_sym_PIPE_EQ] = ACTIONS(1490), + [anon_sym_LT_LT_EQ] = ACTIONS(1490), + [anon_sym_GT_GT_EQ] = ACTIONS(1490), + [anon_sym_EQ] = ACTIONS(1492), + [anon_sym_EQ_EQ] = ACTIONS(1490), + [anon_sym_BANG_EQ] = ACTIONS(1490), + [anon_sym_GT] = ACTIONS(1492), + [anon_sym_LT] = ACTIONS(1492), + [anon_sym_GT_EQ] = ACTIONS(1490), + [anon_sym_LT_EQ] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1492), + [anon_sym_DOT_DOT] = ACTIONS(1492), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1490), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1490), + [anon_sym_COLON_COLON] = ACTIONS(1490), + [anon_sym_POUND] = ACTIONS(1490), + [anon_sym_SQUOTE] = ACTIONS(1492), + [anon_sym_as] = ACTIONS(1492), + [anon_sym_async] = ACTIONS(1492), + [anon_sym_break] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1492), + [anon_sym_continue] = ACTIONS(1492), + [anon_sym_default] = ACTIONS(1492), + [anon_sym_enum] = ACTIONS(1492), + [anon_sym_fn] = ACTIONS(1492), + [anon_sym_for] = ACTIONS(1492), + [anon_sym_gen] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1492), + [anon_sym_impl] = ACTIONS(1492), + [anon_sym_let] = ACTIONS(1492), + [anon_sym_loop] = ACTIONS(1492), + [anon_sym_match] = ACTIONS(1492), + [anon_sym_mod] = ACTIONS(1492), + [anon_sym_pub] = ACTIONS(1492), + [anon_sym_return] = ACTIONS(1492), + [anon_sym_static] = ACTIONS(1492), + [anon_sym_struct] = ACTIONS(1492), + [anon_sym_trait] = ACTIONS(1492), + [anon_sym_type] = ACTIONS(1492), + [anon_sym_union] = ACTIONS(1492), + [anon_sym_unsafe] = ACTIONS(1492), + [anon_sym_use] = ACTIONS(1492), + [anon_sym_while] = ACTIONS(1492), + [anon_sym_extern] = ACTIONS(1492), + [anon_sym_raw] = ACTIONS(1492), + [anon_sym_yield] = ACTIONS(1492), + [anon_sym_move] = ACTIONS(1492), + [anon_sym_try] = ACTIONS(1492), + [sym_integer_literal] = ACTIONS(1490), + [aux_sym_string_literal_token1] = ACTIONS(1490), + [sym_char_literal] = ACTIONS(1490), + [anon_sym_true] = ACTIONS(1492), + [anon_sym_false] = ACTIONS(1492), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1492), + [sym_super] = ACTIONS(1492), + [sym_crate] = ACTIONS(1492), + [sym_metavariable] = ACTIONS(1490), + [sym__raw_string_literal_start] = ACTIONS(1490), + [sym_float_literal] = ACTIONS(1490), + }, + [404] = { + [sym_line_comment] = STATE(404), + [sym_block_comment] = STATE(404), + [ts_builtin_sym_end] = ACTIONS(1494), + [sym_identifier] = ACTIONS(1496), + [anon_sym_SEMI] = ACTIONS(1494), + [anon_sym_macro_rules_BANG] = ACTIONS(1494), + [anon_sym_LPAREN] = ACTIONS(1494), + [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_LBRACE] = ACTIONS(1494), + [anon_sym_RBRACE] = ACTIONS(1494), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(1496), + [anon_sym_QMARK] = ACTIONS(1494), + [anon_sym_u8] = ACTIONS(1496), + [anon_sym_i8] = ACTIONS(1496), + [anon_sym_u16] = ACTIONS(1496), + [anon_sym_i16] = ACTIONS(1496), + [anon_sym_u32] = ACTIONS(1496), + [anon_sym_i32] = ACTIONS(1496), + [anon_sym_u64] = ACTIONS(1496), + [anon_sym_i64] = ACTIONS(1496), + [anon_sym_u128] = ACTIONS(1496), + [anon_sym_i128] = ACTIONS(1496), + [anon_sym_isize] = ACTIONS(1496), + [anon_sym_usize] = ACTIONS(1496), + [anon_sym_f32] = ACTIONS(1496), + [anon_sym_f64] = ACTIONS(1496), + [anon_sym_bool] = ACTIONS(1496), + [anon_sym_str] = ACTIONS(1496), + [anon_sym_char] = ACTIONS(1496), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_SLASH] = ACTIONS(1496), + [anon_sym_PERCENT] = ACTIONS(1496), + [anon_sym_CARET] = ACTIONS(1496), + [anon_sym_BANG] = ACTIONS(1496), + [anon_sym_AMP] = ACTIONS(1496), + [anon_sym_PIPE] = ACTIONS(1496), + [anon_sym_AMP_AMP] = ACTIONS(1494), + [anon_sym_PIPE_PIPE] = ACTIONS(1494), + [anon_sym_LT_LT] = ACTIONS(1496), + [anon_sym_GT_GT] = ACTIONS(1496), + [anon_sym_PLUS_EQ] = ACTIONS(1494), + [anon_sym_DASH_EQ] = ACTIONS(1494), + [anon_sym_STAR_EQ] = ACTIONS(1494), + [anon_sym_SLASH_EQ] = ACTIONS(1494), + [anon_sym_PERCENT_EQ] = ACTIONS(1494), + [anon_sym_CARET_EQ] = ACTIONS(1494), + [anon_sym_AMP_EQ] = ACTIONS(1494), + [anon_sym_PIPE_EQ] = ACTIONS(1494), + [anon_sym_LT_LT_EQ] = ACTIONS(1494), + [anon_sym_GT_GT_EQ] = ACTIONS(1494), + [anon_sym_EQ] = ACTIONS(1496), + [anon_sym_EQ_EQ] = ACTIONS(1494), + [anon_sym_BANG_EQ] = ACTIONS(1494), + [anon_sym_GT] = ACTIONS(1496), + [anon_sym_LT] = ACTIONS(1496), + [anon_sym_GT_EQ] = ACTIONS(1494), + [anon_sym_LT_EQ] = ACTIONS(1494), + [anon_sym_DOT] = ACTIONS(1496), + [anon_sym_DOT_DOT] = ACTIONS(1496), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1494), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1494), + [anon_sym_COLON_COLON] = ACTIONS(1494), + [anon_sym_POUND] = ACTIONS(1494), + [anon_sym_SQUOTE] = ACTIONS(1496), + [anon_sym_as] = ACTIONS(1496), + [anon_sym_async] = ACTIONS(1496), + [anon_sym_break] = ACTIONS(1496), + [anon_sym_const] = ACTIONS(1496), + [anon_sym_continue] = ACTIONS(1496), + [anon_sym_default] = ACTIONS(1496), + [anon_sym_enum] = ACTIONS(1496), + [anon_sym_fn] = ACTIONS(1496), + [anon_sym_for] = ACTIONS(1496), + [anon_sym_gen] = ACTIONS(1496), + [anon_sym_if] = ACTIONS(1496), + [anon_sym_impl] = ACTIONS(1496), + [anon_sym_let] = ACTIONS(1496), + [anon_sym_loop] = ACTIONS(1496), + [anon_sym_match] = ACTIONS(1496), + [anon_sym_mod] = ACTIONS(1496), + [anon_sym_pub] = ACTIONS(1496), + [anon_sym_return] = ACTIONS(1496), + [anon_sym_static] = ACTIONS(1496), + [anon_sym_struct] = ACTIONS(1496), + [anon_sym_trait] = ACTIONS(1496), + [anon_sym_type] = ACTIONS(1496), + [anon_sym_union] = ACTIONS(1496), + [anon_sym_unsafe] = ACTIONS(1496), + [anon_sym_use] = ACTIONS(1496), + [anon_sym_while] = ACTIONS(1496), + [anon_sym_extern] = ACTIONS(1496), + [anon_sym_raw] = ACTIONS(1496), + [anon_sym_yield] = ACTIONS(1496), + [anon_sym_move] = ACTIONS(1496), + [anon_sym_try] = ACTIONS(1496), + [sym_integer_literal] = ACTIONS(1494), + [aux_sym_string_literal_token1] = ACTIONS(1494), + [sym_char_literal] = ACTIONS(1494), + [anon_sym_true] = ACTIONS(1496), + [anon_sym_false] = ACTIONS(1496), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1496), + [sym_super] = ACTIONS(1496), + [sym_crate] = ACTIONS(1496), + [sym_metavariable] = ACTIONS(1494), + [sym__raw_string_literal_start] = ACTIONS(1494), + [sym_float_literal] = ACTIONS(1494), + }, + [405] = { + [sym_line_comment] = STATE(405), + [sym_block_comment] = STATE(405), + [ts_builtin_sym_end] = ACTIONS(1498), + [sym_identifier] = ACTIONS(1500), + [anon_sym_SEMI] = ACTIONS(1498), + [anon_sym_macro_rules_BANG] = ACTIONS(1498), + [anon_sym_LPAREN] = ACTIONS(1498), + [anon_sym_LBRACK] = ACTIONS(1498), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_RBRACE] = ACTIONS(1498), + [anon_sym_PLUS] = ACTIONS(1500), + [anon_sym_STAR] = ACTIONS(1500), + [anon_sym_QMARK] = ACTIONS(1498), + [anon_sym_u8] = ACTIONS(1500), + [anon_sym_i8] = ACTIONS(1500), + [anon_sym_u16] = ACTIONS(1500), + [anon_sym_i16] = ACTIONS(1500), + [anon_sym_u32] = ACTIONS(1500), + [anon_sym_i32] = ACTIONS(1500), + [anon_sym_u64] = ACTIONS(1500), + [anon_sym_i64] = ACTIONS(1500), + [anon_sym_u128] = ACTIONS(1500), + [anon_sym_i128] = ACTIONS(1500), + [anon_sym_isize] = ACTIONS(1500), + [anon_sym_usize] = ACTIONS(1500), + [anon_sym_f32] = ACTIONS(1500), + [anon_sym_f64] = ACTIONS(1500), + [anon_sym_bool] = ACTIONS(1500), + [anon_sym_str] = ACTIONS(1500), + [anon_sym_char] = ACTIONS(1500), + [anon_sym_DASH] = ACTIONS(1500), + [anon_sym_SLASH] = ACTIONS(1500), + [anon_sym_PERCENT] = ACTIONS(1500), + [anon_sym_CARET] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1500), + [anon_sym_AMP] = ACTIONS(1500), + [anon_sym_PIPE] = ACTIONS(1500), + [anon_sym_AMP_AMP] = ACTIONS(1498), + [anon_sym_PIPE_PIPE] = ACTIONS(1498), + [anon_sym_LT_LT] = ACTIONS(1500), + [anon_sym_GT_GT] = ACTIONS(1500), + [anon_sym_PLUS_EQ] = ACTIONS(1498), + [anon_sym_DASH_EQ] = ACTIONS(1498), + [anon_sym_STAR_EQ] = ACTIONS(1498), + [anon_sym_SLASH_EQ] = ACTIONS(1498), + [anon_sym_PERCENT_EQ] = ACTIONS(1498), + [anon_sym_CARET_EQ] = ACTIONS(1498), + [anon_sym_AMP_EQ] = ACTIONS(1498), + [anon_sym_PIPE_EQ] = ACTIONS(1498), + [anon_sym_LT_LT_EQ] = ACTIONS(1498), + [anon_sym_GT_GT_EQ] = ACTIONS(1498), + [anon_sym_EQ] = ACTIONS(1500), + [anon_sym_EQ_EQ] = ACTIONS(1498), + [anon_sym_BANG_EQ] = ACTIONS(1498), + [anon_sym_GT] = ACTIONS(1500), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_GT_EQ] = ACTIONS(1498), + [anon_sym_LT_EQ] = ACTIONS(1498), + [anon_sym_DOT] = ACTIONS(1500), + [anon_sym_DOT_DOT] = ACTIONS(1500), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1498), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1498), + [anon_sym_COLON_COLON] = ACTIONS(1498), + [anon_sym_POUND] = ACTIONS(1498), + [anon_sym_SQUOTE] = ACTIONS(1500), + [anon_sym_as] = ACTIONS(1500), + [anon_sym_async] = ACTIONS(1500), + [anon_sym_break] = ACTIONS(1500), + [anon_sym_const] = ACTIONS(1500), + [anon_sym_continue] = ACTIONS(1500), + [anon_sym_default] = ACTIONS(1500), + [anon_sym_enum] = ACTIONS(1500), + [anon_sym_fn] = ACTIONS(1500), + [anon_sym_for] = ACTIONS(1500), + [anon_sym_gen] = ACTIONS(1500), + [anon_sym_if] = ACTIONS(1500), + [anon_sym_impl] = ACTIONS(1500), + [anon_sym_let] = ACTIONS(1500), + [anon_sym_loop] = ACTIONS(1500), + [anon_sym_match] = ACTIONS(1500), + [anon_sym_mod] = ACTIONS(1500), + [anon_sym_pub] = ACTIONS(1500), + [anon_sym_return] = ACTIONS(1500), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_struct] = ACTIONS(1500), + [anon_sym_trait] = ACTIONS(1500), + [anon_sym_type] = ACTIONS(1500), + [anon_sym_union] = ACTIONS(1500), + [anon_sym_unsafe] = ACTIONS(1500), + [anon_sym_use] = ACTIONS(1500), + [anon_sym_while] = ACTIONS(1500), + [anon_sym_extern] = ACTIONS(1500), + [anon_sym_raw] = ACTIONS(1500), + [anon_sym_yield] = ACTIONS(1500), + [anon_sym_move] = ACTIONS(1500), + [anon_sym_try] = ACTIONS(1500), + [sym_integer_literal] = ACTIONS(1498), + [aux_sym_string_literal_token1] = ACTIONS(1498), + [sym_char_literal] = ACTIONS(1498), + [anon_sym_true] = ACTIONS(1500), + [anon_sym_false] = ACTIONS(1500), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1500), + [sym_super] = ACTIONS(1500), + [sym_crate] = ACTIONS(1500), + [sym_metavariable] = ACTIONS(1498), + [sym__raw_string_literal_start] = ACTIONS(1498), + [sym_float_literal] = ACTIONS(1498), + }, + [406] = { + [sym_line_comment] = STATE(406), + [sym_block_comment] = STATE(406), + [ts_builtin_sym_end] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1504), + [anon_sym_SEMI] = ACTIONS(1506), + [anon_sym_macro_rules_BANG] = ACTIONS(1502), + [anon_sym_LPAREN] = ACTIONS(1506), + [anon_sym_LBRACK] = ACTIONS(1506), + [anon_sym_LBRACE] = ACTIONS(1502), + [anon_sym_RBRACE] = ACTIONS(1506), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1508), + [anon_sym_QMARK] = ACTIONS(1506), + [anon_sym_u8] = ACTIONS(1504), + [anon_sym_i8] = ACTIONS(1504), + [anon_sym_u16] = ACTIONS(1504), + [anon_sym_i16] = ACTIONS(1504), + [anon_sym_u32] = ACTIONS(1504), + [anon_sym_i32] = ACTIONS(1504), + [anon_sym_u64] = ACTIONS(1504), + [anon_sym_i64] = ACTIONS(1504), + [anon_sym_u128] = ACTIONS(1504), + [anon_sym_i128] = ACTIONS(1504), + [anon_sym_isize] = ACTIONS(1504), + [anon_sym_usize] = ACTIONS(1504), + [anon_sym_f32] = ACTIONS(1504), + [anon_sym_f64] = ACTIONS(1504), + [anon_sym_bool] = ACTIONS(1504), + [anon_sym_str] = ACTIONS(1504), + [anon_sym_char] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1508), + [anon_sym_SLASH] = ACTIONS(1508), + [anon_sym_PERCENT] = ACTIONS(1508), + [anon_sym_CARET] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1504), + [anon_sym_AMP] = ACTIONS(1508), + [anon_sym_PIPE] = ACTIONS(1508), + [anon_sym_AMP_AMP] = ACTIONS(1506), + [anon_sym_PIPE_PIPE] = ACTIONS(1506), + [anon_sym_LT_LT] = ACTIONS(1508), + [anon_sym_GT_GT] = ACTIONS(1508), + [anon_sym_PLUS_EQ] = ACTIONS(1506), + [anon_sym_DASH_EQ] = ACTIONS(1506), + [anon_sym_STAR_EQ] = ACTIONS(1506), + [anon_sym_SLASH_EQ] = ACTIONS(1506), + [anon_sym_PERCENT_EQ] = ACTIONS(1506), + [anon_sym_CARET_EQ] = ACTIONS(1506), + [anon_sym_AMP_EQ] = ACTIONS(1506), + [anon_sym_PIPE_EQ] = ACTIONS(1506), + [anon_sym_LT_LT_EQ] = ACTIONS(1506), + [anon_sym_GT_GT_EQ] = ACTIONS(1506), + [anon_sym_EQ] = ACTIONS(1508), + [anon_sym_EQ_EQ] = ACTIONS(1506), + [anon_sym_BANG_EQ] = ACTIONS(1506), + [anon_sym_GT] = ACTIONS(1508), + [anon_sym_LT] = ACTIONS(1508), + [anon_sym_GT_EQ] = ACTIONS(1506), + [anon_sym_LT_EQ] = ACTIONS(1506), + [anon_sym_DOT] = ACTIONS(1508), + [anon_sym_DOT_DOT] = ACTIONS(1508), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1506), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1506), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_POUND] = ACTIONS(1502), + [anon_sym_SQUOTE] = ACTIONS(1504), + [anon_sym_as] = ACTIONS(1508), + [anon_sym_async] = ACTIONS(1504), + [anon_sym_break] = ACTIONS(1504), + [anon_sym_const] = ACTIONS(1504), + [anon_sym_continue] = ACTIONS(1504), + [anon_sym_default] = ACTIONS(1504), + [anon_sym_enum] = ACTIONS(1504), + [anon_sym_fn] = ACTIONS(1504), + [anon_sym_for] = ACTIONS(1504), + [anon_sym_gen] = ACTIONS(1504), + [anon_sym_if] = ACTIONS(1504), + [anon_sym_impl] = ACTIONS(1504), + [anon_sym_let] = ACTIONS(1504), + [anon_sym_loop] = ACTIONS(1504), + [anon_sym_match] = ACTIONS(1504), + [anon_sym_mod] = ACTIONS(1504), + [anon_sym_pub] = ACTIONS(1504), + [anon_sym_return] = ACTIONS(1504), + [anon_sym_static] = ACTIONS(1504), + [anon_sym_struct] = ACTIONS(1504), + [anon_sym_trait] = ACTIONS(1504), + [anon_sym_type] = ACTIONS(1504), + [anon_sym_union] = ACTIONS(1504), + [anon_sym_unsafe] = ACTIONS(1504), + [anon_sym_use] = ACTIONS(1504), + [anon_sym_while] = ACTIONS(1504), + [anon_sym_extern] = ACTIONS(1504), + [anon_sym_raw] = ACTIONS(1504), + [anon_sym_yield] = ACTIONS(1504), + [anon_sym_move] = ACTIONS(1504), + [anon_sym_try] = ACTIONS(1504), + [sym_integer_literal] = ACTIONS(1502), + [aux_sym_string_literal_token1] = ACTIONS(1502), + [sym_char_literal] = ACTIONS(1502), + [anon_sym_true] = ACTIONS(1504), + [anon_sym_false] = ACTIONS(1504), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1504), + [sym_super] = ACTIONS(1504), + [sym_crate] = ACTIONS(1504), + [sym_metavariable] = ACTIONS(1502), + [sym__raw_string_literal_start] = ACTIONS(1502), + [sym_float_literal] = ACTIONS(1502), + }, + [407] = { + [sym_line_comment] = STATE(407), + [sym_block_comment] = STATE(407), + [ts_builtin_sym_end] = ACTIONS(1510), + [sym_identifier] = ACTIONS(1512), + [anon_sym_SEMI] = ACTIONS(1510), + [anon_sym_macro_rules_BANG] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1510), + [anon_sym_LBRACK] = ACTIONS(1510), + [anon_sym_LBRACE] = ACTIONS(1510), + [anon_sym_RBRACE] = ACTIONS(1510), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_QMARK] = ACTIONS(1510), + [anon_sym_u8] = ACTIONS(1512), + [anon_sym_i8] = ACTIONS(1512), + [anon_sym_u16] = ACTIONS(1512), + [anon_sym_i16] = ACTIONS(1512), + [anon_sym_u32] = ACTIONS(1512), + [anon_sym_i32] = ACTIONS(1512), + [anon_sym_u64] = ACTIONS(1512), + [anon_sym_i64] = ACTIONS(1512), + [anon_sym_u128] = ACTIONS(1512), + [anon_sym_i128] = ACTIONS(1512), + [anon_sym_isize] = ACTIONS(1512), + [anon_sym_usize] = ACTIONS(1512), + [anon_sym_f32] = ACTIONS(1512), + [anon_sym_f64] = ACTIONS(1512), + [anon_sym_bool] = ACTIONS(1512), + [anon_sym_str] = ACTIONS(1512), + [anon_sym_char] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1512), + [anon_sym_SLASH] = ACTIONS(1512), + [anon_sym_PERCENT] = ACTIONS(1512), + [anon_sym_CARET] = ACTIONS(1512), + [anon_sym_BANG] = ACTIONS(1512), + [anon_sym_AMP] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1512), + [anon_sym_AMP_AMP] = ACTIONS(1510), + [anon_sym_PIPE_PIPE] = ACTIONS(1510), + [anon_sym_LT_LT] = ACTIONS(1512), + [anon_sym_GT_GT] = ACTIONS(1512), + [anon_sym_PLUS_EQ] = ACTIONS(1510), + [anon_sym_DASH_EQ] = ACTIONS(1510), + [anon_sym_STAR_EQ] = ACTIONS(1510), + [anon_sym_SLASH_EQ] = ACTIONS(1510), + [anon_sym_PERCENT_EQ] = ACTIONS(1510), + [anon_sym_CARET_EQ] = ACTIONS(1510), + [anon_sym_AMP_EQ] = ACTIONS(1510), + [anon_sym_PIPE_EQ] = ACTIONS(1510), + [anon_sym_LT_LT_EQ] = ACTIONS(1510), + [anon_sym_GT_GT_EQ] = ACTIONS(1510), + [anon_sym_EQ] = ACTIONS(1512), + [anon_sym_EQ_EQ] = ACTIONS(1510), + [anon_sym_BANG_EQ] = ACTIONS(1510), + [anon_sym_GT] = ACTIONS(1512), + [anon_sym_LT] = ACTIONS(1512), + [anon_sym_GT_EQ] = ACTIONS(1510), + [anon_sym_LT_EQ] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(1512), + [anon_sym_DOT_DOT] = ACTIONS(1512), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1510), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1510), + [anon_sym_COLON_COLON] = ACTIONS(1510), + [anon_sym_POUND] = ACTIONS(1510), + [anon_sym_SQUOTE] = ACTIONS(1512), + [anon_sym_as] = ACTIONS(1512), + [anon_sym_async] = ACTIONS(1512), + [anon_sym_break] = ACTIONS(1512), + [anon_sym_const] = ACTIONS(1512), + [anon_sym_continue] = ACTIONS(1512), + [anon_sym_default] = ACTIONS(1512), + [anon_sym_enum] = ACTIONS(1512), + [anon_sym_fn] = ACTIONS(1512), + [anon_sym_for] = ACTIONS(1512), + [anon_sym_gen] = ACTIONS(1512), + [anon_sym_if] = ACTIONS(1512), + [anon_sym_impl] = ACTIONS(1512), + [anon_sym_let] = ACTIONS(1512), + [anon_sym_loop] = ACTIONS(1512), + [anon_sym_match] = ACTIONS(1512), + [anon_sym_mod] = ACTIONS(1512), + [anon_sym_pub] = ACTIONS(1512), + [anon_sym_return] = ACTIONS(1512), + [anon_sym_static] = ACTIONS(1512), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_trait] = ACTIONS(1512), + [anon_sym_type] = ACTIONS(1512), + [anon_sym_union] = ACTIONS(1512), + [anon_sym_unsafe] = ACTIONS(1512), + [anon_sym_use] = ACTIONS(1512), + [anon_sym_while] = ACTIONS(1512), + [anon_sym_extern] = ACTIONS(1512), + [anon_sym_raw] = ACTIONS(1512), + [anon_sym_yield] = ACTIONS(1512), + [anon_sym_move] = ACTIONS(1512), + [anon_sym_try] = ACTIONS(1512), + [sym_integer_literal] = ACTIONS(1510), + [aux_sym_string_literal_token1] = ACTIONS(1510), + [sym_char_literal] = ACTIONS(1510), + [anon_sym_true] = ACTIONS(1512), + [anon_sym_false] = ACTIONS(1512), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1512), + [sym_super] = ACTIONS(1512), + [sym_crate] = ACTIONS(1512), + [sym_metavariable] = ACTIONS(1510), + [sym__raw_string_literal_start] = ACTIONS(1510), + [sym_float_literal] = ACTIONS(1510), + }, + [408] = { + [sym_line_comment] = STATE(408), + [sym_block_comment] = STATE(408), + [ts_builtin_sym_end] = ACTIONS(1514), + [sym_identifier] = ACTIONS(1516), + [anon_sym_SEMI] = ACTIONS(1514), + [anon_sym_macro_rules_BANG] = ACTIONS(1514), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACK] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(1514), + [anon_sym_RBRACE] = ACTIONS(1514), + [anon_sym_PLUS] = ACTIONS(1516), + [anon_sym_STAR] = ACTIONS(1516), + [anon_sym_QMARK] = ACTIONS(1514), + [anon_sym_u8] = ACTIONS(1516), + [anon_sym_i8] = ACTIONS(1516), + [anon_sym_u16] = ACTIONS(1516), + [anon_sym_i16] = ACTIONS(1516), + [anon_sym_u32] = ACTIONS(1516), + [anon_sym_i32] = ACTIONS(1516), + [anon_sym_u64] = ACTIONS(1516), + [anon_sym_i64] = ACTIONS(1516), + [anon_sym_u128] = ACTIONS(1516), + [anon_sym_i128] = ACTIONS(1516), + [anon_sym_isize] = ACTIONS(1516), + [anon_sym_usize] = ACTIONS(1516), + [anon_sym_f32] = ACTIONS(1516), + [anon_sym_f64] = ACTIONS(1516), + [anon_sym_bool] = ACTIONS(1516), + [anon_sym_str] = ACTIONS(1516), + [anon_sym_char] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1516), + [anon_sym_SLASH] = ACTIONS(1516), + [anon_sym_PERCENT] = ACTIONS(1516), + [anon_sym_CARET] = ACTIONS(1516), + [anon_sym_BANG] = ACTIONS(1516), + [anon_sym_AMP] = ACTIONS(1516), + [anon_sym_PIPE] = ACTIONS(1516), + [anon_sym_AMP_AMP] = ACTIONS(1514), + [anon_sym_PIPE_PIPE] = ACTIONS(1514), + [anon_sym_LT_LT] = ACTIONS(1516), + [anon_sym_GT_GT] = ACTIONS(1516), + [anon_sym_PLUS_EQ] = ACTIONS(1514), + [anon_sym_DASH_EQ] = ACTIONS(1514), + [anon_sym_STAR_EQ] = ACTIONS(1514), + [anon_sym_SLASH_EQ] = ACTIONS(1514), + [anon_sym_PERCENT_EQ] = ACTIONS(1514), + [anon_sym_CARET_EQ] = ACTIONS(1514), + [anon_sym_AMP_EQ] = ACTIONS(1514), + [anon_sym_PIPE_EQ] = ACTIONS(1514), + [anon_sym_LT_LT_EQ] = ACTIONS(1514), + [anon_sym_GT_GT_EQ] = ACTIONS(1514), + [anon_sym_EQ] = ACTIONS(1516), + [anon_sym_EQ_EQ] = ACTIONS(1514), + [anon_sym_BANG_EQ] = ACTIONS(1514), + [anon_sym_GT] = ACTIONS(1516), + [anon_sym_LT] = ACTIONS(1516), + [anon_sym_GT_EQ] = ACTIONS(1514), + [anon_sym_LT_EQ] = ACTIONS(1514), + [anon_sym_DOT] = ACTIONS(1516), + [anon_sym_DOT_DOT] = ACTIONS(1516), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1514), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1514), + [anon_sym_COLON_COLON] = ACTIONS(1514), + [anon_sym_POUND] = ACTIONS(1514), + [anon_sym_SQUOTE] = ACTIONS(1516), + [anon_sym_as] = ACTIONS(1516), + [anon_sym_async] = ACTIONS(1516), + [anon_sym_break] = ACTIONS(1516), + [anon_sym_const] = ACTIONS(1516), + [anon_sym_continue] = ACTIONS(1516), + [anon_sym_default] = ACTIONS(1516), + [anon_sym_enum] = ACTIONS(1516), + [anon_sym_fn] = ACTIONS(1516), + [anon_sym_for] = ACTIONS(1516), + [anon_sym_gen] = ACTIONS(1516), + [anon_sym_if] = ACTIONS(1516), + [anon_sym_impl] = ACTIONS(1516), + [anon_sym_let] = ACTIONS(1516), + [anon_sym_loop] = ACTIONS(1516), + [anon_sym_match] = ACTIONS(1516), + [anon_sym_mod] = ACTIONS(1516), + [anon_sym_pub] = ACTIONS(1516), + [anon_sym_return] = ACTIONS(1516), + [anon_sym_static] = ACTIONS(1516), + [anon_sym_struct] = ACTIONS(1516), + [anon_sym_trait] = ACTIONS(1516), + [anon_sym_type] = ACTIONS(1516), + [anon_sym_union] = ACTIONS(1516), + [anon_sym_unsafe] = ACTIONS(1516), + [anon_sym_use] = ACTIONS(1516), + [anon_sym_while] = ACTIONS(1516), + [anon_sym_extern] = ACTIONS(1516), + [anon_sym_raw] = ACTIONS(1516), + [anon_sym_yield] = ACTIONS(1516), + [anon_sym_move] = ACTIONS(1516), + [anon_sym_try] = ACTIONS(1516), + [sym_integer_literal] = ACTIONS(1514), + [aux_sym_string_literal_token1] = ACTIONS(1514), + [sym_char_literal] = ACTIONS(1514), + [anon_sym_true] = ACTIONS(1516), + [anon_sym_false] = ACTIONS(1516), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1516), + [sym_super] = ACTIONS(1516), + [sym_crate] = ACTIONS(1516), + [sym_metavariable] = ACTIONS(1514), + [sym__raw_string_literal_start] = ACTIONS(1514), + [sym_float_literal] = ACTIONS(1514), + }, + [409] = { + [sym_line_comment] = STATE(409), + [sym_block_comment] = STATE(409), + [ts_builtin_sym_end] = ACTIONS(1518), + [sym_identifier] = ACTIONS(1520), + [anon_sym_SEMI] = ACTIONS(1518), + [anon_sym_macro_rules_BANG] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1518), + [anon_sym_LBRACK] = ACTIONS(1518), + [anon_sym_LBRACE] = ACTIONS(1518), + [anon_sym_RBRACE] = ACTIONS(1518), + [anon_sym_PLUS] = ACTIONS(1520), + [anon_sym_STAR] = ACTIONS(1520), + [anon_sym_QMARK] = ACTIONS(1518), + [anon_sym_u8] = ACTIONS(1520), + [anon_sym_i8] = ACTIONS(1520), + [anon_sym_u16] = ACTIONS(1520), + [anon_sym_i16] = ACTIONS(1520), + [anon_sym_u32] = ACTIONS(1520), + [anon_sym_i32] = ACTIONS(1520), + [anon_sym_u64] = ACTIONS(1520), + [anon_sym_i64] = ACTIONS(1520), + [anon_sym_u128] = ACTIONS(1520), + [anon_sym_i128] = ACTIONS(1520), + [anon_sym_isize] = ACTIONS(1520), + [anon_sym_usize] = ACTIONS(1520), + [anon_sym_f32] = ACTIONS(1520), + [anon_sym_f64] = ACTIONS(1520), + [anon_sym_bool] = ACTIONS(1520), + [anon_sym_str] = ACTIONS(1520), + [anon_sym_char] = ACTIONS(1520), + [anon_sym_DASH] = ACTIONS(1520), + [anon_sym_SLASH] = ACTIONS(1520), + [anon_sym_PERCENT] = ACTIONS(1520), + [anon_sym_CARET] = ACTIONS(1520), + [anon_sym_BANG] = ACTIONS(1520), + [anon_sym_AMP] = ACTIONS(1520), + [anon_sym_PIPE] = ACTIONS(1520), + [anon_sym_AMP_AMP] = ACTIONS(1518), + [anon_sym_PIPE_PIPE] = ACTIONS(1518), + [anon_sym_LT_LT] = ACTIONS(1520), + [anon_sym_GT_GT] = ACTIONS(1520), + [anon_sym_PLUS_EQ] = ACTIONS(1518), + [anon_sym_DASH_EQ] = ACTIONS(1518), + [anon_sym_STAR_EQ] = ACTIONS(1518), + [anon_sym_SLASH_EQ] = ACTIONS(1518), + [anon_sym_PERCENT_EQ] = ACTIONS(1518), + [anon_sym_CARET_EQ] = ACTIONS(1518), + [anon_sym_AMP_EQ] = ACTIONS(1518), + [anon_sym_PIPE_EQ] = ACTIONS(1518), + [anon_sym_LT_LT_EQ] = ACTIONS(1518), + [anon_sym_GT_GT_EQ] = ACTIONS(1518), + [anon_sym_EQ] = ACTIONS(1520), + [anon_sym_EQ_EQ] = ACTIONS(1518), + [anon_sym_BANG_EQ] = ACTIONS(1518), + [anon_sym_GT] = ACTIONS(1520), + [anon_sym_LT] = ACTIONS(1520), + [anon_sym_GT_EQ] = ACTIONS(1518), + [anon_sym_LT_EQ] = ACTIONS(1518), + [anon_sym_DOT] = ACTIONS(1520), + [anon_sym_DOT_DOT] = ACTIONS(1520), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1518), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1518), + [anon_sym_COLON_COLON] = ACTIONS(1518), + [anon_sym_POUND] = ACTIONS(1518), + [anon_sym_SQUOTE] = ACTIONS(1520), + [anon_sym_as] = ACTIONS(1520), + [anon_sym_async] = ACTIONS(1520), + [anon_sym_break] = ACTIONS(1520), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_continue] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(1520), + [anon_sym_enum] = ACTIONS(1520), + [anon_sym_fn] = ACTIONS(1520), + [anon_sym_for] = ACTIONS(1520), + [anon_sym_gen] = ACTIONS(1520), + [anon_sym_if] = ACTIONS(1520), + [anon_sym_impl] = ACTIONS(1520), + [anon_sym_let] = ACTIONS(1520), + [anon_sym_loop] = ACTIONS(1520), + [anon_sym_match] = ACTIONS(1520), + [anon_sym_mod] = ACTIONS(1520), + [anon_sym_pub] = ACTIONS(1520), + [anon_sym_return] = ACTIONS(1520), + [anon_sym_static] = ACTIONS(1520), + [anon_sym_struct] = ACTIONS(1520), + [anon_sym_trait] = ACTIONS(1520), + [anon_sym_type] = ACTIONS(1520), + [anon_sym_union] = ACTIONS(1520), + [anon_sym_unsafe] = ACTIONS(1520), + [anon_sym_use] = ACTIONS(1520), + [anon_sym_while] = ACTIONS(1520), + [anon_sym_extern] = ACTIONS(1520), + [anon_sym_raw] = ACTIONS(1520), + [anon_sym_yield] = ACTIONS(1520), + [anon_sym_move] = ACTIONS(1520), + [anon_sym_try] = ACTIONS(1520), + [sym_integer_literal] = ACTIONS(1518), + [aux_sym_string_literal_token1] = ACTIONS(1518), + [sym_char_literal] = ACTIONS(1518), + [anon_sym_true] = ACTIONS(1520), + [anon_sym_false] = ACTIONS(1520), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1520), + [sym_super] = ACTIONS(1520), + [sym_crate] = ACTIONS(1520), + [sym_metavariable] = ACTIONS(1518), + [sym__raw_string_literal_start] = ACTIONS(1518), + [sym_float_literal] = ACTIONS(1518), + }, + [410] = { + [sym_line_comment] = STATE(410), + [sym_block_comment] = STATE(410), + [ts_builtin_sym_end] = ACTIONS(1522), + [sym_identifier] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(1522), + [anon_sym_macro_rules_BANG] = ACTIONS(1522), + [anon_sym_LPAREN] = ACTIONS(1522), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_LBRACE] = ACTIONS(1522), + [anon_sym_RBRACE] = ACTIONS(1522), + [anon_sym_PLUS] = ACTIONS(1524), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(1522), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u128] = ACTIONS(1524), + [anon_sym_i128] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_str] = ACTIONS(1524), + [anon_sym_char] = ACTIONS(1524), + [anon_sym_DASH] = ACTIONS(1524), + [anon_sym_SLASH] = ACTIONS(1524), + [anon_sym_PERCENT] = ACTIONS(1524), + [anon_sym_CARET] = ACTIONS(1524), + [anon_sym_BANG] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_PIPE] = ACTIONS(1524), + [anon_sym_AMP_AMP] = ACTIONS(1522), + [anon_sym_PIPE_PIPE] = ACTIONS(1522), + [anon_sym_LT_LT] = ACTIONS(1524), + [anon_sym_GT_GT] = ACTIONS(1524), + [anon_sym_PLUS_EQ] = ACTIONS(1522), + [anon_sym_DASH_EQ] = ACTIONS(1522), + [anon_sym_STAR_EQ] = ACTIONS(1522), + [anon_sym_SLASH_EQ] = ACTIONS(1522), + [anon_sym_PERCENT_EQ] = ACTIONS(1522), + [anon_sym_CARET_EQ] = ACTIONS(1522), + [anon_sym_AMP_EQ] = ACTIONS(1522), + [anon_sym_PIPE_EQ] = ACTIONS(1522), + [anon_sym_LT_LT_EQ] = ACTIONS(1522), + [anon_sym_GT_GT_EQ] = ACTIONS(1522), + [anon_sym_EQ] = ACTIONS(1524), + [anon_sym_EQ_EQ] = ACTIONS(1522), + [anon_sym_BANG_EQ] = ACTIONS(1522), + [anon_sym_GT] = ACTIONS(1524), + [anon_sym_LT] = ACTIONS(1524), + [anon_sym_GT_EQ] = ACTIONS(1522), + [anon_sym_LT_EQ] = ACTIONS(1522), + [anon_sym_DOT] = ACTIONS(1524), + [anon_sym_DOT_DOT] = ACTIONS(1524), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1522), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1522), + [anon_sym_COLON_COLON] = ACTIONS(1522), + [anon_sym_POUND] = ACTIONS(1522), + [anon_sym_SQUOTE] = ACTIONS(1524), + [anon_sym_as] = ACTIONS(1524), + [anon_sym_async] = ACTIONS(1524), + [anon_sym_break] = ACTIONS(1524), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_continue] = ACTIONS(1524), + [anon_sym_default] = ACTIONS(1524), + [anon_sym_enum] = ACTIONS(1524), + [anon_sym_fn] = ACTIONS(1524), + [anon_sym_for] = ACTIONS(1524), + [anon_sym_gen] = ACTIONS(1524), + [anon_sym_if] = ACTIONS(1524), + [anon_sym_impl] = ACTIONS(1524), + [anon_sym_let] = ACTIONS(1524), + [anon_sym_loop] = ACTIONS(1524), + [anon_sym_match] = ACTIONS(1524), + [anon_sym_mod] = ACTIONS(1524), + [anon_sym_pub] = ACTIONS(1524), + [anon_sym_return] = ACTIONS(1524), + [anon_sym_static] = ACTIONS(1524), + [anon_sym_struct] = ACTIONS(1524), + [anon_sym_trait] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1524), + [anon_sym_union] = ACTIONS(1524), + [anon_sym_unsafe] = ACTIONS(1524), + [anon_sym_use] = ACTIONS(1524), + [anon_sym_while] = ACTIONS(1524), + [anon_sym_extern] = ACTIONS(1524), + [anon_sym_raw] = ACTIONS(1524), + [anon_sym_yield] = ACTIONS(1524), + [anon_sym_move] = ACTIONS(1524), + [anon_sym_try] = ACTIONS(1524), + [sym_integer_literal] = ACTIONS(1522), + [aux_sym_string_literal_token1] = ACTIONS(1522), + [sym_char_literal] = ACTIONS(1522), + [anon_sym_true] = ACTIONS(1524), + [anon_sym_false] = ACTIONS(1524), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1524), + [sym_super] = ACTIONS(1524), + [sym_crate] = ACTIONS(1524), + [sym_metavariable] = ACTIONS(1522), + [sym__raw_string_literal_start] = ACTIONS(1522), + [sym_float_literal] = ACTIONS(1522), + }, + [411] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_self_parameter] = STATE(2923), + [sym_variadic_parameter] = STATE(2923), + [sym_parameter] = STATE(2923), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2700), + [sym_bracketed_type] = STATE(3684), + [sym_lifetime] = STATE(3061), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3340), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2527), + [sym_scoped_identifier] = STATE(2319), + [sym_scoped_type_identifier] = STATE(2206), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(3283), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), + [sym_line_comment] = STATE(411), + [sym_block_comment] = STATE(411), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1052), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1064), + [anon_sym_i8] = ACTIONS(1064), + [anon_sym_u16] = ACTIONS(1064), + [anon_sym_i16] = ACTIONS(1064), + [anon_sym_u32] = ACTIONS(1064), + [anon_sym_i32] = ACTIONS(1064), + [anon_sym_u64] = ACTIONS(1064), + [anon_sym_i64] = ACTIONS(1064), + [anon_sym_u128] = ACTIONS(1064), + [anon_sym_i128] = ACTIONS(1064), + [anon_sym_isize] = ACTIONS(1064), + [anon_sym_usize] = ACTIONS(1064), + [anon_sym_f32] = ACTIONS(1064), + [anon_sym_f64] = ACTIONS(1064), + [anon_sym_bool] = ACTIONS(1064), + [anon_sym_str] = ACTIONS(1064), + [anon_sym_char] = ACTIONS(1064), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1070), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1526), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1078), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1084), + [anon_sym_SQUOTE] = ACTIONS(1088), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1092), + [anon_sym_default] = ACTIONS(1094), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1100), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1100), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_ref] = ACTIONS(1108), + [anon_sym_dyn] = ACTIONS(1110), + [sym_mutable_specifier] = ACTIONS(1112), + [anon_sym_raw] = ACTIONS(1100), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1120), + [sym_super] = ACTIONS(1122), + [sym_crate] = ACTIONS(1122), + [sym_metavariable] = ACTIONS(1124), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [412] = { + [sym_line_comment] = STATE(412), + [sym_block_comment] = STATE(412), [ts_builtin_sym_end] = ACTIONS(1528), [sym_identifier] = ACTIONS(1530), [anon_sym_SEMI] = ACTIONS(1528), @@ -65103,564 +64256,564 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1528), [sym_float_literal] = ACTIONS(1528), }, - [STATE(418)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_self_parameter] = STATE(2946), - [sym_variadic_parameter] = STATE(2946), - [sym_parameter] = STATE(2946), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2672), - [sym_bracketed_type] = STATE(3694), - [sym_lifetime] = STATE(3065), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3341), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2582), - [sym_scoped_identifier] = STATE(2327), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(3276), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [413] = { + [sym_line_comment] = STATE(413), + [sym_block_comment] = STATE(413), + [ts_builtin_sym_end] = ACTIONS(1338), + [sym_identifier] = ACTIONS(1336), + [anon_sym_SEMI] = ACTIONS(1338), + [anon_sym_macro_rules_BANG] = ACTIONS(1338), + [anon_sym_LPAREN] = ACTIONS(1338), + [anon_sym_LBRACK] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1338), + [anon_sym_RBRACE] = ACTIONS(1338), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_QMARK] = ACTIONS(1338), + [anon_sym_u8] = ACTIONS(1336), + [anon_sym_i8] = ACTIONS(1336), + [anon_sym_u16] = ACTIONS(1336), + [anon_sym_i16] = ACTIONS(1336), + [anon_sym_u32] = ACTIONS(1336), + [anon_sym_i32] = ACTIONS(1336), + [anon_sym_u64] = ACTIONS(1336), + [anon_sym_i64] = ACTIONS(1336), + [anon_sym_u128] = ACTIONS(1336), + [anon_sym_i128] = ACTIONS(1336), + [anon_sym_isize] = ACTIONS(1336), + [anon_sym_usize] = ACTIONS(1336), + [anon_sym_f32] = ACTIONS(1336), + [anon_sym_f64] = ACTIONS(1336), + [anon_sym_bool] = ACTIONS(1336), + [anon_sym_str] = ACTIONS(1336), + [anon_sym_char] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_SLASH] = ACTIONS(1336), + [anon_sym_PERCENT] = ACTIONS(1336), + [anon_sym_CARET] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_PIPE] = ACTIONS(1336), + [anon_sym_AMP_AMP] = ACTIONS(1338), + [anon_sym_PIPE_PIPE] = ACTIONS(1338), + [anon_sym_LT_LT] = ACTIONS(1336), + [anon_sym_GT_GT] = ACTIONS(1336), + [anon_sym_PLUS_EQ] = ACTIONS(1338), + [anon_sym_DASH_EQ] = ACTIONS(1338), + [anon_sym_STAR_EQ] = ACTIONS(1338), + [anon_sym_SLASH_EQ] = ACTIONS(1338), + [anon_sym_PERCENT_EQ] = ACTIONS(1338), + [anon_sym_CARET_EQ] = ACTIONS(1338), + [anon_sym_AMP_EQ] = ACTIONS(1338), + [anon_sym_PIPE_EQ] = ACTIONS(1338), + [anon_sym_LT_LT_EQ] = ACTIONS(1338), + [anon_sym_GT_GT_EQ] = ACTIONS(1338), + [anon_sym_EQ] = ACTIONS(1336), + [anon_sym_EQ_EQ] = ACTIONS(1338), + [anon_sym_BANG_EQ] = ACTIONS(1338), + [anon_sym_GT] = ACTIONS(1336), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT_EQ] = ACTIONS(1338), + [anon_sym_LT_EQ] = ACTIONS(1338), + [anon_sym_DOT] = ACTIONS(1336), + [anon_sym_DOT_DOT] = ACTIONS(1336), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1338), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1338), + [anon_sym_COLON_COLON] = ACTIONS(1338), + [anon_sym_POUND] = ACTIONS(1338), + [anon_sym_SQUOTE] = ACTIONS(1336), + [anon_sym_as] = ACTIONS(1336), + [anon_sym_async] = ACTIONS(1336), + [anon_sym_break] = ACTIONS(1336), + [anon_sym_const] = ACTIONS(1336), + [anon_sym_continue] = ACTIONS(1336), + [anon_sym_default] = ACTIONS(1336), + [anon_sym_enum] = ACTIONS(1336), + [anon_sym_fn] = ACTIONS(1336), + [anon_sym_for] = ACTIONS(1336), + [anon_sym_gen] = ACTIONS(1336), + [anon_sym_if] = ACTIONS(1336), + [anon_sym_impl] = ACTIONS(1336), + [anon_sym_let] = ACTIONS(1336), + [anon_sym_loop] = ACTIONS(1336), + [anon_sym_match] = ACTIONS(1336), + [anon_sym_mod] = ACTIONS(1336), + [anon_sym_pub] = ACTIONS(1336), + [anon_sym_return] = ACTIONS(1336), + [anon_sym_static] = ACTIONS(1336), + [anon_sym_struct] = ACTIONS(1336), + [anon_sym_trait] = ACTIONS(1336), + [anon_sym_type] = ACTIONS(1336), + [anon_sym_union] = ACTIONS(1336), + [anon_sym_unsafe] = ACTIONS(1336), + [anon_sym_use] = ACTIONS(1336), + [anon_sym_while] = ACTIONS(1336), + [anon_sym_extern] = ACTIONS(1336), + [anon_sym_raw] = ACTIONS(1336), + [anon_sym_yield] = ACTIONS(1336), + [anon_sym_move] = ACTIONS(1336), + [anon_sym_try] = ACTIONS(1336), + [sym_integer_literal] = ACTIONS(1338), + [aux_sym_string_literal_token1] = ACTIONS(1338), + [sym_char_literal] = ACTIONS(1338), + [anon_sym_true] = ACTIONS(1336), + [anon_sym_false] = ACTIONS(1336), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1336), + [sym_super] = ACTIONS(1336), + [sym_crate] = ACTIONS(1336), + [sym_metavariable] = ACTIONS(1338), + [sym__raw_string_literal_start] = ACTIONS(1338), + [sym_float_literal] = ACTIONS(1338), + }, + [414] = { + [sym_line_comment] = STATE(414), + [sym_block_comment] = STATE(414), + [ts_builtin_sym_end] = ACTIONS(1532), + [sym_identifier] = ACTIONS(1534), + [anon_sym_SEMI] = ACTIONS(1532), + [anon_sym_macro_rules_BANG] = ACTIONS(1532), + [anon_sym_LPAREN] = ACTIONS(1532), + [anon_sym_LBRACK] = ACTIONS(1532), + [anon_sym_LBRACE] = ACTIONS(1532), + [anon_sym_RBRACE] = ACTIONS(1532), + [anon_sym_PLUS] = ACTIONS(1534), + [anon_sym_STAR] = ACTIONS(1534), + [anon_sym_QMARK] = ACTIONS(1532), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_DASH] = ACTIONS(1534), + [anon_sym_SLASH] = ACTIONS(1534), + [anon_sym_PERCENT] = ACTIONS(1534), + [anon_sym_CARET] = ACTIONS(1534), + [anon_sym_BANG] = ACTIONS(1534), + [anon_sym_AMP] = ACTIONS(1534), + [anon_sym_PIPE] = ACTIONS(1534), + [anon_sym_AMP_AMP] = ACTIONS(1532), + [anon_sym_PIPE_PIPE] = ACTIONS(1532), + [anon_sym_LT_LT] = ACTIONS(1534), + [anon_sym_GT_GT] = ACTIONS(1534), + [anon_sym_PLUS_EQ] = ACTIONS(1532), + [anon_sym_DASH_EQ] = ACTIONS(1532), + [anon_sym_STAR_EQ] = ACTIONS(1532), + [anon_sym_SLASH_EQ] = ACTIONS(1532), + [anon_sym_PERCENT_EQ] = ACTIONS(1532), + [anon_sym_CARET_EQ] = ACTIONS(1532), + [anon_sym_AMP_EQ] = ACTIONS(1532), + [anon_sym_PIPE_EQ] = ACTIONS(1532), + [anon_sym_LT_LT_EQ] = ACTIONS(1532), + [anon_sym_GT_GT_EQ] = ACTIONS(1532), + [anon_sym_EQ] = ACTIONS(1534), + [anon_sym_EQ_EQ] = ACTIONS(1532), + [anon_sym_BANG_EQ] = ACTIONS(1532), + [anon_sym_GT] = ACTIONS(1534), + [anon_sym_LT] = ACTIONS(1534), + [anon_sym_GT_EQ] = ACTIONS(1532), + [anon_sym_LT_EQ] = ACTIONS(1532), + [anon_sym_DOT] = ACTIONS(1534), + [anon_sym_DOT_DOT] = ACTIONS(1534), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1532), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1532), + [anon_sym_COLON_COLON] = ACTIONS(1532), + [anon_sym_POUND] = ACTIONS(1532), + [anon_sym_SQUOTE] = ACTIONS(1534), + [anon_sym_as] = ACTIONS(1534), + [anon_sym_async] = ACTIONS(1534), + [anon_sym_break] = ACTIONS(1534), + [anon_sym_const] = ACTIONS(1534), + [anon_sym_continue] = ACTIONS(1534), + [anon_sym_default] = ACTIONS(1534), + [anon_sym_enum] = ACTIONS(1534), + [anon_sym_fn] = ACTIONS(1534), + [anon_sym_for] = ACTIONS(1534), + [anon_sym_gen] = ACTIONS(1534), + [anon_sym_if] = ACTIONS(1534), + [anon_sym_impl] = ACTIONS(1534), + [anon_sym_let] = ACTIONS(1534), + [anon_sym_loop] = ACTIONS(1534), + [anon_sym_match] = ACTIONS(1534), + [anon_sym_mod] = ACTIONS(1534), + [anon_sym_pub] = ACTIONS(1534), + [anon_sym_return] = ACTIONS(1534), + [anon_sym_static] = ACTIONS(1534), + [anon_sym_struct] = ACTIONS(1534), + [anon_sym_trait] = ACTIONS(1534), + [anon_sym_type] = ACTIONS(1534), + [anon_sym_union] = ACTIONS(1534), + [anon_sym_unsafe] = ACTIONS(1534), + [anon_sym_use] = ACTIONS(1534), + [anon_sym_while] = ACTIONS(1534), + [anon_sym_extern] = ACTIONS(1534), + [anon_sym_raw] = ACTIONS(1534), + [anon_sym_yield] = ACTIONS(1534), + [anon_sym_move] = ACTIONS(1534), + [anon_sym_try] = ACTIONS(1534), + [sym_integer_literal] = ACTIONS(1532), + [aux_sym_string_literal_token1] = ACTIONS(1532), + [sym_char_literal] = ACTIONS(1532), + [anon_sym_true] = ACTIONS(1534), + [anon_sym_false] = ACTIONS(1534), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1534), + [sym_super] = ACTIONS(1534), + [sym_crate] = ACTIONS(1534), + [sym_metavariable] = ACTIONS(1532), + [sym__raw_string_literal_start] = ACTIONS(1532), + [sym_float_literal] = ACTIONS(1532), + }, + [415] = { + [sym_line_comment] = STATE(415), + [sym_block_comment] = STATE(415), + [ts_builtin_sym_end] = ACTIONS(1536), + [sym_identifier] = ACTIONS(1538), + [anon_sym_SEMI] = ACTIONS(1536), + [anon_sym_macro_rules_BANG] = ACTIONS(1536), + [anon_sym_LPAREN] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1536), + [anon_sym_RBRACE] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(1538), + [anon_sym_QMARK] = ACTIONS(1536), + [anon_sym_u8] = ACTIONS(1538), + [anon_sym_i8] = ACTIONS(1538), + [anon_sym_u16] = ACTIONS(1538), + [anon_sym_i16] = ACTIONS(1538), + [anon_sym_u32] = ACTIONS(1538), + [anon_sym_i32] = ACTIONS(1538), + [anon_sym_u64] = ACTIONS(1538), + [anon_sym_i64] = ACTIONS(1538), + [anon_sym_u128] = ACTIONS(1538), + [anon_sym_i128] = ACTIONS(1538), + [anon_sym_isize] = ACTIONS(1538), + [anon_sym_usize] = ACTIONS(1538), + [anon_sym_f32] = ACTIONS(1538), + [anon_sym_f64] = ACTIONS(1538), + [anon_sym_bool] = ACTIONS(1538), + [anon_sym_str] = ACTIONS(1538), + [anon_sym_char] = ACTIONS(1538), + [anon_sym_DASH] = ACTIONS(1538), + [anon_sym_SLASH] = ACTIONS(1538), + [anon_sym_PERCENT] = ACTIONS(1538), + [anon_sym_CARET] = ACTIONS(1538), + [anon_sym_BANG] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_AMP_AMP] = ACTIONS(1536), + [anon_sym_PIPE_PIPE] = ACTIONS(1536), + [anon_sym_LT_LT] = ACTIONS(1538), + [anon_sym_GT_GT] = ACTIONS(1538), + [anon_sym_PLUS_EQ] = ACTIONS(1536), + [anon_sym_DASH_EQ] = ACTIONS(1536), + [anon_sym_STAR_EQ] = ACTIONS(1536), + [anon_sym_SLASH_EQ] = ACTIONS(1536), + [anon_sym_PERCENT_EQ] = ACTIONS(1536), + [anon_sym_CARET_EQ] = ACTIONS(1536), + [anon_sym_AMP_EQ] = ACTIONS(1536), + [anon_sym_PIPE_EQ] = ACTIONS(1536), + [anon_sym_LT_LT_EQ] = ACTIONS(1536), + [anon_sym_GT_GT_EQ] = ACTIONS(1536), + [anon_sym_EQ] = ACTIONS(1538), + [anon_sym_EQ_EQ] = ACTIONS(1536), + [anon_sym_BANG_EQ] = ACTIONS(1536), + [anon_sym_GT] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(1538), + [anon_sym_GT_EQ] = ACTIONS(1536), + [anon_sym_LT_EQ] = ACTIONS(1536), + [anon_sym_DOT] = ACTIONS(1538), + [anon_sym_DOT_DOT] = ACTIONS(1538), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1536), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1536), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_POUND] = ACTIONS(1536), + [anon_sym_SQUOTE] = ACTIONS(1538), + [anon_sym_as] = ACTIONS(1538), + [anon_sym_async] = ACTIONS(1538), + [anon_sym_break] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(1538), + [anon_sym_continue] = ACTIONS(1538), + [anon_sym_default] = ACTIONS(1538), + [anon_sym_enum] = ACTIONS(1538), + [anon_sym_fn] = ACTIONS(1538), + [anon_sym_for] = ACTIONS(1538), + [anon_sym_gen] = ACTIONS(1538), + [anon_sym_if] = ACTIONS(1538), + [anon_sym_impl] = ACTIONS(1538), + [anon_sym_let] = ACTIONS(1538), + [anon_sym_loop] = ACTIONS(1538), + [anon_sym_match] = ACTIONS(1538), + [anon_sym_mod] = ACTIONS(1538), + [anon_sym_pub] = ACTIONS(1538), + [anon_sym_return] = ACTIONS(1538), + [anon_sym_static] = ACTIONS(1538), + [anon_sym_struct] = ACTIONS(1538), + [anon_sym_trait] = ACTIONS(1538), + [anon_sym_type] = ACTIONS(1538), + [anon_sym_union] = ACTIONS(1538), + [anon_sym_unsafe] = ACTIONS(1538), + [anon_sym_use] = ACTIONS(1538), + [anon_sym_while] = ACTIONS(1538), + [anon_sym_extern] = ACTIONS(1538), + [anon_sym_raw] = ACTIONS(1538), + [anon_sym_yield] = ACTIONS(1538), + [anon_sym_move] = ACTIONS(1538), + [anon_sym_try] = ACTIONS(1538), + [sym_integer_literal] = ACTIONS(1536), + [aux_sym_string_literal_token1] = ACTIONS(1536), + [sym_char_literal] = ACTIONS(1536), + [anon_sym_true] = ACTIONS(1538), + [anon_sym_false] = ACTIONS(1538), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1538), + [sym_super] = ACTIONS(1538), + [sym_crate] = ACTIONS(1538), + [sym_metavariable] = ACTIONS(1536), + [sym__raw_string_literal_start] = ACTIONS(1536), + [sym_float_literal] = ACTIONS(1536), + }, + [416] = { + [sym_line_comment] = STATE(416), + [sym_block_comment] = STATE(416), + [ts_builtin_sym_end] = ACTIONS(1540), + [sym_identifier] = ACTIONS(1542), + [anon_sym_SEMI] = ACTIONS(1540), + [anon_sym_macro_rules_BANG] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1540), + [anon_sym_LBRACE] = ACTIONS(1540), + [anon_sym_RBRACE] = ACTIONS(1540), + [anon_sym_PLUS] = ACTIONS(1542), + [anon_sym_STAR] = ACTIONS(1542), + [anon_sym_QMARK] = ACTIONS(1540), + [anon_sym_u8] = ACTIONS(1542), + [anon_sym_i8] = ACTIONS(1542), + [anon_sym_u16] = ACTIONS(1542), + [anon_sym_i16] = ACTIONS(1542), + [anon_sym_u32] = ACTIONS(1542), + [anon_sym_i32] = ACTIONS(1542), + [anon_sym_u64] = ACTIONS(1542), + [anon_sym_i64] = ACTIONS(1542), + [anon_sym_u128] = ACTIONS(1542), + [anon_sym_i128] = ACTIONS(1542), + [anon_sym_isize] = ACTIONS(1542), + [anon_sym_usize] = ACTIONS(1542), + [anon_sym_f32] = ACTIONS(1542), + [anon_sym_f64] = ACTIONS(1542), + [anon_sym_bool] = ACTIONS(1542), + [anon_sym_str] = ACTIONS(1542), + [anon_sym_char] = ACTIONS(1542), + [anon_sym_DASH] = ACTIONS(1542), + [anon_sym_SLASH] = ACTIONS(1542), + [anon_sym_PERCENT] = ACTIONS(1542), + [anon_sym_CARET] = ACTIONS(1542), + [anon_sym_BANG] = ACTIONS(1542), + [anon_sym_AMP] = ACTIONS(1542), + [anon_sym_PIPE] = ACTIONS(1542), + [anon_sym_AMP_AMP] = ACTIONS(1540), + [anon_sym_PIPE_PIPE] = ACTIONS(1540), + [anon_sym_LT_LT] = ACTIONS(1542), + [anon_sym_GT_GT] = ACTIONS(1542), + [anon_sym_PLUS_EQ] = ACTIONS(1540), + [anon_sym_DASH_EQ] = ACTIONS(1540), + [anon_sym_STAR_EQ] = ACTIONS(1540), + [anon_sym_SLASH_EQ] = ACTIONS(1540), + [anon_sym_PERCENT_EQ] = ACTIONS(1540), + [anon_sym_CARET_EQ] = ACTIONS(1540), + [anon_sym_AMP_EQ] = ACTIONS(1540), + [anon_sym_PIPE_EQ] = ACTIONS(1540), + [anon_sym_LT_LT_EQ] = ACTIONS(1540), + [anon_sym_GT_GT_EQ] = ACTIONS(1540), + [anon_sym_EQ] = ACTIONS(1542), + [anon_sym_EQ_EQ] = ACTIONS(1540), + [anon_sym_BANG_EQ] = ACTIONS(1540), + [anon_sym_GT] = ACTIONS(1542), + [anon_sym_LT] = ACTIONS(1542), + [anon_sym_GT_EQ] = ACTIONS(1540), + [anon_sym_LT_EQ] = ACTIONS(1540), + [anon_sym_DOT] = ACTIONS(1542), + [anon_sym_DOT_DOT] = ACTIONS(1542), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1540), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1540), + [anon_sym_COLON_COLON] = ACTIONS(1540), + [anon_sym_POUND] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(1542), + [anon_sym_as] = ACTIONS(1542), + [anon_sym_async] = ACTIONS(1542), + [anon_sym_break] = ACTIONS(1542), + [anon_sym_const] = ACTIONS(1542), + [anon_sym_continue] = ACTIONS(1542), + [anon_sym_default] = ACTIONS(1542), + [anon_sym_enum] = ACTIONS(1542), + [anon_sym_fn] = ACTIONS(1542), + [anon_sym_for] = ACTIONS(1542), + [anon_sym_gen] = ACTIONS(1542), + [anon_sym_if] = ACTIONS(1542), + [anon_sym_impl] = ACTIONS(1542), + [anon_sym_let] = ACTIONS(1542), + [anon_sym_loop] = ACTIONS(1542), + [anon_sym_match] = ACTIONS(1542), + [anon_sym_mod] = ACTIONS(1542), + [anon_sym_pub] = ACTIONS(1542), + [anon_sym_return] = ACTIONS(1542), + [anon_sym_static] = ACTIONS(1542), + [anon_sym_struct] = ACTIONS(1542), + [anon_sym_trait] = ACTIONS(1542), + [anon_sym_type] = ACTIONS(1542), + [anon_sym_union] = ACTIONS(1542), + [anon_sym_unsafe] = ACTIONS(1542), + [anon_sym_use] = ACTIONS(1542), + [anon_sym_while] = ACTIONS(1542), + [anon_sym_extern] = ACTIONS(1542), + [anon_sym_raw] = ACTIONS(1542), + [anon_sym_yield] = ACTIONS(1542), + [anon_sym_move] = ACTIONS(1542), + [anon_sym_try] = ACTIONS(1542), + [sym_integer_literal] = ACTIONS(1540), + [aux_sym_string_literal_token1] = ACTIONS(1540), + [sym_char_literal] = ACTIONS(1540), + [anon_sym_true] = ACTIONS(1542), + [anon_sym_false] = ACTIONS(1542), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1542), + [sym_super] = ACTIONS(1542), + [sym_crate] = ACTIONS(1542), + [sym_metavariable] = ACTIONS(1540), + [sym__raw_string_literal_start] = ACTIONS(1540), + [sym_float_literal] = ACTIONS(1540), + }, + [417] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_self_parameter] = STATE(3023), + [sym_variadic_parameter] = STATE(3023), + [sym_parameter] = STATE(3023), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2758), + [sym_bracketed_type] = STATE(3684), + [sym_lifetime] = STATE(3061), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3340), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2527), + [sym_scoped_identifier] = STATE(2319), + [sym_scoped_type_identifier] = STATE(2206), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(3283), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), + [sym_line_comment] = STATE(417), + [sym_block_comment] = STATE(417), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1052), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1064), + [anon_sym_i8] = ACTIONS(1064), + [anon_sym_u16] = ACTIONS(1064), + [anon_sym_i16] = ACTIONS(1064), + [anon_sym_u32] = ACTIONS(1064), + [anon_sym_i32] = ACTIONS(1064), + [anon_sym_u64] = ACTIONS(1064), + [anon_sym_i64] = ACTIONS(1064), + [anon_sym_u128] = ACTIONS(1064), + [anon_sym_i128] = ACTIONS(1064), + [anon_sym_isize] = ACTIONS(1064), + [anon_sym_usize] = ACTIONS(1064), + [anon_sym_f32] = ACTIONS(1064), + [anon_sym_f64] = ACTIONS(1064), + [anon_sym_bool] = ACTIONS(1064), + [anon_sym_str] = ACTIONS(1064), + [anon_sym_char] = ACTIONS(1064), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1070), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1544), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1078), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1084), + [anon_sym_SQUOTE] = ACTIONS(1088), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1092), + [anon_sym_default] = ACTIONS(1094), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1100), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1100), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_ref] = ACTIONS(1108), + [anon_sym_dyn] = ACTIONS(1110), + [sym_mutable_specifier] = ACTIONS(1112), + [anon_sym_raw] = ACTIONS(1100), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1120), + [sym_super] = ACTIONS(1122), + [sym_crate] = ACTIONS(1122), + [sym_metavariable] = ACTIONS(1124), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [418] = { [sym_line_comment] = STATE(418), [sym_block_comment] = STATE(418), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1058), - [anon_sym_LPAREN] = ACTIONS(1060), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1070), - [anon_sym_i8] = ACTIONS(1070), - [anon_sym_u16] = ACTIONS(1070), - [anon_sym_i16] = ACTIONS(1070), - [anon_sym_u32] = ACTIONS(1070), - [anon_sym_i32] = ACTIONS(1070), - [anon_sym_u64] = ACTIONS(1070), - [anon_sym_i64] = ACTIONS(1070), - [anon_sym_u128] = ACTIONS(1070), - [anon_sym_i128] = ACTIONS(1070), - [anon_sym_isize] = ACTIONS(1070), - [anon_sym_usize] = ACTIONS(1070), - [anon_sym_f32] = ACTIONS(1070), - [anon_sym_f64] = ACTIONS(1070), - [anon_sym_bool] = ACTIONS(1070), - [anon_sym_str] = ACTIONS(1070), - [anon_sym_char] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1076), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1532), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1084), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1106), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1106), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1118), - [anon_sym_raw] = ACTIONS(1106), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1126), - [sym_super] = ACTIONS(1128), - [sym_crate] = ACTIONS(1128), - [sym_metavariable] = ACTIONS(1130), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(419)] = { - [sym_line_comment] = STATE(419), - [sym_block_comment] = STATE(419), - [ts_builtin_sym_end] = ACTIONS(1534), - [sym_identifier] = ACTIONS(1536), - [anon_sym_SEMI] = ACTIONS(1534), - [anon_sym_macro_rules_BANG] = ACTIONS(1534), - [anon_sym_LPAREN] = ACTIONS(1534), - [anon_sym_LBRACK] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(1534), - [anon_sym_RBRACE] = ACTIONS(1534), - [anon_sym_PLUS] = ACTIONS(1506), - [anon_sym_STAR] = ACTIONS(1536), - [anon_sym_QMARK] = ACTIONS(1504), - [anon_sym_u8] = ACTIONS(1536), - [anon_sym_i8] = ACTIONS(1536), - [anon_sym_u16] = ACTIONS(1536), - [anon_sym_i16] = ACTIONS(1536), - [anon_sym_u32] = ACTIONS(1536), - [anon_sym_i32] = ACTIONS(1536), - [anon_sym_u64] = ACTIONS(1536), - [anon_sym_i64] = ACTIONS(1536), - [anon_sym_u128] = ACTIONS(1536), - [anon_sym_i128] = ACTIONS(1536), - [anon_sym_isize] = ACTIONS(1536), - [anon_sym_usize] = ACTIONS(1536), - [anon_sym_f32] = ACTIONS(1536), - [anon_sym_f64] = ACTIONS(1536), - [anon_sym_bool] = ACTIONS(1536), - [anon_sym_str] = ACTIONS(1536), - [anon_sym_char] = ACTIONS(1536), - [anon_sym_DASH] = ACTIONS(1536), - [anon_sym_SLASH] = ACTIONS(1506), - [anon_sym_PERCENT] = ACTIONS(1506), - [anon_sym_CARET] = ACTIONS(1506), - [anon_sym_BANG] = ACTIONS(1536), - [anon_sym_AMP] = ACTIONS(1536), - [anon_sym_PIPE] = ACTIONS(1536), - [anon_sym_AMP_AMP] = ACTIONS(1504), - [anon_sym_PIPE_PIPE] = ACTIONS(1504), - [anon_sym_LT_LT] = ACTIONS(1506), - [anon_sym_GT_GT] = ACTIONS(1506), - [anon_sym_PLUS_EQ] = ACTIONS(1504), - [anon_sym_DASH_EQ] = ACTIONS(1504), - [anon_sym_STAR_EQ] = ACTIONS(1504), - [anon_sym_SLASH_EQ] = ACTIONS(1504), - [anon_sym_PERCENT_EQ] = ACTIONS(1504), - [anon_sym_CARET_EQ] = ACTIONS(1504), - [anon_sym_AMP_EQ] = ACTIONS(1504), - [anon_sym_PIPE_EQ] = ACTIONS(1504), - [anon_sym_LT_LT_EQ] = ACTIONS(1504), - [anon_sym_GT_GT_EQ] = ACTIONS(1504), - [anon_sym_EQ] = ACTIONS(1506), - [anon_sym_EQ_EQ] = ACTIONS(1504), - [anon_sym_BANG_EQ] = ACTIONS(1504), - [anon_sym_GT] = ACTIONS(1506), - [anon_sym_LT] = ACTIONS(1536), - [anon_sym_GT_EQ] = ACTIONS(1504), - [anon_sym_LT_EQ] = ACTIONS(1504), - [anon_sym_DOT] = ACTIONS(1506), - [anon_sym_DOT_DOT] = ACTIONS(1536), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1504), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1504), - [anon_sym_COLON_COLON] = ACTIONS(1534), - [anon_sym_POUND] = ACTIONS(1534), - [anon_sym_SQUOTE] = ACTIONS(1536), - [anon_sym_as] = ACTIONS(1506), - [anon_sym_async] = ACTIONS(1536), - [anon_sym_break] = ACTIONS(1536), - [anon_sym_const] = ACTIONS(1536), - [anon_sym_continue] = ACTIONS(1536), - [anon_sym_default] = ACTIONS(1536), - [anon_sym_enum] = ACTIONS(1536), - [anon_sym_fn] = ACTIONS(1536), - [anon_sym_for] = ACTIONS(1536), - [anon_sym_gen] = ACTIONS(1536), - [anon_sym_if] = ACTIONS(1536), - [anon_sym_impl] = ACTIONS(1536), - [anon_sym_let] = ACTIONS(1536), - [anon_sym_loop] = ACTIONS(1536), - [anon_sym_match] = ACTIONS(1536), - [anon_sym_mod] = ACTIONS(1536), - [anon_sym_pub] = ACTIONS(1536), - [anon_sym_return] = ACTIONS(1536), - [anon_sym_static] = ACTIONS(1536), - [anon_sym_struct] = ACTIONS(1536), - [anon_sym_trait] = ACTIONS(1536), - [anon_sym_type] = ACTIONS(1536), - [anon_sym_union] = ACTIONS(1536), - [anon_sym_unsafe] = ACTIONS(1536), - [anon_sym_use] = ACTIONS(1536), - [anon_sym_while] = ACTIONS(1536), - [anon_sym_extern] = ACTIONS(1536), - [anon_sym_raw] = ACTIONS(1536), - [anon_sym_yield] = ACTIONS(1536), - [anon_sym_move] = ACTIONS(1536), - [anon_sym_try] = ACTIONS(1536), - [sym_integer_literal] = ACTIONS(1534), - [aux_sym_string_literal_token1] = ACTIONS(1534), - [sym_char_literal] = ACTIONS(1534), - [anon_sym_true] = ACTIONS(1536), - [anon_sym_false] = ACTIONS(1536), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1536), - [sym_super] = ACTIONS(1536), - [sym_crate] = ACTIONS(1536), - [sym_metavariable] = ACTIONS(1534), - [sym__raw_string_literal_start] = ACTIONS(1534), - [sym_float_literal] = ACTIONS(1534), - }, - [STATE(420)] = { - [sym_line_comment] = STATE(420), - [sym_block_comment] = STATE(420), - [ts_builtin_sym_end] = ACTIONS(1056), - [sym_identifier] = ACTIONS(1054), - [anon_sym_SEMI] = ACTIONS(1056), - [anon_sym_macro_rules_BANG] = ACTIONS(1056), - [anon_sym_LPAREN] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1056), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1056), - [anon_sym_PLUS] = ACTIONS(1054), - [anon_sym_STAR] = ACTIONS(1054), - [anon_sym_QMARK] = ACTIONS(1056), - [anon_sym_u8] = ACTIONS(1054), - [anon_sym_i8] = ACTIONS(1054), - [anon_sym_u16] = ACTIONS(1054), - [anon_sym_i16] = ACTIONS(1054), - [anon_sym_u32] = ACTIONS(1054), - [anon_sym_i32] = ACTIONS(1054), - [anon_sym_u64] = ACTIONS(1054), - [anon_sym_i64] = ACTIONS(1054), - [anon_sym_u128] = ACTIONS(1054), - [anon_sym_i128] = ACTIONS(1054), - [anon_sym_isize] = ACTIONS(1054), - [anon_sym_usize] = ACTIONS(1054), - [anon_sym_f32] = ACTIONS(1054), - [anon_sym_f64] = ACTIONS(1054), - [anon_sym_bool] = ACTIONS(1054), - [anon_sym_str] = ACTIONS(1054), - [anon_sym_char] = ACTIONS(1054), - [anon_sym_DASH] = ACTIONS(1054), - [anon_sym_SLASH] = ACTIONS(1054), - [anon_sym_PERCENT] = ACTIONS(1054), - [anon_sym_CARET] = ACTIONS(1054), - [anon_sym_BANG] = ACTIONS(1054), - [anon_sym_AMP] = ACTIONS(1054), - [anon_sym_PIPE] = ACTIONS(1054), - [anon_sym_AMP_AMP] = ACTIONS(1056), - [anon_sym_PIPE_PIPE] = ACTIONS(1056), - [anon_sym_LT_LT] = ACTIONS(1054), - [anon_sym_GT_GT] = ACTIONS(1054), - [anon_sym_PLUS_EQ] = ACTIONS(1056), - [anon_sym_DASH_EQ] = ACTIONS(1056), - [anon_sym_STAR_EQ] = ACTIONS(1056), - [anon_sym_SLASH_EQ] = ACTIONS(1056), - [anon_sym_PERCENT_EQ] = ACTIONS(1056), - [anon_sym_CARET_EQ] = ACTIONS(1056), - [anon_sym_AMP_EQ] = ACTIONS(1056), - [anon_sym_PIPE_EQ] = ACTIONS(1056), - [anon_sym_LT_LT_EQ] = ACTIONS(1056), - [anon_sym_GT_GT_EQ] = ACTIONS(1056), - [anon_sym_EQ] = ACTIONS(1054), - [anon_sym_EQ_EQ] = ACTIONS(1056), - [anon_sym_BANG_EQ] = ACTIONS(1056), - [anon_sym_GT] = ACTIONS(1054), - [anon_sym_LT] = ACTIONS(1054), - [anon_sym_GT_EQ] = ACTIONS(1056), - [anon_sym_LT_EQ] = ACTIONS(1056), - [anon_sym_DOT] = ACTIONS(1054), - [anon_sym_DOT_DOT] = ACTIONS(1054), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1056), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1056), - [anon_sym_COLON_COLON] = ACTIONS(1056), - [anon_sym_POUND] = ACTIONS(1056), - [anon_sym_SQUOTE] = ACTIONS(1054), - [anon_sym_as] = ACTIONS(1054), - [anon_sym_async] = ACTIONS(1054), - [anon_sym_break] = ACTIONS(1054), - [anon_sym_const] = ACTIONS(1054), - [anon_sym_continue] = ACTIONS(1054), - [anon_sym_default] = ACTIONS(1054), - [anon_sym_enum] = ACTIONS(1054), - [anon_sym_fn] = ACTIONS(1054), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_gen] = ACTIONS(1054), - [anon_sym_if] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1054), - [anon_sym_let] = ACTIONS(1054), - [anon_sym_loop] = ACTIONS(1054), - [anon_sym_match] = ACTIONS(1054), - [anon_sym_mod] = ACTIONS(1054), - [anon_sym_pub] = ACTIONS(1054), - [anon_sym_return] = ACTIONS(1054), - [anon_sym_static] = ACTIONS(1054), - [anon_sym_struct] = ACTIONS(1054), - [anon_sym_trait] = ACTIONS(1054), - [anon_sym_type] = ACTIONS(1054), - [anon_sym_union] = ACTIONS(1054), - [anon_sym_unsafe] = ACTIONS(1054), - [anon_sym_use] = ACTIONS(1054), - [anon_sym_while] = ACTIONS(1054), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_raw] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1054), - [anon_sym_move] = ACTIONS(1054), - [anon_sym_try] = ACTIONS(1054), - [sym_integer_literal] = ACTIONS(1056), - [aux_sym_string_literal_token1] = ACTIONS(1056), - [sym_char_literal] = ACTIONS(1056), - [anon_sym_true] = ACTIONS(1054), - [anon_sym_false] = ACTIONS(1054), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1054), - [sym_super] = ACTIONS(1054), - [sym_crate] = ACTIONS(1054), - [sym_metavariable] = ACTIONS(1056), - [sym__raw_string_literal_start] = ACTIONS(1056), - [sym_float_literal] = ACTIONS(1056), - }, - [STATE(421)] = { - [sym_line_comment] = STATE(421), - [sym_block_comment] = STATE(421), - [ts_builtin_sym_end] = ACTIONS(1538), - [sym_identifier] = ACTIONS(1540), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_macro_rules_BANG] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1538), - [anon_sym_LBRACK] = ACTIONS(1538), - [anon_sym_LBRACE] = ACTIONS(1538), - [anon_sym_RBRACE] = ACTIONS(1538), - [anon_sym_PLUS] = ACTIONS(1540), - [anon_sym_STAR] = ACTIONS(1540), - [anon_sym_QMARK] = ACTIONS(1538), - [anon_sym_u8] = ACTIONS(1540), - [anon_sym_i8] = ACTIONS(1540), - [anon_sym_u16] = ACTIONS(1540), - [anon_sym_i16] = ACTIONS(1540), - [anon_sym_u32] = ACTIONS(1540), - [anon_sym_i32] = ACTIONS(1540), - [anon_sym_u64] = ACTIONS(1540), - [anon_sym_i64] = ACTIONS(1540), - [anon_sym_u128] = ACTIONS(1540), - [anon_sym_i128] = ACTIONS(1540), - [anon_sym_isize] = ACTIONS(1540), - [anon_sym_usize] = ACTIONS(1540), - [anon_sym_f32] = ACTIONS(1540), - [anon_sym_f64] = ACTIONS(1540), - [anon_sym_bool] = ACTIONS(1540), - [anon_sym_str] = ACTIONS(1540), - [anon_sym_char] = ACTIONS(1540), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_SLASH] = ACTIONS(1540), - [anon_sym_PERCENT] = ACTIONS(1540), - [anon_sym_CARET] = ACTIONS(1540), - [anon_sym_BANG] = ACTIONS(1540), - [anon_sym_AMP] = ACTIONS(1540), - [anon_sym_PIPE] = ACTIONS(1540), - [anon_sym_AMP_AMP] = ACTIONS(1538), - [anon_sym_PIPE_PIPE] = ACTIONS(1538), - [anon_sym_LT_LT] = ACTIONS(1540), - [anon_sym_GT_GT] = ACTIONS(1540), - [anon_sym_PLUS_EQ] = ACTIONS(1538), - [anon_sym_DASH_EQ] = ACTIONS(1538), - [anon_sym_STAR_EQ] = ACTIONS(1538), - [anon_sym_SLASH_EQ] = ACTIONS(1538), - [anon_sym_PERCENT_EQ] = ACTIONS(1538), - [anon_sym_CARET_EQ] = ACTIONS(1538), - [anon_sym_AMP_EQ] = ACTIONS(1538), - [anon_sym_PIPE_EQ] = ACTIONS(1538), - [anon_sym_LT_LT_EQ] = ACTIONS(1538), - [anon_sym_GT_GT_EQ] = ACTIONS(1538), - [anon_sym_EQ] = ACTIONS(1540), - [anon_sym_EQ_EQ] = ACTIONS(1538), - [anon_sym_BANG_EQ] = ACTIONS(1538), - [anon_sym_GT] = ACTIONS(1540), - [anon_sym_LT] = ACTIONS(1540), - [anon_sym_GT_EQ] = ACTIONS(1538), - [anon_sym_LT_EQ] = ACTIONS(1538), - [anon_sym_DOT] = ACTIONS(1540), - [anon_sym_DOT_DOT] = ACTIONS(1540), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1538), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1538), - [anon_sym_COLON_COLON] = ACTIONS(1538), - [anon_sym_POUND] = ACTIONS(1538), - [anon_sym_SQUOTE] = ACTIONS(1540), - [anon_sym_as] = ACTIONS(1540), - [anon_sym_async] = ACTIONS(1540), - [anon_sym_break] = ACTIONS(1540), - [anon_sym_const] = ACTIONS(1540), - [anon_sym_continue] = ACTIONS(1540), - [anon_sym_default] = ACTIONS(1540), - [anon_sym_enum] = ACTIONS(1540), - [anon_sym_fn] = ACTIONS(1540), - [anon_sym_for] = ACTIONS(1540), - [anon_sym_gen] = ACTIONS(1540), - [anon_sym_if] = ACTIONS(1540), - [anon_sym_impl] = ACTIONS(1540), - [anon_sym_let] = ACTIONS(1540), - [anon_sym_loop] = ACTIONS(1540), - [anon_sym_match] = ACTIONS(1540), - [anon_sym_mod] = ACTIONS(1540), - [anon_sym_pub] = ACTIONS(1540), - [anon_sym_return] = ACTIONS(1540), - [anon_sym_static] = ACTIONS(1540), - [anon_sym_struct] = ACTIONS(1540), - [anon_sym_trait] = ACTIONS(1540), - [anon_sym_type] = ACTIONS(1540), - [anon_sym_union] = ACTIONS(1540), - [anon_sym_unsafe] = ACTIONS(1540), - [anon_sym_use] = ACTIONS(1540), - [anon_sym_while] = ACTIONS(1540), - [anon_sym_extern] = ACTIONS(1540), - [anon_sym_raw] = ACTIONS(1540), - [anon_sym_yield] = ACTIONS(1540), - [anon_sym_move] = ACTIONS(1540), - [anon_sym_try] = ACTIONS(1540), - [sym_integer_literal] = ACTIONS(1538), - [aux_sym_string_literal_token1] = ACTIONS(1538), - [sym_char_literal] = ACTIONS(1538), - [anon_sym_true] = ACTIONS(1540), - [anon_sym_false] = ACTIONS(1540), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1540), - [sym_super] = ACTIONS(1540), - [sym_crate] = ACTIONS(1540), - [sym_metavariable] = ACTIONS(1538), - [sym__raw_string_literal_start] = ACTIONS(1538), - [sym_float_literal] = ACTIONS(1538), - }, - [STATE(422)] = { - [sym_line_comment] = STATE(422), - [sym_block_comment] = STATE(422), - [ts_builtin_sym_end] = ACTIONS(1542), - [sym_identifier] = ACTIONS(1544), - [anon_sym_SEMI] = ACTIONS(1542), - [anon_sym_macro_rules_BANG] = ACTIONS(1542), - [anon_sym_LPAREN] = ACTIONS(1542), - [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_LBRACE] = ACTIONS(1542), - [anon_sym_RBRACE] = ACTIONS(1542), - [anon_sym_PLUS] = ACTIONS(1544), - [anon_sym_STAR] = ACTIONS(1544), - [anon_sym_QMARK] = ACTIONS(1542), - [anon_sym_u8] = ACTIONS(1544), - [anon_sym_i8] = ACTIONS(1544), - [anon_sym_u16] = ACTIONS(1544), - [anon_sym_i16] = ACTIONS(1544), - [anon_sym_u32] = ACTIONS(1544), - [anon_sym_i32] = ACTIONS(1544), - [anon_sym_u64] = ACTIONS(1544), - [anon_sym_i64] = ACTIONS(1544), - [anon_sym_u128] = ACTIONS(1544), - [anon_sym_i128] = ACTIONS(1544), - [anon_sym_isize] = ACTIONS(1544), - [anon_sym_usize] = ACTIONS(1544), - [anon_sym_f32] = ACTIONS(1544), - [anon_sym_f64] = ACTIONS(1544), - [anon_sym_bool] = ACTIONS(1544), - [anon_sym_str] = ACTIONS(1544), - [anon_sym_char] = ACTIONS(1544), - [anon_sym_DASH] = ACTIONS(1544), - [anon_sym_SLASH] = ACTIONS(1544), - [anon_sym_PERCENT] = ACTIONS(1544), - [anon_sym_CARET] = ACTIONS(1544), - [anon_sym_BANG] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(1544), - [anon_sym_PIPE] = ACTIONS(1544), - [anon_sym_AMP_AMP] = ACTIONS(1542), - [anon_sym_PIPE_PIPE] = ACTIONS(1542), - [anon_sym_LT_LT] = ACTIONS(1544), - [anon_sym_GT_GT] = ACTIONS(1544), - [anon_sym_PLUS_EQ] = ACTIONS(1542), - [anon_sym_DASH_EQ] = ACTIONS(1542), - [anon_sym_STAR_EQ] = ACTIONS(1542), - [anon_sym_SLASH_EQ] = ACTIONS(1542), - [anon_sym_PERCENT_EQ] = ACTIONS(1542), - [anon_sym_CARET_EQ] = ACTIONS(1542), - [anon_sym_AMP_EQ] = ACTIONS(1542), - [anon_sym_PIPE_EQ] = ACTIONS(1542), - [anon_sym_LT_LT_EQ] = ACTIONS(1542), - [anon_sym_GT_GT_EQ] = ACTIONS(1542), - [anon_sym_EQ] = ACTIONS(1544), - [anon_sym_EQ_EQ] = ACTIONS(1542), - [anon_sym_BANG_EQ] = ACTIONS(1542), - [anon_sym_GT] = ACTIONS(1544), - [anon_sym_LT] = ACTIONS(1544), - [anon_sym_GT_EQ] = ACTIONS(1542), - [anon_sym_LT_EQ] = ACTIONS(1542), - [anon_sym_DOT] = ACTIONS(1544), - [anon_sym_DOT_DOT] = ACTIONS(1544), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1542), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1542), - [anon_sym_COLON_COLON] = ACTIONS(1542), - [anon_sym_POUND] = ACTIONS(1542), - [anon_sym_SQUOTE] = ACTIONS(1544), - [anon_sym_as] = ACTIONS(1544), - [anon_sym_async] = ACTIONS(1544), - [anon_sym_break] = ACTIONS(1544), - [anon_sym_const] = ACTIONS(1544), - [anon_sym_continue] = ACTIONS(1544), - [anon_sym_default] = ACTIONS(1544), - [anon_sym_enum] = ACTIONS(1544), - [anon_sym_fn] = ACTIONS(1544), - [anon_sym_for] = ACTIONS(1544), - [anon_sym_gen] = ACTIONS(1544), - [anon_sym_if] = ACTIONS(1544), - [anon_sym_impl] = ACTIONS(1544), - [anon_sym_let] = ACTIONS(1544), - [anon_sym_loop] = ACTIONS(1544), - [anon_sym_match] = ACTIONS(1544), - [anon_sym_mod] = ACTIONS(1544), - [anon_sym_pub] = ACTIONS(1544), - [anon_sym_return] = ACTIONS(1544), - [anon_sym_static] = ACTIONS(1544), - [anon_sym_struct] = ACTIONS(1544), - [anon_sym_trait] = ACTIONS(1544), - [anon_sym_type] = ACTIONS(1544), - [anon_sym_union] = ACTIONS(1544), - [anon_sym_unsafe] = ACTIONS(1544), - [anon_sym_use] = ACTIONS(1544), - [anon_sym_while] = ACTIONS(1544), - [anon_sym_extern] = ACTIONS(1544), - [anon_sym_raw] = ACTIONS(1544), - [anon_sym_yield] = ACTIONS(1544), - [anon_sym_move] = ACTIONS(1544), - [anon_sym_try] = ACTIONS(1544), - [sym_integer_literal] = ACTIONS(1542), - [aux_sym_string_literal_token1] = ACTIONS(1542), - [sym_char_literal] = ACTIONS(1542), - [anon_sym_true] = ACTIONS(1544), - [anon_sym_false] = ACTIONS(1544), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1544), - [sym_super] = ACTIONS(1544), - [sym_crate] = ACTIONS(1544), - [sym_metavariable] = ACTIONS(1542), - [sym__raw_string_literal_start] = ACTIONS(1542), - [sym_float_literal] = ACTIONS(1542), - }, - [STATE(423)] = { - [sym_line_comment] = STATE(423), - [sym_block_comment] = STATE(423), [ts_builtin_sym_end] = ACTIONS(1546), [sym_identifier] = ACTIONS(1548), [anon_sym_SEMI] = ACTIONS(1546), @@ -65769,353 +64922,1243 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1546), [sym_float_literal] = ACTIONS(1546), }, - [STATE(424)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_self_parameter] = STATE(3047), - [sym_variadic_parameter] = STATE(3047), - [sym_parameter] = STATE(3047), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2683), - [sym_bracketed_type] = STATE(3694), - [sym_lifetime] = STATE(3065), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3341), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2582), - [sym_scoped_identifier] = STATE(2327), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(3276), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [419] = { + [sym_line_comment] = STATE(419), + [sym_block_comment] = STATE(419), + [ts_builtin_sym_end] = ACTIONS(1550), + [sym_identifier] = ACTIONS(1552), + [anon_sym_SEMI] = ACTIONS(1550), + [anon_sym_macro_rules_BANG] = ACTIONS(1550), + [anon_sym_LPAREN] = ACTIONS(1550), + [anon_sym_LBRACK] = ACTIONS(1550), + [anon_sym_LBRACE] = ACTIONS(1550), + [anon_sym_RBRACE] = ACTIONS(1550), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1552), + [anon_sym_QMARK] = ACTIONS(1506), + [anon_sym_u8] = ACTIONS(1552), + [anon_sym_i8] = ACTIONS(1552), + [anon_sym_u16] = ACTIONS(1552), + [anon_sym_i16] = ACTIONS(1552), + [anon_sym_u32] = ACTIONS(1552), + [anon_sym_i32] = ACTIONS(1552), + [anon_sym_u64] = ACTIONS(1552), + [anon_sym_i64] = ACTIONS(1552), + [anon_sym_u128] = ACTIONS(1552), + [anon_sym_i128] = ACTIONS(1552), + [anon_sym_isize] = ACTIONS(1552), + [anon_sym_usize] = ACTIONS(1552), + [anon_sym_f32] = ACTIONS(1552), + [anon_sym_f64] = ACTIONS(1552), + [anon_sym_bool] = ACTIONS(1552), + [anon_sym_str] = ACTIONS(1552), + [anon_sym_char] = ACTIONS(1552), + [anon_sym_DASH] = ACTIONS(1552), + [anon_sym_SLASH] = ACTIONS(1508), + [anon_sym_PERCENT] = ACTIONS(1508), + [anon_sym_CARET] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1552), + [anon_sym_AMP] = ACTIONS(1552), + [anon_sym_PIPE] = ACTIONS(1552), + [anon_sym_AMP_AMP] = ACTIONS(1506), + [anon_sym_PIPE_PIPE] = ACTIONS(1506), + [anon_sym_LT_LT] = ACTIONS(1508), + [anon_sym_GT_GT] = ACTIONS(1508), + [anon_sym_PLUS_EQ] = ACTIONS(1506), + [anon_sym_DASH_EQ] = ACTIONS(1506), + [anon_sym_STAR_EQ] = ACTIONS(1506), + [anon_sym_SLASH_EQ] = ACTIONS(1506), + [anon_sym_PERCENT_EQ] = ACTIONS(1506), + [anon_sym_CARET_EQ] = ACTIONS(1506), + [anon_sym_AMP_EQ] = ACTIONS(1506), + [anon_sym_PIPE_EQ] = ACTIONS(1506), + [anon_sym_LT_LT_EQ] = ACTIONS(1506), + [anon_sym_GT_GT_EQ] = ACTIONS(1506), + [anon_sym_EQ] = ACTIONS(1508), + [anon_sym_EQ_EQ] = ACTIONS(1506), + [anon_sym_BANG_EQ] = ACTIONS(1506), + [anon_sym_GT] = ACTIONS(1508), + [anon_sym_LT] = ACTIONS(1552), + [anon_sym_GT_EQ] = ACTIONS(1506), + [anon_sym_LT_EQ] = ACTIONS(1506), + [anon_sym_DOT] = ACTIONS(1508), + [anon_sym_DOT_DOT] = ACTIONS(1552), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1506), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1506), + [anon_sym_COLON_COLON] = ACTIONS(1550), + [anon_sym_POUND] = ACTIONS(1550), + [anon_sym_SQUOTE] = ACTIONS(1552), + [anon_sym_as] = ACTIONS(1508), + [anon_sym_async] = ACTIONS(1552), + [anon_sym_break] = ACTIONS(1552), + [anon_sym_const] = ACTIONS(1552), + [anon_sym_continue] = ACTIONS(1552), + [anon_sym_default] = ACTIONS(1552), + [anon_sym_enum] = ACTIONS(1552), + [anon_sym_fn] = ACTIONS(1552), + [anon_sym_for] = ACTIONS(1552), + [anon_sym_gen] = ACTIONS(1552), + [anon_sym_if] = ACTIONS(1552), + [anon_sym_impl] = ACTIONS(1552), + [anon_sym_let] = ACTIONS(1552), + [anon_sym_loop] = ACTIONS(1552), + [anon_sym_match] = ACTIONS(1552), + [anon_sym_mod] = ACTIONS(1552), + [anon_sym_pub] = ACTIONS(1552), + [anon_sym_return] = ACTIONS(1552), + [anon_sym_static] = ACTIONS(1552), + [anon_sym_struct] = ACTIONS(1552), + [anon_sym_trait] = ACTIONS(1552), + [anon_sym_type] = ACTIONS(1552), + [anon_sym_union] = ACTIONS(1552), + [anon_sym_unsafe] = ACTIONS(1552), + [anon_sym_use] = ACTIONS(1552), + [anon_sym_while] = ACTIONS(1552), + [anon_sym_extern] = ACTIONS(1552), + [anon_sym_raw] = ACTIONS(1552), + [anon_sym_yield] = ACTIONS(1552), + [anon_sym_move] = ACTIONS(1552), + [anon_sym_try] = ACTIONS(1552), + [sym_integer_literal] = ACTIONS(1550), + [aux_sym_string_literal_token1] = ACTIONS(1550), + [sym_char_literal] = ACTIONS(1550), + [anon_sym_true] = ACTIONS(1552), + [anon_sym_false] = ACTIONS(1552), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1552), + [sym_super] = ACTIONS(1552), + [sym_crate] = ACTIONS(1552), + [sym_metavariable] = ACTIONS(1550), + [sym__raw_string_literal_start] = ACTIONS(1550), + [sym_float_literal] = ACTIONS(1550), + }, + [420] = { + [sym_line_comment] = STATE(420), + [sym_block_comment] = STATE(420), + [sym_identifier] = ACTIONS(1504), + [anon_sym_SEMI] = ACTIONS(1506), + [anon_sym_macro_rules_BANG] = ACTIONS(1502), + [anon_sym_LPAREN] = ACTIONS(1506), + [anon_sym_LBRACK] = ACTIONS(1506), + [anon_sym_LBRACE] = ACTIONS(1502), + [anon_sym_RBRACE] = ACTIONS(1502), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1508), + [anon_sym_QMARK] = ACTIONS(1506), + [anon_sym_u8] = ACTIONS(1504), + [anon_sym_i8] = ACTIONS(1504), + [anon_sym_u16] = ACTIONS(1504), + [anon_sym_i16] = ACTIONS(1504), + [anon_sym_u32] = ACTIONS(1504), + [anon_sym_i32] = ACTIONS(1504), + [anon_sym_u64] = ACTIONS(1504), + [anon_sym_i64] = ACTIONS(1504), + [anon_sym_u128] = ACTIONS(1504), + [anon_sym_i128] = ACTIONS(1504), + [anon_sym_isize] = ACTIONS(1504), + [anon_sym_usize] = ACTIONS(1504), + [anon_sym_f32] = ACTIONS(1504), + [anon_sym_f64] = ACTIONS(1504), + [anon_sym_bool] = ACTIONS(1504), + [anon_sym_str] = ACTIONS(1504), + [anon_sym_char] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1508), + [anon_sym_SLASH] = ACTIONS(1508), + [anon_sym_PERCENT] = ACTIONS(1508), + [anon_sym_CARET] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1504), + [anon_sym_AMP] = ACTIONS(1508), + [anon_sym_PIPE] = ACTIONS(1508), + [anon_sym_AMP_AMP] = ACTIONS(1506), + [anon_sym_PIPE_PIPE] = ACTIONS(1506), + [anon_sym_LT_LT] = ACTIONS(1508), + [anon_sym_GT_GT] = ACTIONS(1508), + [anon_sym_PLUS_EQ] = ACTIONS(1506), + [anon_sym_DASH_EQ] = ACTIONS(1506), + [anon_sym_STAR_EQ] = ACTIONS(1506), + [anon_sym_SLASH_EQ] = ACTIONS(1506), + [anon_sym_PERCENT_EQ] = ACTIONS(1506), + [anon_sym_CARET_EQ] = ACTIONS(1506), + [anon_sym_AMP_EQ] = ACTIONS(1506), + [anon_sym_PIPE_EQ] = ACTIONS(1506), + [anon_sym_LT_LT_EQ] = ACTIONS(1506), + [anon_sym_GT_GT_EQ] = ACTIONS(1506), + [anon_sym_EQ] = ACTIONS(1508), + [anon_sym_EQ_EQ] = ACTIONS(1506), + [anon_sym_BANG_EQ] = ACTIONS(1506), + [anon_sym_GT] = ACTIONS(1508), + [anon_sym_LT] = ACTIONS(1508), + [anon_sym_GT_EQ] = ACTIONS(1506), + [anon_sym_LT_EQ] = ACTIONS(1506), + [anon_sym_DOT] = ACTIONS(1508), + [anon_sym_DOT_DOT] = ACTIONS(1508), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1506), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1506), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_POUND] = ACTIONS(1502), + [anon_sym_SQUOTE] = ACTIONS(1504), + [anon_sym_as] = ACTIONS(1508), + [anon_sym_async] = ACTIONS(1504), + [anon_sym_break] = ACTIONS(1504), + [anon_sym_const] = ACTIONS(1504), + [anon_sym_continue] = ACTIONS(1504), + [anon_sym_default] = ACTIONS(1504), + [anon_sym_enum] = ACTIONS(1504), + [anon_sym_fn] = ACTIONS(1504), + [anon_sym_for] = ACTIONS(1504), + [anon_sym_gen] = ACTIONS(1504), + [anon_sym_if] = ACTIONS(1504), + [anon_sym_impl] = ACTIONS(1504), + [anon_sym_let] = ACTIONS(1504), + [anon_sym_loop] = ACTIONS(1504), + [anon_sym_match] = ACTIONS(1504), + [anon_sym_mod] = ACTIONS(1504), + [anon_sym_pub] = ACTIONS(1504), + [anon_sym_return] = ACTIONS(1504), + [anon_sym_static] = ACTIONS(1504), + [anon_sym_struct] = ACTIONS(1504), + [anon_sym_trait] = ACTIONS(1504), + [anon_sym_type] = ACTIONS(1504), + [anon_sym_union] = ACTIONS(1504), + [anon_sym_unsafe] = ACTIONS(1504), + [anon_sym_use] = ACTIONS(1504), + [anon_sym_while] = ACTIONS(1504), + [anon_sym_extern] = ACTIONS(1504), + [anon_sym_raw] = ACTIONS(1504), + [anon_sym_yield] = ACTIONS(1504), + [anon_sym_move] = ACTIONS(1504), + [anon_sym_try] = ACTIONS(1504), + [sym_integer_literal] = ACTIONS(1502), + [aux_sym_string_literal_token1] = ACTIONS(1502), + [sym_char_literal] = ACTIONS(1502), + [anon_sym_true] = ACTIONS(1504), + [anon_sym_false] = ACTIONS(1504), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1504), + [sym_super] = ACTIONS(1504), + [sym_crate] = ACTIONS(1504), + [sym_metavariable] = ACTIONS(1502), + [sym__raw_string_literal_start] = ACTIONS(1502), + [sym_float_literal] = ACTIONS(1502), + }, + [421] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(3000), + [sym_bracketed_type] = STATE(3693), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2508), + [sym_scoped_identifier] = STATE(2228), + [sym_scoped_type_identifier] = STATE(2206), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(2631), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), + [sym_line_comment] = STATE(421), + [sym_block_comment] = STATE(421), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1554), + [anon_sym_LPAREN] = ACTIONS(1556), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_RBRACK] = ACTIONS(1558), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1560), + [anon_sym_i8] = ACTIONS(1560), + [anon_sym_u16] = ACTIONS(1560), + [anon_sym_i16] = ACTIONS(1560), + [anon_sym_u32] = ACTIONS(1560), + [anon_sym_i32] = ACTIONS(1560), + [anon_sym_u64] = ACTIONS(1560), + [anon_sym_i64] = ACTIONS(1560), + [anon_sym_u128] = ACTIONS(1560), + [anon_sym_i128] = ACTIONS(1560), + [anon_sym_isize] = ACTIONS(1560), + [anon_sym_usize] = ACTIONS(1560), + [anon_sym_f32] = ACTIONS(1560), + [anon_sym_f64] = ACTIONS(1560), + [anon_sym_bool] = ACTIONS(1560), + [anon_sym_str] = ACTIONS(1560), + [anon_sym_char] = ACTIONS(1560), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1562), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COMMA] = ACTIONS(1564), + [anon_sym_COLON_COLON] = ACTIONS(1566), + [anon_sym_SQUOTE] = ACTIONS(1088), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1092), + [anon_sym_default] = ACTIONS(1568), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1570), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1570), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_ref] = ACTIONS(1108), + [anon_sym_dyn] = ACTIONS(1110), + [sym_mutable_specifier] = ACTIONS(1422), + [anon_sym_raw] = ACTIONS(1570), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1572), + [sym_super] = ACTIONS(1572), + [sym_crate] = ACTIONS(1572), + [sym_metavariable] = ACTIONS(1574), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [422] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2083), + [sym_bracketed_type] = STATE(3684), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3340), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2527), + [sym_scoped_identifier] = STATE(2319), + [sym_scoped_type_identifier] = STATE(2206), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(2192), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), + [sym_line_comment] = STATE(422), + [sym_block_comment] = STATE(422), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1052), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1064), + [anon_sym_i8] = ACTIONS(1064), + [anon_sym_u16] = ACTIONS(1064), + [anon_sym_i16] = ACTIONS(1064), + [anon_sym_u32] = ACTIONS(1064), + [anon_sym_i32] = ACTIONS(1064), + [anon_sym_u64] = ACTIONS(1064), + [anon_sym_i64] = ACTIONS(1064), + [anon_sym_u128] = ACTIONS(1064), + [anon_sym_i128] = ACTIONS(1064), + [anon_sym_isize] = ACTIONS(1064), + [anon_sym_usize] = ACTIONS(1064), + [anon_sym_f32] = ACTIONS(1064), + [anon_sym_f64] = ACTIONS(1064), + [anon_sym_bool] = ACTIONS(1064), + [anon_sym_str] = ACTIONS(1064), + [anon_sym_char] = ACTIONS(1064), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1576), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1084), + [anon_sym_SQUOTE] = ACTIONS(1088), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1092), + [anon_sym_default] = ACTIONS(1094), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1100), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1100), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_ref] = ACTIONS(1108), + [anon_sym_dyn] = ACTIONS(1110), + [sym_mutable_specifier] = ACTIONS(1422), + [anon_sym_raw] = ACTIONS(1100), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1122), + [sym_super] = ACTIONS(1122), + [sym_crate] = ACTIONS(1122), + [sym_metavariable] = ACTIONS(1124), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [423] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2083), + [sym_bracketed_type] = STATE(3693), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2508), + [sym_scoped_identifier] = STATE(2228), + [sym_scoped_type_identifier] = STATE(2206), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(2192), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), + [sym_line_comment] = STATE(423), + [sym_block_comment] = STATE(423), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1554), + [anon_sym_LPAREN] = ACTIONS(1556), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1560), + [anon_sym_i8] = ACTIONS(1560), + [anon_sym_u16] = ACTIONS(1560), + [anon_sym_i16] = ACTIONS(1560), + [anon_sym_u32] = ACTIONS(1560), + [anon_sym_i32] = ACTIONS(1560), + [anon_sym_u64] = ACTIONS(1560), + [anon_sym_i64] = ACTIONS(1560), + [anon_sym_u128] = ACTIONS(1560), + [anon_sym_i128] = ACTIONS(1560), + [anon_sym_isize] = ACTIONS(1560), + [anon_sym_usize] = ACTIONS(1560), + [anon_sym_f32] = ACTIONS(1560), + [anon_sym_f64] = ACTIONS(1560), + [anon_sym_bool] = ACTIONS(1560), + [anon_sym_str] = ACTIONS(1560), + [anon_sym_char] = ACTIONS(1560), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1562), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1566), + [anon_sym_SQUOTE] = ACTIONS(1088), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1092), + [anon_sym_default] = ACTIONS(1568), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1570), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1570), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_ref] = ACTIONS(1108), + [anon_sym_dyn] = ACTIONS(1110), + [sym_mutable_specifier] = ACTIONS(1422), + [anon_sym_raw] = ACTIONS(1570), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1572), + [sym_super] = ACTIONS(1572), + [sym_crate] = ACTIONS(1572), + [sym_metavariable] = ACTIONS(1574), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [424] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2073), + [sym_bracketed_type] = STATE(3692), + [sym_lifetime] = STATE(849), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3423), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2535), + [sym_scoped_identifier] = STATE(2193), + [sym_scoped_type_identifier] = STATE(2206), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(2184), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), [sym_line_comment] = STATE(424), [sym_block_comment] = STATE(424), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1058), - [anon_sym_LPAREN] = ACTIONS(1060), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1070), - [anon_sym_i8] = ACTIONS(1070), - [anon_sym_u16] = ACTIONS(1070), - [anon_sym_i16] = ACTIONS(1070), - [anon_sym_u32] = ACTIONS(1070), - [anon_sym_i32] = ACTIONS(1070), - [anon_sym_u64] = ACTIONS(1070), - [anon_sym_i64] = ACTIONS(1070), - [anon_sym_u128] = ACTIONS(1070), - [anon_sym_i128] = ACTIONS(1070), - [anon_sym_isize] = ACTIONS(1070), - [anon_sym_usize] = ACTIONS(1070), - [anon_sym_f32] = ACTIONS(1070), - [anon_sym_f64] = ACTIONS(1070), - [anon_sym_bool] = ACTIONS(1070), - [anon_sym_str] = ACTIONS(1070), - [anon_sym_char] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1076), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1550), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1084), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1106), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1106), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1118), - [anon_sym_raw] = ACTIONS(1106), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1126), - [sym_super] = ACTIONS(1128), - [sym_crate] = ACTIONS(1128), - [sym_metavariable] = ACTIONS(1130), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(425)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_self_parameter] = STATE(2940), - [sym_variadic_parameter] = STATE(2940), - [sym_parameter] = STATE(2940), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2719), - [sym_bracketed_type] = STATE(3694), - [sym_lifetime] = STATE(3065), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3341), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2582), - [sym_scoped_identifier] = STATE(2327), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(3276), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(1150), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1154), + [anon_sym_i8] = ACTIONS(1154), + [anon_sym_u16] = ACTIONS(1154), + [anon_sym_i16] = ACTIONS(1154), + [anon_sym_u32] = ACTIONS(1154), + [anon_sym_i32] = ACTIONS(1154), + [anon_sym_u64] = ACTIONS(1154), + [anon_sym_i64] = ACTIONS(1154), + [anon_sym_u128] = ACTIONS(1154), + [anon_sym_i128] = ACTIONS(1154), + [anon_sym_isize] = ACTIONS(1154), + [anon_sym_usize] = ACTIONS(1154), + [anon_sym_f32] = ACTIONS(1154), + [anon_sym_f64] = ACTIONS(1154), + [anon_sym_bool] = ACTIONS(1154), + [anon_sym_str] = ACTIONS(1154), + [anon_sym_char] = ACTIONS(1154), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1410), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1162), + [anon_sym_SQUOTE] = ACTIONS(1088), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1092), + [anon_sym_default] = ACTIONS(1164), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1166), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1166), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_ref] = ACTIONS(1108), + [anon_sym_dyn] = ACTIONS(1110), + [sym_mutable_specifier] = ACTIONS(1578), + [anon_sym_raw] = ACTIONS(1166), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1580), + [sym_super] = ACTIONS(1170), + [sym_crate] = ACTIONS(1170), + [sym_metavariable] = ACTIONS(1172), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [425] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2073), + [sym_bracketed_type] = STATE(3692), + [sym_lifetime] = STATE(846), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3423), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2535), + [sym_scoped_identifier] = STATE(2193), + [sym_scoped_type_identifier] = STATE(2206), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(2184), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), [sym_line_comment] = STATE(425), [sym_block_comment] = STATE(425), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1058), - [anon_sym_LPAREN] = ACTIONS(1060), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1070), - [anon_sym_i8] = ACTIONS(1070), - [anon_sym_u16] = ACTIONS(1070), - [anon_sym_i16] = ACTIONS(1070), - [anon_sym_u32] = ACTIONS(1070), - [anon_sym_i32] = ACTIONS(1070), - [anon_sym_u64] = ACTIONS(1070), - [anon_sym_i64] = ACTIONS(1070), - [anon_sym_u128] = ACTIONS(1070), - [anon_sym_i128] = ACTIONS(1070), - [anon_sym_isize] = ACTIONS(1070), - [anon_sym_usize] = ACTIONS(1070), - [anon_sym_f32] = ACTIONS(1070), - [anon_sym_f64] = ACTIONS(1070), - [anon_sym_bool] = ACTIONS(1070), - [anon_sym_str] = ACTIONS(1070), - [anon_sym_char] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1076), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1552), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1084), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1106), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1106), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1118), - [anon_sym_raw] = ACTIONS(1106), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1126), - [sym_super] = ACTIONS(1128), - [sym_crate] = ACTIONS(1128), - [sym_metavariable] = ACTIONS(1130), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(426)] = { + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(1150), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1154), + [anon_sym_i8] = ACTIONS(1154), + [anon_sym_u16] = ACTIONS(1154), + [anon_sym_i16] = ACTIONS(1154), + [anon_sym_u32] = ACTIONS(1154), + [anon_sym_i32] = ACTIONS(1154), + [anon_sym_u64] = ACTIONS(1154), + [anon_sym_i64] = ACTIONS(1154), + [anon_sym_u128] = ACTIONS(1154), + [anon_sym_i128] = ACTIONS(1154), + [anon_sym_isize] = ACTIONS(1154), + [anon_sym_usize] = ACTIONS(1154), + [anon_sym_f32] = ACTIONS(1154), + [anon_sym_f64] = ACTIONS(1154), + [anon_sym_bool] = ACTIONS(1154), + [anon_sym_str] = ACTIONS(1154), + [anon_sym_char] = ACTIONS(1154), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1410), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1162), + [anon_sym_SQUOTE] = ACTIONS(1088), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1092), + [anon_sym_default] = ACTIONS(1164), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1166), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1166), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_ref] = ACTIONS(1108), + [anon_sym_dyn] = ACTIONS(1110), + [sym_mutable_specifier] = ACTIONS(1582), + [anon_sym_raw] = ACTIONS(1166), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1170), + [sym_super] = ACTIONS(1170), + [sym_crate] = ACTIONS(1170), + [sym_metavariable] = ACTIONS(1172), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [426] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2073), + [sym_bracketed_type] = STATE(3684), + [sym_lifetime] = STATE(846), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3340), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2527), + [sym_scoped_identifier] = STATE(2319), + [sym_scoped_type_identifier] = STATE(2206), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(2184), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), [sym_line_comment] = STATE(426), [sym_block_comment] = STATE(426), - [ts_builtin_sym_end] = ACTIONS(1554), - [sym_identifier] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1554), - [anon_sym_macro_rules_BANG] = ACTIONS(1554), - [anon_sym_LPAREN] = ACTIONS(1554), - [anon_sym_LBRACK] = ACTIONS(1554), - [anon_sym_LBRACE] = ACTIONS(1554), - [anon_sym_RBRACE] = ACTIONS(1554), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_QMARK] = ACTIONS(1554), - [anon_sym_u8] = ACTIONS(1556), - [anon_sym_i8] = ACTIONS(1556), - [anon_sym_u16] = ACTIONS(1556), - [anon_sym_i16] = ACTIONS(1556), - [anon_sym_u32] = ACTIONS(1556), - [anon_sym_i32] = ACTIONS(1556), - [anon_sym_u64] = ACTIONS(1556), - [anon_sym_i64] = ACTIONS(1556), - [anon_sym_u128] = ACTIONS(1556), - [anon_sym_i128] = ACTIONS(1556), - [anon_sym_isize] = ACTIONS(1556), - [anon_sym_usize] = ACTIONS(1556), - [anon_sym_f32] = ACTIONS(1556), - [anon_sym_f64] = ACTIONS(1556), - [anon_sym_bool] = ACTIONS(1556), - [anon_sym_str] = ACTIONS(1556), - [anon_sym_char] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_PERCENT] = ACTIONS(1556), - [anon_sym_CARET] = ACTIONS(1556), - [anon_sym_BANG] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(1556), - [anon_sym_PIPE] = ACTIONS(1556), - [anon_sym_AMP_AMP] = ACTIONS(1554), - [anon_sym_PIPE_PIPE] = ACTIONS(1554), - [anon_sym_LT_LT] = ACTIONS(1556), - [anon_sym_GT_GT] = ACTIONS(1556), - [anon_sym_PLUS_EQ] = ACTIONS(1554), - [anon_sym_DASH_EQ] = ACTIONS(1554), - [anon_sym_STAR_EQ] = ACTIONS(1554), - [anon_sym_SLASH_EQ] = ACTIONS(1554), - [anon_sym_PERCENT_EQ] = ACTIONS(1554), - [anon_sym_CARET_EQ] = ACTIONS(1554), - [anon_sym_AMP_EQ] = ACTIONS(1554), - [anon_sym_PIPE_EQ] = ACTIONS(1554), - [anon_sym_LT_LT_EQ] = ACTIONS(1554), - [anon_sym_GT_GT_EQ] = ACTIONS(1554), - [anon_sym_EQ] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1554), - [anon_sym_BANG_EQ] = ACTIONS(1554), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_LT] = ACTIONS(1556), - [anon_sym_GT_EQ] = ACTIONS(1554), - [anon_sym_LT_EQ] = ACTIONS(1554), - [anon_sym_DOT] = ACTIONS(1556), - [anon_sym_DOT_DOT] = ACTIONS(1556), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1554), - [anon_sym_COLON_COLON] = ACTIONS(1554), - [anon_sym_POUND] = ACTIONS(1554), - [anon_sym_SQUOTE] = ACTIONS(1556), - [anon_sym_as] = ACTIONS(1556), - [anon_sym_async] = ACTIONS(1556), - [anon_sym_break] = ACTIONS(1556), - [anon_sym_const] = ACTIONS(1556), - [anon_sym_continue] = ACTIONS(1556), - [anon_sym_default] = ACTIONS(1556), - [anon_sym_enum] = ACTIONS(1556), - [anon_sym_fn] = ACTIONS(1556), - [anon_sym_for] = ACTIONS(1556), - [anon_sym_gen] = ACTIONS(1556), - [anon_sym_if] = ACTIONS(1556), - [anon_sym_impl] = ACTIONS(1556), - [anon_sym_let] = ACTIONS(1556), - [anon_sym_loop] = ACTIONS(1556), - [anon_sym_match] = ACTIONS(1556), - [anon_sym_mod] = ACTIONS(1556), - [anon_sym_pub] = ACTIONS(1556), - [anon_sym_return] = ACTIONS(1556), - [anon_sym_static] = ACTIONS(1556), - [anon_sym_struct] = ACTIONS(1556), - [anon_sym_trait] = ACTIONS(1556), - [anon_sym_type] = ACTIONS(1556), - [anon_sym_union] = ACTIONS(1556), - [anon_sym_unsafe] = ACTIONS(1556), - [anon_sym_use] = ACTIONS(1556), - [anon_sym_while] = ACTIONS(1556), - [anon_sym_extern] = ACTIONS(1556), - [anon_sym_raw] = ACTIONS(1556), - [anon_sym_yield] = ACTIONS(1556), - [anon_sym_move] = ACTIONS(1556), - [anon_sym_try] = ACTIONS(1556), - [sym_integer_literal] = ACTIONS(1554), - [aux_sym_string_literal_token1] = ACTIONS(1554), - [sym_char_literal] = ACTIONS(1554), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1556), - [sym_super] = ACTIONS(1556), - [sym_crate] = ACTIONS(1556), - [sym_metavariable] = ACTIONS(1554), - [sym__raw_string_literal_start] = ACTIONS(1554), - [sym_float_literal] = ACTIONS(1554), - }, - [STATE(427)] = { + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1052), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1064), + [anon_sym_i8] = ACTIONS(1064), + [anon_sym_u16] = ACTIONS(1064), + [anon_sym_i16] = ACTIONS(1064), + [anon_sym_u32] = ACTIONS(1064), + [anon_sym_i32] = ACTIONS(1064), + [anon_sym_u64] = ACTIONS(1064), + [anon_sym_i64] = ACTIONS(1064), + [anon_sym_u128] = ACTIONS(1064), + [anon_sym_i128] = ACTIONS(1064), + [anon_sym_isize] = ACTIONS(1064), + [anon_sym_usize] = ACTIONS(1064), + [anon_sym_f32] = ACTIONS(1064), + [anon_sym_f64] = ACTIONS(1064), + [anon_sym_bool] = ACTIONS(1064), + [anon_sym_str] = ACTIONS(1064), + [anon_sym_char] = ACTIONS(1064), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1576), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1084), + [anon_sym_SQUOTE] = ACTIONS(1088), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1092), + [anon_sym_default] = ACTIONS(1094), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1100), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1100), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_ref] = ACTIONS(1108), + [anon_sym_dyn] = ACTIONS(1110), + [sym_mutable_specifier] = ACTIONS(1584), + [anon_sym_raw] = ACTIONS(1100), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1122), + [sym_super] = ACTIONS(1122), + [sym_crate] = ACTIONS(1122), + [sym_metavariable] = ACTIONS(1124), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [427] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2083), + [sym_bracketed_type] = STATE(3692), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3423), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2535), + [sym_scoped_identifier] = STATE(2193), + [sym_scoped_type_identifier] = STATE(2206), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(2192), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), [sym_line_comment] = STATE(427), [sym_block_comment] = STATE(427), - [ts_builtin_sym_end] = ACTIONS(1558), - [sym_identifier] = ACTIONS(1560), - [anon_sym_SEMI] = ACTIONS(1558), - [anon_sym_macro_rules_BANG] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1558), - [anon_sym_LBRACE] = ACTIONS(1558), - [anon_sym_RBRACE] = ACTIONS(1558), - [anon_sym_PLUS] = ACTIONS(1560), - [anon_sym_STAR] = ACTIONS(1560), - [anon_sym_QMARK] = ACTIONS(1558), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(1150), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1154), + [anon_sym_i8] = ACTIONS(1154), + [anon_sym_u16] = ACTIONS(1154), + [anon_sym_i16] = ACTIONS(1154), + [anon_sym_u32] = ACTIONS(1154), + [anon_sym_i32] = ACTIONS(1154), + [anon_sym_u64] = ACTIONS(1154), + [anon_sym_i64] = ACTIONS(1154), + [anon_sym_u128] = ACTIONS(1154), + [anon_sym_i128] = ACTIONS(1154), + [anon_sym_isize] = ACTIONS(1154), + [anon_sym_usize] = ACTIONS(1154), + [anon_sym_f32] = ACTIONS(1154), + [anon_sym_f64] = ACTIONS(1154), + [anon_sym_bool] = ACTIONS(1154), + [anon_sym_str] = ACTIONS(1154), + [anon_sym_char] = ACTIONS(1154), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1410), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1162), + [anon_sym_SQUOTE] = ACTIONS(1088), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1092), + [anon_sym_default] = ACTIONS(1164), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1166), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1166), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_ref] = ACTIONS(1108), + [anon_sym_dyn] = ACTIONS(1110), + [sym_mutable_specifier] = ACTIONS(1422), + [anon_sym_raw] = ACTIONS(1166), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1586), + [sym_super] = ACTIONS(1170), + [sym_crate] = ACTIONS(1170), + [sym_metavariable] = ACTIONS(1172), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [428] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2083), + [sym_bracketed_type] = STATE(3684), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3340), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2527), + [sym_scoped_identifier] = STATE(2319), + [sym_scoped_type_identifier] = STATE(2206), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(2192), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), + [sym_line_comment] = STATE(428), + [sym_block_comment] = STATE(428), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1052), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1064), + [anon_sym_i8] = ACTIONS(1064), + [anon_sym_u16] = ACTIONS(1064), + [anon_sym_i16] = ACTIONS(1064), + [anon_sym_u32] = ACTIONS(1064), + [anon_sym_i32] = ACTIONS(1064), + [anon_sym_u64] = ACTIONS(1064), + [anon_sym_i64] = ACTIONS(1064), + [anon_sym_u128] = ACTIONS(1064), + [anon_sym_i128] = ACTIONS(1064), + [anon_sym_isize] = ACTIONS(1064), + [anon_sym_usize] = ACTIONS(1064), + [anon_sym_f32] = ACTIONS(1064), + [anon_sym_f64] = ACTIONS(1064), + [anon_sym_bool] = ACTIONS(1064), + [anon_sym_str] = ACTIONS(1064), + [anon_sym_char] = ACTIONS(1064), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1576), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1084), + [anon_sym_SQUOTE] = ACTIONS(1088), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1092), + [anon_sym_default] = ACTIONS(1094), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1100), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1100), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_ref] = ACTIONS(1108), + [anon_sym_dyn] = ACTIONS(1110), + [sym_mutable_specifier] = ACTIONS(1422), + [anon_sym_raw] = ACTIONS(1100), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1588), + [sym_super] = ACTIONS(1122), + [sym_crate] = ACTIONS(1122), + [sym_metavariable] = ACTIONS(1124), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [429] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2083), + [sym_bracketed_type] = STATE(3692), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3423), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2535), + [sym_scoped_identifier] = STATE(2193), + [sym_scoped_type_identifier] = STATE(2206), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(2192), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), + [sym_line_comment] = STATE(429), + [sym_block_comment] = STATE(429), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1148), + [anon_sym_LPAREN] = ACTIONS(1150), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1154), + [anon_sym_i8] = ACTIONS(1154), + [anon_sym_u16] = ACTIONS(1154), + [anon_sym_i16] = ACTIONS(1154), + [anon_sym_u32] = ACTIONS(1154), + [anon_sym_i32] = ACTIONS(1154), + [anon_sym_u64] = ACTIONS(1154), + [anon_sym_i64] = ACTIONS(1154), + [anon_sym_u128] = ACTIONS(1154), + [anon_sym_i128] = ACTIONS(1154), + [anon_sym_isize] = ACTIONS(1154), + [anon_sym_usize] = ACTIONS(1154), + [anon_sym_f32] = ACTIONS(1154), + [anon_sym_f64] = ACTIONS(1154), + [anon_sym_bool] = ACTIONS(1154), + [anon_sym_str] = ACTIONS(1154), + [anon_sym_char] = ACTIONS(1154), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1410), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1162), + [anon_sym_SQUOTE] = ACTIONS(1088), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1092), + [anon_sym_default] = ACTIONS(1164), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1166), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1166), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_ref] = ACTIONS(1108), + [anon_sym_dyn] = ACTIONS(1110), + [sym_mutable_specifier] = ACTIONS(1422), + [anon_sym_raw] = ACTIONS(1166), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1170), + [sym_super] = ACTIONS(1170), + [sym_crate] = ACTIONS(1170), + [sym_metavariable] = ACTIONS(1172), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [430] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2073), + [sym_bracketed_type] = STATE(3693), + [sym_lifetime] = STATE(846), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2508), + [sym_scoped_identifier] = STATE(2228), + [sym_scoped_type_identifier] = STATE(2206), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(2184), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), + [sym_line_comment] = STATE(430), + [sym_block_comment] = STATE(430), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1554), + [anon_sym_LPAREN] = ACTIONS(1556), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), [anon_sym_u8] = ACTIONS(1560), [anon_sym_i8] = ACTIONS(1560), [anon_sym_u16] = ACTIONS(1560), @@ -66133,1390 +66176,480 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1560), [anon_sym_str] = ACTIONS(1560), [anon_sym_char] = ACTIONS(1560), - [anon_sym_DASH] = ACTIONS(1560), - [anon_sym_SLASH] = ACTIONS(1560), - [anon_sym_PERCENT] = ACTIONS(1560), - [anon_sym_CARET] = ACTIONS(1560), - [anon_sym_BANG] = ACTIONS(1560), - [anon_sym_AMP] = ACTIONS(1560), - [anon_sym_PIPE] = ACTIONS(1560), - [anon_sym_AMP_AMP] = ACTIONS(1558), - [anon_sym_PIPE_PIPE] = ACTIONS(1558), - [anon_sym_LT_LT] = ACTIONS(1560), - [anon_sym_GT_GT] = ACTIONS(1560), - [anon_sym_PLUS_EQ] = ACTIONS(1558), - [anon_sym_DASH_EQ] = ACTIONS(1558), - [anon_sym_STAR_EQ] = ACTIONS(1558), - [anon_sym_SLASH_EQ] = ACTIONS(1558), - [anon_sym_PERCENT_EQ] = ACTIONS(1558), - [anon_sym_CARET_EQ] = ACTIONS(1558), - [anon_sym_AMP_EQ] = ACTIONS(1558), - [anon_sym_PIPE_EQ] = ACTIONS(1558), - [anon_sym_LT_LT_EQ] = ACTIONS(1558), - [anon_sym_GT_GT_EQ] = ACTIONS(1558), - [anon_sym_EQ] = ACTIONS(1560), - [anon_sym_EQ_EQ] = ACTIONS(1558), - [anon_sym_BANG_EQ] = ACTIONS(1558), - [anon_sym_GT] = ACTIONS(1560), - [anon_sym_LT] = ACTIONS(1560), - [anon_sym_GT_EQ] = ACTIONS(1558), - [anon_sym_LT_EQ] = ACTIONS(1558), - [anon_sym_DOT] = ACTIONS(1560), - [anon_sym_DOT_DOT] = ACTIONS(1560), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1558), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1558), - [anon_sym_COLON_COLON] = ACTIONS(1558), - [anon_sym_POUND] = ACTIONS(1558), - [anon_sym_SQUOTE] = ACTIONS(1560), - [anon_sym_as] = ACTIONS(1560), - [anon_sym_async] = ACTIONS(1560), - [anon_sym_break] = ACTIONS(1560), - [anon_sym_const] = ACTIONS(1560), - [anon_sym_continue] = ACTIONS(1560), - [anon_sym_default] = ACTIONS(1560), - [anon_sym_enum] = ACTIONS(1560), - [anon_sym_fn] = ACTIONS(1560), - [anon_sym_for] = ACTIONS(1560), - [anon_sym_gen] = ACTIONS(1560), - [anon_sym_if] = ACTIONS(1560), - [anon_sym_impl] = ACTIONS(1560), - [anon_sym_let] = ACTIONS(1560), - [anon_sym_loop] = ACTIONS(1560), - [anon_sym_match] = ACTIONS(1560), - [anon_sym_mod] = ACTIONS(1560), - [anon_sym_pub] = ACTIONS(1560), - [anon_sym_return] = ACTIONS(1560), - [anon_sym_static] = ACTIONS(1560), - [anon_sym_struct] = ACTIONS(1560), - [anon_sym_trait] = ACTIONS(1560), - [anon_sym_type] = ACTIONS(1560), - [anon_sym_union] = ACTIONS(1560), - [anon_sym_unsafe] = ACTIONS(1560), - [anon_sym_use] = ACTIONS(1560), - [anon_sym_while] = ACTIONS(1560), - [anon_sym_extern] = ACTIONS(1560), - [anon_sym_raw] = ACTIONS(1560), - [anon_sym_yield] = ACTIONS(1560), - [anon_sym_move] = ACTIONS(1560), - [anon_sym_try] = ACTIONS(1560), - [sym_integer_literal] = ACTIONS(1558), - [aux_sym_string_literal_token1] = ACTIONS(1558), - [sym_char_literal] = ACTIONS(1558), - [anon_sym_true] = ACTIONS(1560), - [anon_sym_false] = ACTIONS(1560), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1560), - [sym_super] = ACTIONS(1560), - [sym_crate] = ACTIONS(1560), - [sym_metavariable] = ACTIONS(1558), - [sym__raw_string_literal_start] = ACTIONS(1558), - [sym_float_literal] = ACTIONS(1558), - }, - [STATE(428)] = { - [sym_line_comment] = STATE(428), - [sym_block_comment] = STATE(428), - [sym_identifier] = ACTIONS(1502), - [anon_sym_SEMI] = ACTIONS(1504), - [anon_sym_macro_rules_BANG] = ACTIONS(1500), - [anon_sym_LPAREN] = ACTIONS(1504), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_RBRACE] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1506), - [anon_sym_STAR] = ACTIONS(1506), - [anon_sym_QMARK] = ACTIONS(1504), - [anon_sym_u8] = ACTIONS(1502), - [anon_sym_i8] = ACTIONS(1502), - [anon_sym_u16] = ACTIONS(1502), - [anon_sym_i16] = ACTIONS(1502), - [anon_sym_u32] = ACTIONS(1502), - [anon_sym_i32] = ACTIONS(1502), - [anon_sym_u64] = ACTIONS(1502), - [anon_sym_i64] = ACTIONS(1502), - [anon_sym_u128] = ACTIONS(1502), - [anon_sym_i128] = ACTIONS(1502), - [anon_sym_isize] = ACTIONS(1502), - [anon_sym_usize] = ACTIONS(1502), - [anon_sym_f32] = ACTIONS(1502), - [anon_sym_f64] = ACTIONS(1502), - [anon_sym_bool] = ACTIONS(1502), - [anon_sym_str] = ACTIONS(1502), - [anon_sym_char] = ACTIONS(1502), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_SLASH] = ACTIONS(1506), - [anon_sym_PERCENT] = ACTIONS(1506), - [anon_sym_CARET] = ACTIONS(1506), - [anon_sym_BANG] = ACTIONS(1502), - [anon_sym_AMP] = ACTIONS(1506), - [anon_sym_PIPE] = ACTIONS(1506), - [anon_sym_AMP_AMP] = ACTIONS(1504), - [anon_sym_PIPE_PIPE] = ACTIONS(1504), - [anon_sym_LT_LT] = ACTIONS(1506), - [anon_sym_GT_GT] = ACTIONS(1506), - [anon_sym_PLUS_EQ] = ACTIONS(1504), - [anon_sym_DASH_EQ] = ACTIONS(1504), - [anon_sym_STAR_EQ] = ACTIONS(1504), - [anon_sym_SLASH_EQ] = ACTIONS(1504), - [anon_sym_PERCENT_EQ] = ACTIONS(1504), - [anon_sym_CARET_EQ] = ACTIONS(1504), - [anon_sym_AMP_EQ] = ACTIONS(1504), - [anon_sym_PIPE_EQ] = ACTIONS(1504), - [anon_sym_LT_LT_EQ] = ACTIONS(1504), - [anon_sym_GT_GT_EQ] = ACTIONS(1504), - [anon_sym_EQ] = ACTIONS(1506), - [anon_sym_EQ_EQ] = ACTIONS(1504), - [anon_sym_BANG_EQ] = ACTIONS(1504), - [anon_sym_GT] = ACTIONS(1506), - [anon_sym_LT] = ACTIONS(1506), - [anon_sym_GT_EQ] = ACTIONS(1504), - [anon_sym_LT_EQ] = ACTIONS(1504), - [anon_sym_DOT] = ACTIONS(1506), - [anon_sym_DOT_DOT] = ACTIONS(1506), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1504), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1504), - [anon_sym_COLON_COLON] = ACTIONS(1500), - [anon_sym_POUND] = ACTIONS(1500), - [anon_sym_SQUOTE] = ACTIONS(1502), - [anon_sym_as] = ACTIONS(1506), - [anon_sym_async] = ACTIONS(1502), - [anon_sym_break] = ACTIONS(1502), - [anon_sym_const] = ACTIONS(1502), - [anon_sym_continue] = ACTIONS(1502), - [anon_sym_default] = ACTIONS(1502), - [anon_sym_enum] = ACTIONS(1502), - [anon_sym_fn] = ACTIONS(1502), - [anon_sym_for] = ACTIONS(1502), - [anon_sym_gen] = ACTIONS(1502), - [anon_sym_if] = ACTIONS(1502), - [anon_sym_impl] = ACTIONS(1502), - [anon_sym_let] = ACTIONS(1502), - [anon_sym_loop] = ACTIONS(1502), - [anon_sym_match] = ACTIONS(1502), - [anon_sym_mod] = ACTIONS(1502), - [anon_sym_pub] = ACTIONS(1502), - [anon_sym_return] = ACTIONS(1502), - [anon_sym_static] = ACTIONS(1502), - [anon_sym_struct] = ACTIONS(1502), - [anon_sym_trait] = ACTIONS(1502), - [anon_sym_type] = ACTIONS(1502), - [anon_sym_union] = ACTIONS(1502), - [anon_sym_unsafe] = ACTIONS(1502), - [anon_sym_use] = ACTIONS(1502), - [anon_sym_while] = ACTIONS(1502), - [anon_sym_extern] = ACTIONS(1502), - [anon_sym_raw] = ACTIONS(1502), - [anon_sym_yield] = ACTIONS(1502), - [anon_sym_move] = ACTIONS(1502), - [anon_sym_try] = ACTIONS(1502), - [sym_integer_literal] = ACTIONS(1500), - [aux_sym_string_literal_token1] = ACTIONS(1500), - [sym_char_literal] = ACTIONS(1500), - [anon_sym_true] = ACTIONS(1502), - [anon_sym_false] = ACTIONS(1502), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1502), - [sym_super] = ACTIONS(1502), - [sym_crate] = ACTIONS(1502), - [sym_metavariable] = ACTIONS(1500), - [sym__raw_string_literal_start] = ACTIONS(1500), - [sym_float_literal] = ACTIONS(1500), - }, - [STATE(429)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3013), - [sym_bracketed_type] = STATE(3703), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3442), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2539), - [sym_scoped_identifier] = STATE(2236), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2722), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), - [sym_line_comment] = STATE(429), - [sym_block_comment] = STATE(429), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1562), - [anon_sym_LPAREN] = ACTIONS(1564), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_RBRACK] = ACTIONS(1566), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1568), - [anon_sym_i8] = ACTIONS(1568), - [anon_sym_u16] = ACTIONS(1568), - [anon_sym_i16] = ACTIONS(1568), - [anon_sym_u32] = ACTIONS(1568), - [anon_sym_i32] = ACTIONS(1568), - [anon_sym_u64] = ACTIONS(1568), - [anon_sym_i64] = ACTIONS(1568), - [anon_sym_u128] = ACTIONS(1568), - [anon_sym_i128] = ACTIONS(1568), - [anon_sym_isize] = ACTIONS(1568), - [anon_sym_usize] = ACTIONS(1568), - [anon_sym_f32] = ACTIONS(1568), - [anon_sym_f64] = ACTIONS(1568), - [anon_sym_bool] = ACTIONS(1568), - [anon_sym_str] = ACTIONS(1568), - [anon_sym_char] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1570), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COMMA] = ACTIONS(1572), - [anon_sym_COLON_COLON] = ACTIONS(1574), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1578), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1578), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1580), - [sym_super] = ACTIONS(1580), - [sym_crate] = ACTIONS(1580), - [sym_metavariable] = ACTIONS(1582), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(430)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2086), - [sym_bracketed_type] = STATE(3694), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3341), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2582), - [sym_scoped_identifier] = STATE(2327), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2212), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), - [sym_line_comment] = STATE(430), - [sym_block_comment] = STATE(430), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1058), - [anon_sym_LPAREN] = ACTIONS(1060), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1070), - [anon_sym_i8] = ACTIONS(1070), - [anon_sym_u16] = ACTIONS(1070), - [anon_sym_i16] = ACTIONS(1070), - [anon_sym_u32] = ACTIONS(1070), - [anon_sym_i32] = ACTIONS(1070), - [anon_sym_u64] = ACTIONS(1070), - [anon_sym_i64] = ACTIONS(1070), - [anon_sym_u128] = ACTIONS(1070), - [anon_sym_i128] = ACTIONS(1070), - [anon_sym_isize] = ACTIONS(1070), - [anon_sym_usize] = ACTIONS(1070), - [anon_sym_f32] = ACTIONS(1070), - [anon_sym_f64] = ACTIONS(1070), - [anon_sym_bool] = ACTIONS(1070), - [anon_sym_str] = ACTIONS(1070), - [anon_sym_char] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1584), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1106), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1106), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1106), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1128), - [sym_super] = ACTIONS(1128), - [sym_crate] = ACTIONS(1128), - [sym_metavariable] = ACTIONS(1130), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(431)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2092), - [sym_bracketed_type] = STATE(3702), - [sym_lifetime] = STATE(857), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3434), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2533), - [sym_scoped_identifier] = STATE(2200), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2206), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1562), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1566), + [anon_sym_SQUOTE] = ACTIONS(1088), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1092), + [anon_sym_default] = ACTIONS(1568), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1570), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1570), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_ref] = ACTIONS(1108), + [anon_sym_dyn] = ACTIONS(1110), + [sym_mutable_specifier] = ACTIONS(1590), + [anon_sym_raw] = ACTIONS(1570), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1572), + [sym_super] = ACTIONS(1572), + [sym_crate] = ACTIONS(1572), + [sym_metavariable] = ACTIONS(1574), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [431] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2073), + [sym_bracketed_type] = STATE(3684), + [sym_lifetime] = STATE(849), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3340), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2527), + [sym_scoped_identifier] = STATE(2319), + [sym_scoped_type_identifier] = STATE(2206), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(2184), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), [sym_line_comment] = STATE(431), [sym_block_comment] = STATE(431), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1162), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1168), - [anon_sym_i8] = ACTIONS(1168), - [anon_sym_u16] = ACTIONS(1168), - [anon_sym_i16] = ACTIONS(1168), - [anon_sym_u32] = ACTIONS(1168), - [anon_sym_i32] = ACTIONS(1168), - [anon_sym_u64] = ACTIONS(1168), - [anon_sym_i64] = ACTIONS(1168), - [anon_sym_u128] = ACTIONS(1168), - [anon_sym_i128] = ACTIONS(1168), - [anon_sym_isize] = ACTIONS(1168), - [anon_sym_usize] = ACTIONS(1168), - [anon_sym_f32] = ACTIONS(1168), - [anon_sym_f64] = ACTIONS(1168), - [anon_sym_bool] = ACTIONS(1168), - [anon_sym_str] = ACTIONS(1168), - [anon_sym_char] = ACTIONS(1168), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1178), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1180), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1180), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1586), - [anon_sym_raw] = ACTIONS(1180), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1184), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(432)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2092), - [sym_bracketed_type] = STATE(3703), - [sym_lifetime] = STATE(857), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3442), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2539), - [sym_scoped_identifier] = STATE(2236), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2206), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1052), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1064), + [anon_sym_i8] = ACTIONS(1064), + [anon_sym_u16] = ACTIONS(1064), + [anon_sym_i16] = ACTIONS(1064), + [anon_sym_u32] = ACTIONS(1064), + [anon_sym_i32] = ACTIONS(1064), + [anon_sym_u64] = ACTIONS(1064), + [anon_sym_i64] = ACTIONS(1064), + [anon_sym_u128] = ACTIONS(1064), + [anon_sym_i128] = ACTIONS(1064), + [anon_sym_isize] = ACTIONS(1064), + [anon_sym_usize] = ACTIONS(1064), + [anon_sym_f32] = ACTIONS(1064), + [anon_sym_f64] = ACTIONS(1064), + [anon_sym_bool] = ACTIONS(1064), + [anon_sym_str] = ACTIONS(1064), + [anon_sym_char] = ACTIONS(1064), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1576), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1084), + [anon_sym_SQUOTE] = ACTIONS(1088), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1092), + [anon_sym_default] = ACTIONS(1094), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1100), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1100), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_ref] = ACTIONS(1108), + [anon_sym_dyn] = ACTIONS(1110), + [sym_mutable_specifier] = ACTIONS(1592), + [anon_sym_raw] = ACTIONS(1100), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1594), + [sym_super] = ACTIONS(1122), + [sym_crate] = ACTIONS(1122), + [sym_metavariable] = ACTIONS(1124), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [432] = { [sym_line_comment] = STATE(432), [sym_block_comment] = STATE(432), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1562), - [anon_sym_LPAREN] = ACTIONS(1564), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1568), - [anon_sym_i8] = ACTIONS(1568), - [anon_sym_u16] = ACTIONS(1568), - [anon_sym_i16] = ACTIONS(1568), - [anon_sym_u32] = ACTIONS(1568), - [anon_sym_i32] = ACTIONS(1568), - [anon_sym_u64] = ACTIONS(1568), - [anon_sym_i64] = ACTIONS(1568), - [anon_sym_u128] = ACTIONS(1568), - [anon_sym_i128] = ACTIONS(1568), - [anon_sym_isize] = ACTIONS(1568), - [anon_sym_usize] = ACTIONS(1568), - [anon_sym_f32] = ACTIONS(1568), - [anon_sym_f64] = ACTIONS(1568), - [anon_sym_bool] = ACTIONS(1568), - [anon_sym_str] = ACTIONS(1568), - [anon_sym_char] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1570), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1574), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1578), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1588), - [anon_sym_raw] = ACTIONS(1578), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), + [sym_identifier] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_RPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1598), + [anon_sym_RBRACK] = ACTIONS(1598), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1598), + [anon_sym_COLON] = ACTIONS(1596), + [anon_sym_PLUS] = ACTIONS(1596), + [anon_sym_STAR] = ACTIONS(1596), + [anon_sym_QMARK] = ACTIONS(1598), + [anon_sym_u8] = ACTIONS(1596), + [anon_sym_i8] = ACTIONS(1596), + [anon_sym_u16] = ACTIONS(1596), + [anon_sym_i16] = ACTIONS(1596), + [anon_sym_u32] = ACTIONS(1596), + [anon_sym_i32] = ACTIONS(1596), + [anon_sym_u64] = ACTIONS(1596), + [anon_sym_i64] = ACTIONS(1596), + [anon_sym_u128] = ACTIONS(1596), + [anon_sym_i128] = ACTIONS(1596), + [anon_sym_isize] = ACTIONS(1596), + [anon_sym_usize] = ACTIONS(1596), + [anon_sym_f32] = ACTIONS(1596), + [anon_sym_f64] = ACTIONS(1596), + [anon_sym_bool] = ACTIONS(1596), + [anon_sym_str] = ACTIONS(1596), + [anon_sym_char] = ACTIONS(1596), + [anon_sym_DASH] = ACTIONS(1596), + [anon_sym_SLASH] = ACTIONS(1596), + [anon_sym_PERCENT] = ACTIONS(1596), + [anon_sym_CARET] = ACTIONS(1596), + [anon_sym_BANG] = ACTIONS(1596), + [anon_sym_AMP] = ACTIONS(1596), + [anon_sym_PIPE] = ACTIONS(1596), + [anon_sym_AMP_AMP] = ACTIONS(1598), + [anon_sym_PIPE_PIPE] = ACTIONS(1598), + [anon_sym_LT_LT] = ACTIONS(1596), + [anon_sym_GT_GT] = ACTIONS(1596), + [anon_sym_PLUS_EQ] = ACTIONS(1598), + [anon_sym_DASH_EQ] = ACTIONS(1598), + [anon_sym_STAR_EQ] = ACTIONS(1598), + [anon_sym_SLASH_EQ] = ACTIONS(1598), + [anon_sym_PERCENT_EQ] = ACTIONS(1598), + [anon_sym_CARET_EQ] = ACTIONS(1598), + [anon_sym_AMP_EQ] = ACTIONS(1598), + [anon_sym_PIPE_EQ] = ACTIONS(1598), + [anon_sym_LT_LT_EQ] = ACTIONS(1598), + [anon_sym_GT_GT_EQ] = ACTIONS(1598), + [anon_sym_EQ] = ACTIONS(1596), + [anon_sym_EQ_EQ] = ACTIONS(1598), + [anon_sym_BANG_EQ] = ACTIONS(1598), + [anon_sym_GT] = ACTIONS(1596), + [anon_sym_LT] = ACTIONS(1596), + [anon_sym_GT_EQ] = ACTIONS(1598), + [anon_sym_LT_EQ] = ACTIONS(1598), + [anon_sym_DOT] = ACTIONS(1596), + [anon_sym_DOT_DOT] = ACTIONS(1596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1598), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1598), + [anon_sym_COMMA] = ACTIONS(1598), + [anon_sym_COLON_COLON] = ACTIONS(1598), + [anon_sym_SQUOTE] = ACTIONS(1596), + [anon_sym_as] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(1596), + [anon_sym_break] = ACTIONS(1596), + [anon_sym_const] = ACTIONS(1596), + [anon_sym_continue] = ACTIONS(1596), + [anon_sym_default] = ACTIONS(1596), + [anon_sym_for] = ACTIONS(1596), + [anon_sym_gen] = ACTIONS(1596), + [anon_sym_if] = ACTIONS(1596), + [anon_sym_loop] = ACTIONS(1596), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_return] = ACTIONS(1596), + [anon_sym_static] = ACTIONS(1596), + [anon_sym_union] = ACTIONS(1596), + [anon_sym_unsafe] = ACTIONS(1596), + [anon_sym_while] = ACTIONS(1596), + [anon_sym_else] = ACTIONS(1596), + [anon_sym_raw] = ACTIONS(1596), + [anon_sym_yield] = ACTIONS(1596), + [anon_sym_move] = ACTIONS(1596), + [anon_sym_try] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(1598), + [aux_sym_string_literal_token1] = ACTIONS(1598), + [sym_char_literal] = ACTIONS(1598), + [anon_sym_true] = ACTIONS(1596), + [anon_sym_false] = ACTIONS(1596), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1580), - [sym_super] = ACTIONS(1580), - [sym_crate] = ACTIONS(1580), - [sym_metavariable] = ACTIONS(1582), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [sym_self] = ACTIONS(1596), + [sym_super] = ACTIONS(1596), + [sym_crate] = ACTIONS(1596), + [sym_metavariable] = ACTIONS(1598), + [sym__raw_string_literal_start] = ACTIONS(1598), + [sym_float_literal] = ACTIONS(1598), }, - [STATE(433)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2086), - [sym_bracketed_type] = STATE(3702), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3434), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2533), - [sym_scoped_identifier] = STATE(2200), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2212), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [433] = { [sym_line_comment] = STATE(433), [sym_block_comment] = STATE(433), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1162), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1168), - [anon_sym_i8] = ACTIONS(1168), - [anon_sym_u16] = ACTIONS(1168), - [anon_sym_i16] = ACTIONS(1168), - [anon_sym_u32] = ACTIONS(1168), - [anon_sym_i32] = ACTIONS(1168), - [anon_sym_u64] = ACTIONS(1168), - [anon_sym_i64] = ACTIONS(1168), - [anon_sym_u128] = ACTIONS(1168), - [anon_sym_i128] = ACTIONS(1168), - [anon_sym_isize] = ACTIONS(1168), - [anon_sym_usize] = ACTIONS(1168), - [anon_sym_f32] = ACTIONS(1168), - [anon_sym_f64] = ACTIONS(1168), - [anon_sym_bool] = ACTIONS(1168), - [anon_sym_str] = ACTIONS(1168), - [anon_sym_char] = ACTIONS(1168), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1178), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1180), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1180), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1180), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1184), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(434)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2092), - [sym_bracketed_type] = STATE(3694), - [sym_lifetime] = STATE(857), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3341), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2582), - [sym_scoped_identifier] = STATE(2327), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2206), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), - [sym_line_comment] = STATE(434), - [sym_block_comment] = STATE(434), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1058), - [anon_sym_LPAREN] = ACTIONS(1060), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1070), - [anon_sym_i8] = ACTIONS(1070), - [anon_sym_u16] = ACTIONS(1070), - [anon_sym_i16] = ACTIONS(1070), - [anon_sym_u32] = ACTIONS(1070), - [anon_sym_i32] = ACTIONS(1070), - [anon_sym_u64] = ACTIONS(1070), - [anon_sym_i64] = ACTIONS(1070), - [anon_sym_u128] = ACTIONS(1070), - [anon_sym_i128] = ACTIONS(1070), - [anon_sym_isize] = ACTIONS(1070), - [anon_sym_usize] = ACTIONS(1070), - [anon_sym_f32] = ACTIONS(1070), - [anon_sym_f64] = ACTIONS(1070), - [anon_sym_bool] = ACTIONS(1070), - [anon_sym_str] = ACTIONS(1070), - [anon_sym_char] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1584), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1106), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1106), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1590), - [anon_sym_raw] = ACTIONS(1106), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1128), - [sym_super] = ACTIONS(1128), - [sym_crate] = ACTIONS(1128), - [sym_metavariable] = ACTIONS(1130), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(435)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2086), - [sym_bracketed_type] = STATE(3694), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3341), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2582), - [sym_scoped_identifier] = STATE(2327), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2212), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), - [sym_line_comment] = STATE(435), - [sym_block_comment] = STATE(435), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1058), - [anon_sym_LPAREN] = ACTIONS(1060), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1070), - [anon_sym_i8] = ACTIONS(1070), - [anon_sym_u16] = ACTIONS(1070), - [anon_sym_i16] = ACTIONS(1070), - [anon_sym_u32] = ACTIONS(1070), - [anon_sym_i32] = ACTIONS(1070), - [anon_sym_u64] = ACTIONS(1070), - [anon_sym_i64] = ACTIONS(1070), - [anon_sym_u128] = ACTIONS(1070), - [anon_sym_i128] = ACTIONS(1070), - [anon_sym_isize] = ACTIONS(1070), - [anon_sym_usize] = ACTIONS(1070), - [anon_sym_f32] = ACTIONS(1070), - [anon_sym_f64] = ACTIONS(1070), - [anon_sym_bool] = ACTIONS(1070), - [anon_sym_str] = ACTIONS(1070), - [anon_sym_char] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1584), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1106), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1106), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1106), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1592), - [sym_super] = ACTIONS(1128), - [sym_crate] = ACTIONS(1128), - [sym_metavariable] = ACTIONS(1130), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(436)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2092), - [sym_bracketed_type] = STATE(3694), - [sym_lifetime] = STATE(856), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3341), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2582), - [sym_scoped_identifier] = STATE(2327), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2206), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), - [sym_line_comment] = STATE(436), - [sym_block_comment] = STATE(436), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1058), - [anon_sym_LPAREN] = ACTIONS(1060), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1070), - [anon_sym_i8] = ACTIONS(1070), - [anon_sym_u16] = ACTIONS(1070), - [anon_sym_i16] = ACTIONS(1070), - [anon_sym_u32] = ACTIONS(1070), - [anon_sym_i32] = ACTIONS(1070), - [anon_sym_u64] = ACTIONS(1070), - [anon_sym_i64] = ACTIONS(1070), - [anon_sym_u128] = ACTIONS(1070), - [anon_sym_i128] = ACTIONS(1070), - [anon_sym_isize] = ACTIONS(1070), - [anon_sym_usize] = ACTIONS(1070), - [anon_sym_f32] = ACTIONS(1070), - [anon_sym_f64] = ACTIONS(1070), - [anon_sym_bool] = ACTIONS(1070), - [anon_sym_str] = ACTIONS(1070), - [anon_sym_char] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1584), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1090), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1106), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1106), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1594), - [anon_sym_raw] = ACTIONS(1106), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), + [sym_identifier] = ACTIONS(1596), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1598), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_EQ_GT] = ACTIONS(1598), + [anon_sym_COLON] = ACTIONS(1596), + [anon_sym_PLUS] = ACTIONS(1596), + [anon_sym_STAR] = ACTIONS(1596), + [anon_sym_QMARK] = ACTIONS(1598), + [anon_sym_u8] = ACTIONS(1596), + [anon_sym_i8] = ACTIONS(1596), + [anon_sym_u16] = ACTIONS(1596), + [anon_sym_i16] = ACTIONS(1596), + [anon_sym_u32] = ACTIONS(1596), + [anon_sym_i32] = ACTIONS(1596), + [anon_sym_u64] = ACTIONS(1596), + [anon_sym_i64] = ACTIONS(1596), + [anon_sym_u128] = ACTIONS(1596), + [anon_sym_i128] = ACTIONS(1596), + [anon_sym_isize] = ACTIONS(1596), + [anon_sym_usize] = ACTIONS(1596), + [anon_sym_f32] = ACTIONS(1596), + [anon_sym_f64] = ACTIONS(1596), + [anon_sym_bool] = ACTIONS(1596), + [anon_sym_str] = ACTIONS(1596), + [anon_sym_char] = ACTIONS(1596), + [anon_sym_DASH] = ACTIONS(1596), + [anon_sym_SLASH] = ACTIONS(1596), + [anon_sym_PERCENT] = ACTIONS(1596), + [anon_sym_CARET] = ACTIONS(1596), + [anon_sym_BANG] = ACTIONS(1596), + [anon_sym_AMP] = ACTIONS(1596), + [anon_sym_PIPE] = ACTIONS(1596), + [anon_sym_AMP_AMP] = ACTIONS(1598), + [anon_sym_PIPE_PIPE] = ACTIONS(1598), + [anon_sym_LT_LT] = ACTIONS(1596), + [anon_sym_GT_GT] = ACTIONS(1596), + [anon_sym_PLUS_EQ] = ACTIONS(1598), + [anon_sym_DASH_EQ] = ACTIONS(1598), + [anon_sym_STAR_EQ] = ACTIONS(1598), + [anon_sym_SLASH_EQ] = ACTIONS(1598), + [anon_sym_PERCENT_EQ] = ACTIONS(1598), + [anon_sym_CARET_EQ] = ACTIONS(1598), + [anon_sym_AMP_EQ] = ACTIONS(1598), + [anon_sym_PIPE_EQ] = ACTIONS(1598), + [anon_sym_LT_LT_EQ] = ACTIONS(1598), + [anon_sym_GT_GT_EQ] = ACTIONS(1598), + [anon_sym_EQ] = ACTIONS(1596), + [anon_sym_EQ_EQ] = ACTIONS(1598), + [anon_sym_BANG_EQ] = ACTIONS(1598), + [anon_sym_GT] = ACTIONS(1596), + [anon_sym_LT] = ACTIONS(1596), + [anon_sym_GT_EQ] = ACTIONS(1598), + [anon_sym_LT_EQ] = ACTIONS(1598), + [anon_sym_DOT] = ACTIONS(1596), + [anon_sym_DOT_DOT] = ACTIONS(1596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1598), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1598), + [anon_sym_COLON_COLON] = ACTIONS(1598), + [anon_sym_SQUOTE] = ACTIONS(1596), + [anon_sym_as] = ACTIONS(1596), + [anon_sym_async] = ACTIONS(1596), + [anon_sym_break] = ACTIONS(1596), + [anon_sym_const] = ACTIONS(1596), + [anon_sym_continue] = ACTIONS(1596), + [anon_sym_default] = ACTIONS(1596), + [anon_sym_for] = ACTIONS(1596), + [anon_sym_gen] = ACTIONS(1596), + [anon_sym_if] = ACTIONS(1596), + [anon_sym_loop] = ACTIONS(1596), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_return] = ACTIONS(1596), + [anon_sym_static] = ACTIONS(1596), + [anon_sym_union] = ACTIONS(1596), + [anon_sym_unsafe] = ACTIONS(1596), + [anon_sym_while] = ACTIONS(1596), + [anon_sym_raw] = ACTIONS(1596), + [anon_sym_yield] = ACTIONS(1596), + [anon_sym_move] = ACTIONS(1596), + [anon_sym_try] = ACTIONS(1596), + [sym_integer_literal] = ACTIONS(1598), + [aux_sym_string_literal_token1] = ACTIONS(1598), + [sym_char_literal] = ACTIONS(1598), + [anon_sym_true] = ACTIONS(1596), + [anon_sym_false] = ACTIONS(1596), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(1596), - [sym_super] = ACTIONS(1128), - [sym_crate] = ACTIONS(1128), - [sym_metavariable] = ACTIONS(1130), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(437)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2092), - [sym_bracketed_type] = STATE(3702), - [sym_lifetime] = STATE(856), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3434), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2533), - [sym_scoped_identifier] = STATE(2200), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2206), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), - [sym_line_comment] = STATE(437), - [sym_block_comment] = STATE(437), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1162), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1168), - [anon_sym_i8] = ACTIONS(1168), - [anon_sym_u16] = ACTIONS(1168), - [anon_sym_i16] = ACTIONS(1168), - [anon_sym_u32] = ACTIONS(1168), - [anon_sym_i32] = ACTIONS(1168), - [anon_sym_u64] = ACTIONS(1168), - [anon_sym_i64] = ACTIONS(1168), - [anon_sym_u128] = ACTIONS(1168), - [anon_sym_i128] = ACTIONS(1168), - [anon_sym_isize] = ACTIONS(1168), - [anon_sym_usize] = ACTIONS(1168), - [anon_sym_f32] = ACTIONS(1168), - [anon_sym_f64] = ACTIONS(1168), - [anon_sym_bool] = ACTIONS(1168), - [anon_sym_str] = ACTIONS(1168), - [anon_sym_char] = ACTIONS(1168), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1178), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1180), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1180), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1598), - [anon_sym_raw] = ACTIONS(1180), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), + [sym_super] = ACTIONS(1596), + [sym_crate] = ACTIONS(1596), + [sym_metavariable] = ACTIONS(1598), + [sym__raw_string_literal_start] = ACTIONS(1598), + [sym_float_literal] = ACTIONS(1598), + }, + [434] = { + [sym_bracketed_type] = STATE(3787), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_macro_invocation] = STATE(2198), + [sym_scoped_identifier] = STATE(2034), + [sym_scoped_type_identifier] = STATE(2991), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(2195), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), + [sym_line_comment] = STATE(434), + [sym_block_comment] = STATE(434), + [sym_identifier] = ACTIONS(1600), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_LBRACE] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1602), + [anon_sym_u8] = ACTIONS(1600), + [anon_sym_i8] = ACTIONS(1600), + [anon_sym_u16] = ACTIONS(1600), + [anon_sym_i16] = ACTIONS(1600), + [anon_sym_u32] = ACTIONS(1600), + [anon_sym_i32] = ACTIONS(1600), + [anon_sym_u64] = ACTIONS(1600), + [anon_sym_i64] = ACTIONS(1600), + [anon_sym_u128] = ACTIONS(1600), + [anon_sym_i128] = ACTIONS(1600), + [anon_sym_isize] = ACTIONS(1600), + [anon_sym_usize] = ACTIONS(1600), + [anon_sym_f32] = ACTIONS(1600), + [anon_sym_f64] = ACTIONS(1600), + [anon_sym_bool] = ACTIONS(1600), + [anon_sym_str] = ACTIONS(1600), + [anon_sym_char] = ACTIONS(1600), + [anon_sym_DASH] = ACTIONS(1600), + [anon_sym_BANG] = ACTIONS(1602), + [anon_sym_AMP] = ACTIONS(1602), + [anon_sym_PIPE] = ACTIONS(1602), + [anon_sym_LT] = ACTIONS(1602), + [anon_sym__] = ACTIONS(1600), + [anon_sym_DOT_DOT] = ACTIONS(1600), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1602), + [anon_sym_DASH_GT] = ACTIONS(1602), + [anon_sym_SQUOTE] = ACTIONS(1600), + [anon_sym_async] = ACTIONS(1600), + [anon_sym_break] = ACTIONS(1600), + [anon_sym_const] = ACTIONS(1600), + [anon_sym_continue] = ACTIONS(1600), + [anon_sym_default] = ACTIONS(1600), + [anon_sym_for] = ACTIONS(1600), + [anon_sym_gen] = ACTIONS(1600), + [anon_sym_if] = ACTIONS(1600), + [anon_sym_loop] = ACTIONS(1600), + [anon_sym_match] = ACTIONS(1600), + [anon_sym_return] = ACTIONS(1600), + [anon_sym_static] = ACTIONS(1600), + [anon_sym_union] = ACTIONS(1600), + [anon_sym_unsafe] = ACTIONS(1600), + [anon_sym_while] = ACTIONS(1600), + [anon_sym_ref] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1422), + [anon_sym_raw] = ACTIONS(1600), + [anon_sym_yield] = ACTIONS(1600), + [anon_sym_move] = ACTIONS(1600), + [anon_sym_try] = ACTIONS(1600), + [sym_integer_literal] = ACTIONS(1602), + [aux_sym_string_literal_token1] = ACTIONS(1602), + [sym_char_literal] = ACTIONS(1602), + [anon_sym_true] = ACTIONS(1600), + [anon_sym_false] = ACTIONS(1600), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(1600), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(438)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2086), - [sym_bracketed_type] = STATE(3702), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3434), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2533), - [sym_scoped_identifier] = STATE(2200), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2212), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), - [sym_line_comment] = STATE(438), - [sym_block_comment] = STATE(438), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1162), - [anon_sym_LPAREN] = ACTIONS(1164), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1168), - [anon_sym_i8] = ACTIONS(1168), - [anon_sym_u16] = ACTIONS(1168), - [anon_sym_i16] = ACTIONS(1168), - [anon_sym_u32] = ACTIONS(1168), - [anon_sym_i32] = ACTIONS(1168), - [anon_sym_u64] = ACTIONS(1168), - [anon_sym_i64] = ACTIONS(1168), - [anon_sym_u128] = ACTIONS(1168), - [anon_sym_i128] = ACTIONS(1168), - [anon_sym_isize] = ACTIONS(1168), - [anon_sym_usize] = ACTIONS(1168), - [anon_sym_f32] = ACTIONS(1168), - [anon_sym_f64] = ACTIONS(1168), - [anon_sym_bool] = ACTIONS(1168), - [anon_sym_str] = ACTIONS(1168), - [anon_sym_char] = ACTIONS(1168), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1176), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1178), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1180), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1180), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1180), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1602), - [sym_super] = ACTIONS(1184), - [sym_crate] = ACTIONS(1184), - [sym_metavariable] = ACTIONS(1186), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(439)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2086), - [sym_bracketed_type] = STATE(3703), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3442), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2539), - [sym_scoped_identifier] = STATE(2236), - [sym_scoped_type_identifier] = STATE(2197), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2212), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), - [sym_line_comment] = STATE(439), - [sym_block_comment] = STATE(439), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1562), - [anon_sym_LPAREN] = ACTIONS(1564), - [anon_sym_LBRACK] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1568), - [anon_sym_i8] = ACTIONS(1568), - [anon_sym_u16] = ACTIONS(1568), - [anon_sym_i16] = ACTIONS(1568), - [anon_sym_u32] = ACTIONS(1568), - [anon_sym_i32] = ACTIONS(1568), - [anon_sym_u64] = ACTIONS(1568), - [anon_sym_i64] = ACTIONS(1568), - [anon_sym_u128] = ACTIONS(1568), - [anon_sym_i128] = ACTIONS(1568), - [anon_sym_isize] = ACTIONS(1568), - [anon_sym_usize] = ACTIONS(1568), - [anon_sym_f32] = ACTIONS(1568), - [anon_sym_f64] = ACTIONS(1568), - [anon_sym_bool] = ACTIONS(1568), - [anon_sym_str] = ACTIONS(1568), - [anon_sym_char] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1570), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1574), - [anon_sym_SQUOTE] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1098), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1578), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_ref] = ACTIONS(1114), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1578), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1580), - [sym_super] = ACTIONS(1580), - [sym_crate] = ACTIONS(1580), - [sym_metavariable] = ACTIONS(1582), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(440)] = { - [sym_line_comment] = STATE(440), - [sym_block_comment] = STATE(440), + [sym_super] = ACTIONS(1600), + [sym_crate] = ACTIONS(1600), + [sym_metavariable] = ACTIONS(1602), + [sym__raw_string_literal_start] = ACTIONS(1602), + [sym_float_literal] = ACTIONS(1602), + }, + [435] = { + [sym_bracketed_type] = STATE(3787), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_macro_invocation] = STATE(2198), + [sym_scoped_identifier] = STATE(2034), + [sym_scoped_type_identifier] = STATE(2991), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(2190), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), + [sym_line_comment] = STATE(435), + [sym_block_comment] = STATE(435), [sym_identifier] = ACTIONS(1604), - [anon_sym_SEMI] = ACTIONS(1606), [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_RPAREN] = ACTIONS(1606), [anon_sym_LBRACK] = ACTIONS(1606), - [anon_sym_RBRACK] = ACTIONS(1606), [anon_sym_LBRACE] = ACTIONS(1606), - [anon_sym_RBRACE] = ACTIONS(1606), - [anon_sym_COLON] = ACTIONS(1604), - [anon_sym_PLUS] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1604), - [anon_sym_QMARK] = ACTIONS(1606), + [anon_sym_STAR] = ACTIONS(1606), [anon_sym_u8] = ACTIONS(1604), [anon_sym_i8] = ACTIONS(1604), [anon_sym_u16] = ACTIONS(1604), @@ -67535,41 +66668,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1604), [anon_sym_char] = ACTIONS(1604), [anon_sym_DASH] = ACTIONS(1604), - [anon_sym_SLASH] = ACTIONS(1604), - [anon_sym_PERCENT] = ACTIONS(1604), - [anon_sym_CARET] = ACTIONS(1604), - [anon_sym_BANG] = ACTIONS(1604), - [anon_sym_AMP] = ACTIONS(1604), - [anon_sym_PIPE] = ACTIONS(1604), - [anon_sym_AMP_AMP] = ACTIONS(1606), - [anon_sym_PIPE_PIPE] = ACTIONS(1606), - [anon_sym_LT_LT] = ACTIONS(1604), - [anon_sym_GT_GT] = ACTIONS(1604), - [anon_sym_PLUS_EQ] = ACTIONS(1606), - [anon_sym_DASH_EQ] = ACTIONS(1606), - [anon_sym_STAR_EQ] = ACTIONS(1606), - [anon_sym_SLASH_EQ] = ACTIONS(1606), - [anon_sym_PERCENT_EQ] = ACTIONS(1606), - [anon_sym_CARET_EQ] = ACTIONS(1606), - [anon_sym_AMP_EQ] = ACTIONS(1606), - [anon_sym_PIPE_EQ] = ACTIONS(1606), - [anon_sym_LT_LT_EQ] = ACTIONS(1606), - [anon_sym_GT_GT_EQ] = ACTIONS(1606), - [anon_sym_EQ] = ACTIONS(1604), - [anon_sym_EQ_EQ] = ACTIONS(1606), - [anon_sym_BANG_EQ] = ACTIONS(1606), - [anon_sym_GT] = ACTIONS(1604), - [anon_sym_LT] = ACTIONS(1604), - [anon_sym_GT_EQ] = ACTIONS(1606), - [anon_sym_LT_EQ] = ACTIONS(1606), - [anon_sym_DOT] = ACTIONS(1604), + [anon_sym_BANG] = ACTIONS(1606), + [anon_sym_AMP] = ACTIONS(1606), + [anon_sym_PIPE] = ACTIONS(1606), + [anon_sym_LT] = ACTIONS(1606), + [anon_sym__] = ACTIONS(1604), [anon_sym_DOT_DOT] = ACTIONS(1604), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1606), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1606), - [anon_sym_COMMA] = ACTIONS(1606), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), [anon_sym_COLON_COLON] = ACTIONS(1606), + [anon_sym_DASH_GT] = ACTIONS(1606), [anon_sym_SQUOTE] = ACTIONS(1604), - [anon_sym_as] = ACTIONS(1604), [anon_sym_async] = ACTIONS(1604), [anon_sym_break] = ACTIONS(1604), [anon_sym_const] = ACTIONS(1604), @@ -67585,7 +66693,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(1604), [anon_sym_unsafe] = ACTIONS(1604), [anon_sym_while] = ACTIONS(1604), - [anon_sym_else] = ACTIONS(1604), + [anon_sym_ref] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1422), [anon_sym_raw] = ACTIONS(1604), [anon_sym_yield] = ACTIONS(1604), [anon_sym_move] = ACTIONS(1604), @@ -67604,2508 +66713,2474 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1606), [sym_float_literal] = ACTIONS(1606), }, - [STATE(441)] = { + [436] = { + [sym_function_modifiers] = STATE(3686), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2511), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(2511), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3651), + [sym_type_binding] = STATE(2769), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2258), + [sym_label] = STATE(3764), + [sym_block] = STATE(2769), + [sym__literal] = STATE(2769), + [sym_string_literal] = STATE(3073), + [sym_raw_string_literal] = STATE(3073), + [sym_boolean_literal] = STATE(3073), + [sym_line_comment] = STATE(436), + [sym_block_comment] = STATE(436), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1608), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_STAR] = ACTIONS(1616), + [anon_sym_QMARK] = ACTIONS(1618), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1622), + [anon_sym_GT] = ACTIONS(1624), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1632), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1636), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1638), + [anon_sym_raw] = ACTIONS(1634), + [sym_integer_literal] = ACTIONS(1640), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1640), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1640), + }, + [437] = { + [sym_function_modifiers] = STATE(3686), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2511), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(2511), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3651), + [sym_type_binding] = STATE(2769), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2258), + [sym_label] = STATE(3764), + [sym_block] = STATE(2769), + [sym__literal] = STATE(2769), + [sym_string_literal] = STATE(3073), + [sym_raw_string_literal] = STATE(3073), + [sym_boolean_literal] = STATE(3073), + [sym_line_comment] = STATE(437), + [sym_block_comment] = STATE(437), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1608), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_STAR] = ACTIONS(1616), + [anon_sym_QMARK] = ACTIONS(1618), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1622), + [anon_sym_GT] = ACTIONS(1646), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1632), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1636), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1638), + [anon_sym_raw] = ACTIONS(1634), + [sym_integer_literal] = ACTIONS(1640), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1640), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1640), + }, + [438] = { + [sym_function_modifiers] = STATE(3686), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2511), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(2511), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3651), + [sym_type_binding] = STATE(2769), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2258), + [sym_label] = STATE(3764), + [sym_block] = STATE(2769), + [sym__literal] = STATE(2769), + [sym_string_literal] = STATE(3073), + [sym_raw_string_literal] = STATE(3073), + [sym_boolean_literal] = STATE(3073), + [sym_line_comment] = STATE(438), + [sym_block_comment] = STATE(438), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1608), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_STAR] = ACTIONS(1616), + [anon_sym_QMARK] = ACTIONS(1618), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1622), + [anon_sym_GT] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1632), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1636), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1638), + [anon_sym_raw] = ACTIONS(1634), + [sym_integer_literal] = ACTIONS(1640), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1640), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1640), + }, + [439] = { + [sym_function_modifiers] = STATE(3686), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2511), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(2511), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3651), + [sym_type_binding] = STATE(2769), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2258), + [sym_label] = STATE(3764), + [sym_block] = STATE(2769), + [sym__literal] = STATE(2769), + [sym_string_literal] = STATE(3073), + [sym_raw_string_literal] = STATE(3073), + [sym_boolean_literal] = STATE(3073), + [sym_line_comment] = STATE(439), + [sym_block_comment] = STATE(439), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1608), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_STAR] = ACTIONS(1616), + [anon_sym_QMARK] = ACTIONS(1618), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1622), + [anon_sym_GT] = ACTIONS(1650), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1632), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1636), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1638), + [anon_sym_raw] = ACTIONS(1634), + [sym_integer_literal] = ACTIONS(1640), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1640), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1640), + }, + [440] = { + [sym_function_modifiers] = STATE(3686), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2511), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(2511), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3651), + [sym_type_binding] = STATE(2769), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2258), + [sym_label] = STATE(3764), + [sym_block] = STATE(2769), + [sym__literal] = STATE(2769), + [sym_string_literal] = STATE(3073), + [sym_raw_string_literal] = STATE(3073), + [sym_boolean_literal] = STATE(3073), + [sym_line_comment] = STATE(440), + [sym_block_comment] = STATE(440), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1608), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_STAR] = ACTIONS(1616), + [anon_sym_QMARK] = ACTIONS(1618), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1622), + [anon_sym_GT] = ACTIONS(1652), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1632), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1636), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1638), + [anon_sym_raw] = ACTIONS(1634), + [sym_integer_literal] = ACTIONS(1640), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1640), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1640), + }, + [441] = { + [sym_function_modifiers] = STATE(3686), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2511), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(2511), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3651), + [sym_type_binding] = STATE(2769), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2258), + [sym_label] = STATE(3764), + [sym_block] = STATE(2769), + [sym__literal] = STATE(2769), + [sym_string_literal] = STATE(3073), + [sym_raw_string_literal] = STATE(3073), + [sym_boolean_literal] = STATE(3073), [sym_line_comment] = STATE(441), [sym_block_comment] = STATE(441), - [sym_identifier] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1606), - [anon_sym_LBRACE] = ACTIONS(1606), - [anon_sym_EQ_GT] = ACTIONS(1606), - [anon_sym_COLON] = ACTIONS(1604), - [anon_sym_PLUS] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1604), - [anon_sym_QMARK] = ACTIONS(1606), - [anon_sym_u8] = ACTIONS(1604), - [anon_sym_i8] = ACTIONS(1604), - [anon_sym_u16] = ACTIONS(1604), - [anon_sym_i16] = ACTIONS(1604), - [anon_sym_u32] = ACTIONS(1604), - [anon_sym_i32] = ACTIONS(1604), - [anon_sym_u64] = ACTIONS(1604), - [anon_sym_i64] = ACTIONS(1604), - [anon_sym_u128] = ACTIONS(1604), - [anon_sym_i128] = ACTIONS(1604), - [anon_sym_isize] = ACTIONS(1604), - [anon_sym_usize] = ACTIONS(1604), - [anon_sym_f32] = ACTIONS(1604), - [anon_sym_f64] = ACTIONS(1604), - [anon_sym_bool] = ACTIONS(1604), - [anon_sym_str] = ACTIONS(1604), - [anon_sym_char] = ACTIONS(1604), - [anon_sym_DASH] = ACTIONS(1604), - [anon_sym_SLASH] = ACTIONS(1604), - [anon_sym_PERCENT] = ACTIONS(1604), - [anon_sym_CARET] = ACTIONS(1604), - [anon_sym_BANG] = ACTIONS(1604), - [anon_sym_AMP] = ACTIONS(1604), - [anon_sym_PIPE] = ACTIONS(1604), - [anon_sym_AMP_AMP] = ACTIONS(1606), - [anon_sym_PIPE_PIPE] = ACTIONS(1606), - [anon_sym_LT_LT] = ACTIONS(1604), - [anon_sym_GT_GT] = ACTIONS(1604), - [anon_sym_PLUS_EQ] = ACTIONS(1606), - [anon_sym_DASH_EQ] = ACTIONS(1606), - [anon_sym_STAR_EQ] = ACTIONS(1606), - [anon_sym_SLASH_EQ] = ACTIONS(1606), - [anon_sym_PERCENT_EQ] = ACTIONS(1606), - [anon_sym_CARET_EQ] = ACTIONS(1606), - [anon_sym_AMP_EQ] = ACTIONS(1606), - [anon_sym_PIPE_EQ] = ACTIONS(1606), - [anon_sym_LT_LT_EQ] = ACTIONS(1606), - [anon_sym_GT_GT_EQ] = ACTIONS(1606), - [anon_sym_EQ] = ACTIONS(1604), - [anon_sym_EQ_EQ] = ACTIONS(1606), - [anon_sym_BANG_EQ] = ACTIONS(1606), - [anon_sym_GT] = ACTIONS(1604), - [anon_sym_LT] = ACTIONS(1604), - [anon_sym_GT_EQ] = ACTIONS(1606), - [anon_sym_LT_EQ] = ACTIONS(1606), - [anon_sym_DOT] = ACTIONS(1604), - [anon_sym_DOT_DOT] = ACTIONS(1604), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1606), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1606), - [anon_sym_COLON_COLON] = ACTIONS(1606), - [anon_sym_SQUOTE] = ACTIONS(1604), - [anon_sym_as] = ACTIONS(1604), - [anon_sym_async] = ACTIONS(1604), - [anon_sym_break] = ACTIONS(1604), - [anon_sym_const] = ACTIONS(1604), - [anon_sym_continue] = ACTIONS(1604), - [anon_sym_default] = ACTIONS(1604), - [anon_sym_for] = ACTIONS(1604), - [anon_sym_gen] = ACTIONS(1604), - [anon_sym_if] = ACTIONS(1604), - [anon_sym_loop] = ACTIONS(1604), - [anon_sym_match] = ACTIONS(1604), - [anon_sym_return] = ACTIONS(1604), - [anon_sym_static] = ACTIONS(1604), - [anon_sym_union] = ACTIONS(1604), - [anon_sym_unsafe] = ACTIONS(1604), - [anon_sym_while] = ACTIONS(1604), - [anon_sym_raw] = ACTIONS(1604), - [anon_sym_yield] = ACTIONS(1604), - [anon_sym_move] = ACTIONS(1604), - [anon_sym_try] = ACTIONS(1604), - [sym_integer_literal] = ACTIONS(1606), - [aux_sym_string_literal_token1] = ACTIONS(1606), - [sym_char_literal] = ACTIONS(1606), - [anon_sym_true] = ACTIONS(1604), - [anon_sym_false] = ACTIONS(1604), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1604), - [sym_super] = ACTIONS(1604), - [sym_crate] = ACTIONS(1604), - [sym_metavariable] = ACTIONS(1606), - [sym__raw_string_literal_start] = ACTIONS(1606), - [sym_float_literal] = ACTIONS(1606), - }, - [STATE(442)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2231), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1608), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_STAR] = ACTIONS(1616), + [anon_sym_QMARK] = ACTIONS(1618), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1622), + [anon_sym_GT] = ACTIONS(1654), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1632), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1636), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1638), + [anon_sym_raw] = ACTIONS(1634), + [sym_integer_literal] = ACTIONS(1640), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1640), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1640), + }, + [442] = { + [sym_function_modifiers] = STATE(3686), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2511), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(2511), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3651), + [sym_type_binding] = STATE(2769), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2258), + [sym_label] = STATE(3764), + [sym_block] = STATE(2769), + [sym__literal] = STATE(2769), + [sym_string_literal] = STATE(3073), + [sym_raw_string_literal] = STATE(3073), + [sym_boolean_literal] = STATE(3073), [sym_line_comment] = STATE(442), [sym_block_comment] = STATE(442), + [aux_sym_function_modifiers_repeat1] = STATE(2329), [sym_identifier] = ACTIONS(1608), [anon_sym_LPAREN] = ACTIONS(1610), - [anon_sym_LBRACK] = ACTIONS(1610), - [anon_sym_LBRACE] = ACTIONS(1610), - [anon_sym_STAR] = ACTIONS(1610), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_DASH] = ACTIONS(1608), - [anon_sym_BANG] = ACTIONS(1610), - [anon_sym_AMP] = ACTIONS(1610), - [anon_sym_PIPE] = ACTIONS(1610), - [anon_sym_LT] = ACTIONS(1610), - [anon_sym__] = ACTIONS(1608), - [anon_sym_DOT_DOT] = ACTIONS(1608), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_DASH_GT] = ACTIONS(1610), - [anon_sym_SQUOTE] = ACTIONS(1608), - [anon_sym_async] = ACTIONS(1608), - [anon_sym_break] = ACTIONS(1608), - [anon_sym_const] = ACTIONS(1608), - [anon_sym_continue] = ACTIONS(1608), - [anon_sym_default] = ACTIONS(1608), - [anon_sym_for] = ACTIONS(1608), - [anon_sym_gen] = ACTIONS(1608), - [anon_sym_if] = ACTIONS(1608), - [anon_sym_loop] = ACTIONS(1608), - [anon_sym_match] = ACTIONS(1608), - [anon_sym_return] = ACTIONS(1608), - [anon_sym_static] = ACTIONS(1608), - [anon_sym_union] = ACTIONS(1608), - [anon_sym_unsafe] = ACTIONS(1608), - [anon_sym_while] = ACTIONS(1608), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1608), - [anon_sym_yield] = ACTIONS(1608), - [anon_sym_move] = ACTIONS(1608), - [anon_sym_try] = ACTIONS(1608), - [sym_integer_literal] = ACTIONS(1610), - [aux_sym_string_literal_token1] = ACTIONS(1610), - [sym_char_literal] = ACTIONS(1610), - [anon_sym_true] = ACTIONS(1608), - [anon_sym_false] = ACTIONS(1608), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1608), - [sym_super] = ACTIONS(1608), - [sym_crate] = ACTIONS(1608), - [sym_metavariable] = ACTIONS(1610), - [sym__raw_string_literal_start] = ACTIONS(1610), - [sym_float_literal] = ACTIONS(1610), - }, - [STATE(443)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2191), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_STAR] = ACTIONS(1616), + [anon_sym_QMARK] = ACTIONS(1618), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1622), + [anon_sym_GT] = ACTIONS(1656), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1632), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1636), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1638), + [anon_sym_raw] = ACTIONS(1634), + [sym_integer_literal] = ACTIONS(1640), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1640), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1640), + }, + [443] = { + [sym_function_modifiers] = STATE(3686), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2511), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(2511), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3651), + [sym_type_binding] = STATE(2769), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2258), + [sym_label] = STATE(3764), + [sym_block] = STATE(2769), + [sym__literal] = STATE(2769), + [sym_string_literal] = STATE(3073), + [sym_raw_string_literal] = STATE(3073), + [sym_boolean_literal] = STATE(3073), [sym_line_comment] = STATE(443), [sym_block_comment] = STATE(443), - [sym_identifier] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(1614), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1608), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_STAR] = ACTIONS(1614), - [anon_sym_u8] = ACTIONS(1612), - [anon_sym_i8] = ACTIONS(1612), - [anon_sym_u16] = ACTIONS(1612), - [anon_sym_i16] = ACTIONS(1612), - [anon_sym_u32] = ACTIONS(1612), - [anon_sym_i32] = ACTIONS(1612), - [anon_sym_u64] = ACTIONS(1612), - [anon_sym_i64] = ACTIONS(1612), - [anon_sym_u128] = ACTIONS(1612), - [anon_sym_i128] = ACTIONS(1612), - [anon_sym_isize] = ACTIONS(1612), - [anon_sym_usize] = ACTIONS(1612), - [anon_sym_f32] = ACTIONS(1612), - [anon_sym_f64] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_str] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1612), - [anon_sym_BANG] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1614), - [anon_sym_PIPE] = ACTIONS(1614), - [anon_sym_LT] = ACTIONS(1614), - [anon_sym__] = ACTIONS(1612), - [anon_sym_DOT_DOT] = ACTIONS(1612), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1614), - [anon_sym_DASH_GT] = ACTIONS(1614), - [anon_sym_SQUOTE] = ACTIONS(1612), - [anon_sym_async] = ACTIONS(1612), - [anon_sym_break] = ACTIONS(1612), - [anon_sym_const] = ACTIONS(1612), - [anon_sym_continue] = ACTIONS(1612), - [anon_sym_default] = ACTIONS(1612), - [anon_sym_for] = ACTIONS(1612), - [anon_sym_gen] = ACTIONS(1612), - [anon_sym_if] = ACTIONS(1612), - [anon_sym_loop] = ACTIONS(1612), - [anon_sym_match] = ACTIONS(1612), - [anon_sym_return] = ACTIONS(1612), - [anon_sym_static] = ACTIONS(1612), - [anon_sym_union] = ACTIONS(1612), - [anon_sym_unsafe] = ACTIONS(1612), - [anon_sym_while] = ACTIONS(1612), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1612), - [anon_sym_yield] = ACTIONS(1612), - [anon_sym_move] = ACTIONS(1612), - [anon_sym_try] = ACTIONS(1612), - [sym_integer_literal] = ACTIONS(1614), - [aux_sym_string_literal_token1] = ACTIONS(1614), - [sym_char_literal] = ACTIONS(1614), - [anon_sym_true] = ACTIONS(1612), - [anon_sym_false] = ACTIONS(1612), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1612), - [sym_super] = ACTIONS(1612), - [sym_crate] = ACTIONS(1612), - [sym_metavariable] = ACTIONS(1614), - [sym__raw_string_literal_start] = ACTIONS(1614), - [sym_float_literal] = ACTIONS(1614), - }, - [STATE(444)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2574), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(2574), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_type_binding] = STATE(2681), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), - [sym_label] = STATE(3774), - [sym_block] = STATE(2681), - [sym__literal] = STATE(2681), - [sym_string_literal] = STATE(2884), - [sym_raw_string_literal] = STATE(2884), - [sym_boolean_literal] = STATE(2884), + [anon_sym_STAR] = ACTIONS(1616), + [anon_sym_QMARK] = ACTIONS(1618), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1622), + [anon_sym_GT] = ACTIONS(1658), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1632), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1636), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1638), + [anon_sym_raw] = ACTIONS(1634), + [sym_integer_literal] = ACTIONS(1640), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1640), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1640), + }, + [444] = { + [sym_function_modifiers] = STATE(3686), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2511), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(2511), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3651), + [sym_type_binding] = STATE(2769), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2258), + [sym_label] = STATE(3764), + [sym_block] = STATE(2769), + [sym__literal] = STATE(2769), + [sym_string_literal] = STATE(3073), + [sym_raw_string_literal] = STATE(3073), + [sym_boolean_literal] = STATE(3073), [sym_line_comment] = STATE(444), [sym_block_comment] = STATE(444), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1616), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_GT] = ACTIONS(1632), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [sym_integer_literal] = ACTIONS(1648), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1648), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1648), - }, - [STATE(445)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2574), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(2574), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_type_binding] = STATE(2681), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), - [sym_label] = STATE(3774), - [sym_block] = STATE(2681), - [sym__literal] = STATE(2681), - [sym_string_literal] = STATE(2884), - [sym_raw_string_literal] = STATE(2884), - [sym_boolean_literal] = STATE(2884), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1608), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_STAR] = ACTIONS(1616), + [anon_sym_QMARK] = ACTIONS(1618), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1622), + [anon_sym_GT] = ACTIONS(1660), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1632), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1636), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1638), + [anon_sym_raw] = ACTIONS(1634), + [sym_integer_literal] = ACTIONS(1640), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1640), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1640), + }, + [445] = { + [sym_function_modifiers] = STATE(3686), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2511), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(2511), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3651), + [sym_type_binding] = STATE(2769), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2258), + [sym_label] = STATE(3764), + [sym_block] = STATE(2769), + [sym__literal] = STATE(2769), + [sym_string_literal] = STATE(3073), + [sym_raw_string_literal] = STATE(3073), + [sym_boolean_literal] = STATE(3073), [sym_line_comment] = STATE(445), [sym_block_comment] = STATE(445), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1616), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_GT] = ACTIONS(1654), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1608), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_STAR] = ACTIONS(1616), + [anon_sym_QMARK] = ACTIONS(1618), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1622), + [anon_sym_GT] = ACTIONS(1662), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [sym_integer_literal] = ACTIONS(1648), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1648), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1648), - }, - [STATE(446)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2574), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(2574), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_type_binding] = STATE(2681), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), - [sym_label] = STATE(3774), - [sym_block] = STATE(2681), - [sym__literal] = STATE(2681), - [sym_string_literal] = STATE(2884), - [sym_raw_string_literal] = STATE(2884), - [sym_boolean_literal] = STATE(2884), + [anon_sym_COLON_COLON] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1632), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1636), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1638), + [anon_sym_raw] = ACTIONS(1634), + [sym_integer_literal] = ACTIONS(1640), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1640), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1640), + }, + [446] = { + [sym_function_modifiers] = STATE(3686), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2511), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(2511), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3651), + [sym_type_binding] = STATE(2769), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2258), + [sym_label] = STATE(3764), + [sym_block] = STATE(2769), + [sym__literal] = STATE(2769), + [sym_string_literal] = STATE(3073), + [sym_raw_string_literal] = STATE(3073), + [sym_boolean_literal] = STATE(3073), [sym_line_comment] = STATE(446), [sym_block_comment] = STATE(446), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1616), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_GT] = ACTIONS(1656), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1608), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_STAR] = ACTIONS(1616), + [anon_sym_QMARK] = ACTIONS(1618), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1622), + [anon_sym_GT] = ACTIONS(1664), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [sym_integer_literal] = ACTIONS(1648), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1648), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1648), - }, - [STATE(447)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2574), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(2574), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_type_binding] = STATE(2681), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), - [sym_label] = STATE(3774), - [sym_block] = STATE(2681), - [sym__literal] = STATE(2681), - [sym_string_literal] = STATE(2884), - [sym_raw_string_literal] = STATE(2884), - [sym_boolean_literal] = STATE(2884), + [anon_sym_COLON_COLON] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1632), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1636), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1638), + [anon_sym_raw] = ACTIONS(1634), + [sym_integer_literal] = ACTIONS(1640), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1640), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1640), + }, + [447] = { + [sym_function_modifiers] = STATE(3686), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2511), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(2511), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3651), + [sym_type_binding] = STATE(2769), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2258), + [sym_label] = STATE(3764), + [sym_block] = STATE(2769), + [sym__literal] = STATE(2769), + [sym_string_literal] = STATE(3073), + [sym_raw_string_literal] = STATE(3073), + [sym_boolean_literal] = STATE(3073), [sym_line_comment] = STATE(447), [sym_block_comment] = STATE(447), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1616), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_GT] = ACTIONS(1658), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1608), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_STAR] = ACTIONS(1616), + [anon_sym_QMARK] = ACTIONS(1618), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1622), + [anon_sym_GT] = ACTIONS(1666), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [sym_integer_literal] = ACTIONS(1648), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1648), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1648), - }, - [STATE(448)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2574), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(2574), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_type_binding] = STATE(2681), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), - [sym_label] = STATE(3774), - [sym_block] = STATE(2681), - [sym__literal] = STATE(2681), - [sym_string_literal] = STATE(2884), - [sym_raw_string_literal] = STATE(2884), - [sym_boolean_literal] = STATE(2884), + [anon_sym_COLON_COLON] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1632), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1636), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1638), + [anon_sym_raw] = ACTIONS(1634), + [sym_integer_literal] = ACTIONS(1640), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1640), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1640), + }, + [448] = { + [sym_function_modifiers] = STATE(3686), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2411), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(2411), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3651), + [sym_type_binding] = STATE(2523), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2258), + [sym_label] = STATE(3764), + [sym_block] = STATE(2523), + [sym__literal] = STATE(2523), + [sym_string_literal] = STATE(3073), + [sym_raw_string_literal] = STATE(3073), + [sym_boolean_literal] = STATE(3073), [sym_line_comment] = STATE(448), [sym_block_comment] = STATE(448), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1616), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_GT] = ACTIONS(1660), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [sym_integer_literal] = ACTIONS(1648), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1648), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1648), - }, - [STATE(449)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2574), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(2574), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_type_binding] = STATE(2681), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), - [sym_label] = STATE(3774), - [sym_block] = STATE(2681), - [sym__literal] = STATE(2681), - [sym_string_literal] = STATE(2884), - [sym_raw_string_literal] = STATE(2884), - [sym_boolean_literal] = STATE(2884), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1608), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_STAR] = ACTIONS(1616), + [anon_sym_QMARK] = ACTIONS(1618), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1622), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1632), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1636), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1638), + [anon_sym_raw] = ACTIONS(1634), + [sym_integer_literal] = ACTIONS(1640), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1640), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1640), + }, + [449] = { + [sym_function_modifiers] = STATE(3686), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2412), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(2412), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3651), + [sym_type_binding] = STATE(2544), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2258), + [sym_label] = STATE(3764), + [sym_block] = STATE(2544), + [sym__literal] = STATE(2544), + [sym_string_literal] = STATE(3073), + [sym_raw_string_literal] = STATE(3073), + [sym_boolean_literal] = STATE(3073), [sym_line_comment] = STATE(449), [sym_block_comment] = STATE(449), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1616), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_GT] = ACTIONS(1662), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [sym_integer_literal] = ACTIONS(1648), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1648), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1648), - }, - [STATE(450)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2574), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(2574), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_type_binding] = STATE(2681), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), - [sym_label] = STATE(3774), - [sym_block] = STATE(2681), - [sym__literal] = STATE(2681), - [sym_string_literal] = STATE(2884), - [sym_raw_string_literal] = STATE(2884), - [sym_boolean_literal] = STATE(2884), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1608), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_STAR] = ACTIONS(1616), + [anon_sym_QMARK] = ACTIONS(1618), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1622), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1632), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1636), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1638), + [anon_sym_raw] = ACTIONS(1634), + [sym_integer_literal] = ACTIONS(1640), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1640), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1640), + }, + [450] = { + [sym_function_modifiers] = STATE(3686), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2450), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(2450), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3651), + [sym_type_binding] = STATE(2518), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2258), + [sym_label] = STATE(3764), + [sym_block] = STATE(2518), + [sym__literal] = STATE(2518), + [sym_string_literal] = STATE(3073), + [sym_raw_string_literal] = STATE(3073), + [sym_boolean_literal] = STATE(3073), [sym_line_comment] = STATE(450), [sym_block_comment] = STATE(450), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1616), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_GT] = ACTIONS(1664), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [sym_integer_literal] = ACTIONS(1648), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1648), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1648), - }, - [STATE(451)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2574), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(2574), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_type_binding] = STATE(2681), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), - [sym_label] = STATE(3774), - [sym_block] = STATE(2681), - [sym__literal] = STATE(2681), - [sym_string_literal] = STATE(2884), - [sym_raw_string_literal] = STATE(2884), - [sym_boolean_literal] = STATE(2884), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1608), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_STAR] = ACTIONS(1616), + [anon_sym_QMARK] = ACTIONS(1618), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1622), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1632), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1636), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1638), + [anon_sym_raw] = ACTIONS(1634), + [sym_integer_literal] = ACTIONS(1640), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1640), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1640), + }, + [451] = { + [sym_function_modifiers] = STATE(3686), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2445), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(2445), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3651), + [sym_type_binding] = STATE(2609), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2258), + [sym_label] = STATE(3764), + [sym_block] = STATE(2609), + [sym__literal] = STATE(2609), + [sym_string_literal] = STATE(3073), + [sym_raw_string_literal] = STATE(3073), + [sym_boolean_literal] = STATE(3073), [sym_line_comment] = STATE(451), [sym_block_comment] = STATE(451), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1616), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_GT] = ACTIONS(1666), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [sym_integer_literal] = ACTIONS(1648), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1648), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1648), - }, - [STATE(452)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2574), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(2574), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_type_binding] = STATE(2681), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), - [sym_label] = STATE(3774), - [sym_block] = STATE(2681), - [sym__literal] = STATE(2681), - [sym_string_literal] = STATE(2884), - [sym_raw_string_literal] = STATE(2884), - [sym_boolean_literal] = STATE(2884), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1608), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_STAR] = ACTIONS(1616), + [anon_sym_QMARK] = ACTIONS(1618), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1622), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1632), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1636), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1638), + [anon_sym_raw] = ACTIONS(1634), + [sym_integer_literal] = ACTIONS(1640), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1640), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1640), + }, + [452] = { + [sym_function_modifiers] = STATE(3686), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2511), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(2511), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3651), + [sym_type_binding] = STATE(2769), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2258), + [sym_label] = STATE(3764), + [sym_block] = STATE(2769), + [sym__literal] = STATE(2769), + [sym_string_literal] = STATE(3073), + [sym_raw_string_literal] = STATE(3073), + [sym_boolean_literal] = STATE(3073), [sym_line_comment] = STATE(452), [sym_block_comment] = STATE(452), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1616), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_GT] = ACTIONS(1668), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [sym_integer_literal] = ACTIONS(1648), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1648), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1648), - }, - [STATE(453)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2574), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(2574), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_type_binding] = STATE(2681), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), - [sym_label] = STATE(3774), - [sym_block] = STATE(2681), - [sym__literal] = STATE(2681), - [sym_string_literal] = STATE(2884), - [sym_raw_string_literal] = STATE(2884), - [sym_boolean_literal] = STATE(2884), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(1608), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_STAR] = ACTIONS(1616), + [anon_sym_QMARK] = ACTIONS(1618), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1622), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(1628), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1632), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1636), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1638), + [anon_sym_raw] = ACTIONS(1634), + [sym_integer_literal] = ACTIONS(1640), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1640), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1640), + }, + [453] = { + [sym_attribute_item] = STATE(1361), + [sym_inner_attribute_item] = STATE(1361), + [sym_bracketed_type] = STATE(3688), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3407), + [sym_macro_invocation] = STATE(3125), + [sym_scoped_identifier] = STATE(2279), + [sym_scoped_type_identifier] = STATE(3095), + [sym_match_arm] = STATE(1362), + [sym_last_match_arm] = STATE(3600), + [sym_match_pattern] = STATE(3800), + [sym_const_block] = STATE(3125), + [sym__pattern] = STATE(3046), + [sym_generic_pattern] = STATE(3125), + [sym_tuple_pattern] = STATE(3125), + [sym_slice_pattern] = STATE(3125), + [sym_tuple_struct_pattern] = STATE(3125), + [sym_struct_pattern] = STATE(3125), + [sym_remaining_field_pattern] = STATE(3125), + [sym_mut_pattern] = STATE(3125), + [sym_range_pattern] = STATE(3125), + [sym_ref_pattern] = STATE(3125), + [sym_captured_pattern] = STATE(3125), + [sym_reference_pattern] = STATE(3125), + [sym_or_pattern] = STATE(3125), + [sym__literal_pattern] = STATE(2478), + [sym_negative_literal] = STATE(2502), + [sym_string_literal] = STATE(2502), + [sym_raw_string_literal] = STATE(2502), + [sym_boolean_literal] = STATE(2502), [sym_line_comment] = STATE(453), [sym_block_comment] = STATE(453), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1616), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_GT] = ACTIONS(1670), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [sym_integer_literal] = ACTIONS(1648), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1648), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1648), - }, - [STATE(454)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2574), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(2574), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_type_binding] = STATE(2681), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), - [sym_label] = STATE(3774), - [sym_block] = STATE(2681), - [sym__literal] = STATE(2681), - [sym_string_literal] = STATE(2884), - [sym_raw_string_literal] = STATE(2884), - [sym_boolean_literal] = STATE(2884), + [aux_sym_match_block_repeat1] = STATE(460), + [aux_sym_match_arm_repeat1] = STATE(615), + [sym_identifier] = ACTIONS(1668), + [anon_sym_LPAREN] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(1674), + [anon_sym_u8] = ACTIONS(1676), + [anon_sym_i8] = ACTIONS(1676), + [anon_sym_u16] = ACTIONS(1676), + [anon_sym_i16] = ACTIONS(1676), + [anon_sym_u32] = ACTIONS(1676), + [anon_sym_i32] = ACTIONS(1676), + [anon_sym_u64] = ACTIONS(1676), + [anon_sym_i64] = ACTIONS(1676), + [anon_sym_u128] = ACTIONS(1676), + [anon_sym_i128] = ACTIONS(1676), + [anon_sym_isize] = ACTIONS(1676), + [anon_sym_usize] = ACTIONS(1676), + [anon_sym_f32] = ACTIONS(1676), + [anon_sym_f64] = ACTIONS(1676), + [anon_sym_bool] = ACTIONS(1676), + [anon_sym_str] = ACTIONS(1676), + [anon_sym_char] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1680), + [anon_sym_PIPE] = ACTIONS(1682), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1684), + [anon_sym_DOT_DOT] = ACTIONS(1686), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1688), + [anon_sym_COLON_COLON] = ACTIONS(1690), + [anon_sym_POUND] = ACTIONS(1692), + [anon_sym_const] = ACTIONS(1694), + [anon_sym_default] = ACTIONS(1696), + [anon_sym_gen] = ACTIONS(1696), + [anon_sym_union] = ACTIONS(1696), + [anon_sym_ref] = ACTIONS(1698), + [sym_mutable_specifier] = ACTIONS(1700), + [anon_sym_raw] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1702), + [aux_sym_string_literal_token1] = ACTIONS(1704), + [sym_char_literal] = ACTIONS(1702), + [anon_sym_true] = ACTIONS(1706), + [anon_sym_false] = ACTIONS(1706), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1708), + [sym_super] = ACTIONS(1708), + [sym_crate] = ACTIONS(1708), + [sym_metavariable] = ACTIONS(1710), + [sym__raw_string_literal_start] = ACTIONS(1712), + [sym_float_literal] = ACTIONS(1702), + }, + [454] = { + [sym_attribute_item] = STATE(1361), + [sym_inner_attribute_item] = STATE(1361), + [sym_bracketed_type] = STATE(3688), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3407), + [sym_macro_invocation] = STATE(3125), + [sym_scoped_identifier] = STATE(2279), + [sym_scoped_type_identifier] = STATE(3095), + [sym_match_arm] = STATE(1362), + [sym_last_match_arm] = STATE(3794), + [sym_match_pattern] = STATE(3800), + [sym_const_block] = STATE(3125), + [sym__pattern] = STATE(3046), + [sym_generic_pattern] = STATE(3125), + [sym_tuple_pattern] = STATE(3125), + [sym_slice_pattern] = STATE(3125), + [sym_tuple_struct_pattern] = STATE(3125), + [sym_struct_pattern] = STATE(3125), + [sym_remaining_field_pattern] = STATE(3125), + [sym_mut_pattern] = STATE(3125), + [sym_range_pattern] = STATE(3125), + [sym_ref_pattern] = STATE(3125), + [sym_captured_pattern] = STATE(3125), + [sym_reference_pattern] = STATE(3125), + [sym_or_pattern] = STATE(3125), + [sym__literal_pattern] = STATE(2478), + [sym_negative_literal] = STATE(2502), + [sym_string_literal] = STATE(2502), + [sym_raw_string_literal] = STATE(2502), + [sym_boolean_literal] = STATE(2502), [sym_line_comment] = STATE(454), [sym_block_comment] = STATE(454), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1616), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_GT] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [sym_integer_literal] = ACTIONS(1648), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1648), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1648), - }, - [STATE(455)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2574), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(2574), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_type_binding] = STATE(2681), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), - [sym_label] = STATE(3774), - [sym_block] = STATE(2681), - [sym__literal] = STATE(2681), - [sym_string_literal] = STATE(2884), - [sym_raw_string_literal] = STATE(2884), - [sym_boolean_literal] = STATE(2884), + [aux_sym_match_block_repeat1] = STATE(463), + [aux_sym_match_arm_repeat1] = STATE(615), + [sym_identifier] = ACTIONS(1668), + [anon_sym_LPAREN] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(1714), + [anon_sym_u8] = ACTIONS(1676), + [anon_sym_i8] = ACTIONS(1676), + [anon_sym_u16] = ACTIONS(1676), + [anon_sym_i16] = ACTIONS(1676), + [anon_sym_u32] = ACTIONS(1676), + [anon_sym_i32] = ACTIONS(1676), + [anon_sym_u64] = ACTIONS(1676), + [anon_sym_i64] = ACTIONS(1676), + [anon_sym_u128] = ACTIONS(1676), + [anon_sym_i128] = ACTIONS(1676), + [anon_sym_isize] = ACTIONS(1676), + [anon_sym_usize] = ACTIONS(1676), + [anon_sym_f32] = ACTIONS(1676), + [anon_sym_f64] = ACTIONS(1676), + [anon_sym_bool] = ACTIONS(1676), + [anon_sym_str] = ACTIONS(1676), + [anon_sym_char] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1680), + [anon_sym_PIPE] = ACTIONS(1682), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1684), + [anon_sym_DOT_DOT] = ACTIONS(1686), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1688), + [anon_sym_COLON_COLON] = ACTIONS(1690), + [anon_sym_POUND] = ACTIONS(1692), + [anon_sym_const] = ACTIONS(1694), + [anon_sym_default] = ACTIONS(1696), + [anon_sym_gen] = ACTIONS(1696), + [anon_sym_union] = ACTIONS(1696), + [anon_sym_ref] = ACTIONS(1698), + [sym_mutable_specifier] = ACTIONS(1700), + [anon_sym_raw] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1702), + [aux_sym_string_literal_token1] = ACTIONS(1704), + [sym_char_literal] = ACTIONS(1702), + [anon_sym_true] = ACTIONS(1706), + [anon_sym_false] = ACTIONS(1706), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1708), + [sym_super] = ACTIONS(1708), + [sym_crate] = ACTIONS(1708), + [sym_metavariable] = ACTIONS(1710), + [sym__raw_string_literal_start] = ACTIONS(1712), + [sym_float_literal] = ACTIONS(1702), + }, + [455] = { + [sym_attribute_item] = STATE(1361), + [sym_inner_attribute_item] = STATE(1361), + [sym_bracketed_type] = STATE(3688), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3407), + [sym_macro_invocation] = STATE(3125), + [sym_scoped_identifier] = STATE(2279), + [sym_scoped_type_identifier] = STATE(3095), + [sym_match_arm] = STATE(1362), + [sym_last_match_arm] = STATE(3610), + [sym_match_pattern] = STATE(3800), + [sym_const_block] = STATE(3125), + [sym__pattern] = STATE(3046), + [sym_generic_pattern] = STATE(3125), + [sym_tuple_pattern] = STATE(3125), + [sym_slice_pattern] = STATE(3125), + [sym_tuple_struct_pattern] = STATE(3125), + [sym_struct_pattern] = STATE(3125), + [sym_remaining_field_pattern] = STATE(3125), + [sym_mut_pattern] = STATE(3125), + [sym_range_pattern] = STATE(3125), + [sym_ref_pattern] = STATE(3125), + [sym_captured_pattern] = STATE(3125), + [sym_reference_pattern] = STATE(3125), + [sym_or_pattern] = STATE(3125), + [sym__literal_pattern] = STATE(2478), + [sym_negative_literal] = STATE(2502), + [sym_string_literal] = STATE(2502), + [sym_raw_string_literal] = STATE(2502), + [sym_boolean_literal] = STATE(2502), [sym_line_comment] = STATE(455), [sym_block_comment] = STATE(455), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1616), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_GT] = ACTIONS(1674), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [sym_integer_literal] = ACTIONS(1648), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1648), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1648), - }, - [STATE(456)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2574), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(2574), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_type_binding] = STATE(2681), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), - [sym_label] = STATE(3774), - [sym_block] = STATE(2681), - [sym__literal] = STATE(2681), - [sym_string_literal] = STATE(2884), - [sym_raw_string_literal] = STATE(2884), - [sym_boolean_literal] = STATE(2884), + [aux_sym_match_block_repeat1] = STATE(466), + [aux_sym_match_arm_repeat1] = STATE(615), + [sym_identifier] = ACTIONS(1668), + [anon_sym_LPAREN] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(1716), + [anon_sym_u8] = ACTIONS(1676), + [anon_sym_i8] = ACTIONS(1676), + [anon_sym_u16] = ACTIONS(1676), + [anon_sym_i16] = ACTIONS(1676), + [anon_sym_u32] = ACTIONS(1676), + [anon_sym_i32] = ACTIONS(1676), + [anon_sym_u64] = ACTIONS(1676), + [anon_sym_i64] = ACTIONS(1676), + [anon_sym_u128] = ACTIONS(1676), + [anon_sym_i128] = ACTIONS(1676), + [anon_sym_isize] = ACTIONS(1676), + [anon_sym_usize] = ACTIONS(1676), + [anon_sym_f32] = ACTIONS(1676), + [anon_sym_f64] = ACTIONS(1676), + [anon_sym_bool] = ACTIONS(1676), + [anon_sym_str] = ACTIONS(1676), + [anon_sym_char] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1680), + [anon_sym_PIPE] = ACTIONS(1682), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1684), + [anon_sym_DOT_DOT] = ACTIONS(1686), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1688), + [anon_sym_COLON_COLON] = ACTIONS(1690), + [anon_sym_POUND] = ACTIONS(1692), + [anon_sym_const] = ACTIONS(1694), + [anon_sym_default] = ACTIONS(1696), + [anon_sym_gen] = ACTIONS(1696), + [anon_sym_union] = ACTIONS(1696), + [anon_sym_ref] = ACTIONS(1698), + [sym_mutable_specifier] = ACTIONS(1700), + [anon_sym_raw] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1702), + [aux_sym_string_literal_token1] = ACTIONS(1704), + [sym_char_literal] = ACTIONS(1702), + [anon_sym_true] = ACTIONS(1706), + [anon_sym_false] = ACTIONS(1706), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1708), + [sym_super] = ACTIONS(1708), + [sym_crate] = ACTIONS(1708), + [sym_metavariable] = ACTIONS(1710), + [sym__raw_string_literal_start] = ACTIONS(1712), + [sym_float_literal] = ACTIONS(1702), + }, + [456] = { + [sym_attribute_item] = STATE(1361), + [sym_inner_attribute_item] = STATE(1361), + [sym_bracketed_type] = STATE(3688), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3407), + [sym_macro_invocation] = STATE(3125), + [sym_scoped_identifier] = STATE(2279), + [sym_scoped_type_identifier] = STATE(3095), + [sym_match_arm] = STATE(1362), + [sym_last_match_arm] = STATE(3711), + [sym_match_pattern] = STATE(3800), + [sym_const_block] = STATE(3125), + [sym__pattern] = STATE(3046), + [sym_generic_pattern] = STATE(3125), + [sym_tuple_pattern] = STATE(3125), + [sym_slice_pattern] = STATE(3125), + [sym_tuple_struct_pattern] = STATE(3125), + [sym_struct_pattern] = STATE(3125), + [sym_remaining_field_pattern] = STATE(3125), + [sym_mut_pattern] = STATE(3125), + [sym_range_pattern] = STATE(3125), + [sym_ref_pattern] = STATE(3125), + [sym_captured_pattern] = STATE(3125), + [sym_reference_pattern] = STATE(3125), + [sym_or_pattern] = STATE(3125), + [sym__literal_pattern] = STATE(2478), + [sym_negative_literal] = STATE(2502), + [sym_string_literal] = STATE(2502), + [sym_raw_string_literal] = STATE(2502), + [sym_boolean_literal] = STATE(2502), [sym_line_comment] = STATE(456), [sym_block_comment] = STATE(456), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1616), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [sym_integer_literal] = ACTIONS(1648), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1648), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1648), - }, - [STATE(457)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2476), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(2476), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_type_binding] = STATE(2517), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), - [sym_label] = STATE(3774), - [sym_block] = STATE(2517), - [sym__literal] = STATE(2517), - [sym_string_literal] = STATE(2884), - [sym_raw_string_literal] = STATE(2884), - [sym_boolean_literal] = STATE(2884), + [aux_sym_match_block_repeat1] = STATE(458), + [aux_sym_match_arm_repeat1] = STATE(615), + [sym_identifier] = ACTIONS(1668), + [anon_sym_LPAREN] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(1718), + [anon_sym_u8] = ACTIONS(1676), + [anon_sym_i8] = ACTIONS(1676), + [anon_sym_u16] = ACTIONS(1676), + [anon_sym_i16] = ACTIONS(1676), + [anon_sym_u32] = ACTIONS(1676), + [anon_sym_i32] = ACTIONS(1676), + [anon_sym_u64] = ACTIONS(1676), + [anon_sym_i64] = ACTIONS(1676), + [anon_sym_u128] = ACTIONS(1676), + [anon_sym_i128] = ACTIONS(1676), + [anon_sym_isize] = ACTIONS(1676), + [anon_sym_usize] = ACTIONS(1676), + [anon_sym_f32] = ACTIONS(1676), + [anon_sym_f64] = ACTIONS(1676), + [anon_sym_bool] = ACTIONS(1676), + [anon_sym_str] = ACTIONS(1676), + [anon_sym_char] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1680), + [anon_sym_PIPE] = ACTIONS(1682), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1684), + [anon_sym_DOT_DOT] = ACTIONS(1686), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1688), + [anon_sym_COLON_COLON] = ACTIONS(1690), + [anon_sym_POUND] = ACTIONS(1692), + [anon_sym_const] = ACTIONS(1694), + [anon_sym_default] = ACTIONS(1696), + [anon_sym_gen] = ACTIONS(1696), + [anon_sym_union] = ACTIONS(1696), + [anon_sym_ref] = ACTIONS(1698), + [sym_mutable_specifier] = ACTIONS(1700), + [anon_sym_raw] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1702), + [aux_sym_string_literal_token1] = ACTIONS(1704), + [sym_char_literal] = ACTIONS(1702), + [anon_sym_true] = ACTIONS(1706), + [anon_sym_false] = ACTIONS(1706), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1708), + [sym_super] = ACTIONS(1708), + [sym_crate] = ACTIONS(1708), + [sym_metavariable] = ACTIONS(1710), + [sym__raw_string_literal_start] = ACTIONS(1712), + [sym_float_literal] = ACTIONS(1702), + }, + [457] = { + [sym_else_clause] = STATE(469), [sym_line_comment] = STATE(457), [sym_block_comment] = STATE(457), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1616), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [sym_integer_literal] = ACTIONS(1648), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1648), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1648), - }, - [STATE(458)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2477), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(2477), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_type_binding] = STATE(2518), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), - [sym_label] = STATE(3774), - [sym_block] = STATE(2518), - [sym__literal] = STATE(2518), - [sym_string_literal] = STATE(2884), - [sym_raw_string_literal] = STATE(2884), - [sym_boolean_literal] = STATE(2884), + [sym_identifier] = ACTIONS(1404), + [anon_sym_LPAREN] = ACTIONS(1402), + [anon_sym_LBRACK] = ACTIONS(1402), + [anon_sym_RBRACE] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1404), + [anon_sym_STAR] = ACTIONS(1404), + [anon_sym_QMARK] = ACTIONS(1402), + [anon_sym_u8] = ACTIONS(1404), + [anon_sym_i8] = ACTIONS(1404), + [anon_sym_u16] = ACTIONS(1404), + [anon_sym_i16] = ACTIONS(1404), + [anon_sym_u32] = ACTIONS(1404), + [anon_sym_i32] = ACTIONS(1404), + [anon_sym_u64] = ACTIONS(1404), + [anon_sym_i64] = ACTIONS(1404), + [anon_sym_u128] = ACTIONS(1404), + [anon_sym_i128] = ACTIONS(1404), + [anon_sym_isize] = ACTIONS(1404), + [anon_sym_usize] = ACTIONS(1404), + [anon_sym_f32] = ACTIONS(1404), + [anon_sym_f64] = ACTIONS(1404), + [anon_sym_bool] = ACTIONS(1404), + [anon_sym_str] = ACTIONS(1404), + [anon_sym_char] = ACTIONS(1404), + [anon_sym_DASH] = ACTIONS(1404), + [anon_sym_SLASH] = ACTIONS(1404), + [anon_sym_PERCENT] = ACTIONS(1404), + [anon_sym_CARET] = ACTIONS(1404), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_PIPE] = ACTIONS(1404), + [anon_sym_AMP_AMP] = ACTIONS(1402), + [anon_sym_PIPE_PIPE] = ACTIONS(1402), + [anon_sym_LT_LT] = ACTIONS(1404), + [anon_sym_GT_GT] = ACTIONS(1404), + [anon_sym_PLUS_EQ] = ACTIONS(1402), + [anon_sym_DASH_EQ] = ACTIONS(1402), + [anon_sym_STAR_EQ] = ACTIONS(1402), + [anon_sym_SLASH_EQ] = ACTIONS(1402), + [anon_sym_PERCENT_EQ] = ACTIONS(1402), + [anon_sym_CARET_EQ] = ACTIONS(1402), + [anon_sym_AMP_EQ] = ACTIONS(1402), + [anon_sym_PIPE_EQ] = ACTIONS(1402), + [anon_sym_LT_LT_EQ] = ACTIONS(1402), + [anon_sym_GT_GT_EQ] = ACTIONS(1402), + [anon_sym_EQ] = ACTIONS(1404), + [anon_sym_EQ_EQ] = ACTIONS(1402), + [anon_sym_BANG_EQ] = ACTIONS(1402), + [anon_sym_GT] = ACTIONS(1404), + [anon_sym_LT] = ACTIONS(1404), + [anon_sym_GT_EQ] = ACTIONS(1402), + [anon_sym_LT_EQ] = ACTIONS(1402), + [anon_sym__] = ACTIONS(1404), + [anon_sym_DOT] = ACTIONS(1404), + [anon_sym_DOT_DOT] = ACTIONS(1404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1402), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1402), + [anon_sym_COMMA] = ACTIONS(1402), + [anon_sym_COLON_COLON] = ACTIONS(1402), + [anon_sym_POUND] = ACTIONS(1402), + [anon_sym_as] = ACTIONS(1404), + [anon_sym_const] = ACTIONS(1404), + [anon_sym_default] = ACTIONS(1404), + [anon_sym_gen] = ACTIONS(1404), + [anon_sym_union] = ACTIONS(1404), + [anon_sym_ref] = ACTIONS(1404), + [anon_sym_else] = ACTIONS(1720), + [sym_mutable_specifier] = ACTIONS(1404), + [anon_sym_raw] = ACTIONS(1404), + [sym_integer_literal] = ACTIONS(1402), + [aux_sym_string_literal_token1] = ACTIONS(1402), + [sym_char_literal] = ACTIONS(1402), + [anon_sym_true] = ACTIONS(1404), + [anon_sym_false] = ACTIONS(1404), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1404), + [sym_super] = ACTIONS(1404), + [sym_crate] = ACTIONS(1404), + [sym_metavariable] = ACTIONS(1402), + [sym__raw_string_literal_start] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1402), + }, + [458] = { + [sym_attribute_item] = STATE(1361), + [sym_inner_attribute_item] = STATE(1361), + [sym_bracketed_type] = STATE(3688), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3407), + [sym_macro_invocation] = STATE(3125), + [sym_scoped_identifier] = STATE(2279), + [sym_scoped_type_identifier] = STATE(3095), + [sym_match_arm] = STATE(1362), + [sym_last_match_arm] = STATE(3732), + [sym_match_pattern] = STATE(3800), + [sym_const_block] = STATE(3125), + [sym__pattern] = STATE(3046), + [sym_generic_pattern] = STATE(3125), + [sym_tuple_pattern] = STATE(3125), + [sym_slice_pattern] = STATE(3125), + [sym_tuple_struct_pattern] = STATE(3125), + [sym_struct_pattern] = STATE(3125), + [sym_remaining_field_pattern] = STATE(3125), + [sym_mut_pattern] = STATE(3125), + [sym_range_pattern] = STATE(3125), + [sym_ref_pattern] = STATE(3125), + [sym_captured_pattern] = STATE(3125), + [sym_reference_pattern] = STATE(3125), + [sym_or_pattern] = STATE(3125), + [sym__literal_pattern] = STATE(2478), + [sym_negative_literal] = STATE(2502), + [sym_string_literal] = STATE(2502), + [sym_raw_string_literal] = STATE(2502), + [sym_boolean_literal] = STATE(2502), [sym_line_comment] = STATE(458), [sym_block_comment] = STATE(458), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1616), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [sym_integer_literal] = ACTIONS(1648), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1648), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1648), - }, - [STATE(459)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2442), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(2442), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_type_binding] = STATE(2580), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), - [sym_label] = STATE(3774), - [sym_block] = STATE(2580), - [sym__literal] = STATE(2580), - [sym_string_literal] = STATE(2884), - [sym_raw_string_literal] = STATE(2884), - [sym_boolean_literal] = STATE(2884), + [aux_sym_match_block_repeat1] = STATE(473), + [aux_sym_match_arm_repeat1] = STATE(615), + [sym_identifier] = ACTIONS(1668), + [anon_sym_LPAREN] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_u8] = ACTIONS(1676), + [anon_sym_i8] = ACTIONS(1676), + [anon_sym_u16] = ACTIONS(1676), + [anon_sym_i16] = ACTIONS(1676), + [anon_sym_u32] = ACTIONS(1676), + [anon_sym_i32] = ACTIONS(1676), + [anon_sym_u64] = ACTIONS(1676), + [anon_sym_i64] = ACTIONS(1676), + [anon_sym_u128] = ACTIONS(1676), + [anon_sym_i128] = ACTIONS(1676), + [anon_sym_isize] = ACTIONS(1676), + [anon_sym_usize] = ACTIONS(1676), + [anon_sym_f32] = ACTIONS(1676), + [anon_sym_f64] = ACTIONS(1676), + [anon_sym_bool] = ACTIONS(1676), + [anon_sym_str] = ACTIONS(1676), + [anon_sym_char] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1680), + [anon_sym_PIPE] = ACTIONS(1682), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1684), + [anon_sym_DOT_DOT] = ACTIONS(1686), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1688), + [anon_sym_COLON_COLON] = ACTIONS(1690), + [anon_sym_POUND] = ACTIONS(1692), + [anon_sym_const] = ACTIONS(1694), + [anon_sym_default] = ACTIONS(1696), + [anon_sym_gen] = ACTIONS(1696), + [anon_sym_union] = ACTIONS(1696), + [anon_sym_ref] = ACTIONS(1698), + [sym_mutable_specifier] = ACTIONS(1700), + [anon_sym_raw] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1702), + [aux_sym_string_literal_token1] = ACTIONS(1704), + [sym_char_literal] = ACTIONS(1702), + [anon_sym_true] = ACTIONS(1706), + [anon_sym_false] = ACTIONS(1706), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1708), + [sym_super] = ACTIONS(1708), + [sym_crate] = ACTIONS(1708), + [sym_metavariable] = ACTIONS(1710), + [sym__raw_string_literal_start] = ACTIONS(1712), + [sym_float_literal] = ACTIONS(1702), + }, + [459] = { [sym_line_comment] = STATE(459), [sym_block_comment] = STATE(459), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1616), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [sym_integer_literal] = ACTIONS(1648), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1648), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1648), + [sym_identifier] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_LBRACK] = ACTIONS(1438), + [anon_sym_RBRACE] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_QMARK] = ACTIONS(1438), + [anon_sym_u8] = ACTIONS(1440), + [anon_sym_i8] = ACTIONS(1440), + [anon_sym_u16] = ACTIONS(1440), + [anon_sym_i16] = ACTIONS(1440), + [anon_sym_u32] = ACTIONS(1440), + [anon_sym_i32] = ACTIONS(1440), + [anon_sym_u64] = ACTIONS(1440), + [anon_sym_i64] = ACTIONS(1440), + [anon_sym_u128] = ACTIONS(1440), + [anon_sym_i128] = ACTIONS(1440), + [anon_sym_isize] = ACTIONS(1440), + [anon_sym_usize] = ACTIONS(1440), + [anon_sym_f32] = ACTIONS(1440), + [anon_sym_f64] = ACTIONS(1440), + [anon_sym_bool] = ACTIONS(1440), + [anon_sym_str] = ACTIONS(1440), + [anon_sym_char] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1440), + [anon_sym_SLASH] = ACTIONS(1440), + [anon_sym_PERCENT] = ACTIONS(1440), + [anon_sym_CARET] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_PIPE] = ACTIONS(1440), + [anon_sym_AMP_AMP] = ACTIONS(1438), + [anon_sym_PIPE_PIPE] = ACTIONS(1438), + [anon_sym_LT_LT] = ACTIONS(1440), + [anon_sym_GT_GT] = ACTIONS(1440), + [anon_sym_PLUS_EQ] = ACTIONS(1438), + [anon_sym_DASH_EQ] = ACTIONS(1438), + [anon_sym_STAR_EQ] = ACTIONS(1438), + [anon_sym_SLASH_EQ] = ACTIONS(1438), + [anon_sym_PERCENT_EQ] = ACTIONS(1438), + [anon_sym_CARET_EQ] = ACTIONS(1438), + [anon_sym_AMP_EQ] = ACTIONS(1438), + [anon_sym_PIPE_EQ] = ACTIONS(1438), + [anon_sym_LT_LT_EQ] = ACTIONS(1438), + [anon_sym_GT_GT_EQ] = ACTIONS(1438), + [anon_sym_EQ] = ACTIONS(1440), + [anon_sym_EQ_EQ] = ACTIONS(1438), + [anon_sym_BANG_EQ] = ACTIONS(1438), + [anon_sym_GT] = ACTIONS(1440), + [anon_sym_LT] = ACTIONS(1440), + [anon_sym_GT_EQ] = ACTIONS(1438), + [anon_sym_LT_EQ] = ACTIONS(1438), + [anon_sym__] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1440), + [anon_sym_DOT_DOT] = ACTIONS(1440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1438), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1438), + [anon_sym_COMMA] = ACTIONS(1438), + [anon_sym_COLON_COLON] = ACTIONS(1438), + [anon_sym_POUND] = ACTIONS(1438), + [anon_sym_as] = ACTIONS(1440), + [anon_sym_const] = ACTIONS(1440), + [anon_sym_default] = ACTIONS(1440), + [anon_sym_gen] = ACTIONS(1440), + [anon_sym_union] = ACTIONS(1440), + [anon_sym_ref] = ACTIONS(1440), + [anon_sym_else] = ACTIONS(1440), + [sym_mutable_specifier] = ACTIONS(1440), + [anon_sym_raw] = ACTIONS(1440), + [sym_integer_literal] = ACTIONS(1438), + [aux_sym_string_literal_token1] = ACTIONS(1438), + [sym_char_literal] = ACTIONS(1438), + [anon_sym_true] = ACTIONS(1440), + [anon_sym_false] = ACTIONS(1440), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1440), + [sym_super] = ACTIONS(1440), + [sym_crate] = ACTIONS(1440), + [sym_metavariable] = ACTIONS(1438), + [sym__raw_string_literal_start] = ACTIONS(1438), + [sym_float_literal] = ACTIONS(1438), }, - [STATE(460)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2433), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(2433), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_type_binding] = STATE(2569), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), - [sym_label] = STATE(3774), - [sym_block] = STATE(2569), - [sym__literal] = STATE(2569), - [sym_string_literal] = STATE(2884), - [sym_raw_string_literal] = STATE(2884), - [sym_boolean_literal] = STATE(2884), + [460] = { + [sym_attribute_item] = STATE(1361), + [sym_inner_attribute_item] = STATE(1361), + [sym_bracketed_type] = STATE(3688), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3407), + [sym_macro_invocation] = STATE(3125), + [sym_scoped_identifier] = STATE(2279), + [sym_scoped_type_identifier] = STATE(3095), + [sym_match_arm] = STATE(1362), + [sym_last_match_arm] = STATE(3556), + [sym_match_pattern] = STATE(3800), + [sym_const_block] = STATE(3125), + [sym__pattern] = STATE(3046), + [sym_generic_pattern] = STATE(3125), + [sym_tuple_pattern] = STATE(3125), + [sym_slice_pattern] = STATE(3125), + [sym_tuple_struct_pattern] = STATE(3125), + [sym_struct_pattern] = STATE(3125), + [sym_remaining_field_pattern] = STATE(3125), + [sym_mut_pattern] = STATE(3125), + [sym_range_pattern] = STATE(3125), + [sym_ref_pattern] = STATE(3125), + [sym_captured_pattern] = STATE(3125), + [sym_reference_pattern] = STATE(3125), + [sym_or_pattern] = STATE(3125), + [sym__literal_pattern] = STATE(2478), + [sym_negative_literal] = STATE(2502), + [sym_string_literal] = STATE(2502), + [sym_raw_string_literal] = STATE(2502), + [sym_boolean_literal] = STATE(2502), [sym_line_comment] = STATE(460), [sym_block_comment] = STATE(460), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(1616), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [sym_integer_literal] = ACTIONS(1648), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1648), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1648), - }, - [STATE(461)] = { - [sym_attribute_item] = STATE(1369), - [sym_inner_attribute_item] = STATE(1369), - [sym_bracketed_type] = STATE(3698), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3419), - [sym_macro_invocation] = STATE(2942), - [sym_scoped_identifier] = STATE(2248), - [sym_scoped_type_identifier] = STATE(3103), - [sym_match_arm] = STATE(1370), - [sym_last_match_arm] = STATE(3746), - [sym_match_pattern] = STATE(3790), - [sym_const_block] = STATE(2942), - [sym__pattern] = STATE(3188), - [sym_generic_pattern] = STATE(2942), - [sym_tuple_pattern] = STATE(2942), - [sym_slice_pattern] = STATE(2942), - [sym_tuple_struct_pattern] = STATE(2942), - [sym_struct_pattern] = STATE(2942), - [sym_remaining_field_pattern] = STATE(2942), - [sym_mut_pattern] = STATE(2942), - [sym_range_pattern] = STATE(2942), - [sym_ref_pattern] = STATE(2942), - [sym_captured_pattern] = STATE(2942), - [sym_reference_pattern] = STATE(2942), - [sym_or_pattern] = STATE(2942), - [sym__literal_pattern] = STATE(2447), - [sym_negative_literal] = STATE(2441), - [sym_string_literal] = STATE(2441), - [sym_raw_string_literal] = STATE(2441), - [sym_boolean_literal] = STATE(2441), + [aux_sym_match_block_repeat1] = STATE(473), + [aux_sym_match_arm_repeat1] = STATE(615), + [sym_identifier] = ACTIONS(1668), + [anon_sym_LPAREN] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_u8] = ACTIONS(1676), + [anon_sym_i8] = ACTIONS(1676), + [anon_sym_u16] = ACTIONS(1676), + [anon_sym_i16] = ACTIONS(1676), + [anon_sym_u32] = ACTIONS(1676), + [anon_sym_i32] = ACTIONS(1676), + [anon_sym_u64] = ACTIONS(1676), + [anon_sym_i64] = ACTIONS(1676), + [anon_sym_u128] = ACTIONS(1676), + [anon_sym_i128] = ACTIONS(1676), + [anon_sym_isize] = ACTIONS(1676), + [anon_sym_usize] = ACTIONS(1676), + [anon_sym_f32] = ACTIONS(1676), + [anon_sym_f64] = ACTIONS(1676), + [anon_sym_bool] = ACTIONS(1676), + [anon_sym_str] = ACTIONS(1676), + [anon_sym_char] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1680), + [anon_sym_PIPE] = ACTIONS(1682), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1684), + [anon_sym_DOT_DOT] = ACTIONS(1686), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1688), + [anon_sym_COLON_COLON] = ACTIONS(1690), + [anon_sym_POUND] = ACTIONS(1692), + [anon_sym_const] = ACTIONS(1694), + [anon_sym_default] = ACTIONS(1696), + [anon_sym_gen] = ACTIONS(1696), + [anon_sym_union] = ACTIONS(1696), + [anon_sym_ref] = ACTIONS(1698), + [sym_mutable_specifier] = ACTIONS(1700), + [anon_sym_raw] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1702), + [aux_sym_string_literal_token1] = ACTIONS(1704), + [sym_char_literal] = ACTIONS(1702), + [anon_sym_true] = ACTIONS(1706), + [anon_sym_false] = ACTIONS(1706), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1708), + [sym_super] = ACTIONS(1708), + [sym_crate] = ACTIONS(1708), + [sym_metavariable] = ACTIONS(1710), + [sym__raw_string_literal_start] = ACTIONS(1712), + [sym_float_literal] = ACTIONS(1702), + }, + [461] = { [sym_line_comment] = STATE(461), [sym_block_comment] = STATE(461), - [aux_sym_match_block_repeat1] = STATE(466), - [aux_sym_match_arm_repeat1] = STATE(616), - [sym_identifier] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_LBRACK] = ACTIONS(1680), - [anon_sym_RBRACE] = ACTIONS(1682), - [anon_sym_u8] = ACTIONS(1684), - [anon_sym_i8] = ACTIONS(1684), - [anon_sym_u16] = ACTIONS(1684), - [anon_sym_i16] = ACTIONS(1684), - [anon_sym_u32] = ACTIONS(1684), - [anon_sym_i32] = ACTIONS(1684), - [anon_sym_u64] = ACTIONS(1684), - [anon_sym_i64] = ACTIONS(1684), - [anon_sym_u128] = ACTIONS(1684), - [anon_sym_i128] = ACTIONS(1684), - [anon_sym_isize] = ACTIONS(1684), - [anon_sym_usize] = ACTIONS(1684), - [anon_sym_f32] = ACTIONS(1684), - [anon_sym_f64] = ACTIONS(1684), - [anon_sym_bool] = ACTIONS(1684), - [anon_sym_str] = ACTIONS(1684), - [anon_sym_char] = ACTIONS(1684), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_AMP] = ACTIONS(1688), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1692), - [anon_sym_DOT_DOT] = ACTIONS(1694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_POUND] = ACTIONS(1700), - [anon_sym_const] = ACTIONS(1702), - [anon_sym_default] = ACTIONS(1704), - [anon_sym_gen] = ACTIONS(1704), - [anon_sym_union] = ACTIONS(1704), - [anon_sym_ref] = ACTIONS(1706), - [sym_mutable_specifier] = ACTIONS(1708), - [anon_sym_raw] = ACTIONS(1704), - [sym_integer_literal] = ACTIONS(1710), - [aux_sym_string_literal_token1] = ACTIONS(1712), - [sym_char_literal] = ACTIONS(1710), - [anon_sym_true] = ACTIONS(1714), - [anon_sym_false] = ACTIONS(1714), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1716), - [sym_super] = ACTIONS(1716), - [sym_crate] = ACTIONS(1716), - [sym_metavariable] = ACTIONS(1718), - [sym__raw_string_literal_start] = ACTIONS(1720), - [sym_float_literal] = ACTIONS(1710), - }, - [STATE(462)] = { - [sym_attribute_item] = STATE(1369), - [sym_inner_attribute_item] = STATE(1369), - [sym_bracketed_type] = STATE(3698), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3419), - [sym_macro_invocation] = STATE(2942), - [sym_scoped_identifier] = STATE(2248), - [sym_scoped_type_identifier] = STATE(3103), - [sym_match_arm] = STATE(1370), - [sym_last_match_arm] = STATE(3604), - [sym_match_pattern] = STATE(3790), - [sym_const_block] = STATE(2942), - [sym__pattern] = STATE(3188), - [sym_generic_pattern] = STATE(2942), - [sym_tuple_pattern] = STATE(2942), - [sym_slice_pattern] = STATE(2942), - [sym_tuple_struct_pattern] = STATE(2942), - [sym_struct_pattern] = STATE(2942), - [sym_remaining_field_pattern] = STATE(2942), - [sym_mut_pattern] = STATE(2942), - [sym_range_pattern] = STATE(2942), - [sym_ref_pattern] = STATE(2942), - [sym_captured_pattern] = STATE(2942), - [sym_reference_pattern] = STATE(2942), - [sym_or_pattern] = STATE(2942), - [sym__literal_pattern] = STATE(2447), - [sym_negative_literal] = STATE(2441), - [sym_string_literal] = STATE(2441), - [sym_raw_string_literal] = STATE(2441), - [sym_boolean_literal] = STATE(2441), + [sym_identifier] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_LBRACK] = ACTIONS(1434), + [anon_sym_RBRACE] = ACTIONS(1434), + [anon_sym_PLUS] = ACTIONS(1436), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_QMARK] = ACTIONS(1434), + [anon_sym_u8] = ACTIONS(1436), + [anon_sym_i8] = ACTIONS(1436), + [anon_sym_u16] = ACTIONS(1436), + [anon_sym_i16] = ACTIONS(1436), + [anon_sym_u32] = ACTIONS(1436), + [anon_sym_i32] = ACTIONS(1436), + [anon_sym_u64] = ACTIONS(1436), + [anon_sym_i64] = ACTIONS(1436), + [anon_sym_u128] = ACTIONS(1436), + [anon_sym_i128] = ACTIONS(1436), + [anon_sym_isize] = ACTIONS(1436), + [anon_sym_usize] = ACTIONS(1436), + [anon_sym_f32] = ACTIONS(1436), + [anon_sym_f64] = ACTIONS(1436), + [anon_sym_bool] = ACTIONS(1436), + [anon_sym_str] = ACTIONS(1436), + [anon_sym_char] = ACTIONS(1436), + [anon_sym_DASH] = ACTIONS(1436), + [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_CARET] = ACTIONS(1436), + [anon_sym_AMP] = ACTIONS(1436), + [anon_sym_PIPE] = ACTIONS(1436), + [anon_sym_AMP_AMP] = ACTIONS(1434), + [anon_sym_PIPE_PIPE] = ACTIONS(1434), + [anon_sym_LT_LT] = ACTIONS(1436), + [anon_sym_GT_GT] = ACTIONS(1436), + [anon_sym_PLUS_EQ] = ACTIONS(1434), + [anon_sym_DASH_EQ] = ACTIONS(1434), + [anon_sym_STAR_EQ] = ACTIONS(1434), + [anon_sym_SLASH_EQ] = ACTIONS(1434), + [anon_sym_PERCENT_EQ] = ACTIONS(1434), + [anon_sym_CARET_EQ] = ACTIONS(1434), + [anon_sym_AMP_EQ] = ACTIONS(1434), + [anon_sym_PIPE_EQ] = ACTIONS(1434), + [anon_sym_LT_LT_EQ] = ACTIONS(1434), + [anon_sym_GT_GT_EQ] = ACTIONS(1434), + [anon_sym_EQ] = ACTIONS(1436), + [anon_sym_EQ_EQ] = ACTIONS(1434), + [anon_sym_BANG_EQ] = ACTIONS(1434), + [anon_sym_GT] = ACTIONS(1436), + [anon_sym_LT] = ACTIONS(1436), + [anon_sym_GT_EQ] = ACTIONS(1434), + [anon_sym_LT_EQ] = ACTIONS(1434), + [anon_sym__] = ACTIONS(1436), + [anon_sym_DOT] = ACTIONS(1436), + [anon_sym_DOT_DOT] = ACTIONS(1436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1434), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1434), + [anon_sym_COMMA] = ACTIONS(1434), + [anon_sym_COLON_COLON] = ACTIONS(1434), + [anon_sym_POUND] = ACTIONS(1434), + [anon_sym_as] = ACTIONS(1436), + [anon_sym_const] = ACTIONS(1436), + [anon_sym_default] = ACTIONS(1436), + [anon_sym_gen] = ACTIONS(1436), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_ref] = ACTIONS(1436), + [anon_sym_else] = ACTIONS(1436), + [sym_mutable_specifier] = ACTIONS(1436), + [anon_sym_raw] = ACTIONS(1436), + [sym_integer_literal] = ACTIONS(1434), + [aux_sym_string_literal_token1] = ACTIONS(1434), + [sym_char_literal] = ACTIONS(1434), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1436), + [sym_super] = ACTIONS(1436), + [sym_crate] = ACTIONS(1436), + [sym_metavariable] = ACTIONS(1434), + [sym__raw_string_literal_start] = ACTIONS(1434), + [sym_float_literal] = ACTIONS(1434), + }, + [462] = { [sym_line_comment] = STATE(462), [sym_block_comment] = STATE(462), - [aux_sym_match_block_repeat1] = STATE(467), - [aux_sym_match_arm_repeat1] = STATE(616), - [sym_identifier] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_LBRACK] = ACTIONS(1680), - [anon_sym_RBRACE] = ACTIONS(1722), - [anon_sym_u8] = ACTIONS(1684), - [anon_sym_i8] = ACTIONS(1684), - [anon_sym_u16] = ACTIONS(1684), - [anon_sym_i16] = ACTIONS(1684), - [anon_sym_u32] = ACTIONS(1684), - [anon_sym_i32] = ACTIONS(1684), - [anon_sym_u64] = ACTIONS(1684), - [anon_sym_i64] = ACTIONS(1684), - [anon_sym_u128] = ACTIONS(1684), - [anon_sym_i128] = ACTIONS(1684), - [anon_sym_isize] = ACTIONS(1684), - [anon_sym_usize] = ACTIONS(1684), - [anon_sym_f32] = ACTIONS(1684), - [anon_sym_f64] = ACTIONS(1684), - [anon_sym_bool] = ACTIONS(1684), - [anon_sym_str] = ACTIONS(1684), - [anon_sym_char] = ACTIONS(1684), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_AMP] = ACTIONS(1688), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1692), - [anon_sym_DOT_DOT] = ACTIONS(1694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_POUND] = ACTIONS(1700), - [anon_sym_const] = ACTIONS(1702), - [anon_sym_default] = ACTIONS(1704), - [anon_sym_gen] = ACTIONS(1704), - [anon_sym_union] = ACTIONS(1704), - [anon_sym_ref] = ACTIONS(1706), - [sym_mutable_specifier] = ACTIONS(1708), - [anon_sym_raw] = ACTIONS(1704), - [sym_integer_literal] = ACTIONS(1710), - [aux_sym_string_literal_token1] = ACTIONS(1712), - [sym_char_literal] = ACTIONS(1710), - [anon_sym_true] = ACTIONS(1714), - [anon_sym_false] = ACTIONS(1714), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1716), - [sym_super] = ACTIONS(1716), - [sym_crate] = ACTIONS(1716), - [sym_metavariable] = ACTIONS(1718), - [sym__raw_string_literal_start] = ACTIONS(1720), - [sym_float_literal] = ACTIONS(1710), - }, - [STATE(463)] = { - [sym_else_clause] = STATE(483), + [sym_identifier] = ACTIONS(1448), + [anon_sym_LPAREN] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(1446), + [anon_sym_RBRACE] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_STAR] = ACTIONS(1448), + [anon_sym_QMARK] = ACTIONS(1446), + [anon_sym_u8] = ACTIONS(1448), + [anon_sym_i8] = ACTIONS(1448), + [anon_sym_u16] = ACTIONS(1448), + [anon_sym_i16] = ACTIONS(1448), + [anon_sym_u32] = ACTIONS(1448), + [anon_sym_i32] = ACTIONS(1448), + [anon_sym_u64] = ACTIONS(1448), + [anon_sym_i64] = ACTIONS(1448), + [anon_sym_u128] = ACTIONS(1448), + [anon_sym_i128] = ACTIONS(1448), + [anon_sym_isize] = ACTIONS(1448), + [anon_sym_usize] = ACTIONS(1448), + [anon_sym_f32] = ACTIONS(1448), + [anon_sym_f64] = ACTIONS(1448), + [anon_sym_bool] = ACTIONS(1448), + [anon_sym_str] = ACTIONS(1448), + [anon_sym_char] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_SLASH] = ACTIONS(1448), + [anon_sym_PERCENT] = ACTIONS(1448), + [anon_sym_CARET] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1448), + [anon_sym_PIPE] = ACTIONS(1448), + [anon_sym_AMP_AMP] = ACTIONS(1446), + [anon_sym_PIPE_PIPE] = ACTIONS(1446), + [anon_sym_LT_LT] = ACTIONS(1448), + [anon_sym_GT_GT] = ACTIONS(1448), + [anon_sym_PLUS_EQ] = ACTIONS(1446), + [anon_sym_DASH_EQ] = ACTIONS(1446), + [anon_sym_STAR_EQ] = ACTIONS(1446), + [anon_sym_SLASH_EQ] = ACTIONS(1446), + [anon_sym_PERCENT_EQ] = ACTIONS(1446), + [anon_sym_CARET_EQ] = ACTIONS(1446), + [anon_sym_AMP_EQ] = ACTIONS(1446), + [anon_sym_PIPE_EQ] = ACTIONS(1446), + [anon_sym_LT_LT_EQ] = ACTIONS(1446), + [anon_sym_GT_GT_EQ] = ACTIONS(1446), + [anon_sym_EQ] = ACTIONS(1448), + [anon_sym_EQ_EQ] = ACTIONS(1446), + [anon_sym_BANG_EQ] = ACTIONS(1446), + [anon_sym_GT] = ACTIONS(1448), + [anon_sym_LT] = ACTIONS(1448), + [anon_sym_GT_EQ] = ACTIONS(1446), + [anon_sym_LT_EQ] = ACTIONS(1446), + [anon_sym__] = ACTIONS(1448), + [anon_sym_DOT] = ACTIONS(1448), + [anon_sym_DOT_DOT] = ACTIONS(1448), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1446), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1446), + [anon_sym_COMMA] = ACTIONS(1446), + [anon_sym_COLON_COLON] = ACTIONS(1446), + [anon_sym_POUND] = ACTIONS(1446), + [anon_sym_as] = ACTIONS(1448), + [anon_sym_const] = ACTIONS(1448), + [anon_sym_default] = ACTIONS(1448), + [anon_sym_gen] = ACTIONS(1448), + [anon_sym_union] = ACTIONS(1448), + [anon_sym_ref] = ACTIONS(1448), + [anon_sym_else] = ACTIONS(1448), + [sym_mutable_specifier] = ACTIONS(1448), + [anon_sym_raw] = ACTIONS(1448), + [sym_integer_literal] = ACTIONS(1446), + [aux_sym_string_literal_token1] = ACTIONS(1446), + [sym_char_literal] = ACTIONS(1446), + [anon_sym_true] = ACTIONS(1448), + [anon_sym_false] = ACTIONS(1448), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1448), + [sym_super] = ACTIONS(1448), + [sym_crate] = ACTIONS(1448), + [sym_metavariable] = ACTIONS(1446), + [sym__raw_string_literal_start] = ACTIONS(1446), + [sym_float_literal] = ACTIONS(1446), + }, + [463] = { + [sym_attribute_item] = STATE(1361), + [sym_inner_attribute_item] = STATE(1361), + [sym_bracketed_type] = STATE(3688), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3407), + [sym_macro_invocation] = STATE(3125), + [sym_scoped_identifier] = STATE(2279), + [sym_scoped_type_identifier] = STATE(3095), + [sym_match_arm] = STATE(1362), + [sym_last_match_arm] = STATE(3611), + [sym_match_pattern] = STATE(3800), + [sym_const_block] = STATE(3125), + [sym__pattern] = STATE(3046), + [sym_generic_pattern] = STATE(3125), + [sym_tuple_pattern] = STATE(3125), + [sym_slice_pattern] = STATE(3125), + [sym_tuple_struct_pattern] = STATE(3125), + [sym_struct_pattern] = STATE(3125), + [sym_remaining_field_pattern] = STATE(3125), + [sym_mut_pattern] = STATE(3125), + [sym_range_pattern] = STATE(3125), + [sym_ref_pattern] = STATE(3125), + [sym_captured_pattern] = STATE(3125), + [sym_reference_pattern] = STATE(3125), + [sym_or_pattern] = STATE(3125), + [sym__literal_pattern] = STATE(2478), + [sym_negative_literal] = STATE(2502), + [sym_string_literal] = STATE(2502), + [sym_raw_string_literal] = STATE(2502), + [sym_boolean_literal] = STATE(2502), [sym_line_comment] = STATE(463), [sym_block_comment] = STATE(463), - [sym_identifier] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1410), - [anon_sym_RBRACE] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1412), - [anon_sym_STAR] = ACTIONS(1412), - [anon_sym_QMARK] = ACTIONS(1410), - [anon_sym_u8] = ACTIONS(1412), - [anon_sym_i8] = ACTIONS(1412), - [anon_sym_u16] = ACTIONS(1412), - [anon_sym_i16] = ACTIONS(1412), - [anon_sym_u32] = ACTIONS(1412), - [anon_sym_i32] = ACTIONS(1412), - [anon_sym_u64] = ACTIONS(1412), - [anon_sym_i64] = ACTIONS(1412), - [anon_sym_u128] = ACTIONS(1412), - [anon_sym_i128] = ACTIONS(1412), - [anon_sym_isize] = ACTIONS(1412), - [anon_sym_usize] = ACTIONS(1412), - [anon_sym_f32] = ACTIONS(1412), - [anon_sym_f64] = ACTIONS(1412), - [anon_sym_bool] = ACTIONS(1412), - [anon_sym_str] = ACTIONS(1412), - [anon_sym_char] = ACTIONS(1412), - [anon_sym_DASH] = ACTIONS(1412), - [anon_sym_SLASH] = ACTIONS(1412), - [anon_sym_PERCENT] = ACTIONS(1412), - [anon_sym_CARET] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1412), - [anon_sym_PIPE] = ACTIONS(1412), - [anon_sym_AMP_AMP] = ACTIONS(1410), - [anon_sym_PIPE_PIPE] = ACTIONS(1410), - [anon_sym_LT_LT] = ACTIONS(1412), - [anon_sym_GT_GT] = ACTIONS(1412), - [anon_sym_PLUS_EQ] = ACTIONS(1410), - [anon_sym_DASH_EQ] = ACTIONS(1410), - [anon_sym_STAR_EQ] = ACTIONS(1410), - [anon_sym_SLASH_EQ] = ACTIONS(1410), - [anon_sym_PERCENT_EQ] = ACTIONS(1410), - [anon_sym_CARET_EQ] = ACTIONS(1410), - [anon_sym_AMP_EQ] = ACTIONS(1410), - [anon_sym_PIPE_EQ] = ACTIONS(1410), - [anon_sym_LT_LT_EQ] = ACTIONS(1410), - [anon_sym_GT_GT_EQ] = ACTIONS(1410), - [anon_sym_EQ] = ACTIONS(1412), - [anon_sym_EQ_EQ] = ACTIONS(1410), - [anon_sym_BANG_EQ] = ACTIONS(1410), - [anon_sym_GT] = ACTIONS(1412), - [anon_sym_LT] = ACTIONS(1412), - [anon_sym_GT_EQ] = ACTIONS(1410), - [anon_sym_LT_EQ] = ACTIONS(1410), - [anon_sym__] = ACTIONS(1412), - [anon_sym_DOT] = ACTIONS(1412), - [anon_sym_DOT_DOT] = ACTIONS(1412), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1410), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1410), - [anon_sym_COMMA] = ACTIONS(1410), - [anon_sym_COLON_COLON] = ACTIONS(1410), - [anon_sym_POUND] = ACTIONS(1410), - [anon_sym_as] = ACTIONS(1412), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(1412), - [anon_sym_gen] = ACTIONS(1412), - [anon_sym_union] = ACTIONS(1412), - [anon_sym_ref] = ACTIONS(1412), - [anon_sym_else] = ACTIONS(1724), - [sym_mutable_specifier] = ACTIONS(1412), - [anon_sym_raw] = ACTIONS(1412), - [sym_integer_literal] = ACTIONS(1410), - [aux_sym_string_literal_token1] = ACTIONS(1410), - [sym_char_literal] = ACTIONS(1410), - [anon_sym_true] = ACTIONS(1412), - [anon_sym_false] = ACTIONS(1412), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1412), - [sym_super] = ACTIONS(1412), - [sym_crate] = ACTIONS(1412), - [sym_metavariable] = ACTIONS(1410), - [sym__raw_string_literal_start] = ACTIONS(1410), - [sym_float_literal] = ACTIONS(1410), - }, - [STATE(464)] = { - [sym_attribute_item] = STATE(1369), - [sym_inner_attribute_item] = STATE(1369), - [sym_bracketed_type] = STATE(3698), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3419), - [sym_macro_invocation] = STATE(2942), - [sym_scoped_identifier] = STATE(2248), - [sym_scoped_type_identifier] = STATE(3103), - [sym_match_arm] = STATE(1370), - [sym_last_match_arm] = STATE(3643), - [sym_match_pattern] = STATE(3790), - [sym_const_block] = STATE(2942), - [sym__pattern] = STATE(3188), - [sym_generic_pattern] = STATE(2942), - [sym_tuple_pattern] = STATE(2942), - [sym_slice_pattern] = STATE(2942), - [sym_tuple_struct_pattern] = STATE(2942), - [sym_struct_pattern] = STATE(2942), - [sym_remaining_field_pattern] = STATE(2942), - [sym_mut_pattern] = STATE(2942), - [sym_range_pattern] = STATE(2942), - [sym_ref_pattern] = STATE(2942), - [sym_captured_pattern] = STATE(2942), - [sym_reference_pattern] = STATE(2942), - [sym_or_pattern] = STATE(2942), - [sym__literal_pattern] = STATE(2447), - [sym_negative_literal] = STATE(2441), - [sym_string_literal] = STATE(2441), - [sym_raw_string_literal] = STATE(2441), - [sym_boolean_literal] = STATE(2441), + [aux_sym_match_block_repeat1] = STATE(473), + [aux_sym_match_arm_repeat1] = STATE(615), + [sym_identifier] = ACTIONS(1668), + [anon_sym_LPAREN] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_u8] = ACTIONS(1676), + [anon_sym_i8] = ACTIONS(1676), + [anon_sym_u16] = ACTIONS(1676), + [anon_sym_i16] = ACTIONS(1676), + [anon_sym_u32] = ACTIONS(1676), + [anon_sym_i32] = ACTIONS(1676), + [anon_sym_u64] = ACTIONS(1676), + [anon_sym_i64] = ACTIONS(1676), + [anon_sym_u128] = ACTIONS(1676), + [anon_sym_i128] = ACTIONS(1676), + [anon_sym_isize] = ACTIONS(1676), + [anon_sym_usize] = ACTIONS(1676), + [anon_sym_f32] = ACTIONS(1676), + [anon_sym_f64] = ACTIONS(1676), + [anon_sym_bool] = ACTIONS(1676), + [anon_sym_str] = ACTIONS(1676), + [anon_sym_char] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1680), + [anon_sym_PIPE] = ACTIONS(1682), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1684), + [anon_sym_DOT_DOT] = ACTIONS(1686), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1688), + [anon_sym_COLON_COLON] = ACTIONS(1690), + [anon_sym_POUND] = ACTIONS(1692), + [anon_sym_const] = ACTIONS(1694), + [anon_sym_default] = ACTIONS(1696), + [anon_sym_gen] = ACTIONS(1696), + [anon_sym_union] = ACTIONS(1696), + [anon_sym_ref] = ACTIONS(1698), + [sym_mutable_specifier] = ACTIONS(1700), + [anon_sym_raw] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1702), + [aux_sym_string_literal_token1] = ACTIONS(1704), + [sym_char_literal] = ACTIONS(1702), + [anon_sym_true] = ACTIONS(1706), + [anon_sym_false] = ACTIONS(1706), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1708), + [sym_super] = ACTIONS(1708), + [sym_crate] = ACTIONS(1708), + [sym_metavariable] = ACTIONS(1710), + [sym__raw_string_literal_start] = ACTIONS(1712), + [sym_float_literal] = ACTIONS(1702), + }, + [464] = { [sym_line_comment] = STATE(464), [sym_block_comment] = STATE(464), - [aux_sym_match_block_repeat1] = STATE(474), - [aux_sym_match_arm_repeat1] = STATE(616), - [sym_identifier] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_LBRACK] = ACTIONS(1680), - [anon_sym_RBRACE] = ACTIONS(1726), - [anon_sym_u8] = ACTIONS(1684), - [anon_sym_i8] = ACTIONS(1684), - [anon_sym_u16] = ACTIONS(1684), - [anon_sym_i16] = ACTIONS(1684), - [anon_sym_u32] = ACTIONS(1684), - [anon_sym_i32] = ACTIONS(1684), - [anon_sym_u64] = ACTIONS(1684), - [anon_sym_i64] = ACTIONS(1684), - [anon_sym_u128] = ACTIONS(1684), - [anon_sym_i128] = ACTIONS(1684), - [anon_sym_isize] = ACTIONS(1684), - [anon_sym_usize] = ACTIONS(1684), - [anon_sym_f32] = ACTIONS(1684), - [anon_sym_f64] = ACTIONS(1684), - [anon_sym_bool] = ACTIONS(1684), - [anon_sym_str] = ACTIONS(1684), - [anon_sym_char] = ACTIONS(1684), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_AMP] = ACTIONS(1688), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1692), - [anon_sym_DOT_DOT] = ACTIONS(1694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_POUND] = ACTIONS(1700), - [anon_sym_const] = ACTIONS(1702), - [anon_sym_default] = ACTIONS(1704), - [anon_sym_gen] = ACTIONS(1704), - [anon_sym_union] = ACTIONS(1704), - [anon_sym_ref] = ACTIONS(1706), - [sym_mutable_specifier] = ACTIONS(1708), - [anon_sym_raw] = ACTIONS(1704), - [sym_integer_literal] = ACTIONS(1710), - [aux_sym_string_literal_token1] = ACTIONS(1712), - [sym_char_literal] = ACTIONS(1710), - [anon_sym_true] = ACTIONS(1714), - [anon_sym_false] = ACTIONS(1714), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1716), - [sym_super] = ACTIONS(1716), - [sym_crate] = ACTIONS(1716), - [sym_metavariable] = ACTIONS(1718), - [sym__raw_string_literal_start] = ACTIONS(1720), - [sym_float_literal] = ACTIONS(1710), - }, - [STATE(465)] = { - [sym_attribute_item] = STATE(1369), - [sym_inner_attribute_item] = STATE(1369), - [sym_bracketed_type] = STATE(3698), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3419), - [sym_macro_invocation] = STATE(2942), - [sym_scoped_identifier] = STATE(2248), - [sym_scoped_type_identifier] = STATE(3103), - [sym_match_arm] = STATE(1370), - [sym_last_match_arm] = STATE(3787), - [sym_match_pattern] = STATE(3790), - [sym_const_block] = STATE(2942), - [sym__pattern] = STATE(3188), - [sym_generic_pattern] = STATE(2942), - [sym_tuple_pattern] = STATE(2942), - [sym_slice_pattern] = STATE(2942), - [sym_tuple_struct_pattern] = STATE(2942), - [sym_struct_pattern] = STATE(2942), - [sym_remaining_field_pattern] = STATE(2942), - [sym_mut_pattern] = STATE(2942), - [sym_range_pattern] = STATE(2942), - [sym_ref_pattern] = STATE(2942), - [sym_captured_pattern] = STATE(2942), - [sym_reference_pattern] = STATE(2942), - [sym_or_pattern] = STATE(2942), - [sym__literal_pattern] = STATE(2447), - [sym_negative_literal] = STATE(2441), - [sym_string_literal] = STATE(2441), - [sym_raw_string_literal] = STATE(2441), - [sym_boolean_literal] = STATE(2441), - [sym_line_comment] = STATE(465), - [sym_block_comment] = STATE(465), - [aux_sym_match_block_repeat1] = STATE(468), - [aux_sym_match_arm_repeat1] = STATE(616), - [sym_identifier] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_LBRACK] = ACTIONS(1680), - [anon_sym_RBRACE] = ACTIONS(1728), - [anon_sym_u8] = ACTIONS(1684), - [anon_sym_i8] = ACTIONS(1684), - [anon_sym_u16] = ACTIONS(1684), - [anon_sym_i16] = ACTIONS(1684), - [anon_sym_u32] = ACTIONS(1684), - [anon_sym_i32] = ACTIONS(1684), - [anon_sym_u64] = ACTIONS(1684), - [anon_sym_i64] = ACTIONS(1684), - [anon_sym_u128] = ACTIONS(1684), - [anon_sym_i128] = ACTIONS(1684), - [anon_sym_isize] = ACTIONS(1684), - [anon_sym_usize] = ACTIONS(1684), - [anon_sym_f32] = ACTIONS(1684), - [anon_sym_f64] = ACTIONS(1684), - [anon_sym_bool] = ACTIONS(1684), - [anon_sym_str] = ACTIONS(1684), - [anon_sym_char] = ACTIONS(1684), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_AMP] = ACTIONS(1688), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1692), - [anon_sym_DOT_DOT] = ACTIONS(1694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_POUND] = ACTIONS(1700), - [anon_sym_const] = ACTIONS(1702), - [anon_sym_default] = ACTIONS(1704), - [anon_sym_gen] = ACTIONS(1704), - [anon_sym_union] = ACTIONS(1704), - [anon_sym_ref] = ACTIONS(1706), - [sym_mutable_specifier] = ACTIONS(1708), - [anon_sym_raw] = ACTIONS(1704), - [sym_integer_literal] = ACTIONS(1710), - [aux_sym_string_literal_token1] = ACTIONS(1712), - [sym_char_literal] = ACTIONS(1710), - [anon_sym_true] = ACTIONS(1714), - [anon_sym_false] = ACTIONS(1714), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1716), - [sym_super] = ACTIONS(1716), - [sym_crate] = ACTIONS(1716), - [sym_metavariable] = ACTIONS(1718), - [sym__raw_string_literal_start] = ACTIONS(1720), - [sym_float_literal] = ACTIONS(1710), - }, - [STATE(466)] = { - [sym_attribute_item] = STATE(1369), - [sym_inner_attribute_item] = STATE(1369), - [sym_bracketed_type] = STATE(3698), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3419), - [sym_macro_invocation] = STATE(2942), - [sym_scoped_identifier] = STATE(2248), - [sym_scoped_type_identifier] = STATE(3103), - [sym_match_arm] = STATE(1370), - [sym_last_match_arm] = STATE(3784), - [sym_match_pattern] = STATE(3790), - [sym_const_block] = STATE(2942), - [sym__pattern] = STATE(3188), - [sym_generic_pattern] = STATE(2942), - [sym_tuple_pattern] = STATE(2942), - [sym_slice_pattern] = STATE(2942), - [sym_tuple_struct_pattern] = STATE(2942), - [sym_struct_pattern] = STATE(2942), - [sym_remaining_field_pattern] = STATE(2942), - [sym_mut_pattern] = STATE(2942), - [sym_range_pattern] = STATE(2942), - [sym_ref_pattern] = STATE(2942), - [sym_captured_pattern] = STATE(2942), - [sym_reference_pattern] = STATE(2942), - [sym_or_pattern] = STATE(2942), - [sym__literal_pattern] = STATE(2447), - [sym_negative_literal] = STATE(2441), - [sym_string_literal] = STATE(2441), - [sym_raw_string_literal] = STATE(2441), - [sym_boolean_literal] = STATE(2441), - [sym_line_comment] = STATE(466), - [sym_block_comment] = STATE(466), - [aux_sym_match_block_repeat1] = STATE(486), - [aux_sym_match_arm_repeat1] = STATE(616), - [sym_identifier] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_LBRACK] = ACTIONS(1680), - [anon_sym_u8] = ACTIONS(1684), - [anon_sym_i8] = ACTIONS(1684), - [anon_sym_u16] = ACTIONS(1684), - [anon_sym_i16] = ACTIONS(1684), - [anon_sym_u32] = ACTIONS(1684), - [anon_sym_i32] = ACTIONS(1684), - [anon_sym_u64] = ACTIONS(1684), - [anon_sym_i64] = ACTIONS(1684), - [anon_sym_u128] = ACTIONS(1684), - [anon_sym_i128] = ACTIONS(1684), - [anon_sym_isize] = ACTIONS(1684), - [anon_sym_usize] = ACTIONS(1684), - [anon_sym_f32] = ACTIONS(1684), - [anon_sym_f64] = ACTIONS(1684), - [anon_sym_bool] = ACTIONS(1684), - [anon_sym_str] = ACTIONS(1684), - [anon_sym_char] = ACTIONS(1684), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_AMP] = ACTIONS(1688), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1692), - [anon_sym_DOT_DOT] = ACTIONS(1694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_POUND] = ACTIONS(1700), - [anon_sym_const] = ACTIONS(1702), - [anon_sym_default] = ACTIONS(1704), - [anon_sym_gen] = ACTIONS(1704), - [anon_sym_union] = ACTIONS(1704), - [anon_sym_ref] = ACTIONS(1706), - [sym_mutable_specifier] = ACTIONS(1708), - [anon_sym_raw] = ACTIONS(1704), - [sym_integer_literal] = ACTIONS(1710), - [aux_sym_string_literal_token1] = ACTIONS(1712), - [sym_char_literal] = ACTIONS(1710), - [anon_sym_true] = ACTIONS(1714), - [anon_sym_false] = ACTIONS(1714), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1716), - [sym_super] = ACTIONS(1716), - [sym_crate] = ACTIONS(1716), - [sym_metavariable] = ACTIONS(1718), - [sym__raw_string_literal_start] = ACTIONS(1720), - [sym_float_literal] = ACTIONS(1710), - }, - [STATE(467)] = { - [sym_attribute_item] = STATE(1369), - [sym_inner_attribute_item] = STATE(1369), - [sym_bracketed_type] = STATE(3698), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3419), - [sym_macro_invocation] = STATE(2942), - [sym_scoped_identifier] = STATE(2248), - [sym_scoped_type_identifier] = STATE(3103), - [sym_match_arm] = STATE(1370), - [sym_last_match_arm] = STATE(3751), - [sym_match_pattern] = STATE(3790), - [sym_const_block] = STATE(2942), - [sym__pattern] = STATE(3188), - [sym_generic_pattern] = STATE(2942), - [sym_tuple_pattern] = STATE(2942), - [sym_slice_pattern] = STATE(2942), - [sym_tuple_struct_pattern] = STATE(2942), - [sym_struct_pattern] = STATE(2942), - [sym_remaining_field_pattern] = STATE(2942), - [sym_mut_pattern] = STATE(2942), - [sym_range_pattern] = STATE(2942), - [sym_ref_pattern] = STATE(2942), - [sym_captured_pattern] = STATE(2942), - [sym_reference_pattern] = STATE(2942), - [sym_or_pattern] = STATE(2942), - [sym__literal_pattern] = STATE(2447), - [sym_negative_literal] = STATE(2441), - [sym_string_literal] = STATE(2441), - [sym_raw_string_literal] = STATE(2441), - [sym_boolean_literal] = STATE(2441), - [sym_line_comment] = STATE(467), - [sym_block_comment] = STATE(467), - [aux_sym_match_block_repeat1] = STATE(486), - [aux_sym_match_arm_repeat1] = STATE(616), - [sym_identifier] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_LBRACK] = ACTIONS(1680), - [anon_sym_u8] = ACTIONS(1684), - [anon_sym_i8] = ACTIONS(1684), - [anon_sym_u16] = ACTIONS(1684), - [anon_sym_i16] = ACTIONS(1684), - [anon_sym_u32] = ACTIONS(1684), - [anon_sym_i32] = ACTIONS(1684), - [anon_sym_u64] = ACTIONS(1684), - [anon_sym_i64] = ACTIONS(1684), - [anon_sym_u128] = ACTIONS(1684), - [anon_sym_i128] = ACTIONS(1684), - [anon_sym_isize] = ACTIONS(1684), - [anon_sym_usize] = ACTIONS(1684), - [anon_sym_f32] = ACTIONS(1684), - [anon_sym_f64] = ACTIONS(1684), - [anon_sym_bool] = ACTIONS(1684), - [anon_sym_str] = ACTIONS(1684), - [anon_sym_char] = ACTIONS(1684), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_AMP] = ACTIONS(1688), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1692), - [anon_sym_DOT_DOT] = ACTIONS(1694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_POUND] = ACTIONS(1700), - [anon_sym_const] = ACTIONS(1702), - [anon_sym_default] = ACTIONS(1704), - [anon_sym_gen] = ACTIONS(1704), - [anon_sym_union] = ACTIONS(1704), - [anon_sym_ref] = ACTIONS(1706), - [sym_mutable_specifier] = ACTIONS(1708), - [anon_sym_raw] = ACTIONS(1704), - [sym_integer_literal] = ACTIONS(1710), - [aux_sym_string_literal_token1] = ACTIONS(1712), - [sym_char_literal] = ACTIONS(1710), - [anon_sym_true] = ACTIONS(1714), - [anon_sym_false] = ACTIONS(1714), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1716), - [sym_super] = ACTIONS(1716), - [sym_crate] = ACTIONS(1716), - [sym_metavariable] = ACTIONS(1718), - [sym__raw_string_literal_start] = ACTIONS(1720), - [sym_float_literal] = ACTIONS(1710), - }, - [STATE(468)] = { - [sym_attribute_item] = STATE(1369), - [sym_inner_attribute_item] = STATE(1369), - [sym_bracketed_type] = STATE(3698), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3419), - [sym_macro_invocation] = STATE(2942), - [sym_scoped_identifier] = STATE(2248), - [sym_scoped_type_identifier] = STATE(3103), - [sym_match_arm] = STATE(1370), - [sym_last_match_arm] = STATE(3791), - [sym_match_pattern] = STATE(3790), - [sym_const_block] = STATE(2942), - [sym__pattern] = STATE(3188), - [sym_generic_pattern] = STATE(2942), - [sym_tuple_pattern] = STATE(2942), - [sym_slice_pattern] = STATE(2942), - [sym_tuple_struct_pattern] = STATE(2942), - [sym_struct_pattern] = STATE(2942), - [sym_remaining_field_pattern] = STATE(2942), - [sym_mut_pattern] = STATE(2942), - [sym_range_pattern] = STATE(2942), - [sym_ref_pattern] = STATE(2942), - [sym_captured_pattern] = STATE(2942), - [sym_reference_pattern] = STATE(2942), - [sym_or_pattern] = STATE(2942), - [sym__literal_pattern] = STATE(2447), - [sym_negative_literal] = STATE(2441), - [sym_string_literal] = STATE(2441), - [sym_raw_string_literal] = STATE(2441), - [sym_boolean_literal] = STATE(2441), - [sym_line_comment] = STATE(468), - [sym_block_comment] = STATE(468), - [aux_sym_match_block_repeat1] = STATE(486), - [aux_sym_match_arm_repeat1] = STATE(616), - [sym_identifier] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_LBRACK] = ACTIONS(1680), - [anon_sym_u8] = ACTIONS(1684), - [anon_sym_i8] = ACTIONS(1684), - [anon_sym_u16] = ACTIONS(1684), - [anon_sym_i16] = ACTIONS(1684), - [anon_sym_u32] = ACTIONS(1684), - [anon_sym_i32] = ACTIONS(1684), - [anon_sym_u64] = ACTIONS(1684), - [anon_sym_i64] = ACTIONS(1684), - [anon_sym_u128] = ACTIONS(1684), - [anon_sym_i128] = ACTIONS(1684), - [anon_sym_isize] = ACTIONS(1684), - [anon_sym_usize] = ACTIONS(1684), - [anon_sym_f32] = ACTIONS(1684), - [anon_sym_f64] = ACTIONS(1684), - [anon_sym_bool] = ACTIONS(1684), - [anon_sym_str] = ACTIONS(1684), - [anon_sym_char] = ACTIONS(1684), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_AMP] = ACTIONS(1688), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1692), - [anon_sym_DOT_DOT] = ACTIONS(1694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_POUND] = ACTIONS(1700), - [anon_sym_const] = ACTIONS(1702), - [anon_sym_default] = ACTIONS(1704), - [anon_sym_gen] = ACTIONS(1704), - [anon_sym_union] = ACTIONS(1704), - [anon_sym_ref] = ACTIONS(1706), - [sym_mutable_specifier] = ACTIONS(1708), - [anon_sym_raw] = ACTIONS(1704), - [sym_integer_literal] = ACTIONS(1710), - [aux_sym_string_literal_token1] = ACTIONS(1712), - [sym_char_literal] = ACTIONS(1710), - [anon_sym_true] = ACTIONS(1714), - [anon_sym_false] = ACTIONS(1714), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1716), - [sym_super] = ACTIONS(1716), - [sym_crate] = ACTIONS(1716), - [sym_metavariable] = ACTIONS(1718), - [sym__raw_string_literal_start] = ACTIONS(1720), - [sym_float_literal] = ACTIONS(1710), - }, - [STATE(469)] = { - [sym_line_comment] = STATE(469), - [sym_block_comment] = STATE(469), [sym_identifier] = ACTIONS(1444), [anon_sym_LPAREN] = ACTIONS(1442), [anon_sym_LBRACK] = ACTIONS(1442), @@ -70188,1274 +69263,2027 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1442), [sym_float_literal] = ACTIONS(1442), }, - [STATE(470)] = { + [465] = { + [sym_line_comment] = STATE(465), + [sym_block_comment] = STATE(465), + [sym_identifier] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_RBRACE] = ACTIONS(1430), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_STAR] = ACTIONS(1432), + [anon_sym_QMARK] = ACTIONS(1430), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u128] = ACTIONS(1432), + [anon_sym_i128] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_str] = ACTIONS(1432), + [anon_sym_char] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1432), + [anon_sym_SLASH] = ACTIONS(1432), + [anon_sym_PERCENT] = ACTIONS(1432), + [anon_sym_CARET] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1432), + [anon_sym_PIPE] = ACTIONS(1432), + [anon_sym_AMP_AMP] = ACTIONS(1430), + [anon_sym_PIPE_PIPE] = ACTIONS(1430), + [anon_sym_LT_LT] = ACTIONS(1432), + [anon_sym_GT_GT] = ACTIONS(1432), + [anon_sym_PLUS_EQ] = ACTIONS(1430), + [anon_sym_DASH_EQ] = ACTIONS(1430), + [anon_sym_STAR_EQ] = ACTIONS(1430), + [anon_sym_SLASH_EQ] = ACTIONS(1430), + [anon_sym_PERCENT_EQ] = ACTIONS(1430), + [anon_sym_CARET_EQ] = ACTIONS(1430), + [anon_sym_AMP_EQ] = ACTIONS(1430), + [anon_sym_PIPE_EQ] = ACTIONS(1430), + [anon_sym_LT_LT_EQ] = ACTIONS(1430), + [anon_sym_GT_GT_EQ] = ACTIONS(1430), + [anon_sym_EQ] = ACTIONS(1432), + [anon_sym_EQ_EQ] = ACTIONS(1430), + [anon_sym_BANG_EQ] = ACTIONS(1430), + [anon_sym_GT] = ACTIONS(1432), + [anon_sym_LT] = ACTIONS(1432), + [anon_sym_GT_EQ] = ACTIONS(1430), + [anon_sym_LT_EQ] = ACTIONS(1430), + [anon_sym__] = ACTIONS(1432), + [anon_sym_DOT] = ACTIONS(1432), + [anon_sym_DOT_DOT] = ACTIONS(1432), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1430), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1430), + [anon_sym_COMMA] = ACTIONS(1430), + [anon_sym_COLON_COLON] = ACTIONS(1430), + [anon_sym_POUND] = ACTIONS(1430), + [anon_sym_as] = ACTIONS(1432), + [anon_sym_const] = ACTIONS(1432), + [anon_sym_default] = ACTIONS(1432), + [anon_sym_gen] = ACTIONS(1432), + [anon_sym_union] = ACTIONS(1432), + [anon_sym_ref] = ACTIONS(1432), + [anon_sym_else] = ACTIONS(1432), + [sym_mutable_specifier] = ACTIONS(1432), + [anon_sym_raw] = ACTIONS(1432), + [sym_integer_literal] = ACTIONS(1430), + [aux_sym_string_literal_token1] = ACTIONS(1430), + [sym_char_literal] = ACTIONS(1430), + [anon_sym_true] = ACTIONS(1432), + [anon_sym_false] = ACTIONS(1432), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1432), + [sym_super] = ACTIONS(1432), + [sym_crate] = ACTIONS(1432), + [sym_metavariable] = ACTIONS(1430), + [sym__raw_string_literal_start] = ACTIONS(1430), + [sym_float_literal] = ACTIONS(1430), + }, + [466] = { + [sym_attribute_item] = STATE(1361), + [sym_inner_attribute_item] = STATE(1361), + [sym_bracketed_type] = STATE(3688), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3407), + [sym_macro_invocation] = STATE(3125), + [sym_scoped_identifier] = STATE(2279), + [sym_scoped_type_identifier] = STATE(3095), + [sym_match_arm] = STATE(1362), + [sym_last_match_arm] = STATE(3750), + [sym_match_pattern] = STATE(3800), + [sym_const_block] = STATE(3125), + [sym__pattern] = STATE(3046), + [sym_generic_pattern] = STATE(3125), + [sym_tuple_pattern] = STATE(3125), + [sym_slice_pattern] = STATE(3125), + [sym_tuple_struct_pattern] = STATE(3125), + [sym_struct_pattern] = STATE(3125), + [sym_remaining_field_pattern] = STATE(3125), + [sym_mut_pattern] = STATE(3125), + [sym_range_pattern] = STATE(3125), + [sym_ref_pattern] = STATE(3125), + [sym_captured_pattern] = STATE(3125), + [sym_reference_pattern] = STATE(3125), + [sym_or_pattern] = STATE(3125), + [sym__literal_pattern] = STATE(2478), + [sym_negative_literal] = STATE(2502), + [sym_string_literal] = STATE(2502), + [sym_raw_string_literal] = STATE(2502), + [sym_boolean_literal] = STATE(2502), + [sym_line_comment] = STATE(466), + [sym_block_comment] = STATE(466), + [aux_sym_match_block_repeat1] = STATE(473), + [aux_sym_match_arm_repeat1] = STATE(615), + [sym_identifier] = ACTIONS(1668), + [anon_sym_LPAREN] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_u8] = ACTIONS(1676), + [anon_sym_i8] = ACTIONS(1676), + [anon_sym_u16] = ACTIONS(1676), + [anon_sym_i16] = ACTIONS(1676), + [anon_sym_u32] = ACTIONS(1676), + [anon_sym_i32] = ACTIONS(1676), + [anon_sym_u64] = ACTIONS(1676), + [anon_sym_i64] = ACTIONS(1676), + [anon_sym_u128] = ACTIONS(1676), + [anon_sym_i128] = ACTIONS(1676), + [anon_sym_isize] = ACTIONS(1676), + [anon_sym_usize] = ACTIONS(1676), + [anon_sym_f32] = ACTIONS(1676), + [anon_sym_f64] = ACTIONS(1676), + [anon_sym_bool] = ACTIONS(1676), + [anon_sym_str] = ACTIONS(1676), + [anon_sym_char] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1680), + [anon_sym_PIPE] = ACTIONS(1682), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1684), + [anon_sym_DOT_DOT] = ACTIONS(1686), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1688), + [anon_sym_COLON_COLON] = ACTIONS(1690), + [anon_sym_POUND] = ACTIONS(1692), + [anon_sym_const] = ACTIONS(1694), + [anon_sym_default] = ACTIONS(1696), + [anon_sym_gen] = ACTIONS(1696), + [anon_sym_union] = ACTIONS(1696), + [anon_sym_ref] = ACTIONS(1698), + [sym_mutable_specifier] = ACTIONS(1700), + [anon_sym_raw] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1702), + [aux_sym_string_literal_token1] = ACTIONS(1704), + [sym_char_literal] = ACTIONS(1702), + [anon_sym_true] = ACTIONS(1706), + [anon_sym_false] = ACTIONS(1706), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1708), + [sym_super] = ACTIONS(1708), + [sym_crate] = ACTIONS(1708), + [sym_metavariable] = ACTIONS(1710), + [sym__raw_string_literal_start] = ACTIONS(1712), + [sym_float_literal] = ACTIONS(1702), + }, + [467] = { + [sym_bracketed_type] = STATE(3787), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_macro_invocation] = STATE(2198), + [sym_scoped_identifier] = STATE(2034), + [sym_scoped_type_identifier] = STATE(2991), + [sym_const_block] = STATE(2198), + [sym_closure_expression] = STATE(3158), + [sym_closure_parameters] = STATE(227), + [sym__pattern] = STATE(2620), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), + [sym_line_comment] = STATE(467), + [sym_block_comment] = STATE(467), + [sym_identifier] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_RPAREN] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_u8] = ACTIONS(1730), + [anon_sym_i8] = ACTIONS(1730), + [anon_sym_u16] = ACTIONS(1730), + [anon_sym_i16] = ACTIONS(1730), + [anon_sym_u32] = ACTIONS(1730), + [anon_sym_i32] = ACTIONS(1730), + [anon_sym_u64] = ACTIONS(1730), + [anon_sym_i64] = ACTIONS(1730), + [anon_sym_u128] = ACTIONS(1730), + [anon_sym_i128] = ACTIONS(1730), + [anon_sym_isize] = ACTIONS(1730), + [anon_sym_usize] = ACTIONS(1730), + [anon_sym_f32] = ACTIONS(1730), + [anon_sym_f64] = ACTIONS(1730), + [anon_sym_bool] = ACTIONS(1730), + [anon_sym_str] = ACTIONS(1730), + [anon_sym_char] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1412), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COMMA] = ACTIONS(1416), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_async] = ACTIONS(1736), + [anon_sym_const] = ACTIONS(1738), + [anon_sym_default] = ACTIONS(1740), + [anon_sym_gen] = ACTIONS(1740), + [anon_sym_static] = ACTIONS(1420), + [anon_sym_union] = ACTIONS(1740), + [anon_sym_ref] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1422), + [anon_sym_raw] = ACTIONS(1740), + [anon_sym_move] = ACTIONS(1424), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1742), + [sym_super] = ACTIONS(1742), + [sym_crate] = ACTIONS(1742), + [sym_metavariable] = ACTIONS(1744), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [468] = { + [sym_line_comment] = STATE(468), + [sym_block_comment] = STATE(468), + [sym_identifier] = ACTIONS(1476), + [anon_sym_LPAREN] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(1474), + [anon_sym_RBRACE] = ACTIONS(1474), + [anon_sym_PLUS] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1476), + [anon_sym_QMARK] = ACTIONS(1474), + [anon_sym_u8] = ACTIONS(1476), + [anon_sym_i8] = ACTIONS(1476), + [anon_sym_u16] = ACTIONS(1476), + [anon_sym_i16] = ACTIONS(1476), + [anon_sym_u32] = ACTIONS(1476), + [anon_sym_i32] = ACTIONS(1476), + [anon_sym_u64] = ACTIONS(1476), + [anon_sym_i64] = ACTIONS(1476), + [anon_sym_u128] = ACTIONS(1476), + [anon_sym_i128] = ACTIONS(1476), + [anon_sym_isize] = ACTIONS(1476), + [anon_sym_usize] = ACTIONS(1476), + [anon_sym_f32] = ACTIONS(1476), + [anon_sym_f64] = ACTIONS(1476), + [anon_sym_bool] = ACTIONS(1476), + [anon_sym_str] = ACTIONS(1476), + [anon_sym_char] = ACTIONS(1476), + [anon_sym_DASH] = ACTIONS(1476), + [anon_sym_SLASH] = ACTIONS(1476), + [anon_sym_PERCENT] = ACTIONS(1476), + [anon_sym_CARET] = ACTIONS(1476), + [anon_sym_AMP] = ACTIONS(1476), + [anon_sym_PIPE] = ACTIONS(1476), + [anon_sym_AMP_AMP] = ACTIONS(1474), + [anon_sym_PIPE_PIPE] = ACTIONS(1474), + [anon_sym_LT_LT] = ACTIONS(1476), + [anon_sym_GT_GT] = ACTIONS(1476), + [anon_sym_PLUS_EQ] = ACTIONS(1474), + [anon_sym_DASH_EQ] = ACTIONS(1474), + [anon_sym_STAR_EQ] = ACTIONS(1474), + [anon_sym_SLASH_EQ] = ACTIONS(1474), + [anon_sym_PERCENT_EQ] = ACTIONS(1474), + [anon_sym_CARET_EQ] = ACTIONS(1474), + [anon_sym_AMP_EQ] = ACTIONS(1474), + [anon_sym_PIPE_EQ] = ACTIONS(1474), + [anon_sym_LT_LT_EQ] = ACTIONS(1474), + [anon_sym_GT_GT_EQ] = ACTIONS(1474), + [anon_sym_EQ] = ACTIONS(1476), + [anon_sym_EQ_EQ] = ACTIONS(1474), + [anon_sym_BANG_EQ] = ACTIONS(1474), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_GT_EQ] = ACTIONS(1474), + [anon_sym_LT_EQ] = ACTIONS(1474), + [anon_sym__] = ACTIONS(1476), + [anon_sym_DOT] = ACTIONS(1476), + [anon_sym_DOT_DOT] = ACTIONS(1476), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1474), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1474), + [anon_sym_COMMA] = ACTIONS(1474), + [anon_sym_COLON_COLON] = ACTIONS(1474), + [anon_sym_POUND] = ACTIONS(1474), + [anon_sym_as] = ACTIONS(1476), + [anon_sym_const] = ACTIONS(1476), + [anon_sym_default] = ACTIONS(1476), + [anon_sym_gen] = ACTIONS(1476), + [anon_sym_union] = ACTIONS(1476), + [anon_sym_ref] = ACTIONS(1476), + [sym_mutable_specifier] = ACTIONS(1476), + [anon_sym_raw] = ACTIONS(1476), + [sym_integer_literal] = ACTIONS(1474), + [aux_sym_string_literal_token1] = ACTIONS(1474), + [sym_char_literal] = ACTIONS(1474), + [anon_sym_true] = ACTIONS(1476), + [anon_sym_false] = ACTIONS(1476), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1476), + [sym_super] = ACTIONS(1476), + [sym_crate] = ACTIONS(1476), + [sym_metavariable] = ACTIONS(1474), + [sym__raw_string_literal_start] = ACTIONS(1474), + [sym_float_literal] = ACTIONS(1474), + }, + [469] = { + [sym_line_comment] = STATE(469), + [sym_block_comment] = STATE(469), + [sym_identifier] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1490), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_RBRACE] = ACTIONS(1490), + [anon_sym_PLUS] = ACTIONS(1492), + [anon_sym_STAR] = ACTIONS(1492), + [anon_sym_QMARK] = ACTIONS(1490), + [anon_sym_u8] = ACTIONS(1492), + [anon_sym_i8] = ACTIONS(1492), + [anon_sym_u16] = ACTIONS(1492), + [anon_sym_i16] = ACTIONS(1492), + [anon_sym_u32] = ACTIONS(1492), + [anon_sym_i32] = ACTIONS(1492), + [anon_sym_u64] = ACTIONS(1492), + [anon_sym_i64] = ACTIONS(1492), + [anon_sym_u128] = ACTIONS(1492), + [anon_sym_i128] = ACTIONS(1492), + [anon_sym_isize] = ACTIONS(1492), + [anon_sym_usize] = ACTIONS(1492), + [anon_sym_f32] = ACTIONS(1492), + [anon_sym_f64] = ACTIONS(1492), + [anon_sym_bool] = ACTIONS(1492), + [anon_sym_str] = ACTIONS(1492), + [anon_sym_char] = ACTIONS(1492), + [anon_sym_DASH] = ACTIONS(1492), + [anon_sym_SLASH] = ACTIONS(1492), + [anon_sym_PERCENT] = ACTIONS(1492), + [anon_sym_CARET] = ACTIONS(1492), + [anon_sym_AMP] = ACTIONS(1492), + [anon_sym_PIPE] = ACTIONS(1492), + [anon_sym_AMP_AMP] = ACTIONS(1490), + [anon_sym_PIPE_PIPE] = ACTIONS(1490), + [anon_sym_LT_LT] = ACTIONS(1492), + [anon_sym_GT_GT] = ACTIONS(1492), + [anon_sym_PLUS_EQ] = ACTIONS(1490), + [anon_sym_DASH_EQ] = ACTIONS(1490), + [anon_sym_STAR_EQ] = ACTIONS(1490), + [anon_sym_SLASH_EQ] = ACTIONS(1490), + [anon_sym_PERCENT_EQ] = ACTIONS(1490), + [anon_sym_CARET_EQ] = ACTIONS(1490), + [anon_sym_AMP_EQ] = ACTIONS(1490), + [anon_sym_PIPE_EQ] = ACTIONS(1490), + [anon_sym_LT_LT_EQ] = ACTIONS(1490), + [anon_sym_GT_GT_EQ] = ACTIONS(1490), + [anon_sym_EQ] = ACTIONS(1492), + [anon_sym_EQ_EQ] = ACTIONS(1490), + [anon_sym_BANG_EQ] = ACTIONS(1490), + [anon_sym_GT] = ACTIONS(1492), + [anon_sym_LT] = ACTIONS(1492), + [anon_sym_GT_EQ] = ACTIONS(1490), + [anon_sym_LT_EQ] = ACTIONS(1490), + [anon_sym__] = ACTIONS(1492), + [anon_sym_DOT] = ACTIONS(1492), + [anon_sym_DOT_DOT] = ACTIONS(1492), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1490), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1490), + [anon_sym_COMMA] = ACTIONS(1490), + [anon_sym_COLON_COLON] = ACTIONS(1490), + [anon_sym_POUND] = ACTIONS(1490), + [anon_sym_as] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1492), + [anon_sym_default] = ACTIONS(1492), + [anon_sym_gen] = ACTIONS(1492), + [anon_sym_union] = ACTIONS(1492), + [anon_sym_ref] = ACTIONS(1492), + [sym_mutable_specifier] = ACTIONS(1492), + [anon_sym_raw] = ACTIONS(1492), + [sym_integer_literal] = ACTIONS(1490), + [aux_sym_string_literal_token1] = ACTIONS(1490), + [sym_char_literal] = ACTIONS(1490), + [anon_sym_true] = ACTIONS(1492), + [anon_sym_false] = ACTIONS(1492), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1492), + [sym_super] = ACTIONS(1492), + [sym_crate] = ACTIONS(1492), + [sym_metavariable] = ACTIONS(1490), + [sym__raw_string_literal_start] = ACTIONS(1490), + [sym_float_literal] = ACTIONS(1490), + }, + [470] = { [sym_line_comment] = STATE(470), [sym_block_comment] = STATE(470), - [sym_identifier] = ACTIONS(1448), - [anon_sym_LPAREN] = ACTIONS(1446), - [anon_sym_LBRACK] = ACTIONS(1446), - [anon_sym_RBRACE] = ACTIONS(1446), - [anon_sym_PLUS] = ACTIONS(1448), - [anon_sym_STAR] = ACTIONS(1448), - [anon_sym_QMARK] = ACTIONS(1446), - [anon_sym_u8] = ACTIONS(1448), - [anon_sym_i8] = ACTIONS(1448), - [anon_sym_u16] = ACTIONS(1448), - [anon_sym_i16] = ACTIONS(1448), - [anon_sym_u32] = ACTIONS(1448), - [anon_sym_i32] = ACTIONS(1448), - [anon_sym_u64] = ACTIONS(1448), - [anon_sym_i64] = ACTIONS(1448), - [anon_sym_u128] = ACTIONS(1448), - [anon_sym_i128] = ACTIONS(1448), - [anon_sym_isize] = ACTIONS(1448), - [anon_sym_usize] = ACTIONS(1448), - [anon_sym_f32] = ACTIONS(1448), - [anon_sym_f64] = ACTIONS(1448), - [anon_sym_bool] = ACTIONS(1448), - [anon_sym_str] = ACTIONS(1448), - [anon_sym_char] = ACTIONS(1448), - [anon_sym_DASH] = ACTIONS(1448), - [anon_sym_SLASH] = ACTIONS(1448), - [anon_sym_PERCENT] = ACTIONS(1448), - [anon_sym_CARET] = ACTIONS(1448), - [anon_sym_AMP] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1448), - [anon_sym_AMP_AMP] = ACTIONS(1446), - [anon_sym_PIPE_PIPE] = ACTIONS(1446), - [anon_sym_LT_LT] = ACTIONS(1448), - [anon_sym_GT_GT] = ACTIONS(1448), - [anon_sym_PLUS_EQ] = ACTIONS(1446), - [anon_sym_DASH_EQ] = ACTIONS(1446), - [anon_sym_STAR_EQ] = ACTIONS(1446), - [anon_sym_SLASH_EQ] = ACTIONS(1446), - [anon_sym_PERCENT_EQ] = ACTIONS(1446), - [anon_sym_CARET_EQ] = ACTIONS(1446), - [anon_sym_AMP_EQ] = ACTIONS(1446), - [anon_sym_PIPE_EQ] = ACTIONS(1446), - [anon_sym_LT_LT_EQ] = ACTIONS(1446), - [anon_sym_GT_GT_EQ] = ACTIONS(1446), - [anon_sym_EQ] = ACTIONS(1448), - [anon_sym_EQ_EQ] = ACTIONS(1446), - [anon_sym_BANG_EQ] = ACTIONS(1446), - [anon_sym_GT] = ACTIONS(1448), - [anon_sym_LT] = ACTIONS(1448), - [anon_sym_GT_EQ] = ACTIONS(1446), - [anon_sym_LT_EQ] = ACTIONS(1446), - [anon_sym__] = ACTIONS(1448), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_DOT_DOT] = ACTIONS(1448), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1446), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1446), - [anon_sym_COMMA] = ACTIONS(1446), - [anon_sym_COLON_COLON] = ACTIONS(1446), - [anon_sym_POUND] = ACTIONS(1446), - [anon_sym_as] = ACTIONS(1448), - [anon_sym_const] = ACTIONS(1448), - [anon_sym_default] = ACTIONS(1448), - [anon_sym_gen] = ACTIONS(1448), - [anon_sym_union] = ACTIONS(1448), - [anon_sym_ref] = ACTIONS(1448), - [anon_sym_else] = ACTIONS(1448), - [sym_mutable_specifier] = ACTIONS(1448), - [anon_sym_raw] = ACTIONS(1448), - [sym_integer_literal] = ACTIONS(1446), - [aux_sym_string_literal_token1] = ACTIONS(1446), - [sym_char_literal] = ACTIONS(1446), - [anon_sym_true] = ACTIONS(1448), - [anon_sym_false] = ACTIONS(1448), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1448), - [sym_super] = ACTIONS(1448), - [sym_crate] = ACTIONS(1448), - [sym_metavariable] = ACTIONS(1446), - [sym__raw_string_literal_start] = ACTIONS(1446), - [sym_float_literal] = ACTIONS(1446), - }, - [STATE(471)] = { + [sym_identifier] = ACTIONS(1484), + [anon_sym_LPAREN] = ACTIONS(1482), + [anon_sym_LBRACK] = ACTIONS(1482), + [anon_sym_RBRACE] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1484), + [anon_sym_STAR] = ACTIONS(1484), + [anon_sym_QMARK] = ACTIONS(1482), + [anon_sym_u8] = ACTIONS(1484), + [anon_sym_i8] = ACTIONS(1484), + [anon_sym_u16] = ACTIONS(1484), + [anon_sym_i16] = ACTIONS(1484), + [anon_sym_u32] = ACTIONS(1484), + [anon_sym_i32] = ACTIONS(1484), + [anon_sym_u64] = ACTIONS(1484), + [anon_sym_i64] = ACTIONS(1484), + [anon_sym_u128] = ACTIONS(1484), + [anon_sym_i128] = ACTIONS(1484), + [anon_sym_isize] = ACTIONS(1484), + [anon_sym_usize] = ACTIONS(1484), + [anon_sym_f32] = ACTIONS(1484), + [anon_sym_f64] = ACTIONS(1484), + [anon_sym_bool] = ACTIONS(1484), + [anon_sym_str] = ACTIONS(1484), + [anon_sym_char] = ACTIONS(1484), + [anon_sym_DASH] = ACTIONS(1484), + [anon_sym_SLASH] = ACTIONS(1484), + [anon_sym_PERCENT] = ACTIONS(1484), + [anon_sym_CARET] = ACTIONS(1484), + [anon_sym_AMP] = ACTIONS(1484), + [anon_sym_PIPE] = ACTIONS(1484), + [anon_sym_AMP_AMP] = ACTIONS(1482), + [anon_sym_PIPE_PIPE] = ACTIONS(1482), + [anon_sym_LT_LT] = ACTIONS(1484), + [anon_sym_GT_GT] = ACTIONS(1484), + [anon_sym_PLUS_EQ] = ACTIONS(1482), + [anon_sym_DASH_EQ] = ACTIONS(1482), + [anon_sym_STAR_EQ] = ACTIONS(1482), + [anon_sym_SLASH_EQ] = ACTIONS(1482), + [anon_sym_PERCENT_EQ] = ACTIONS(1482), + [anon_sym_CARET_EQ] = ACTIONS(1482), + [anon_sym_AMP_EQ] = ACTIONS(1482), + [anon_sym_PIPE_EQ] = ACTIONS(1482), + [anon_sym_LT_LT_EQ] = ACTIONS(1482), + [anon_sym_GT_GT_EQ] = ACTIONS(1482), + [anon_sym_EQ] = ACTIONS(1484), + [anon_sym_EQ_EQ] = ACTIONS(1482), + [anon_sym_BANG_EQ] = ACTIONS(1482), + [anon_sym_GT] = ACTIONS(1484), + [anon_sym_LT] = ACTIONS(1484), + [anon_sym_GT_EQ] = ACTIONS(1482), + [anon_sym_LT_EQ] = ACTIONS(1482), + [anon_sym__] = ACTIONS(1484), + [anon_sym_DOT] = ACTIONS(1484), + [anon_sym_DOT_DOT] = ACTIONS(1484), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1482), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1482), + [anon_sym_COMMA] = ACTIONS(1482), + [anon_sym_COLON_COLON] = ACTIONS(1482), + [anon_sym_POUND] = ACTIONS(1482), + [anon_sym_as] = ACTIONS(1484), + [anon_sym_const] = ACTIONS(1484), + [anon_sym_default] = ACTIONS(1484), + [anon_sym_gen] = ACTIONS(1484), + [anon_sym_union] = ACTIONS(1484), + [anon_sym_ref] = ACTIONS(1484), + [sym_mutable_specifier] = ACTIONS(1484), + [anon_sym_raw] = ACTIONS(1484), + [sym_integer_literal] = ACTIONS(1482), + [aux_sym_string_literal_token1] = ACTIONS(1482), + [sym_char_literal] = ACTIONS(1482), + [anon_sym_true] = ACTIONS(1484), + [anon_sym_false] = ACTIONS(1484), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1484), + [sym_super] = ACTIONS(1484), + [sym_crate] = ACTIONS(1484), + [sym_metavariable] = ACTIONS(1482), + [sym__raw_string_literal_start] = ACTIONS(1482), + [sym_float_literal] = ACTIONS(1482), + }, + [471] = { [sym_line_comment] = STATE(471), [sym_block_comment] = STATE(471), - [sym_identifier] = ACTIONS(1456), - [anon_sym_LPAREN] = ACTIONS(1454), - [anon_sym_LBRACK] = ACTIONS(1454), - [anon_sym_RBRACE] = ACTIONS(1454), - [anon_sym_PLUS] = ACTIONS(1456), - [anon_sym_STAR] = ACTIONS(1456), - [anon_sym_QMARK] = ACTIONS(1454), - [anon_sym_u8] = ACTIONS(1456), - [anon_sym_i8] = ACTIONS(1456), - [anon_sym_u16] = ACTIONS(1456), - [anon_sym_i16] = ACTIONS(1456), - [anon_sym_u32] = ACTIONS(1456), - [anon_sym_i32] = ACTIONS(1456), - [anon_sym_u64] = ACTIONS(1456), - [anon_sym_i64] = ACTIONS(1456), - [anon_sym_u128] = ACTIONS(1456), - [anon_sym_i128] = ACTIONS(1456), - [anon_sym_isize] = ACTIONS(1456), - [anon_sym_usize] = ACTIONS(1456), - [anon_sym_f32] = ACTIONS(1456), - [anon_sym_f64] = ACTIONS(1456), - [anon_sym_bool] = ACTIONS(1456), - [anon_sym_str] = ACTIONS(1456), - [anon_sym_char] = ACTIONS(1456), - [anon_sym_DASH] = ACTIONS(1456), - [anon_sym_SLASH] = ACTIONS(1456), - [anon_sym_PERCENT] = ACTIONS(1456), - [anon_sym_CARET] = ACTIONS(1456), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_PIPE] = ACTIONS(1456), - [anon_sym_AMP_AMP] = ACTIONS(1454), - [anon_sym_PIPE_PIPE] = ACTIONS(1454), - [anon_sym_LT_LT] = ACTIONS(1456), - [anon_sym_GT_GT] = ACTIONS(1456), - [anon_sym_PLUS_EQ] = ACTIONS(1454), - [anon_sym_DASH_EQ] = ACTIONS(1454), - [anon_sym_STAR_EQ] = ACTIONS(1454), - [anon_sym_SLASH_EQ] = ACTIONS(1454), - [anon_sym_PERCENT_EQ] = ACTIONS(1454), - [anon_sym_CARET_EQ] = ACTIONS(1454), - [anon_sym_AMP_EQ] = ACTIONS(1454), - [anon_sym_PIPE_EQ] = ACTIONS(1454), - [anon_sym_LT_LT_EQ] = ACTIONS(1454), - [anon_sym_GT_GT_EQ] = ACTIONS(1454), - [anon_sym_EQ] = ACTIONS(1456), - [anon_sym_EQ_EQ] = ACTIONS(1454), - [anon_sym_BANG_EQ] = ACTIONS(1454), - [anon_sym_GT] = ACTIONS(1456), - [anon_sym_LT] = ACTIONS(1456), - [anon_sym_GT_EQ] = ACTIONS(1454), - [anon_sym_LT_EQ] = ACTIONS(1454), - [anon_sym__] = ACTIONS(1456), - [anon_sym_DOT] = ACTIONS(1456), - [anon_sym_DOT_DOT] = ACTIONS(1456), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1454), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1454), - [anon_sym_COMMA] = ACTIONS(1454), - [anon_sym_COLON_COLON] = ACTIONS(1454), - [anon_sym_POUND] = ACTIONS(1454), - [anon_sym_as] = ACTIONS(1456), - [anon_sym_const] = ACTIONS(1456), - [anon_sym_default] = ACTIONS(1456), - [anon_sym_gen] = ACTIONS(1456), - [anon_sym_union] = ACTIONS(1456), - [anon_sym_ref] = ACTIONS(1456), - [anon_sym_else] = ACTIONS(1456), - [sym_mutable_specifier] = ACTIONS(1456), - [anon_sym_raw] = ACTIONS(1456), - [sym_integer_literal] = ACTIONS(1454), - [aux_sym_string_literal_token1] = ACTIONS(1454), - [sym_char_literal] = ACTIONS(1454), - [anon_sym_true] = ACTIONS(1456), - [anon_sym_false] = ACTIONS(1456), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1456), - [sym_super] = ACTIONS(1456), - [sym_crate] = ACTIONS(1456), - [sym_metavariable] = ACTIONS(1454), - [sym__raw_string_literal_start] = ACTIONS(1454), - [sym_float_literal] = ACTIONS(1454), - }, - [STATE(472)] = { + [sym_identifier] = ACTIONS(1516), + [anon_sym_LPAREN] = ACTIONS(1514), + [anon_sym_LBRACK] = ACTIONS(1514), + [anon_sym_RBRACE] = ACTIONS(1514), + [anon_sym_PLUS] = ACTIONS(1516), + [anon_sym_STAR] = ACTIONS(1516), + [anon_sym_QMARK] = ACTIONS(1514), + [anon_sym_u8] = ACTIONS(1516), + [anon_sym_i8] = ACTIONS(1516), + [anon_sym_u16] = ACTIONS(1516), + [anon_sym_i16] = ACTIONS(1516), + [anon_sym_u32] = ACTIONS(1516), + [anon_sym_i32] = ACTIONS(1516), + [anon_sym_u64] = ACTIONS(1516), + [anon_sym_i64] = ACTIONS(1516), + [anon_sym_u128] = ACTIONS(1516), + [anon_sym_i128] = ACTIONS(1516), + [anon_sym_isize] = ACTIONS(1516), + [anon_sym_usize] = ACTIONS(1516), + [anon_sym_f32] = ACTIONS(1516), + [anon_sym_f64] = ACTIONS(1516), + [anon_sym_bool] = ACTIONS(1516), + [anon_sym_str] = ACTIONS(1516), + [anon_sym_char] = ACTIONS(1516), + [anon_sym_DASH] = ACTIONS(1516), + [anon_sym_SLASH] = ACTIONS(1516), + [anon_sym_PERCENT] = ACTIONS(1516), + [anon_sym_CARET] = ACTIONS(1516), + [anon_sym_AMP] = ACTIONS(1516), + [anon_sym_PIPE] = ACTIONS(1516), + [anon_sym_AMP_AMP] = ACTIONS(1514), + [anon_sym_PIPE_PIPE] = ACTIONS(1514), + [anon_sym_LT_LT] = ACTIONS(1516), + [anon_sym_GT_GT] = ACTIONS(1516), + [anon_sym_PLUS_EQ] = ACTIONS(1514), + [anon_sym_DASH_EQ] = ACTIONS(1514), + [anon_sym_STAR_EQ] = ACTIONS(1514), + [anon_sym_SLASH_EQ] = ACTIONS(1514), + [anon_sym_PERCENT_EQ] = ACTIONS(1514), + [anon_sym_CARET_EQ] = ACTIONS(1514), + [anon_sym_AMP_EQ] = ACTIONS(1514), + [anon_sym_PIPE_EQ] = ACTIONS(1514), + [anon_sym_LT_LT_EQ] = ACTIONS(1514), + [anon_sym_GT_GT_EQ] = ACTIONS(1514), + [anon_sym_EQ] = ACTIONS(1516), + [anon_sym_EQ_EQ] = ACTIONS(1514), + [anon_sym_BANG_EQ] = ACTIONS(1514), + [anon_sym_GT] = ACTIONS(1516), + [anon_sym_LT] = ACTIONS(1516), + [anon_sym_GT_EQ] = ACTIONS(1514), + [anon_sym_LT_EQ] = ACTIONS(1514), + [anon_sym__] = ACTIONS(1516), + [anon_sym_DOT] = ACTIONS(1516), + [anon_sym_DOT_DOT] = ACTIONS(1516), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1514), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1514), + [anon_sym_COMMA] = ACTIONS(1514), + [anon_sym_COLON_COLON] = ACTIONS(1514), + [anon_sym_POUND] = ACTIONS(1514), + [anon_sym_as] = ACTIONS(1516), + [anon_sym_const] = ACTIONS(1516), + [anon_sym_default] = ACTIONS(1516), + [anon_sym_gen] = ACTIONS(1516), + [anon_sym_union] = ACTIONS(1516), + [anon_sym_ref] = ACTIONS(1516), + [sym_mutable_specifier] = ACTIONS(1516), + [anon_sym_raw] = ACTIONS(1516), + [sym_integer_literal] = ACTIONS(1514), + [aux_sym_string_literal_token1] = ACTIONS(1514), + [sym_char_literal] = ACTIONS(1514), + [anon_sym_true] = ACTIONS(1516), + [anon_sym_false] = ACTIONS(1516), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1516), + [sym_super] = ACTIONS(1516), + [sym_crate] = ACTIONS(1516), + [sym_metavariable] = ACTIONS(1514), + [sym__raw_string_literal_start] = ACTIONS(1514), + [sym_float_literal] = ACTIONS(1514), + }, + [472] = { [sym_line_comment] = STATE(472), [sym_block_comment] = STATE(472), - [sym_identifier] = ACTIONS(1440), - [anon_sym_LPAREN] = ACTIONS(1438), - [anon_sym_LBRACK] = ACTIONS(1438), - [anon_sym_RBRACE] = ACTIONS(1438), - [anon_sym_PLUS] = ACTIONS(1440), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_QMARK] = ACTIONS(1438), - [anon_sym_u8] = ACTIONS(1440), - [anon_sym_i8] = ACTIONS(1440), - [anon_sym_u16] = ACTIONS(1440), - [anon_sym_i16] = ACTIONS(1440), - [anon_sym_u32] = ACTIONS(1440), - [anon_sym_i32] = ACTIONS(1440), - [anon_sym_u64] = ACTIONS(1440), - [anon_sym_i64] = ACTIONS(1440), - [anon_sym_u128] = ACTIONS(1440), - [anon_sym_i128] = ACTIONS(1440), - [anon_sym_isize] = ACTIONS(1440), - [anon_sym_usize] = ACTIONS(1440), - [anon_sym_f32] = ACTIONS(1440), - [anon_sym_f64] = ACTIONS(1440), - [anon_sym_bool] = ACTIONS(1440), - [anon_sym_str] = ACTIONS(1440), - [anon_sym_char] = ACTIONS(1440), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_SLASH] = ACTIONS(1440), - [anon_sym_PERCENT] = ACTIONS(1440), - [anon_sym_CARET] = ACTIONS(1440), - [anon_sym_AMP] = ACTIONS(1440), - [anon_sym_PIPE] = ACTIONS(1440), - [anon_sym_AMP_AMP] = ACTIONS(1438), - [anon_sym_PIPE_PIPE] = ACTIONS(1438), - [anon_sym_LT_LT] = ACTIONS(1440), - [anon_sym_GT_GT] = ACTIONS(1440), - [anon_sym_PLUS_EQ] = ACTIONS(1438), - [anon_sym_DASH_EQ] = ACTIONS(1438), - [anon_sym_STAR_EQ] = ACTIONS(1438), - [anon_sym_SLASH_EQ] = ACTIONS(1438), - [anon_sym_PERCENT_EQ] = ACTIONS(1438), - [anon_sym_CARET_EQ] = ACTIONS(1438), - [anon_sym_AMP_EQ] = ACTIONS(1438), - [anon_sym_PIPE_EQ] = ACTIONS(1438), - [anon_sym_LT_LT_EQ] = ACTIONS(1438), - [anon_sym_GT_GT_EQ] = ACTIONS(1438), - [anon_sym_EQ] = ACTIONS(1440), - [anon_sym_EQ_EQ] = ACTIONS(1438), - [anon_sym_BANG_EQ] = ACTIONS(1438), - [anon_sym_GT] = ACTIONS(1440), - [anon_sym_LT] = ACTIONS(1440), - [anon_sym_GT_EQ] = ACTIONS(1438), - [anon_sym_LT_EQ] = ACTIONS(1438), - [anon_sym__] = ACTIONS(1440), - [anon_sym_DOT] = ACTIONS(1440), - [anon_sym_DOT_DOT] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1438), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1438), - [anon_sym_COMMA] = ACTIONS(1438), - [anon_sym_COLON_COLON] = ACTIONS(1438), - [anon_sym_POUND] = ACTIONS(1438), - [anon_sym_as] = ACTIONS(1440), - [anon_sym_const] = ACTIONS(1440), - [anon_sym_default] = ACTIONS(1440), - [anon_sym_gen] = ACTIONS(1440), - [anon_sym_union] = ACTIONS(1440), - [anon_sym_ref] = ACTIONS(1440), - [anon_sym_else] = ACTIONS(1440), - [sym_mutable_specifier] = ACTIONS(1440), - [anon_sym_raw] = ACTIONS(1440), - [sym_integer_literal] = ACTIONS(1438), - [aux_sym_string_literal_token1] = ACTIONS(1438), - [sym_char_literal] = ACTIONS(1438), - [anon_sym_true] = ACTIONS(1440), - [anon_sym_false] = ACTIONS(1440), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1440), - [sym_super] = ACTIONS(1440), - [sym_crate] = ACTIONS(1440), - [sym_metavariable] = ACTIONS(1438), - [sym__raw_string_literal_start] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1438), - }, - [STATE(473)] = { + [sym_identifier] = ACTIONS(1538), + [anon_sym_LPAREN] = ACTIONS(1536), + [anon_sym_LBRACK] = ACTIONS(1536), + [anon_sym_RBRACE] = ACTIONS(1536), + [anon_sym_PLUS] = ACTIONS(1538), + [anon_sym_STAR] = ACTIONS(1538), + [anon_sym_QMARK] = ACTIONS(1536), + [anon_sym_u8] = ACTIONS(1538), + [anon_sym_i8] = ACTIONS(1538), + [anon_sym_u16] = ACTIONS(1538), + [anon_sym_i16] = ACTIONS(1538), + [anon_sym_u32] = ACTIONS(1538), + [anon_sym_i32] = ACTIONS(1538), + [anon_sym_u64] = ACTIONS(1538), + [anon_sym_i64] = ACTIONS(1538), + [anon_sym_u128] = ACTIONS(1538), + [anon_sym_i128] = ACTIONS(1538), + [anon_sym_isize] = ACTIONS(1538), + [anon_sym_usize] = ACTIONS(1538), + [anon_sym_f32] = ACTIONS(1538), + [anon_sym_f64] = ACTIONS(1538), + [anon_sym_bool] = ACTIONS(1538), + [anon_sym_str] = ACTIONS(1538), + [anon_sym_char] = ACTIONS(1538), + [anon_sym_DASH] = ACTIONS(1538), + [anon_sym_SLASH] = ACTIONS(1538), + [anon_sym_PERCENT] = ACTIONS(1538), + [anon_sym_CARET] = ACTIONS(1538), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_AMP_AMP] = ACTIONS(1536), + [anon_sym_PIPE_PIPE] = ACTIONS(1536), + [anon_sym_LT_LT] = ACTIONS(1538), + [anon_sym_GT_GT] = ACTIONS(1538), + [anon_sym_PLUS_EQ] = ACTIONS(1536), + [anon_sym_DASH_EQ] = ACTIONS(1536), + [anon_sym_STAR_EQ] = ACTIONS(1536), + [anon_sym_SLASH_EQ] = ACTIONS(1536), + [anon_sym_PERCENT_EQ] = ACTIONS(1536), + [anon_sym_CARET_EQ] = ACTIONS(1536), + [anon_sym_AMP_EQ] = ACTIONS(1536), + [anon_sym_PIPE_EQ] = ACTIONS(1536), + [anon_sym_LT_LT_EQ] = ACTIONS(1536), + [anon_sym_GT_GT_EQ] = ACTIONS(1536), + [anon_sym_EQ] = ACTIONS(1538), + [anon_sym_EQ_EQ] = ACTIONS(1536), + [anon_sym_BANG_EQ] = ACTIONS(1536), + [anon_sym_GT] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(1538), + [anon_sym_GT_EQ] = ACTIONS(1536), + [anon_sym_LT_EQ] = ACTIONS(1536), + [anon_sym__] = ACTIONS(1538), + [anon_sym_DOT] = ACTIONS(1538), + [anon_sym_DOT_DOT] = ACTIONS(1538), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1536), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1536), + [anon_sym_COMMA] = ACTIONS(1536), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_POUND] = ACTIONS(1536), + [anon_sym_as] = ACTIONS(1538), + [anon_sym_const] = ACTIONS(1538), + [anon_sym_default] = ACTIONS(1538), + [anon_sym_gen] = ACTIONS(1538), + [anon_sym_union] = ACTIONS(1538), + [anon_sym_ref] = ACTIONS(1538), + [sym_mutable_specifier] = ACTIONS(1538), + [anon_sym_raw] = ACTIONS(1538), + [sym_integer_literal] = ACTIONS(1536), + [aux_sym_string_literal_token1] = ACTIONS(1536), + [sym_char_literal] = ACTIONS(1536), + [anon_sym_true] = ACTIONS(1538), + [anon_sym_false] = ACTIONS(1538), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1538), + [sym_super] = ACTIONS(1538), + [sym_crate] = ACTIONS(1538), + [sym_metavariable] = ACTIONS(1536), + [sym__raw_string_literal_start] = ACTIONS(1536), + [sym_float_literal] = ACTIONS(1536), + }, + [473] = { + [sym_attribute_item] = STATE(1361), + [sym_inner_attribute_item] = STATE(1361), + [sym_bracketed_type] = STATE(3688), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3407), + [sym_macro_invocation] = STATE(3125), + [sym_scoped_identifier] = STATE(2279), + [sym_scoped_type_identifier] = STATE(3095), + [sym_match_arm] = STATE(1362), + [sym_match_pattern] = STATE(3560), + [sym_const_block] = STATE(3125), + [sym__pattern] = STATE(3046), + [sym_generic_pattern] = STATE(3125), + [sym_tuple_pattern] = STATE(3125), + [sym_slice_pattern] = STATE(3125), + [sym_tuple_struct_pattern] = STATE(3125), + [sym_struct_pattern] = STATE(3125), + [sym_remaining_field_pattern] = STATE(3125), + [sym_mut_pattern] = STATE(3125), + [sym_range_pattern] = STATE(3125), + [sym_ref_pattern] = STATE(3125), + [sym_captured_pattern] = STATE(3125), + [sym_reference_pattern] = STATE(3125), + [sym_or_pattern] = STATE(3125), + [sym__literal_pattern] = STATE(2478), + [sym_negative_literal] = STATE(2502), + [sym_string_literal] = STATE(2502), + [sym_raw_string_literal] = STATE(2502), + [sym_boolean_literal] = STATE(2502), [sym_line_comment] = STATE(473), [sym_block_comment] = STATE(473), - [sym_identifier] = ACTIONS(1452), - [anon_sym_LPAREN] = ACTIONS(1450), - [anon_sym_LBRACK] = ACTIONS(1450), - [anon_sym_RBRACE] = ACTIONS(1450), - [anon_sym_PLUS] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1452), - [anon_sym_QMARK] = ACTIONS(1450), - [anon_sym_u8] = ACTIONS(1452), - [anon_sym_i8] = ACTIONS(1452), - [anon_sym_u16] = ACTIONS(1452), - [anon_sym_i16] = ACTIONS(1452), - [anon_sym_u32] = ACTIONS(1452), - [anon_sym_i32] = ACTIONS(1452), - [anon_sym_u64] = ACTIONS(1452), - [anon_sym_i64] = ACTIONS(1452), - [anon_sym_u128] = ACTIONS(1452), - [anon_sym_i128] = ACTIONS(1452), - [anon_sym_isize] = ACTIONS(1452), - [anon_sym_usize] = ACTIONS(1452), - [anon_sym_f32] = ACTIONS(1452), - [anon_sym_f64] = ACTIONS(1452), - [anon_sym_bool] = ACTIONS(1452), - [anon_sym_str] = ACTIONS(1452), - [anon_sym_char] = ACTIONS(1452), - [anon_sym_DASH] = ACTIONS(1452), - [anon_sym_SLASH] = ACTIONS(1452), - [anon_sym_PERCENT] = ACTIONS(1452), - [anon_sym_CARET] = ACTIONS(1452), - [anon_sym_AMP] = ACTIONS(1452), - [anon_sym_PIPE] = ACTIONS(1452), - [anon_sym_AMP_AMP] = ACTIONS(1450), - [anon_sym_PIPE_PIPE] = ACTIONS(1450), - [anon_sym_LT_LT] = ACTIONS(1452), - [anon_sym_GT_GT] = ACTIONS(1452), - [anon_sym_PLUS_EQ] = ACTIONS(1450), - [anon_sym_DASH_EQ] = ACTIONS(1450), - [anon_sym_STAR_EQ] = ACTIONS(1450), - [anon_sym_SLASH_EQ] = ACTIONS(1450), - [anon_sym_PERCENT_EQ] = ACTIONS(1450), - [anon_sym_CARET_EQ] = ACTIONS(1450), - [anon_sym_AMP_EQ] = ACTIONS(1450), - [anon_sym_PIPE_EQ] = ACTIONS(1450), - [anon_sym_LT_LT_EQ] = ACTIONS(1450), - [anon_sym_GT_GT_EQ] = ACTIONS(1450), - [anon_sym_EQ] = ACTIONS(1452), - [anon_sym_EQ_EQ] = ACTIONS(1450), - [anon_sym_BANG_EQ] = ACTIONS(1450), - [anon_sym_GT] = ACTIONS(1452), - [anon_sym_LT] = ACTIONS(1452), - [anon_sym_GT_EQ] = ACTIONS(1450), - [anon_sym_LT_EQ] = ACTIONS(1450), - [anon_sym__] = ACTIONS(1452), - [anon_sym_DOT] = ACTIONS(1452), - [anon_sym_DOT_DOT] = ACTIONS(1452), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1450), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1450), - [anon_sym_COMMA] = ACTIONS(1450), - [anon_sym_COLON_COLON] = ACTIONS(1450), - [anon_sym_POUND] = ACTIONS(1450), - [anon_sym_as] = ACTIONS(1452), - [anon_sym_const] = ACTIONS(1452), - [anon_sym_default] = ACTIONS(1452), - [anon_sym_gen] = ACTIONS(1452), - [anon_sym_union] = ACTIONS(1452), - [anon_sym_ref] = ACTIONS(1452), - [anon_sym_else] = ACTIONS(1452), - [sym_mutable_specifier] = ACTIONS(1452), - [anon_sym_raw] = ACTIONS(1452), - [sym_integer_literal] = ACTIONS(1450), - [aux_sym_string_literal_token1] = ACTIONS(1450), - [sym_char_literal] = ACTIONS(1450), - [anon_sym_true] = ACTIONS(1452), - [anon_sym_false] = ACTIONS(1452), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1452), - [sym_super] = ACTIONS(1452), - [sym_crate] = ACTIONS(1452), - [sym_metavariable] = ACTIONS(1450), - [sym__raw_string_literal_start] = ACTIONS(1450), - [sym_float_literal] = ACTIONS(1450), - }, - [STATE(474)] = { - [sym_attribute_item] = STATE(1369), - [sym_inner_attribute_item] = STATE(1369), - [sym_bracketed_type] = STATE(3698), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3419), - [sym_macro_invocation] = STATE(2942), - [sym_scoped_identifier] = STATE(2248), - [sym_scoped_type_identifier] = STATE(3103), - [sym_match_arm] = STATE(1370), - [sym_last_match_arm] = STATE(3501), - [sym_match_pattern] = STATE(3790), - [sym_const_block] = STATE(2942), - [sym__pattern] = STATE(3188), - [sym_generic_pattern] = STATE(2942), - [sym_tuple_pattern] = STATE(2942), - [sym_slice_pattern] = STATE(2942), - [sym_tuple_struct_pattern] = STATE(2942), - [sym_struct_pattern] = STATE(2942), - [sym_remaining_field_pattern] = STATE(2942), - [sym_mut_pattern] = STATE(2942), - [sym_range_pattern] = STATE(2942), - [sym_ref_pattern] = STATE(2942), - [sym_captured_pattern] = STATE(2942), - [sym_reference_pattern] = STATE(2942), - [sym_or_pattern] = STATE(2942), - [sym__literal_pattern] = STATE(2447), - [sym_negative_literal] = STATE(2441), - [sym_string_literal] = STATE(2441), - [sym_raw_string_literal] = STATE(2441), - [sym_boolean_literal] = STATE(2441), + [aux_sym_match_block_repeat1] = STATE(473), + [aux_sym_match_arm_repeat1] = STATE(745), + [sym_identifier] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1749), + [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_u8] = ACTIONS(1755), + [anon_sym_i8] = ACTIONS(1755), + [anon_sym_u16] = ACTIONS(1755), + [anon_sym_i16] = ACTIONS(1755), + [anon_sym_u32] = ACTIONS(1755), + [anon_sym_i32] = ACTIONS(1755), + [anon_sym_u64] = ACTIONS(1755), + [anon_sym_i64] = ACTIONS(1755), + [anon_sym_u128] = ACTIONS(1755), + [anon_sym_i128] = ACTIONS(1755), + [anon_sym_isize] = ACTIONS(1755), + [anon_sym_usize] = ACTIONS(1755), + [anon_sym_f32] = ACTIONS(1755), + [anon_sym_f64] = ACTIONS(1755), + [anon_sym_bool] = ACTIONS(1755), + [anon_sym_str] = ACTIONS(1755), + [anon_sym_char] = ACTIONS(1755), + [anon_sym_DASH] = ACTIONS(1758), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1767), + [anon_sym__] = ACTIONS(1770), + [anon_sym_DOT_DOT] = ACTIONS(1773), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1776), + [anon_sym_COLON_COLON] = ACTIONS(1779), + [anon_sym_POUND] = ACTIONS(1782), + [anon_sym_const] = ACTIONS(1785), + [anon_sym_default] = ACTIONS(1788), + [anon_sym_gen] = ACTIONS(1788), + [anon_sym_union] = ACTIONS(1788), + [anon_sym_ref] = ACTIONS(1791), + [sym_mutable_specifier] = ACTIONS(1794), + [anon_sym_raw] = ACTIONS(1788), + [sym_integer_literal] = ACTIONS(1797), + [aux_sym_string_literal_token1] = ACTIONS(1800), + [sym_char_literal] = ACTIONS(1797), + [anon_sym_true] = ACTIONS(1803), + [anon_sym_false] = ACTIONS(1803), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1806), + [sym_super] = ACTIONS(1806), + [sym_crate] = ACTIONS(1806), + [sym_metavariable] = ACTIONS(1809), + [sym__raw_string_literal_start] = ACTIONS(1812), + [sym_float_literal] = ACTIONS(1797), + }, + [474] = { [sym_line_comment] = STATE(474), [sym_block_comment] = STATE(474), - [aux_sym_match_block_repeat1] = STATE(486), - [aux_sym_match_arm_repeat1] = STATE(616), - [sym_identifier] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_LBRACK] = ACTIONS(1680), - [anon_sym_u8] = ACTIONS(1684), - [anon_sym_i8] = ACTIONS(1684), - [anon_sym_u16] = ACTIONS(1684), - [anon_sym_i16] = ACTIONS(1684), - [anon_sym_u32] = ACTIONS(1684), - [anon_sym_i32] = ACTIONS(1684), - [anon_sym_u64] = ACTIONS(1684), - [anon_sym_i64] = ACTIONS(1684), - [anon_sym_u128] = ACTIONS(1684), - [anon_sym_i128] = ACTIONS(1684), - [anon_sym_isize] = ACTIONS(1684), - [anon_sym_usize] = ACTIONS(1684), - [anon_sym_f32] = ACTIONS(1684), - [anon_sym_f64] = ACTIONS(1684), - [anon_sym_bool] = ACTIONS(1684), - [anon_sym_str] = ACTIONS(1684), - [anon_sym_char] = ACTIONS(1684), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_AMP] = ACTIONS(1688), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1692), - [anon_sym_DOT_DOT] = ACTIONS(1694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_POUND] = ACTIONS(1700), - [anon_sym_const] = ACTIONS(1702), - [anon_sym_default] = ACTIONS(1704), - [anon_sym_gen] = ACTIONS(1704), - [anon_sym_union] = ACTIONS(1704), - [anon_sym_ref] = ACTIONS(1706), - [sym_mutable_specifier] = ACTIONS(1708), - [anon_sym_raw] = ACTIONS(1704), - [sym_integer_literal] = ACTIONS(1710), - [aux_sym_string_literal_token1] = ACTIONS(1712), - [sym_char_literal] = ACTIONS(1710), - [anon_sym_true] = ACTIONS(1714), - [anon_sym_false] = ACTIONS(1714), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1716), - [sym_super] = ACTIONS(1716), - [sym_crate] = ACTIONS(1716), - [sym_metavariable] = ACTIONS(1718), - [sym__raw_string_literal_start] = ACTIONS(1720), - [sym_float_literal] = ACTIONS(1710), - }, - [STATE(475)] = { + [sym_identifier] = ACTIONS(1815), + [anon_sym_LPAREN] = ACTIONS(1817), + [anon_sym_LBRACK] = ACTIONS(1817), + [anon_sym_RBRACE] = ACTIONS(1506), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1508), + [anon_sym_QMARK] = ACTIONS(1506), + [anon_sym_u8] = ACTIONS(1815), + [anon_sym_i8] = ACTIONS(1815), + [anon_sym_u16] = ACTIONS(1815), + [anon_sym_i16] = ACTIONS(1815), + [anon_sym_u32] = ACTIONS(1815), + [anon_sym_i32] = ACTIONS(1815), + [anon_sym_u64] = ACTIONS(1815), + [anon_sym_i64] = ACTIONS(1815), + [anon_sym_u128] = ACTIONS(1815), + [anon_sym_i128] = ACTIONS(1815), + [anon_sym_isize] = ACTIONS(1815), + [anon_sym_usize] = ACTIONS(1815), + [anon_sym_f32] = ACTIONS(1815), + [anon_sym_f64] = ACTIONS(1815), + [anon_sym_bool] = ACTIONS(1815), + [anon_sym_str] = ACTIONS(1815), + [anon_sym_char] = ACTIONS(1815), + [anon_sym_DASH] = ACTIONS(1815), + [anon_sym_SLASH] = ACTIONS(1508), + [anon_sym_PERCENT] = ACTIONS(1508), + [anon_sym_CARET] = ACTIONS(1508), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_PIPE] = ACTIONS(1815), + [anon_sym_AMP_AMP] = ACTIONS(1506), + [anon_sym_PIPE_PIPE] = ACTIONS(1506), + [anon_sym_LT_LT] = ACTIONS(1508), + [anon_sym_GT_GT] = ACTIONS(1508), + [anon_sym_PLUS_EQ] = ACTIONS(1506), + [anon_sym_DASH_EQ] = ACTIONS(1506), + [anon_sym_STAR_EQ] = ACTIONS(1506), + [anon_sym_SLASH_EQ] = ACTIONS(1506), + [anon_sym_PERCENT_EQ] = ACTIONS(1506), + [anon_sym_CARET_EQ] = ACTIONS(1506), + [anon_sym_AMP_EQ] = ACTIONS(1506), + [anon_sym_PIPE_EQ] = ACTIONS(1506), + [anon_sym_LT_LT_EQ] = ACTIONS(1506), + [anon_sym_GT_GT_EQ] = ACTIONS(1506), + [anon_sym_EQ] = ACTIONS(1508), + [anon_sym_EQ_EQ] = ACTIONS(1506), + [anon_sym_BANG_EQ] = ACTIONS(1506), + [anon_sym_GT] = ACTIONS(1508), + [anon_sym_LT] = ACTIONS(1815), + [anon_sym_GT_EQ] = ACTIONS(1506), + [anon_sym_LT_EQ] = ACTIONS(1506), + [anon_sym__] = ACTIONS(1815), + [anon_sym_DOT] = ACTIONS(1508), + [anon_sym_DOT_DOT] = ACTIONS(1815), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1506), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1817), + [anon_sym_COMMA] = ACTIONS(1506), + [anon_sym_COLON_COLON] = ACTIONS(1817), + [anon_sym_POUND] = ACTIONS(1817), + [anon_sym_as] = ACTIONS(1508), + [anon_sym_const] = ACTIONS(1815), + [anon_sym_default] = ACTIONS(1815), + [anon_sym_gen] = ACTIONS(1815), + [anon_sym_union] = ACTIONS(1815), + [anon_sym_ref] = ACTIONS(1815), + [sym_mutable_specifier] = ACTIONS(1815), + [anon_sym_raw] = ACTIONS(1815), + [sym_integer_literal] = ACTIONS(1817), + [aux_sym_string_literal_token1] = ACTIONS(1817), + [sym_char_literal] = ACTIONS(1817), + [anon_sym_true] = ACTIONS(1815), + [anon_sym_false] = ACTIONS(1815), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1815), + [sym_super] = ACTIONS(1815), + [sym_crate] = ACTIONS(1815), + [sym_metavariable] = ACTIONS(1817), + [sym__raw_string_literal_start] = ACTIONS(1817), + [sym_float_literal] = ACTIONS(1817), + }, + [475] = { [sym_line_comment] = STATE(475), [sym_block_comment] = STATE(475), - [sym_identifier] = ACTIONS(1498), - [anon_sym_LPAREN] = ACTIONS(1496), - [anon_sym_LBRACK] = ACTIONS(1496), - [anon_sym_RBRACE] = ACTIONS(1496), - [anon_sym_PLUS] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(1498), - [anon_sym_QMARK] = ACTIONS(1496), - [anon_sym_u8] = ACTIONS(1498), - [anon_sym_i8] = ACTIONS(1498), - [anon_sym_u16] = ACTIONS(1498), - [anon_sym_i16] = ACTIONS(1498), - [anon_sym_u32] = ACTIONS(1498), - [anon_sym_i32] = ACTIONS(1498), - [anon_sym_u64] = ACTIONS(1498), - [anon_sym_i64] = ACTIONS(1498), - [anon_sym_u128] = ACTIONS(1498), - [anon_sym_i128] = ACTIONS(1498), - [anon_sym_isize] = ACTIONS(1498), - [anon_sym_usize] = ACTIONS(1498), - [anon_sym_f32] = ACTIONS(1498), - [anon_sym_f64] = ACTIONS(1498), - [anon_sym_bool] = ACTIONS(1498), - [anon_sym_str] = ACTIONS(1498), - [anon_sym_char] = ACTIONS(1498), - [anon_sym_DASH] = ACTIONS(1498), - [anon_sym_SLASH] = ACTIONS(1498), - [anon_sym_PERCENT] = ACTIONS(1498), - [anon_sym_CARET] = ACTIONS(1498), - [anon_sym_AMP] = ACTIONS(1498), - [anon_sym_PIPE] = ACTIONS(1498), - [anon_sym_AMP_AMP] = ACTIONS(1496), - [anon_sym_PIPE_PIPE] = ACTIONS(1496), - [anon_sym_LT_LT] = ACTIONS(1498), - [anon_sym_GT_GT] = ACTIONS(1498), - [anon_sym_PLUS_EQ] = ACTIONS(1496), - [anon_sym_DASH_EQ] = ACTIONS(1496), - [anon_sym_STAR_EQ] = ACTIONS(1496), - [anon_sym_SLASH_EQ] = ACTIONS(1496), - [anon_sym_PERCENT_EQ] = ACTIONS(1496), - [anon_sym_CARET_EQ] = ACTIONS(1496), - [anon_sym_AMP_EQ] = ACTIONS(1496), - [anon_sym_PIPE_EQ] = ACTIONS(1496), - [anon_sym_LT_LT_EQ] = ACTIONS(1496), - [anon_sym_GT_GT_EQ] = ACTIONS(1496), - [anon_sym_EQ] = ACTIONS(1498), - [anon_sym_EQ_EQ] = ACTIONS(1496), - [anon_sym_BANG_EQ] = ACTIONS(1496), - [anon_sym_GT] = ACTIONS(1498), - [anon_sym_LT] = ACTIONS(1498), - [anon_sym_GT_EQ] = ACTIONS(1496), - [anon_sym_LT_EQ] = ACTIONS(1496), - [anon_sym__] = ACTIONS(1498), - [anon_sym_DOT] = ACTIONS(1498), - [anon_sym_DOT_DOT] = ACTIONS(1498), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1496), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1496), - [anon_sym_COMMA] = ACTIONS(1496), - [anon_sym_COLON_COLON] = ACTIONS(1496), - [anon_sym_POUND] = ACTIONS(1496), - [anon_sym_as] = ACTIONS(1498), - [anon_sym_const] = ACTIONS(1498), - [anon_sym_default] = ACTIONS(1498), - [anon_sym_gen] = ACTIONS(1498), - [anon_sym_union] = ACTIONS(1498), - [anon_sym_ref] = ACTIONS(1498), - [sym_mutable_specifier] = ACTIONS(1498), - [anon_sym_raw] = ACTIONS(1498), - [sym_integer_literal] = ACTIONS(1496), - [aux_sym_string_literal_token1] = ACTIONS(1496), - [sym_char_literal] = ACTIONS(1496), - [anon_sym_true] = ACTIONS(1498), - [anon_sym_false] = ACTIONS(1498), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1498), - [sym_super] = ACTIONS(1498), - [sym_crate] = ACTIONS(1498), - [sym_metavariable] = ACTIONS(1496), - [sym__raw_string_literal_start] = ACTIONS(1496), - [sym_float_literal] = ACTIONS(1496), - }, - [STATE(476)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym_closure_expression] = STATE(3121), - [sym_closure_parameters] = STATE(242), - [sym__pattern] = STATE(2804), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_identifier] = ACTIONS(1458), + [anon_sym_LPAREN] = ACTIONS(1456), + [anon_sym_LBRACK] = ACTIONS(1456), + [anon_sym_RBRACE] = ACTIONS(1456), + [anon_sym_PLUS] = ACTIONS(1458), + [anon_sym_STAR] = ACTIONS(1458), + [anon_sym_QMARK] = ACTIONS(1456), + [anon_sym_u8] = ACTIONS(1458), + [anon_sym_i8] = ACTIONS(1458), + [anon_sym_u16] = ACTIONS(1458), + [anon_sym_i16] = ACTIONS(1458), + [anon_sym_u32] = ACTIONS(1458), + [anon_sym_i32] = ACTIONS(1458), + [anon_sym_u64] = ACTIONS(1458), + [anon_sym_i64] = ACTIONS(1458), + [anon_sym_u128] = ACTIONS(1458), + [anon_sym_i128] = ACTIONS(1458), + [anon_sym_isize] = ACTIONS(1458), + [anon_sym_usize] = ACTIONS(1458), + [anon_sym_f32] = ACTIONS(1458), + [anon_sym_f64] = ACTIONS(1458), + [anon_sym_bool] = ACTIONS(1458), + [anon_sym_str] = ACTIONS(1458), + [anon_sym_char] = ACTIONS(1458), + [anon_sym_DASH] = ACTIONS(1458), + [anon_sym_SLASH] = ACTIONS(1458), + [anon_sym_PERCENT] = ACTIONS(1458), + [anon_sym_CARET] = ACTIONS(1458), + [anon_sym_AMP] = ACTIONS(1458), + [anon_sym_PIPE] = ACTIONS(1458), + [anon_sym_AMP_AMP] = ACTIONS(1456), + [anon_sym_PIPE_PIPE] = ACTIONS(1456), + [anon_sym_LT_LT] = ACTIONS(1458), + [anon_sym_GT_GT] = ACTIONS(1458), + [anon_sym_PLUS_EQ] = ACTIONS(1456), + [anon_sym_DASH_EQ] = ACTIONS(1456), + [anon_sym_STAR_EQ] = ACTIONS(1456), + [anon_sym_SLASH_EQ] = ACTIONS(1456), + [anon_sym_PERCENT_EQ] = ACTIONS(1456), + [anon_sym_CARET_EQ] = ACTIONS(1456), + [anon_sym_AMP_EQ] = ACTIONS(1456), + [anon_sym_PIPE_EQ] = ACTIONS(1456), + [anon_sym_LT_LT_EQ] = ACTIONS(1456), + [anon_sym_GT_GT_EQ] = ACTIONS(1456), + [anon_sym_EQ] = ACTIONS(1458), + [anon_sym_EQ_EQ] = ACTIONS(1456), + [anon_sym_BANG_EQ] = ACTIONS(1456), + [anon_sym_GT] = ACTIONS(1458), + [anon_sym_LT] = ACTIONS(1458), + [anon_sym_GT_EQ] = ACTIONS(1456), + [anon_sym_LT_EQ] = ACTIONS(1456), + [anon_sym__] = ACTIONS(1458), + [anon_sym_DOT] = ACTIONS(1458), + [anon_sym_DOT_DOT] = ACTIONS(1458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1456), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1456), + [anon_sym_COMMA] = ACTIONS(1456), + [anon_sym_COLON_COLON] = ACTIONS(1456), + [anon_sym_POUND] = ACTIONS(1456), + [anon_sym_as] = ACTIONS(1458), + [anon_sym_const] = ACTIONS(1458), + [anon_sym_default] = ACTIONS(1458), + [anon_sym_gen] = ACTIONS(1458), + [anon_sym_union] = ACTIONS(1458), + [anon_sym_ref] = ACTIONS(1458), + [sym_mutable_specifier] = ACTIONS(1458), + [anon_sym_raw] = ACTIONS(1458), + [sym_integer_literal] = ACTIONS(1456), + [aux_sym_string_literal_token1] = ACTIONS(1456), + [sym_char_literal] = ACTIONS(1456), + [anon_sym_true] = ACTIONS(1458), + [anon_sym_false] = ACTIONS(1458), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1458), + [sym_super] = ACTIONS(1458), + [sym_crate] = ACTIONS(1458), + [sym_metavariable] = ACTIONS(1456), + [sym__raw_string_literal_start] = ACTIONS(1456), + [sym_float_literal] = ACTIONS(1456), + }, + [476] = { [sym_line_comment] = STATE(476), [sym_block_comment] = STATE(476), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_RPAREN] = ACTIONS(1734), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1420), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COMMA] = ACTIONS(1742), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_async] = ACTIONS(1746), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_static] = ACTIONS(1428), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [anon_sym_move] = ACTIONS(1432), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), + [sym_identifier] = ACTIONS(1530), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1528), + [anon_sym_RBRACE] = ACTIONS(1528), + [anon_sym_PLUS] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1530), + [anon_sym_QMARK] = ACTIONS(1528), + [anon_sym_u8] = ACTIONS(1530), + [anon_sym_i8] = ACTIONS(1530), + [anon_sym_u16] = ACTIONS(1530), + [anon_sym_i16] = ACTIONS(1530), + [anon_sym_u32] = ACTIONS(1530), + [anon_sym_i32] = ACTIONS(1530), + [anon_sym_u64] = ACTIONS(1530), + [anon_sym_i64] = ACTIONS(1530), + [anon_sym_u128] = ACTIONS(1530), + [anon_sym_i128] = ACTIONS(1530), + [anon_sym_isize] = ACTIONS(1530), + [anon_sym_usize] = ACTIONS(1530), + [anon_sym_f32] = ACTIONS(1530), + [anon_sym_f64] = ACTIONS(1530), + [anon_sym_bool] = ACTIONS(1530), + [anon_sym_str] = ACTIONS(1530), + [anon_sym_char] = ACTIONS(1530), + [anon_sym_DASH] = ACTIONS(1530), + [anon_sym_SLASH] = ACTIONS(1530), + [anon_sym_PERCENT] = ACTIONS(1530), + [anon_sym_CARET] = ACTIONS(1530), + [anon_sym_AMP] = ACTIONS(1530), + [anon_sym_PIPE] = ACTIONS(1530), + [anon_sym_AMP_AMP] = ACTIONS(1528), + [anon_sym_PIPE_PIPE] = ACTIONS(1528), + [anon_sym_LT_LT] = ACTIONS(1530), + [anon_sym_GT_GT] = ACTIONS(1530), + [anon_sym_PLUS_EQ] = ACTIONS(1528), + [anon_sym_DASH_EQ] = ACTIONS(1528), + [anon_sym_STAR_EQ] = ACTIONS(1528), + [anon_sym_SLASH_EQ] = ACTIONS(1528), + [anon_sym_PERCENT_EQ] = ACTIONS(1528), + [anon_sym_CARET_EQ] = ACTIONS(1528), + [anon_sym_AMP_EQ] = ACTIONS(1528), + [anon_sym_PIPE_EQ] = ACTIONS(1528), + [anon_sym_LT_LT_EQ] = ACTIONS(1528), + [anon_sym_GT_GT_EQ] = ACTIONS(1528), + [anon_sym_EQ] = ACTIONS(1530), + [anon_sym_EQ_EQ] = ACTIONS(1528), + [anon_sym_BANG_EQ] = ACTIONS(1528), + [anon_sym_GT] = ACTIONS(1530), + [anon_sym_LT] = ACTIONS(1530), + [anon_sym_GT_EQ] = ACTIONS(1528), + [anon_sym_LT_EQ] = ACTIONS(1528), + [anon_sym__] = ACTIONS(1530), + [anon_sym_DOT] = ACTIONS(1530), + [anon_sym_DOT_DOT] = ACTIONS(1530), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1528), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1528), + [anon_sym_COMMA] = ACTIONS(1528), + [anon_sym_COLON_COLON] = ACTIONS(1528), + [anon_sym_POUND] = ACTIONS(1528), + [anon_sym_as] = ACTIONS(1530), + [anon_sym_const] = ACTIONS(1530), + [anon_sym_default] = ACTIONS(1530), + [anon_sym_gen] = ACTIONS(1530), + [anon_sym_union] = ACTIONS(1530), + [anon_sym_ref] = ACTIONS(1530), + [sym_mutable_specifier] = ACTIONS(1530), + [anon_sym_raw] = ACTIONS(1530), + [sym_integer_literal] = ACTIONS(1528), + [aux_sym_string_literal_token1] = ACTIONS(1528), + [sym_char_literal] = ACTIONS(1528), + [anon_sym_true] = ACTIONS(1530), + [anon_sym_false] = ACTIONS(1530), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [sym_self] = ACTIONS(1530), + [sym_super] = ACTIONS(1530), + [sym_crate] = ACTIONS(1530), + [sym_metavariable] = ACTIONS(1528), + [sym__raw_string_literal_start] = ACTIONS(1528), + [sym_float_literal] = ACTIONS(1528), }, - [STATE(477)] = { + [477] = { + [sym_bracketed_type] = STATE(3787), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_macro_invocation] = STATE(2198), + [sym_scoped_identifier] = STATE(2034), + [sym_scoped_type_identifier] = STATE(2991), + [sym_const_block] = STATE(2198), + [sym_closure_expression] = STATE(3038), + [sym_closure_parameters] = STATE(227), + [sym__pattern] = STATE(2646), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), [sym_line_comment] = STATE(477), [sym_block_comment] = STATE(477), - [sym_identifier] = ACTIONS(1472), - [anon_sym_LPAREN] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(1470), - [anon_sym_RBRACE] = ACTIONS(1470), - [anon_sym_PLUS] = ACTIONS(1472), - [anon_sym_STAR] = ACTIONS(1472), - [anon_sym_QMARK] = ACTIONS(1470), - [anon_sym_u8] = ACTIONS(1472), - [anon_sym_i8] = ACTIONS(1472), - [anon_sym_u16] = ACTIONS(1472), - [anon_sym_i16] = ACTIONS(1472), - [anon_sym_u32] = ACTIONS(1472), - [anon_sym_i32] = ACTIONS(1472), - [anon_sym_u64] = ACTIONS(1472), - [anon_sym_i64] = ACTIONS(1472), - [anon_sym_u128] = ACTIONS(1472), - [anon_sym_i128] = ACTIONS(1472), - [anon_sym_isize] = ACTIONS(1472), - [anon_sym_usize] = ACTIONS(1472), - [anon_sym_f32] = ACTIONS(1472), - [anon_sym_f64] = ACTIONS(1472), - [anon_sym_bool] = ACTIONS(1472), - [anon_sym_str] = ACTIONS(1472), - [anon_sym_char] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1472), - [anon_sym_SLASH] = ACTIONS(1472), - [anon_sym_PERCENT] = ACTIONS(1472), - [anon_sym_CARET] = ACTIONS(1472), - [anon_sym_AMP] = ACTIONS(1472), - [anon_sym_PIPE] = ACTIONS(1472), - [anon_sym_AMP_AMP] = ACTIONS(1470), - [anon_sym_PIPE_PIPE] = ACTIONS(1470), - [anon_sym_LT_LT] = ACTIONS(1472), - [anon_sym_GT_GT] = ACTIONS(1472), - [anon_sym_PLUS_EQ] = ACTIONS(1470), - [anon_sym_DASH_EQ] = ACTIONS(1470), - [anon_sym_STAR_EQ] = ACTIONS(1470), - [anon_sym_SLASH_EQ] = ACTIONS(1470), - [anon_sym_PERCENT_EQ] = ACTIONS(1470), - [anon_sym_CARET_EQ] = ACTIONS(1470), - [anon_sym_AMP_EQ] = ACTIONS(1470), - [anon_sym_PIPE_EQ] = ACTIONS(1470), - [anon_sym_LT_LT_EQ] = ACTIONS(1470), - [anon_sym_GT_GT_EQ] = ACTIONS(1470), - [anon_sym_EQ] = ACTIONS(1472), - [anon_sym_EQ_EQ] = ACTIONS(1470), - [anon_sym_BANG_EQ] = ACTIONS(1470), - [anon_sym_GT] = ACTIONS(1472), - [anon_sym_LT] = ACTIONS(1472), - [anon_sym_GT_EQ] = ACTIONS(1470), - [anon_sym_LT_EQ] = ACTIONS(1470), - [anon_sym__] = ACTIONS(1472), - [anon_sym_DOT] = ACTIONS(1472), - [anon_sym_DOT_DOT] = ACTIONS(1472), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1470), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1470), - [anon_sym_COMMA] = ACTIONS(1470), - [anon_sym_COLON_COLON] = ACTIONS(1470), - [anon_sym_POUND] = ACTIONS(1470), - [anon_sym_as] = ACTIONS(1472), - [anon_sym_const] = ACTIONS(1472), - [anon_sym_default] = ACTIONS(1472), - [anon_sym_gen] = ACTIONS(1472), - [anon_sym_union] = ACTIONS(1472), - [anon_sym_ref] = ACTIONS(1472), - [sym_mutable_specifier] = ACTIONS(1472), - [anon_sym_raw] = ACTIONS(1472), - [sym_integer_literal] = ACTIONS(1470), - [aux_sym_string_literal_token1] = ACTIONS(1470), - [sym_char_literal] = ACTIONS(1470), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1472), - [sym_super] = ACTIONS(1472), - [sym_crate] = ACTIONS(1472), - [sym_metavariable] = ACTIONS(1470), - [sym__raw_string_literal_start] = ACTIONS(1470), - [sym_float_literal] = ACTIONS(1470), - }, - [STATE(478)] = { + [sym_identifier] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_RPAREN] = ACTIONS(1819), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_u8] = ACTIONS(1730), + [anon_sym_i8] = ACTIONS(1730), + [anon_sym_u16] = ACTIONS(1730), + [anon_sym_i16] = ACTIONS(1730), + [anon_sym_u32] = ACTIONS(1730), + [anon_sym_i32] = ACTIONS(1730), + [anon_sym_u64] = ACTIONS(1730), + [anon_sym_i64] = ACTIONS(1730), + [anon_sym_u128] = ACTIONS(1730), + [anon_sym_i128] = ACTIONS(1730), + [anon_sym_isize] = ACTIONS(1730), + [anon_sym_usize] = ACTIONS(1730), + [anon_sym_f32] = ACTIONS(1730), + [anon_sym_f64] = ACTIONS(1730), + [anon_sym_bool] = ACTIONS(1730), + [anon_sym_str] = ACTIONS(1730), + [anon_sym_char] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1412), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COMMA] = ACTIONS(1821), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_async] = ACTIONS(1736), + [anon_sym_const] = ACTIONS(1738), + [anon_sym_default] = ACTIONS(1740), + [anon_sym_gen] = ACTIONS(1740), + [anon_sym_static] = ACTIONS(1420), + [anon_sym_union] = ACTIONS(1740), + [anon_sym_ref] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1422), + [anon_sym_raw] = ACTIONS(1740), + [anon_sym_move] = ACTIONS(1424), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1742), + [sym_super] = ACTIONS(1742), + [sym_crate] = ACTIONS(1742), + [sym_metavariable] = ACTIONS(1744), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [478] = { [sym_line_comment] = STATE(478), [sym_block_comment] = STATE(478), - [sym_identifier] = ACTIONS(1544), - [anon_sym_LPAREN] = ACTIONS(1542), - [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_RBRACE] = ACTIONS(1542), - [anon_sym_PLUS] = ACTIONS(1544), - [anon_sym_STAR] = ACTIONS(1544), - [anon_sym_QMARK] = ACTIONS(1542), - [anon_sym_u8] = ACTIONS(1544), - [anon_sym_i8] = ACTIONS(1544), - [anon_sym_u16] = ACTIONS(1544), - [anon_sym_i16] = ACTIONS(1544), - [anon_sym_u32] = ACTIONS(1544), - [anon_sym_i32] = ACTIONS(1544), - [anon_sym_u64] = ACTIONS(1544), - [anon_sym_i64] = ACTIONS(1544), - [anon_sym_u128] = ACTIONS(1544), - [anon_sym_i128] = ACTIONS(1544), - [anon_sym_isize] = ACTIONS(1544), - [anon_sym_usize] = ACTIONS(1544), - [anon_sym_f32] = ACTIONS(1544), - [anon_sym_f64] = ACTIONS(1544), - [anon_sym_bool] = ACTIONS(1544), - [anon_sym_str] = ACTIONS(1544), - [anon_sym_char] = ACTIONS(1544), - [anon_sym_DASH] = ACTIONS(1544), - [anon_sym_SLASH] = ACTIONS(1544), - [anon_sym_PERCENT] = ACTIONS(1544), - [anon_sym_CARET] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(1544), - [anon_sym_PIPE] = ACTIONS(1544), - [anon_sym_AMP_AMP] = ACTIONS(1542), - [anon_sym_PIPE_PIPE] = ACTIONS(1542), - [anon_sym_LT_LT] = ACTIONS(1544), - [anon_sym_GT_GT] = ACTIONS(1544), - [anon_sym_PLUS_EQ] = ACTIONS(1542), - [anon_sym_DASH_EQ] = ACTIONS(1542), - [anon_sym_STAR_EQ] = ACTIONS(1542), - [anon_sym_SLASH_EQ] = ACTIONS(1542), - [anon_sym_PERCENT_EQ] = ACTIONS(1542), - [anon_sym_CARET_EQ] = ACTIONS(1542), - [anon_sym_AMP_EQ] = ACTIONS(1542), - [anon_sym_PIPE_EQ] = ACTIONS(1542), - [anon_sym_LT_LT_EQ] = ACTIONS(1542), - [anon_sym_GT_GT_EQ] = ACTIONS(1542), - [anon_sym_EQ] = ACTIONS(1544), - [anon_sym_EQ_EQ] = ACTIONS(1542), - [anon_sym_BANG_EQ] = ACTIONS(1542), - [anon_sym_GT] = ACTIONS(1544), - [anon_sym_LT] = ACTIONS(1544), - [anon_sym_GT_EQ] = ACTIONS(1542), - [anon_sym_LT_EQ] = ACTIONS(1542), - [anon_sym__] = ACTIONS(1544), - [anon_sym_DOT] = ACTIONS(1544), - [anon_sym_DOT_DOT] = ACTIONS(1544), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1542), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1542), - [anon_sym_COMMA] = ACTIONS(1542), - [anon_sym_COLON_COLON] = ACTIONS(1542), - [anon_sym_POUND] = ACTIONS(1542), - [anon_sym_as] = ACTIONS(1544), - [anon_sym_const] = ACTIONS(1544), - [anon_sym_default] = ACTIONS(1544), - [anon_sym_gen] = ACTIONS(1544), - [anon_sym_union] = ACTIONS(1544), - [anon_sym_ref] = ACTIONS(1544), - [sym_mutable_specifier] = ACTIONS(1544), - [anon_sym_raw] = ACTIONS(1544), - [sym_integer_literal] = ACTIONS(1542), - [aux_sym_string_literal_token1] = ACTIONS(1542), - [sym_char_literal] = ACTIONS(1542), - [anon_sym_true] = ACTIONS(1544), - [anon_sym_false] = ACTIONS(1544), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1544), - [sym_super] = ACTIONS(1544), - [sym_crate] = ACTIONS(1544), - [sym_metavariable] = ACTIONS(1542), - [sym__raw_string_literal_start] = ACTIONS(1542), - [sym_float_literal] = ACTIONS(1542), - }, - [STATE(479)] = { + [sym_identifier] = ACTIONS(1496), + [anon_sym_LPAREN] = ACTIONS(1494), + [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_RBRACE] = ACTIONS(1494), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(1496), + [anon_sym_QMARK] = ACTIONS(1494), + [anon_sym_u8] = ACTIONS(1496), + [anon_sym_i8] = ACTIONS(1496), + [anon_sym_u16] = ACTIONS(1496), + [anon_sym_i16] = ACTIONS(1496), + [anon_sym_u32] = ACTIONS(1496), + [anon_sym_i32] = ACTIONS(1496), + [anon_sym_u64] = ACTIONS(1496), + [anon_sym_i64] = ACTIONS(1496), + [anon_sym_u128] = ACTIONS(1496), + [anon_sym_i128] = ACTIONS(1496), + [anon_sym_isize] = ACTIONS(1496), + [anon_sym_usize] = ACTIONS(1496), + [anon_sym_f32] = ACTIONS(1496), + [anon_sym_f64] = ACTIONS(1496), + [anon_sym_bool] = ACTIONS(1496), + [anon_sym_str] = ACTIONS(1496), + [anon_sym_char] = ACTIONS(1496), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_SLASH] = ACTIONS(1496), + [anon_sym_PERCENT] = ACTIONS(1496), + [anon_sym_CARET] = ACTIONS(1496), + [anon_sym_AMP] = ACTIONS(1496), + [anon_sym_PIPE] = ACTIONS(1496), + [anon_sym_AMP_AMP] = ACTIONS(1494), + [anon_sym_PIPE_PIPE] = ACTIONS(1494), + [anon_sym_LT_LT] = ACTIONS(1496), + [anon_sym_GT_GT] = ACTIONS(1496), + [anon_sym_PLUS_EQ] = ACTIONS(1494), + [anon_sym_DASH_EQ] = ACTIONS(1494), + [anon_sym_STAR_EQ] = ACTIONS(1494), + [anon_sym_SLASH_EQ] = ACTIONS(1494), + [anon_sym_PERCENT_EQ] = ACTIONS(1494), + [anon_sym_CARET_EQ] = ACTIONS(1494), + [anon_sym_AMP_EQ] = ACTIONS(1494), + [anon_sym_PIPE_EQ] = ACTIONS(1494), + [anon_sym_LT_LT_EQ] = ACTIONS(1494), + [anon_sym_GT_GT_EQ] = ACTIONS(1494), + [anon_sym_EQ] = ACTIONS(1496), + [anon_sym_EQ_EQ] = ACTIONS(1494), + [anon_sym_BANG_EQ] = ACTIONS(1494), + [anon_sym_GT] = ACTIONS(1496), + [anon_sym_LT] = ACTIONS(1496), + [anon_sym_GT_EQ] = ACTIONS(1494), + [anon_sym_LT_EQ] = ACTIONS(1494), + [anon_sym__] = ACTIONS(1496), + [anon_sym_DOT] = ACTIONS(1496), + [anon_sym_DOT_DOT] = ACTIONS(1496), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1494), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1494), + [anon_sym_COMMA] = ACTIONS(1494), + [anon_sym_COLON_COLON] = ACTIONS(1494), + [anon_sym_POUND] = ACTIONS(1494), + [anon_sym_as] = ACTIONS(1496), + [anon_sym_const] = ACTIONS(1496), + [anon_sym_default] = ACTIONS(1496), + [anon_sym_gen] = ACTIONS(1496), + [anon_sym_union] = ACTIONS(1496), + [anon_sym_ref] = ACTIONS(1496), + [sym_mutable_specifier] = ACTIONS(1496), + [anon_sym_raw] = ACTIONS(1496), + [sym_integer_literal] = ACTIONS(1494), + [aux_sym_string_literal_token1] = ACTIONS(1494), + [sym_char_literal] = ACTIONS(1494), + [anon_sym_true] = ACTIONS(1496), + [anon_sym_false] = ACTIONS(1496), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1496), + [sym_super] = ACTIONS(1496), + [sym_crate] = ACTIONS(1496), + [sym_metavariable] = ACTIONS(1494), + [sym__raw_string_literal_start] = ACTIONS(1494), + [sym_float_literal] = ACTIONS(1494), + }, + [479] = { [sym_line_comment] = STATE(479), [sym_block_comment] = STATE(479), - [sym_identifier] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1758), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_RBRACE] = ACTIONS(1504), - [anon_sym_PLUS] = ACTIONS(1506), - [anon_sym_STAR] = ACTIONS(1506), - [anon_sym_QMARK] = ACTIONS(1504), - [anon_sym_u8] = ACTIONS(1756), - [anon_sym_i8] = ACTIONS(1756), - [anon_sym_u16] = ACTIONS(1756), - [anon_sym_i16] = ACTIONS(1756), - [anon_sym_u32] = ACTIONS(1756), - [anon_sym_i32] = ACTIONS(1756), - [anon_sym_u64] = ACTIONS(1756), - [anon_sym_i64] = ACTIONS(1756), - [anon_sym_u128] = ACTIONS(1756), - [anon_sym_i128] = ACTIONS(1756), - [anon_sym_isize] = ACTIONS(1756), - [anon_sym_usize] = ACTIONS(1756), - [anon_sym_f32] = ACTIONS(1756), - [anon_sym_f64] = ACTIONS(1756), - [anon_sym_bool] = ACTIONS(1756), - [anon_sym_str] = ACTIONS(1756), - [anon_sym_char] = ACTIONS(1756), - [anon_sym_DASH] = ACTIONS(1756), - [anon_sym_SLASH] = ACTIONS(1506), - [anon_sym_PERCENT] = ACTIONS(1506), - [anon_sym_CARET] = ACTIONS(1506), - [anon_sym_AMP] = ACTIONS(1756), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_AMP_AMP] = ACTIONS(1504), - [anon_sym_PIPE_PIPE] = ACTIONS(1504), - [anon_sym_LT_LT] = ACTIONS(1506), - [anon_sym_GT_GT] = ACTIONS(1506), - [anon_sym_PLUS_EQ] = ACTIONS(1504), - [anon_sym_DASH_EQ] = ACTIONS(1504), - [anon_sym_STAR_EQ] = ACTIONS(1504), - [anon_sym_SLASH_EQ] = ACTIONS(1504), - [anon_sym_PERCENT_EQ] = ACTIONS(1504), - [anon_sym_CARET_EQ] = ACTIONS(1504), - [anon_sym_AMP_EQ] = ACTIONS(1504), - [anon_sym_PIPE_EQ] = ACTIONS(1504), - [anon_sym_LT_LT_EQ] = ACTIONS(1504), - [anon_sym_GT_GT_EQ] = ACTIONS(1504), - [anon_sym_EQ] = ACTIONS(1506), - [anon_sym_EQ_EQ] = ACTIONS(1504), - [anon_sym_BANG_EQ] = ACTIONS(1504), - [anon_sym_GT] = ACTIONS(1506), - [anon_sym_LT] = ACTIONS(1756), - [anon_sym_GT_EQ] = ACTIONS(1504), - [anon_sym_LT_EQ] = ACTIONS(1504), - [anon_sym__] = ACTIONS(1756), - [anon_sym_DOT] = ACTIONS(1506), - [anon_sym_DOT_DOT] = ACTIONS(1756), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1504), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1758), - [anon_sym_COMMA] = ACTIONS(1504), - [anon_sym_COLON_COLON] = ACTIONS(1758), - [anon_sym_POUND] = ACTIONS(1758), - [anon_sym_as] = ACTIONS(1506), - [anon_sym_const] = ACTIONS(1756), - [anon_sym_default] = ACTIONS(1756), - [anon_sym_gen] = ACTIONS(1756), - [anon_sym_union] = ACTIONS(1756), - [anon_sym_ref] = ACTIONS(1756), - [sym_mutable_specifier] = ACTIONS(1756), - [anon_sym_raw] = ACTIONS(1756), - [sym_integer_literal] = ACTIONS(1758), - [aux_sym_string_literal_token1] = ACTIONS(1758), - [sym_char_literal] = ACTIONS(1758), - [anon_sym_true] = ACTIONS(1756), - [anon_sym_false] = ACTIONS(1756), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1756), - [sym_super] = ACTIONS(1756), - [sym_crate] = ACTIONS(1756), - [sym_metavariable] = ACTIONS(1758), - [sym__raw_string_literal_start] = ACTIONS(1758), - [sym_float_literal] = ACTIONS(1758), - }, - [STATE(480)] = { + [sym_identifier] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1510), + [anon_sym_LBRACK] = ACTIONS(1510), + [anon_sym_RBRACE] = ACTIONS(1510), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_STAR] = ACTIONS(1512), + [anon_sym_QMARK] = ACTIONS(1510), + [anon_sym_u8] = ACTIONS(1512), + [anon_sym_i8] = ACTIONS(1512), + [anon_sym_u16] = ACTIONS(1512), + [anon_sym_i16] = ACTIONS(1512), + [anon_sym_u32] = ACTIONS(1512), + [anon_sym_i32] = ACTIONS(1512), + [anon_sym_u64] = ACTIONS(1512), + [anon_sym_i64] = ACTIONS(1512), + [anon_sym_u128] = ACTIONS(1512), + [anon_sym_i128] = ACTIONS(1512), + [anon_sym_isize] = ACTIONS(1512), + [anon_sym_usize] = ACTIONS(1512), + [anon_sym_f32] = ACTIONS(1512), + [anon_sym_f64] = ACTIONS(1512), + [anon_sym_bool] = ACTIONS(1512), + [anon_sym_str] = ACTIONS(1512), + [anon_sym_char] = ACTIONS(1512), + [anon_sym_DASH] = ACTIONS(1512), + [anon_sym_SLASH] = ACTIONS(1512), + [anon_sym_PERCENT] = ACTIONS(1512), + [anon_sym_CARET] = ACTIONS(1512), + [anon_sym_AMP] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1512), + [anon_sym_AMP_AMP] = ACTIONS(1510), + [anon_sym_PIPE_PIPE] = ACTIONS(1510), + [anon_sym_LT_LT] = ACTIONS(1512), + [anon_sym_GT_GT] = ACTIONS(1512), + [anon_sym_PLUS_EQ] = ACTIONS(1510), + [anon_sym_DASH_EQ] = ACTIONS(1510), + [anon_sym_STAR_EQ] = ACTIONS(1510), + [anon_sym_SLASH_EQ] = ACTIONS(1510), + [anon_sym_PERCENT_EQ] = ACTIONS(1510), + [anon_sym_CARET_EQ] = ACTIONS(1510), + [anon_sym_AMP_EQ] = ACTIONS(1510), + [anon_sym_PIPE_EQ] = ACTIONS(1510), + [anon_sym_LT_LT_EQ] = ACTIONS(1510), + [anon_sym_GT_GT_EQ] = ACTIONS(1510), + [anon_sym_EQ] = ACTIONS(1512), + [anon_sym_EQ_EQ] = ACTIONS(1510), + [anon_sym_BANG_EQ] = ACTIONS(1510), + [anon_sym_GT] = ACTIONS(1512), + [anon_sym_LT] = ACTIONS(1512), + [anon_sym_GT_EQ] = ACTIONS(1510), + [anon_sym_LT_EQ] = ACTIONS(1510), + [anon_sym__] = ACTIONS(1512), + [anon_sym_DOT] = ACTIONS(1512), + [anon_sym_DOT_DOT] = ACTIONS(1512), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1510), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1510), + [anon_sym_COMMA] = ACTIONS(1510), + [anon_sym_COLON_COLON] = ACTIONS(1510), + [anon_sym_POUND] = ACTIONS(1510), + [anon_sym_as] = ACTIONS(1512), + [anon_sym_const] = ACTIONS(1512), + [anon_sym_default] = ACTIONS(1512), + [anon_sym_gen] = ACTIONS(1512), + [anon_sym_union] = ACTIONS(1512), + [anon_sym_ref] = ACTIONS(1512), + [sym_mutable_specifier] = ACTIONS(1512), + [anon_sym_raw] = ACTIONS(1512), + [sym_integer_literal] = ACTIONS(1510), + [aux_sym_string_literal_token1] = ACTIONS(1510), + [sym_char_literal] = ACTIONS(1510), + [anon_sym_true] = ACTIONS(1512), + [anon_sym_false] = ACTIONS(1512), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1512), + [sym_super] = ACTIONS(1512), + [sym_crate] = ACTIONS(1512), + [sym_metavariable] = ACTIONS(1510), + [sym__raw_string_literal_start] = ACTIONS(1510), + [sym_float_literal] = ACTIONS(1510), + }, + [480] = { [sym_line_comment] = STATE(480), [sym_block_comment] = STATE(480), - [sym_identifier] = ACTIONS(1560), - [anon_sym_LPAREN] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1558), - [anon_sym_RBRACE] = ACTIONS(1558), - [anon_sym_PLUS] = ACTIONS(1560), - [anon_sym_STAR] = ACTIONS(1560), - [anon_sym_QMARK] = ACTIONS(1558), - [anon_sym_u8] = ACTIONS(1560), - [anon_sym_i8] = ACTIONS(1560), - [anon_sym_u16] = ACTIONS(1560), - [anon_sym_i16] = ACTIONS(1560), - [anon_sym_u32] = ACTIONS(1560), - [anon_sym_i32] = ACTIONS(1560), - [anon_sym_u64] = ACTIONS(1560), - [anon_sym_i64] = ACTIONS(1560), - [anon_sym_u128] = ACTIONS(1560), - [anon_sym_i128] = ACTIONS(1560), - [anon_sym_isize] = ACTIONS(1560), - [anon_sym_usize] = ACTIONS(1560), - [anon_sym_f32] = ACTIONS(1560), - [anon_sym_f64] = ACTIONS(1560), - [anon_sym_bool] = ACTIONS(1560), - [anon_sym_str] = ACTIONS(1560), - [anon_sym_char] = ACTIONS(1560), - [anon_sym_DASH] = ACTIONS(1560), - [anon_sym_SLASH] = ACTIONS(1560), - [anon_sym_PERCENT] = ACTIONS(1560), - [anon_sym_CARET] = ACTIONS(1560), - [anon_sym_AMP] = ACTIONS(1560), - [anon_sym_PIPE] = ACTIONS(1560), - [anon_sym_AMP_AMP] = ACTIONS(1558), - [anon_sym_PIPE_PIPE] = ACTIONS(1558), - [anon_sym_LT_LT] = ACTIONS(1560), - [anon_sym_GT_GT] = ACTIONS(1560), - [anon_sym_PLUS_EQ] = ACTIONS(1558), - [anon_sym_DASH_EQ] = ACTIONS(1558), - [anon_sym_STAR_EQ] = ACTIONS(1558), - [anon_sym_SLASH_EQ] = ACTIONS(1558), - [anon_sym_PERCENT_EQ] = ACTIONS(1558), - [anon_sym_CARET_EQ] = ACTIONS(1558), - [anon_sym_AMP_EQ] = ACTIONS(1558), - [anon_sym_PIPE_EQ] = ACTIONS(1558), - [anon_sym_LT_LT_EQ] = ACTIONS(1558), - [anon_sym_GT_GT_EQ] = ACTIONS(1558), - [anon_sym_EQ] = ACTIONS(1560), - [anon_sym_EQ_EQ] = ACTIONS(1558), - [anon_sym_BANG_EQ] = ACTIONS(1558), - [anon_sym_GT] = ACTIONS(1560), - [anon_sym_LT] = ACTIONS(1560), - [anon_sym_GT_EQ] = ACTIONS(1558), - [anon_sym_LT_EQ] = ACTIONS(1558), - [anon_sym__] = ACTIONS(1560), - [anon_sym_DOT] = ACTIONS(1560), - [anon_sym_DOT_DOT] = ACTIONS(1560), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1558), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1558), - [anon_sym_COMMA] = ACTIONS(1558), - [anon_sym_COLON_COLON] = ACTIONS(1558), - [anon_sym_POUND] = ACTIONS(1558), - [anon_sym_as] = ACTIONS(1560), - [anon_sym_const] = ACTIONS(1560), - [anon_sym_default] = ACTIONS(1560), - [anon_sym_gen] = ACTIONS(1560), - [anon_sym_union] = ACTIONS(1560), - [anon_sym_ref] = ACTIONS(1560), - [sym_mutable_specifier] = ACTIONS(1560), - [anon_sym_raw] = ACTIONS(1560), - [sym_integer_literal] = ACTIONS(1558), - [aux_sym_string_literal_token1] = ACTIONS(1558), - [sym_char_literal] = ACTIONS(1558), - [anon_sym_true] = ACTIONS(1560), - [anon_sym_false] = ACTIONS(1560), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1560), - [sym_super] = ACTIONS(1560), - [sym_crate] = ACTIONS(1560), - [sym_metavariable] = ACTIONS(1558), - [sym__raw_string_literal_start] = ACTIONS(1558), - [sym_float_literal] = ACTIONS(1558), - }, - [STATE(481)] = { + [sym_identifier] = ACTIONS(1454), + [anon_sym_LPAREN] = ACTIONS(1452), + [anon_sym_LBRACK] = ACTIONS(1452), + [anon_sym_RBRACE] = ACTIONS(1452), + [anon_sym_PLUS] = ACTIONS(1454), + [anon_sym_STAR] = ACTIONS(1454), + [anon_sym_QMARK] = ACTIONS(1452), + [anon_sym_u8] = ACTIONS(1454), + [anon_sym_i8] = ACTIONS(1454), + [anon_sym_u16] = ACTIONS(1454), + [anon_sym_i16] = ACTIONS(1454), + [anon_sym_u32] = ACTIONS(1454), + [anon_sym_i32] = ACTIONS(1454), + [anon_sym_u64] = ACTIONS(1454), + [anon_sym_i64] = ACTIONS(1454), + [anon_sym_u128] = ACTIONS(1454), + [anon_sym_i128] = ACTIONS(1454), + [anon_sym_isize] = ACTIONS(1454), + [anon_sym_usize] = ACTIONS(1454), + [anon_sym_f32] = ACTIONS(1454), + [anon_sym_f64] = ACTIONS(1454), + [anon_sym_bool] = ACTIONS(1454), + [anon_sym_str] = ACTIONS(1454), + [anon_sym_char] = ACTIONS(1454), + [anon_sym_DASH] = ACTIONS(1454), + [anon_sym_SLASH] = ACTIONS(1454), + [anon_sym_PERCENT] = ACTIONS(1454), + [anon_sym_CARET] = ACTIONS(1454), + [anon_sym_AMP] = ACTIONS(1454), + [anon_sym_PIPE] = ACTIONS(1454), + [anon_sym_AMP_AMP] = ACTIONS(1452), + [anon_sym_PIPE_PIPE] = ACTIONS(1452), + [anon_sym_LT_LT] = ACTIONS(1454), + [anon_sym_GT_GT] = ACTIONS(1454), + [anon_sym_PLUS_EQ] = ACTIONS(1452), + [anon_sym_DASH_EQ] = ACTIONS(1452), + [anon_sym_STAR_EQ] = ACTIONS(1452), + [anon_sym_SLASH_EQ] = ACTIONS(1452), + [anon_sym_PERCENT_EQ] = ACTIONS(1452), + [anon_sym_CARET_EQ] = ACTIONS(1452), + [anon_sym_AMP_EQ] = ACTIONS(1452), + [anon_sym_PIPE_EQ] = ACTIONS(1452), + [anon_sym_LT_LT_EQ] = ACTIONS(1452), + [anon_sym_GT_GT_EQ] = ACTIONS(1452), + [anon_sym_EQ] = ACTIONS(1454), + [anon_sym_EQ_EQ] = ACTIONS(1452), + [anon_sym_BANG_EQ] = ACTIONS(1452), + [anon_sym_GT] = ACTIONS(1454), + [anon_sym_LT] = ACTIONS(1454), + [anon_sym_GT_EQ] = ACTIONS(1452), + [anon_sym_LT_EQ] = ACTIONS(1452), + [anon_sym__] = ACTIONS(1454), + [anon_sym_DOT] = ACTIONS(1454), + [anon_sym_DOT_DOT] = ACTIONS(1454), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1452), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1452), + [anon_sym_COMMA] = ACTIONS(1452), + [anon_sym_COLON_COLON] = ACTIONS(1452), + [anon_sym_POUND] = ACTIONS(1452), + [anon_sym_as] = ACTIONS(1454), + [anon_sym_const] = ACTIONS(1454), + [anon_sym_default] = ACTIONS(1454), + [anon_sym_gen] = ACTIONS(1454), + [anon_sym_union] = ACTIONS(1454), + [anon_sym_ref] = ACTIONS(1454), + [sym_mutable_specifier] = ACTIONS(1454), + [anon_sym_raw] = ACTIONS(1454), + [sym_integer_literal] = ACTIONS(1452), + [aux_sym_string_literal_token1] = ACTIONS(1452), + [sym_char_literal] = ACTIONS(1452), + [anon_sym_true] = ACTIONS(1454), + [anon_sym_false] = ACTIONS(1454), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1454), + [sym_super] = ACTIONS(1454), + [sym_crate] = ACTIONS(1454), + [sym_metavariable] = ACTIONS(1452), + [sym__raw_string_literal_start] = ACTIONS(1452), + [sym_float_literal] = ACTIONS(1452), + }, + [481] = { [sym_line_comment] = STATE(481), [sym_block_comment] = STATE(481), - [sym_identifier] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1508), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_RBRACE] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1510), - [anon_sym_STAR] = ACTIONS(1510), - [anon_sym_QMARK] = ACTIONS(1508), - [anon_sym_u8] = ACTIONS(1510), - [anon_sym_i8] = ACTIONS(1510), - [anon_sym_u16] = ACTIONS(1510), - [anon_sym_i16] = ACTIONS(1510), - [anon_sym_u32] = ACTIONS(1510), - [anon_sym_i32] = ACTIONS(1510), - [anon_sym_u64] = ACTIONS(1510), - [anon_sym_i64] = ACTIONS(1510), - [anon_sym_u128] = ACTIONS(1510), - [anon_sym_i128] = ACTIONS(1510), - [anon_sym_isize] = ACTIONS(1510), - [anon_sym_usize] = ACTIONS(1510), - [anon_sym_f32] = ACTIONS(1510), - [anon_sym_f64] = ACTIONS(1510), - [anon_sym_bool] = ACTIONS(1510), - [anon_sym_str] = ACTIONS(1510), - [anon_sym_char] = ACTIONS(1510), - [anon_sym_DASH] = ACTIONS(1510), - [anon_sym_SLASH] = ACTIONS(1510), - [anon_sym_PERCENT] = ACTIONS(1510), - [anon_sym_CARET] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(1510), - [anon_sym_PIPE] = ACTIONS(1510), - [anon_sym_AMP_AMP] = ACTIONS(1508), - [anon_sym_PIPE_PIPE] = ACTIONS(1508), - [anon_sym_LT_LT] = ACTIONS(1510), - [anon_sym_GT_GT] = ACTIONS(1510), - [anon_sym_PLUS_EQ] = ACTIONS(1508), - [anon_sym_DASH_EQ] = ACTIONS(1508), - [anon_sym_STAR_EQ] = ACTIONS(1508), - [anon_sym_SLASH_EQ] = ACTIONS(1508), - [anon_sym_PERCENT_EQ] = ACTIONS(1508), - [anon_sym_CARET_EQ] = ACTIONS(1508), - [anon_sym_AMP_EQ] = ACTIONS(1508), - [anon_sym_PIPE_EQ] = ACTIONS(1508), - [anon_sym_LT_LT_EQ] = ACTIONS(1508), - [anon_sym_GT_GT_EQ] = ACTIONS(1508), - [anon_sym_EQ] = ACTIONS(1510), - [anon_sym_EQ_EQ] = ACTIONS(1508), - [anon_sym_BANG_EQ] = ACTIONS(1508), - [anon_sym_GT] = ACTIONS(1510), - [anon_sym_LT] = ACTIONS(1510), - [anon_sym_GT_EQ] = ACTIONS(1508), - [anon_sym_LT_EQ] = ACTIONS(1508), - [anon_sym__] = ACTIONS(1510), - [anon_sym_DOT] = ACTIONS(1510), - [anon_sym_DOT_DOT] = ACTIONS(1510), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1508), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1508), - [anon_sym_COMMA] = ACTIONS(1508), - [anon_sym_COLON_COLON] = ACTIONS(1508), - [anon_sym_POUND] = ACTIONS(1508), - [anon_sym_as] = ACTIONS(1510), - [anon_sym_const] = ACTIONS(1510), - [anon_sym_default] = ACTIONS(1510), - [anon_sym_gen] = ACTIONS(1510), - [anon_sym_union] = ACTIONS(1510), - [anon_sym_ref] = ACTIONS(1510), - [sym_mutable_specifier] = ACTIONS(1510), - [anon_sym_raw] = ACTIONS(1510), - [sym_integer_literal] = ACTIONS(1508), - [aux_sym_string_literal_token1] = ACTIONS(1508), - [sym_char_literal] = ACTIONS(1508), - [anon_sym_true] = ACTIONS(1510), - [anon_sym_false] = ACTIONS(1510), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1510), - [sym_super] = ACTIONS(1510), - [sym_crate] = ACTIONS(1510), - [sym_metavariable] = ACTIONS(1508), - [sym__raw_string_literal_start] = ACTIONS(1508), - [sym_float_literal] = ACTIONS(1508), - }, - [STATE(482)] = { + [sym_identifier] = ACTIONS(1468), + [anon_sym_LPAREN] = ACTIONS(1466), + [anon_sym_LBRACK] = ACTIONS(1466), + [anon_sym_RBRACE] = ACTIONS(1466), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_STAR] = ACTIONS(1468), + [anon_sym_QMARK] = ACTIONS(1466), + [anon_sym_u8] = ACTIONS(1468), + [anon_sym_i8] = ACTIONS(1468), + [anon_sym_u16] = ACTIONS(1468), + [anon_sym_i16] = ACTIONS(1468), + [anon_sym_u32] = ACTIONS(1468), + [anon_sym_i32] = ACTIONS(1468), + [anon_sym_u64] = ACTIONS(1468), + [anon_sym_i64] = ACTIONS(1468), + [anon_sym_u128] = ACTIONS(1468), + [anon_sym_i128] = ACTIONS(1468), + [anon_sym_isize] = ACTIONS(1468), + [anon_sym_usize] = ACTIONS(1468), + [anon_sym_f32] = ACTIONS(1468), + [anon_sym_f64] = ACTIONS(1468), + [anon_sym_bool] = ACTIONS(1468), + [anon_sym_str] = ACTIONS(1468), + [anon_sym_char] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_SLASH] = ACTIONS(1468), + [anon_sym_PERCENT] = ACTIONS(1468), + [anon_sym_CARET] = ACTIONS(1468), + [anon_sym_AMP] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_AMP_AMP] = ACTIONS(1466), + [anon_sym_PIPE_PIPE] = ACTIONS(1466), + [anon_sym_LT_LT] = ACTIONS(1468), + [anon_sym_GT_GT] = ACTIONS(1468), + [anon_sym_PLUS_EQ] = ACTIONS(1466), + [anon_sym_DASH_EQ] = ACTIONS(1466), + [anon_sym_STAR_EQ] = ACTIONS(1466), + [anon_sym_SLASH_EQ] = ACTIONS(1466), + [anon_sym_PERCENT_EQ] = ACTIONS(1466), + [anon_sym_CARET_EQ] = ACTIONS(1466), + [anon_sym_AMP_EQ] = ACTIONS(1466), + [anon_sym_PIPE_EQ] = ACTIONS(1466), + [anon_sym_LT_LT_EQ] = ACTIONS(1466), + [anon_sym_GT_GT_EQ] = ACTIONS(1466), + [anon_sym_EQ] = ACTIONS(1468), + [anon_sym_EQ_EQ] = ACTIONS(1466), + [anon_sym_BANG_EQ] = ACTIONS(1466), + [anon_sym_GT] = ACTIONS(1468), + [anon_sym_LT] = ACTIONS(1468), + [anon_sym_GT_EQ] = ACTIONS(1466), + [anon_sym_LT_EQ] = ACTIONS(1466), + [anon_sym__] = ACTIONS(1468), + [anon_sym_DOT] = ACTIONS(1468), + [anon_sym_DOT_DOT] = ACTIONS(1468), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1466), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1466), + [anon_sym_COMMA] = ACTIONS(1466), + [anon_sym_COLON_COLON] = ACTIONS(1466), + [anon_sym_POUND] = ACTIONS(1466), + [anon_sym_as] = ACTIONS(1468), + [anon_sym_const] = ACTIONS(1468), + [anon_sym_default] = ACTIONS(1468), + [anon_sym_gen] = ACTIONS(1468), + [anon_sym_union] = ACTIONS(1468), + [anon_sym_ref] = ACTIONS(1468), + [sym_mutable_specifier] = ACTIONS(1468), + [anon_sym_raw] = ACTIONS(1468), + [sym_integer_literal] = ACTIONS(1466), + [aux_sym_string_literal_token1] = ACTIONS(1466), + [sym_char_literal] = ACTIONS(1466), + [anon_sym_true] = ACTIONS(1468), + [anon_sym_false] = ACTIONS(1468), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1468), + [sym_super] = ACTIONS(1468), + [sym_crate] = ACTIONS(1468), + [sym_metavariable] = ACTIONS(1466), + [sym__raw_string_literal_start] = ACTIONS(1466), + [sym_float_literal] = ACTIONS(1466), + }, + [482] = { [sym_line_comment] = STATE(482), [sym_block_comment] = STATE(482), - [sym_identifier] = ACTIONS(1540), - [anon_sym_LPAREN] = ACTIONS(1538), - [anon_sym_LBRACK] = ACTIONS(1538), - [anon_sym_RBRACE] = ACTIONS(1538), - [anon_sym_PLUS] = ACTIONS(1540), - [anon_sym_STAR] = ACTIONS(1540), - [anon_sym_QMARK] = ACTIONS(1538), - [anon_sym_u8] = ACTIONS(1540), - [anon_sym_i8] = ACTIONS(1540), - [anon_sym_u16] = ACTIONS(1540), - [anon_sym_i16] = ACTIONS(1540), - [anon_sym_u32] = ACTIONS(1540), - [anon_sym_i32] = ACTIONS(1540), - [anon_sym_u64] = ACTIONS(1540), - [anon_sym_i64] = ACTIONS(1540), - [anon_sym_u128] = ACTIONS(1540), - [anon_sym_i128] = ACTIONS(1540), - [anon_sym_isize] = ACTIONS(1540), - [anon_sym_usize] = ACTIONS(1540), - [anon_sym_f32] = ACTIONS(1540), - [anon_sym_f64] = ACTIONS(1540), - [anon_sym_bool] = ACTIONS(1540), - [anon_sym_str] = ACTIONS(1540), - [anon_sym_char] = ACTIONS(1540), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_SLASH] = ACTIONS(1540), - [anon_sym_PERCENT] = ACTIONS(1540), - [anon_sym_CARET] = ACTIONS(1540), - [anon_sym_AMP] = ACTIONS(1540), - [anon_sym_PIPE] = ACTIONS(1540), - [anon_sym_AMP_AMP] = ACTIONS(1538), - [anon_sym_PIPE_PIPE] = ACTIONS(1538), - [anon_sym_LT_LT] = ACTIONS(1540), - [anon_sym_GT_GT] = ACTIONS(1540), - [anon_sym_PLUS_EQ] = ACTIONS(1538), - [anon_sym_DASH_EQ] = ACTIONS(1538), - [anon_sym_STAR_EQ] = ACTIONS(1538), - [anon_sym_SLASH_EQ] = ACTIONS(1538), - [anon_sym_PERCENT_EQ] = ACTIONS(1538), - [anon_sym_CARET_EQ] = ACTIONS(1538), - [anon_sym_AMP_EQ] = ACTIONS(1538), - [anon_sym_PIPE_EQ] = ACTIONS(1538), - [anon_sym_LT_LT_EQ] = ACTIONS(1538), - [anon_sym_GT_GT_EQ] = ACTIONS(1538), - [anon_sym_EQ] = ACTIONS(1540), - [anon_sym_EQ_EQ] = ACTIONS(1538), - [anon_sym_BANG_EQ] = ACTIONS(1538), - [anon_sym_GT] = ACTIONS(1540), - [anon_sym_LT] = ACTIONS(1540), - [anon_sym_GT_EQ] = ACTIONS(1538), - [anon_sym_LT_EQ] = ACTIONS(1538), - [anon_sym__] = ACTIONS(1540), - [anon_sym_DOT] = ACTIONS(1540), - [anon_sym_DOT_DOT] = ACTIONS(1540), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1538), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1538), - [anon_sym_COMMA] = ACTIONS(1538), - [anon_sym_COLON_COLON] = ACTIONS(1538), - [anon_sym_POUND] = ACTIONS(1538), - [anon_sym_as] = ACTIONS(1540), - [anon_sym_const] = ACTIONS(1540), - [anon_sym_default] = ACTIONS(1540), - [anon_sym_gen] = ACTIONS(1540), - [anon_sym_union] = ACTIONS(1540), - [anon_sym_ref] = ACTIONS(1540), - [sym_mutable_specifier] = ACTIONS(1540), - [anon_sym_raw] = ACTIONS(1540), - [sym_integer_literal] = ACTIONS(1538), - [aux_sym_string_literal_token1] = ACTIONS(1538), - [sym_char_literal] = ACTIONS(1538), - [anon_sym_true] = ACTIONS(1540), - [anon_sym_false] = ACTIONS(1540), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1540), - [sym_super] = ACTIONS(1540), - [sym_crate] = ACTIONS(1540), - [sym_metavariable] = ACTIONS(1538), - [sym__raw_string_literal_start] = ACTIONS(1538), - [sym_float_literal] = ACTIONS(1538), - }, - [STATE(483)] = { + [sym_identifier] = ACTIONS(1500), + [anon_sym_LPAREN] = ACTIONS(1498), + [anon_sym_LBRACK] = ACTIONS(1498), + [anon_sym_RBRACE] = ACTIONS(1498), + [anon_sym_PLUS] = ACTIONS(1500), + [anon_sym_STAR] = ACTIONS(1500), + [anon_sym_QMARK] = ACTIONS(1498), + [anon_sym_u8] = ACTIONS(1500), + [anon_sym_i8] = ACTIONS(1500), + [anon_sym_u16] = ACTIONS(1500), + [anon_sym_i16] = ACTIONS(1500), + [anon_sym_u32] = ACTIONS(1500), + [anon_sym_i32] = ACTIONS(1500), + [anon_sym_u64] = ACTIONS(1500), + [anon_sym_i64] = ACTIONS(1500), + [anon_sym_u128] = ACTIONS(1500), + [anon_sym_i128] = ACTIONS(1500), + [anon_sym_isize] = ACTIONS(1500), + [anon_sym_usize] = ACTIONS(1500), + [anon_sym_f32] = ACTIONS(1500), + [anon_sym_f64] = ACTIONS(1500), + [anon_sym_bool] = ACTIONS(1500), + [anon_sym_str] = ACTIONS(1500), + [anon_sym_char] = ACTIONS(1500), + [anon_sym_DASH] = ACTIONS(1500), + [anon_sym_SLASH] = ACTIONS(1500), + [anon_sym_PERCENT] = ACTIONS(1500), + [anon_sym_CARET] = ACTIONS(1500), + [anon_sym_AMP] = ACTIONS(1500), + [anon_sym_PIPE] = ACTIONS(1500), + [anon_sym_AMP_AMP] = ACTIONS(1498), + [anon_sym_PIPE_PIPE] = ACTIONS(1498), + [anon_sym_LT_LT] = ACTIONS(1500), + [anon_sym_GT_GT] = ACTIONS(1500), + [anon_sym_PLUS_EQ] = ACTIONS(1498), + [anon_sym_DASH_EQ] = ACTIONS(1498), + [anon_sym_STAR_EQ] = ACTIONS(1498), + [anon_sym_SLASH_EQ] = ACTIONS(1498), + [anon_sym_PERCENT_EQ] = ACTIONS(1498), + [anon_sym_CARET_EQ] = ACTIONS(1498), + [anon_sym_AMP_EQ] = ACTIONS(1498), + [anon_sym_PIPE_EQ] = ACTIONS(1498), + [anon_sym_LT_LT_EQ] = ACTIONS(1498), + [anon_sym_GT_GT_EQ] = ACTIONS(1498), + [anon_sym_EQ] = ACTIONS(1500), + [anon_sym_EQ_EQ] = ACTIONS(1498), + [anon_sym_BANG_EQ] = ACTIONS(1498), + [anon_sym_GT] = ACTIONS(1500), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_GT_EQ] = ACTIONS(1498), + [anon_sym_LT_EQ] = ACTIONS(1498), + [anon_sym__] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(1500), + [anon_sym_DOT_DOT] = ACTIONS(1500), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1498), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1498), + [anon_sym_COMMA] = ACTIONS(1498), + [anon_sym_COLON_COLON] = ACTIONS(1498), + [anon_sym_POUND] = ACTIONS(1498), + [anon_sym_as] = ACTIONS(1500), + [anon_sym_const] = ACTIONS(1500), + [anon_sym_default] = ACTIONS(1500), + [anon_sym_gen] = ACTIONS(1500), + [anon_sym_union] = ACTIONS(1500), + [anon_sym_ref] = ACTIONS(1500), + [sym_mutable_specifier] = ACTIONS(1500), + [anon_sym_raw] = ACTIONS(1500), + [sym_integer_literal] = ACTIONS(1498), + [aux_sym_string_literal_token1] = ACTIONS(1498), + [sym_char_literal] = ACTIONS(1498), + [anon_sym_true] = ACTIONS(1500), + [anon_sym_false] = ACTIONS(1500), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1500), + [sym_super] = ACTIONS(1500), + [sym_crate] = ACTIONS(1500), + [sym_metavariable] = ACTIONS(1498), + [sym__raw_string_literal_start] = ACTIONS(1498), + [sym_float_literal] = ACTIONS(1498), + }, + [483] = { [sym_line_comment] = STATE(483), [sym_block_comment] = STATE(483), - [sym_identifier] = ACTIONS(1486), - [anon_sym_LPAREN] = ACTIONS(1484), - [anon_sym_LBRACK] = ACTIONS(1484), - [anon_sym_RBRACE] = ACTIONS(1484), - [anon_sym_PLUS] = ACTIONS(1486), - [anon_sym_STAR] = ACTIONS(1486), - [anon_sym_QMARK] = ACTIONS(1484), - [anon_sym_u8] = ACTIONS(1486), - [anon_sym_i8] = ACTIONS(1486), - [anon_sym_u16] = ACTIONS(1486), - [anon_sym_i16] = ACTIONS(1486), - [anon_sym_u32] = ACTIONS(1486), - [anon_sym_i32] = ACTIONS(1486), - [anon_sym_u64] = ACTIONS(1486), - [anon_sym_i64] = ACTIONS(1486), - [anon_sym_u128] = ACTIONS(1486), - [anon_sym_i128] = ACTIONS(1486), - [anon_sym_isize] = ACTIONS(1486), - [anon_sym_usize] = ACTIONS(1486), - [anon_sym_f32] = ACTIONS(1486), - [anon_sym_f64] = ACTIONS(1486), - [anon_sym_bool] = ACTIONS(1486), - [anon_sym_str] = ACTIONS(1486), - [anon_sym_char] = ACTIONS(1486), - [anon_sym_DASH] = ACTIONS(1486), - [anon_sym_SLASH] = ACTIONS(1486), - [anon_sym_PERCENT] = ACTIONS(1486), - [anon_sym_CARET] = ACTIONS(1486), - [anon_sym_AMP] = ACTIONS(1486), - [anon_sym_PIPE] = ACTIONS(1486), - [anon_sym_AMP_AMP] = ACTIONS(1484), - [anon_sym_PIPE_PIPE] = ACTIONS(1484), - [anon_sym_LT_LT] = ACTIONS(1486), - [anon_sym_GT_GT] = ACTIONS(1486), - [anon_sym_PLUS_EQ] = ACTIONS(1484), - [anon_sym_DASH_EQ] = ACTIONS(1484), - [anon_sym_STAR_EQ] = ACTIONS(1484), - [anon_sym_SLASH_EQ] = ACTIONS(1484), - [anon_sym_PERCENT_EQ] = ACTIONS(1484), - [anon_sym_CARET_EQ] = ACTIONS(1484), - [anon_sym_AMP_EQ] = ACTIONS(1484), - [anon_sym_PIPE_EQ] = ACTIONS(1484), - [anon_sym_LT_LT_EQ] = ACTIONS(1484), - [anon_sym_GT_GT_EQ] = ACTIONS(1484), - [anon_sym_EQ] = ACTIONS(1486), - [anon_sym_EQ_EQ] = ACTIONS(1484), - [anon_sym_BANG_EQ] = ACTIONS(1484), - [anon_sym_GT] = ACTIONS(1486), - [anon_sym_LT] = ACTIONS(1486), - [anon_sym_GT_EQ] = ACTIONS(1484), - [anon_sym_LT_EQ] = ACTIONS(1484), - [anon_sym__] = ACTIONS(1486), - [anon_sym_DOT] = ACTIONS(1486), - [anon_sym_DOT_DOT] = ACTIONS(1486), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1484), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1484), - [anon_sym_COMMA] = ACTIONS(1484), - [anon_sym_COLON_COLON] = ACTIONS(1484), - [anon_sym_POUND] = ACTIONS(1484), - [anon_sym_as] = ACTIONS(1486), - [anon_sym_const] = ACTIONS(1486), - [anon_sym_default] = ACTIONS(1486), - [anon_sym_gen] = ACTIONS(1486), - [anon_sym_union] = ACTIONS(1486), - [anon_sym_ref] = ACTIONS(1486), - [sym_mutable_specifier] = ACTIONS(1486), - [anon_sym_raw] = ACTIONS(1486), - [sym_integer_literal] = ACTIONS(1484), - [aux_sym_string_literal_token1] = ACTIONS(1484), - [sym_char_literal] = ACTIONS(1484), - [anon_sym_true] = ACTIONS(1486), - [anon_sym_false] = ACTIONS(1486), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1486), - [sym_super] = ACTIONS(1486), - [sym_crate] = ACTIONS(1486), - [sym_metavariable] = ACTIONS(1484), - [sym__raw_string_literal_start] = ACTIONS(1484), - [sym_float_literal] = ACTIONS(1484), - }, - [STATE(484)] = { + [sym_identifier] = ACTIONS(1534), + [anon_sym_LPAREN] = ACTIONS(1532), + [anon_sym_LBRACK] = ACTIONS(1532), + [anon_sym_RBRACE] = ACTIONS(1532), + [anon_sym_PLUS] = ACTIONS(1534), + [anon_sym_STAR] = ACTIONS(1534), + [anon_sym_QMARK] = ACTIONS(1532), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_DASH] = ACTIONS(1534), + [anon_sym_SLASH] = ACTIONS(1534), + [anon_sym_PERCENT] = ACTIONS(1534), + [anon_sym_CARET] = ACTIONS(1534), + [anon_sym_AMP] = ACTIONS(1534), + [anon_sym_PIPE] = ACTIONS(1534), + [anon_sym_AMP_AMP] = ACTIONS(1532), + [anon_sym_PIPE_PIPE] = ACTIONS(1532), + [anon_sym_LT_LT] = ACTIONS(1534), + [anon_sym_GT_GT] = ACTIONS(1534), + [anon_sym_PLUS_EQ] = ACTIONS(1532), + [anon_sym_DASH_EQ] = ACTIONS(1532), + [anon_sym_STAR_EQ] = ACTIONS(1532), + [anon_sym_SLASH_EQ] = ACTIONS(1532), + [anon_sym_PERCENT_EQ] = ACTIONS(1532), + [anon_sym_CARET_EQ] = ACTIONS(1532), + [anon_sym_AMP_EQ] = ACTIONS(1532), + [anon_sym_PIPE_EQ] = ACTIONS(1532), + [anon_sym_LT_LT_EQ] = ACTIONS(1532), + [anon_sym_GT_GT_EQ] = ACTIONS(1532), + [anon_sym_EQ] = ACTIONS(1534), + [anon_sym_EQ_EQ] = ACTIONS(1532), + [anon_sym_BANG_EQ] = ACTIONS(1532), + [anon_sym_GT] = ACTIONS(1534), + [anon_sym_LT] = ACTIONS(1534), + [anon_sym_GT_EQ] = ACTIONS(1532), + [anon_sym_LT_EQ] = ACTIONS(1532), + [anon_sym__] = ACTIONS(1534), + [anon_sym_DOT] = ACTIONS(1534), + [anon_sym_DOT_DOT] = ACTIONS(1534), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1532), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1532), + [anon_sym_COMMA] = ACTIONS(1532), + [anon_sym_COLON_COLON] = ACTIONS(1532), + [anon_sym_POUND] = ACTIONS(1532), + [anon_sym_as] = ACTIONS(1534), + [anon_sym_const] = ACTIONS(1534), + [anon_sym_default] = ACTIONS(1534), + [anon_sym_gen] = ACTIONS(1534), + [anon_sym_union] = ACTIONS(1534), + [anon_sym_ref] = ACTIONS(1534), + [sym_mutable_specifier] = ACTIONS(1534), + [anon_sym_raw] = ACTIONS(1534), + [sym_integer_literal] = ACTIONS(1532), + [aux_sym_string_literal_token1] = ACTIONS(1532), + [sym_char_literal] = ACTIONS(1532), + [anon_sym_true] = ACTIONS(1534), + [anon_sym_false] = ACTIONS(1534), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1534), + [sym_super] = ACTIONS(1534), + [sym_crate] = ACTIONS(1534), + [sym_metavariable] = ACTIONS(1532), + [sym__raw_string_literal_start] = ACTIONS(1532), + [sym_float_literal] = ACTIONS(1532), + }, + [484] = { [sym_line_comment] = STATE(484), [sym_block_comment] = STATE(484), - [sym_identifier] = ACTIONS(1460), - [anon_sym_LPAREN] = ACTIONS(1458), - [anon_sym_LBRACK] = ACTIONS(1458), - [anon_sym_RBRACE] = ACTIONS(1458), - [anon_sym_PLUS] = ACTIONS(1460), - [anon_sym_STAR] = ACTIONS(1460), - [anon_sym_QMARK] = ACTIONS(1458), - [anon_sym_u8] = ACTIONS(1460), - [anon_sym_i8] = ACTIONS(1460), - [anon_sym_u16] = ACTIONS(1460), - [anon_sym_i16] = ACTIONS(1460), - [anon_sym_u32] = ACTIONS(1460), - [anon_sym_i32] = ACTIONS(1460), - [anon_sym_u64] = ACTIONS(1460), - [anon_sym_i64] = ACTIONS(1460), - [anon_sym_u128] = ACTIONS(1460), - [anon_sym_i128] = ACTIONS(1460), - [anon_sym_isize] = ACTIONS(1460), - [anon_sym_usize] = ACTIONS(1460), - [anon_sym_f32] = ACTIONS(1460), - [anon_sym_f64] = ACTIONS(1460), - [anon_sym_bool] = ACTIONS(1460), - [anon_sym_str] = ACTIONS(1460), - [anon_sym_char] = ACTIONS(1460), - [anon_sym_DASH] = ACTIONS(1460), - [anon_sym_SLASH] = ACTIONS(1460), - [anon_sym_PERCENT] = ACTIONS(1460), - [anon_sym_CARET] = ACTIONS(1460), - [anon_sym_AMP] = ACTIONS(1460), - [anon_sym_PIPE] = ACTIONS(1460), - [anon_sym_AMP_AMP] = ACTIONS(1458), - [anon_sym_PIPE_PIPE] = ACTIONS(1458), - [anon_sym_LT_LT] = ACTIONS(1460), - [anon_sym_GT_GT] = ACTIONS(1460), - [anon_sym_PLUS_EQ] = ACTIONS(1458), - [anon_sym_DASH_EQ] = ACTIONS(1458), - [anon_sym_STAR_EQ] = ACTIONS(1458), - [anon_sym_SLASH_EQ] = ACTIONS(1458), - [anon_sym_PERCENT_EQ] = ACTIONS(1458), - [anon_sym_CARET_EQ] = ACTIONS(1458), - [anon_sym_AMP_EQ] = ACTIONS(1458), - [anon_sym_PIPE_EQ] = ACTIONS(1458), - [anon_sym_LT_LT_EQ] = ACTIONS(1458), - [anon_sym_GT_GT_EQ] = ACTIONS(1458), - [anon_sym_EQ] = ACTIONS(1460), - [anon_sym_EQ_EQ] = ACTIONS(1458), - [anon_sym_BANG_EQ] = ACTIONS(1458), - [anon_sym_GT] = ACTIONS(1460), - [anon_sym_LT] = ACTIONS(1460), - [anon_sym_GT_EQ] = ACTIONS(1458), - [anon_sym_LT_EQ] = ACTIONS(1458), - [anon_sym__] = ACTIONS(1460), - [anon_sym_DOT] = ACTIONS(1460), - [anon_sym_DOT_DOT] = ACTIONS(1460), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1458), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1458), - [anon_sym_COMMA] = ACTIONS(1458), - [anon_sym_COLON_COLON] = ACTIONS(1458), - [anon_sym_POUND] = ACTIONS(1458), - [anon_sym_as] = ACTIONS(1460), - [anon_sym_const] = ACTIONS(1460), - [anon_sym_default] = ACTIONS(1460), - [anon_sym_gen] = ACTIONS(1460), - [anon_sym_union] = ACTIONS(1460), - [anon_sym_ref] = ACTIONS(1460), - [sym_mutable_specifier] = ACTIONS(1460), - [anon_sym_raw] = ACTIONS(1460), - [sym_integer_literal] = ACTIONS(1458), - [aux_sym_string_literal_token1] = ACTIONS(1458), - [sym_char_literal] = ACTIONS(1458), - [anon_sym_true] = ACTIONS(1460), - [anon_sym_false] = ACTIONS(1460), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1460), - [sym_super] = ACTIONS(1460), - [sym_crate] = ACTIONS(1460), - [sym_metavariable] = ACTIONS(1458), - [sym__raw_string_literal_start] = ACTIONS(1458), - [sym_float_literal] = ACTIONS(1458), - }, - [STATE(485)] = { + [sym_identifier] = ACTIONS(1542), + [anon_sym_LPAREN] = ACTIONS(1540), + [anon_sym_LBRACK] = ACTIONS(1540), + [anon_sym_RBRACE] = ACTIONS(1540), + [anon_sym_PLUS] = ACTIONS(1542), + [anon_sym_STAR] = ACTIONS(1542), + [anon_sym_QMARK] = ACTIONS(1540), + [anon_sym_u8] = ACTIONS(1542), + [anon_sym_i8] = ACTIONS(1542), + [anon_sym_u16] = ACTIONS(1542), + [anon_sym_i16] = ACTIONS(1542), + [anon_sym_u32] = ACTIONS(1542), + [anon_sym_i32] = ACTIONS(1542), + [anon_sym_u64] = ACTIONS(1542), + [anon_sym_i64] = ACTIONS(1542), + [anon_sym_u128] = ACTIONS(1542), + [anon_sym_i128] = ACTIONS(1542), + [anon_sym_isize] = ACTIONS(1542), + [anon_sym_usize] = ACTIONS(1542), + [anon_sym_f32] = ACTIONS(1542), + [anon_sym_f64] = ACTIONS(1542), + [anon_sym_bool] = ACTIONS(1542), + [anon_sym_str] = ACTIONS(1542), + [anon_sym_char] = ACTIONS(1542), + [anon_sym_DASH] = ACTIONS(1542), + [anon_sym_SLASH] = ACTIONS(1542), + [anon_sym_PERCENT] = ACTIONS(1542), + [anon_sym_CARET] = ACTIONS(1542), + [anon_sym_AMP] = ACTIONS(1542), + [anon_sym_PIPE] = ACTIONS(1542), + [anon_sym_AMP_AMP] = ACTIONS(1540), + [anon_sym_PIPE_PIPE] = ACTIONS(1540), + [anon_sym_LT_LT] = ACTIONS(1542), + [anon_sym_GT_GT] = ACTIONS(1542), + [anon_sym_PLUS_EQ] = ACTIONS(1540), + [anon_sym_DASH_EQ] = ACTIONS(1540), + [anon_sym_STAR_EQ] = ACTIONS(1540), + [anon_sym_SLASH_EQ] = ACTIONS(1540), + [anon_sym_PERCENT_EQ] = ACTIONS(1540), + [anon_sym_CARET_EQ] = ACTIONS(1540), + [anon_sym_AMP_EQ] = ACTIONS(1540), + [anon_sym_PIPE_EQ] = ACTIONS(1540), + [anon_sym_LT_LT_EQ] = ACTIONS(1540), + [anon_sym_GT_GT_EQ] = ACTIONS(1540), + [anon_sym_EQ] = ACTIONS(1542), + [anon_sym_EQ_EQ] = ACTIONS(1540), + [anon_sym_BANG_EQ] = ACTIONS(1540), + [anon_sym_GT] = ACTIONS(1542), + [anon_sym_LT] = ACTIONS(1542), + [anon_sym_GT_EQ] = ACTIONS(1540), + [anon_sym_LT_EQ] = ACTIONS(1540), + [anon_sym__] = ACTIONS(1542), + [anon_sym_DOT] = ACTIONS(1542), + [anon_sym_DOT_DOT] = ACTIONS(1542), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1540), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1540), + [anon_sym_COMMA] = ACTIONS(1540), + [anon_sym_COLON_COLON] = ACTIONS(1540), + [anon_sym_POUND] = ACTIONS(1540), + [anon_sym_as] = ACTIONS(1542), + [anon_sym_const] = ACTIONS(1542), + [anon_sym_default] = ACTIONS(1542), + [anon_sym_gen] = ACTIONS(1542), + [anon_sym_union] = ACTIONS(1542), + [anon_sym_ref] = ACTIONS(1542), + [sym_mutable_specifier] = ACTIONS(1542), + [anon_sym_raw] = ACTIONS(1542), + [sym_integer_literal] = ACTIONS(1540), + [aux_sym_string_literal_token1] = ACTIONS(1540), + [sym_char_literal] = ACTIONS(1540), + [anon_sym_true] = ACTIONS(1542), + [anon_sym_false] = ACTIONS(1542), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1542), + [sym_super] = ACTIONS(1542), + [sym_crate] = ACTIONS(1542), + [sym_metavariable] = ACTIONS(1540), + [sym__raw_string_literal_start] = ACTIONS(1540), + [sym_float_literal] = ACTIONS(1540), + }, + [485] = { [sym_line_comment] = STATE(485), [sym_block_comment] = STATE(485), + [sym_identifier] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1522), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_RBRACE] = ACTIONS(1522), + [anon_sym_PLUS] = ACTIONS(1524), + [anon_sym_STAR] = ACTIONS(1524), + [anon_sym_QMARK] = ACTIONS(1522), + [anon_sym_u8] = ACTIONS(1524), + [anon_sym_i8] = ACTIONS(1524), + [anon_sym_u16] = ACTIONS(1524), + [anon_sym_i16] = ACTIONS(1524), + [anon_sym_u32] = ACTIONS(1524), + [anon_sym_i32] = ACTIONS(1524), + [anon_sym_u64] = ACTIONS(1524), + [anon_sym_i64] = ACTIONS(1524), + [anon_sym_u128] = ACTIONS(1524), + [anon_sym_i128] = ACTIONS(1524), + [anon_sym_isize] = ACTIONS(1524), + [anon_sym_usize] = ACTIONS(1524), + [anon_sym_f32] = ACTIONS(1524), + [anon_sym_f64] = ACTIONS(1524), + [anon_sym_bool] = ACTIONS(1524), + [anon_sym_str] = ACTIONS(1524), + [anon_sym_char] = ACTIONS(1524), + [anon_sym_DASH] = ACTIONS(1524), + [anon_sym_SLASH] = ACTIONS(1524), + [anon_sym_PERCENT] = ACTIONS(1524), + [anon_sym_CARET] = ACTIONS(1524), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_PIPE] = ACTIONS(1524), + [anon_sym_AMP_AMP] = ACTIONS(1522), + [anon_sym_PIPE_PIPE] = ACTIONS(1522), + [anon_sym_LT_LT] = ACTIONS(1524), + [anon_sym_GT_GT] = ACTIONS(1524), + [anon_sym_PLUS_EQ] = ACTIONS(1522), + [anon_sym_DASH_EQ] = ACTIONS(1522), + [anon_sym_STAR_EQ] = ACTIONS(1522), + [anon_sym_SLASH_EQ] = ACTIONS(1522), + [anon_sym_PERCENT_EQ] = ACTIONS(1522), + [anon_sym_CARET_EQ] = ACTIONS(1522), + [anon_sym_AMP_EQ] = ACTIONS(1522), + [anon_sym_PIPE_EQ] = ACTIONS(1522), + [anon_sym_LT_LT_EQ] = ACTIONS(1522), + [anon_sym_GT_GT_EQ] = ACTIONS(1522), + [anon_sym_EQ] = ACTIONS(1524), + [anon_sym_EQ_EQ] = ACTIONS(1522), + [anon_sym_BANG_EQ] = ACTIONS(1522), + [anon_sym_GT] = ACTIONS(1524), + [anon_sym_LT] = ACTIONS(1524), + [anon_sym_GT_EQ] = ACTIONS(1522), + [anon_sym_LT_EQ] = ACTIONS(1522), + [anon_sym__] = ACTIONS(1524), + [anon_sym_DOT] = ACTIONS(1524), + [anon_sym_DOT_DOT] = ACTIONS(1524), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1522), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1522), + [anon_sym_COMMA] = ACTIONS(1522), + [anon_sym_COLON_COLON] = ACTIONS(1522), + [anon_sym_POUND] = ACTIONS(1522), + [anon_sym_as] = ACTIONS(1524), + [anon_sym_const] = ACTIONS(1524), + [anon_sym_default] = ACTIONS(1524), + [anon_sym_gen] = ACTIONS(1524), + [anon_sym_union] = ACTIONS(1524), + [anon_sym_ref] = ACTIONS(1524), + [sym_mutable_specifier] = ACTIONS(1524), + [anon_sym_raw] = ACTIONS(1524), + [sym_integer_literal] = ACTIONS(1522), + [aux_sym_string_literal_token1] = ACTIONS(1522), + [sym_char_literal] = ACTIONS(1522), + [anon_sym_true] = ACTIONS(1524), + [anon_sym_false] = ACTIONS(1524), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1524), + [sym_super] = ACTIONS(1524), + [sym_crate] = ACTIONS(1524), + [sym_metavariable] = ACTIONS(1522), + [sym__raw_string_literal_start] = ACTIONS(1522), + [sym_float_literal] = ACTIONS(1522), + }, + [486] = { + [sym_line_comment] = STATE(486), + [sym_block_comment] = STATE(486), + [sym_identifier] = ACTIONS(1823), + [anon_sym_LPAREN] = ACTIONS(1825), + [anon_sym_LBRACK] = ACTIONS(1825), + [anon_sym_RBRACE] = ACTIONS(1506), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1508), + [anon_sym_QMARK] = ACTIONS(1506), + [anon_sym_u8] = ACTIONS(1823), + [anon_sym_i8] = ACTIONS(1823), + [anon_sym_u16] = ACTIONS(1823), + [anon_sym_i16] = ACTIONS(1823), + [anon_sym_u32] = ACTIONS(1823), + [anon_sym_i32] = ACTIONS(1823), + [anon_sym_u64] = ACTIONS(1823), + [anon_sym_i64] = ACTIONS(1823), + [anon_sym_u128] = ACTIONS(1823), + [anon_sym_i128] = ACTIONS(1823), + [anon_sym_isize] = ACTIONS(1823), + [anon_sym_usize] = ACTIONS(1823), + [anon_sym_f32] = ACTIONS(1823), + [anon_sym_f64] = ACTIONS(1823), + [anon_sym_bool] = ACTIONS(1823), + [anon_sym_str] = ACTIONS(1823), + [anon_sym_char] = ACTIONS(1823), + [anon_sym_DASH] = ACTIONS(1823), + [anon_sym_SLASH] = ACTIONS(1508), + [anon_sym_PERCENT] = ACTIONS(1508), + [anon_sym_CARET] = ACTIONS(1508), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_PIPE] = ACTIONS(1823), + [anon_sym_AMP_AMP] = ACTIONS(1506), + [anon_sym_PIPE_PIPE] = ACTIONS(1506), + [anon_sym_LT_LT] = ACTIONS(1508), + [anon_sym_GT_GT] = ACTIONS(1508), + [anon_sym_PLUS_EQ] = ACTIONS(1506), + [anon_sym_DASH_EQ] = ACTIONS(1506), + [anon_sym_STAR_EQ] = ACTIONS(1506), + [anon_sym_SLASH_EQ] = ACTIONS(1506), + [anon_sym_PERCENT_EQ] = ACTIONS(1506), + [anon_sym_CARET_EQ] = ACTIONS(1506), + [anon_sym_AMP_EQ] = ACTIONS(1506), + [anon_sym_PIPE_EQ] = ACTIONS(1506), + [anon_sym_LT_LT_EQ] = ACTIONS(1506), + [anon_sym_GT_GT_EQ] = ACTIONS(1506), + [anon_sym_EQ] = ACTIONS(1508), + [anon_sym_EQ_EQ] = ACTIONS(1506), + [anon_sym_BANG_EQ] = ACTIONS(1506), + [anon_sym_GT] = ACTIONS(1508), + [anon_sym_LT] = ACTIONS(1823), + [anon_sym_GT_EQ] = ACTIONS(1506), + [anon_sym_LT_EQ] = ACTIONS(1506), + [anon_sym__] = ACTIONS(1823), + [anon_sym_DOT] = ACTIONS(1508), + [anon_sym_DOT_DOT] = ACTIONS(1823), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1506), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1825), + [anon_sym_COMMA] = ACTIONS(1506), + [anon_sym_COLON_COLON] = ACTIONS(1825), + [anon_sym_POUND] = ACTIONS(1825), + [anon_sym_as] = ACTIONS(1508), + [anon_sym_const] = ACTIONS(1823), + [anon_sym_default] = ACTIONS(1823), + [anon_sym_gen] = ACTIONS(1823), + [anon_sym_union] = ACTIONS(1823), + [anon_sym_ref] = ACTIONS(1823), + [sym_mutable_specifier] = ACTIONS(1823), + [anon_sym_raw] = ACTIONS(1823), + [sym_integer_literal] = ACTIONS(1825), + [aux_sym_string_literal_token1] = ACTIONS(1825), + [sym_char_literal] = ACTIONS(1825), + [anon_sym_true] = ACTIONS(1823), + [anon_sym_false] = ACTIONS(1823), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1823), + [sym_super] = ACTIONS(1823), + [sym_crate] = ACTIONS(1823), + [sym_metavariable] = ACTIONS(1825), + [sym__raw_string_literal_start] = ACTIONS(1825), + [sym_float_literal] = ACTIONS(1825), + }, + [487] = { + [sym_line_comment] = STATE(487), + [sym_block_comment] = STATE(487), + [sym_identifier] = ACTIONS(1488), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_LBRACK] = ACTIONS(1486), + [anon_sym_RBRACE] = ACTIONS(1486), + [anon_sym_PLUS] = ACTIONS(1488), + [anon_sym_STAR] = ACTIONS(1488), + [anon_sym_QMARK] = ACTIONS(1486), + [anon_sym_u8] = ACTIONS(1488), + [anon_sym_i8] = ACTIONS(1488), + [anon_sym_u16] = ACTIONS(1488), + [anon_sym_i16] = ACTIONS(1488), + [anon_sym_u32] = ACTIONS(1488), + [anon_sym_i32] = ACTIONS(1488), + [anon_sym_u64] = ACTIONS(1488), + [anon_sym_i64] = ACTIONS(1488), + [anon_sym_u128] = ACTIONS(1488), + [anon_sym_i128] = ACTIONS(1488), + [anon_sym_isize] = ACTIONS(1488), + [anon_sym_usize] = ACTIONS(1488), + [anon_sym_f32] = ACTIONS(1488), + [anon_sym_f64] = ACTIONS(1488), + [anon_sym_bool] = ACTIONS(1488), + [anon_sym_str] = ACTIONS(1488), + [anon_sym_char] = ACTIONS(1488), + [anon_sym_DASH] = ACTIONS(1488), + [anon_sym_SLASH] = ACTIONS(1488), + [anon_sym_PERCENT] = ACTIONS(1488), + [anon_sym_CARET] = ACTIONS(1488), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_PIPE] = ACTIONS(1488), + [anon_sym_AMP_AMP] = ACTIONS(1486), + [anon_sym_PIPE_PIPE] = ACTIONS(1486), + [anon_sym_LT_LT] = ACTIONS(1488), + [anon_sym_GT_GT] = ACTIONS(1488), + [anon_sym_PLUS_EQ] = ACTIONS(1486), + [anon_sym_DASH_EQ] = ACTIONS(1486), + [anon_sym_STAR_EQ] = ACTIONS(1486), + [anon_sym_SLASH_EQ] = ACTIONS(1486), + [anon_sym_PERCENT_EQ] = ACTIONS(1486), + [anon_sym_CARET_EQ] = ACTIONS(1486), + [anon_sym_AMP_EQ] = ACTIONS(1486), + [anon_sym_PIPE_EQ] = ACTIONS(1486), + [anon_sym_LT_LT_EQ] = ACTIONS(1486), + [anon_sym_GT_GT_EQ] = ACTIONS(1486), + [anon_sym_EQ] = ACTIONS(1488), + [anon_sym_EQ_EQ] = ACTIONS(1486), + [anon_sym_BANG_EQ] = ACTIONS(1486), + [anon_sym_GT] = ACTIONS(1488), + [anon_sym_LT] = ACTIONS(1488), + [anon_sym_GT_EQ] = ACTIONS(1486), + [anon_sym_LT_EQ] = ACTIONS(1486), + [anon_sym__] = ACTIONS(1488), + [anon_sym_DOT] = ACTIONS(1488), + [anon_sym_DOT_DOT] = ACTIONS(1488), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1486), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1486), + [anon_sym_COMMA] = ACTIONS(1486), + [anon_sym_COLON_COLON] = ACTIONS(1486), + [anon_sym_POUND] = ACTIONS(1486), + [anon_sym_as] = ACTIONS(1488), + [anon_sym_const] = ACTIONS(1488), + [anon_sym_default] = ACTIONS(1488), + [anon_sym_gen] = ACTIONS(1488), + [anon_sym_union] = ACTIONS(1488), + [anon_sym_ref] = ACTIONS(1488), + [sym_mutable_specifier] = ACTIONS(1488), + [anon_sym_raw] = ACTIONS(1488), + [sym_integer_literal] = ACTIONS(1486), + [aux_sym_string_literal_token1] = ACTIONS(1486), + [sym_char_literal] = ACTIONS(1486), + [anon_sym_true] = ACTIONS(1488), + [anon_sym_false] = ACTIONS(1488), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1488), + [sym_super] = ACTIONS(1488), + [sym_crate] = ACTIONS(1488), + [sym_metavariable] = ACTIONS(1486), + [sym__raw_string_literal_start] = ACTIONS(1486), + [sym_float_literal] = ACTIONS(1486), + }, + [488] = { + [sym_line_comment] = STATE(488), + [sym_block_comment] = STATE(488), + [sym_identifier] = ACTIONS(1520), + [anon_sym_LPAREN] = ACTIONS(1518), + [anon_sym_LBRACK] = ACTIONS(1518), + [anon_sym_RBRACE] = ACTIONS(1518), + [anon_sym_PLUS] = ACTIONS(1520), + [anon_sym_STAR] = ACTIONS(1520), + [anon_sym_QMARK] = ACTIONS(1518), + [anon_sym_u8] = ACTIONS(1520), + [anon_sym_i8] = ACTIONS(1520), + [anon_sym_u16] = ACTIONS(1520), + [anon_sym_i16] = ACTIONS(1520), + [anon_sym_u32] = ACTIONS(1520), + [anon_sym_i32] = ACTIONS(1520), + [anon_sym_u64] = ACTIONS(1520), + [anon_sym_i64] = ACTIONS(1520), + [anon_sym_u128] = ACTIONS(1520), + [anon_sym_i128] = ACTIONS(1520), + [anon_sym_isize] = ACTIONS(1520), + [anon_sym_usize] = ACTIONS(1520), + [anon_sym_f32] = ACTIONS(1520), + [anon_sym_f64] = ACTIONS(1520), + [anon_sym_bool] = ACTIONS(1520), + [anon_sym_str] = ACTIONS(1520), + [anon_sym_char] = ACTIONS(1520), + [anon_sym_DASH] = ACTIONS(1520), + [anon_sym_SLASH] = ACTIONS(1520), + [anon_sym_PERCENT] = ACTIONS(1520), + [anon_sym_CARET] = ACTIONS(1520), + [anon_sym_AMP] = ACTIONS(1520), + [anon_sym_PIPE] = ACTIONS(1520), + [anon_sym_AMP_AMP] = ACTIONS(1518), + [anon_sym_PIPE_PIPE] = ACTIONS(1518), + [anon_sym_LT_LT] = ACTIONS(1520), + [anon_sym_GT_GT] = ACTIONS(1520), + [anon_sym_PLUS_EQ] = ACTIONS(1518), + [anon_sym_DASH_EQ] = ACTIONS(1518), + [anon_sym_STAR_EQ] = ACTIONS(1518), + [anon_sym_SLASH_EQ] = ACTIONS(1518), + [anon_sym_PERCENT_EQ] = ACTIONS(1518), + [anon_sym_CARET_EQ] = ACTIONS(1518), + [anon_sym_AMP_EQ] = ACTIONS(1518), + [anon_sym_PIPE_EQ] = ACTIONS(1518), + [anon_sym_LT_LT_EQ] = ACTIONS(1518), + [anon_sym_GT_GT_EQ] = ACTIONS(1518), + [anon_sym_EQ] = ACTIONS(1520), + [anon_sym_EQ_EQ] = ACTIONS(1518), + [anon_sym_BANG_EQ] = ACTIONS(1518), + [anon_sym_GT] = ACTIONS(1520), + [anon_sym_LT] = ACTIONS(1520), + [anon_sym_GT_EQ] = ACTIONS(1518), + [anon_sym_LT_EQ] = ACTIONS(1518), + [anon_sym__] = ACTIONS(1520), + [anon_sym_DOT] = ACTIONS(1520), + [anon_sym_DOT_DOT] = ACTIONS(1520), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1518), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1518), + [anon_sym_COMMA] = ACTIONS(1518), + [anon_sym_COLON_COLON] = ACTIONS(1518), + [anon_sym_POUND] = ACTIONS(1518), + [anon_sym_as] = ACTIONS(1520), + [anon_sym_const] = ACTIONS(1520), + [anon_sym_default] = ACTIONS(1520), + [anon_sym_gen] = ACTIONS(1520), + [anon_sym_union] = ACTIONS(1520), + [anon_sym_ref] = ACTIONS(1520), + [sym_mutable_specifier] = ACTIONS(1520), + [anon_sym_raw] = ACTIONS(1520), + [sym_integer_literal] = ACTIONS(1518), + [aux_sym_string_literal_token1] = ACTIONS(1518), + [sym_char_literal] = ACTIONS(1518), + [anon_sym_true] = ACTIONS(1520), + [anon_sym_false] = ACTIONS(1520), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1520), + [sym_super] = ACTIONS(1520), + [sym_crate] = ACTIONS(1520), + [sym_metavariable] = ACTIONS(1518), + [sym__raw_string_literal_start] = ACTIONS(1518), + [sym_float_literal] = ACTIONS(1518), + }, + [489] = { + [sym_line_comment] = STATE(489), + [sym_block_comment] = STATE(489), [sym_identifier] = ACTIONS(1464), [anon_sym_LPAREN] = ACTIONS(1462), [anon_sym_LBRACK] = ACTIONS(1462), @@ -71537,1433 +71365,589 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1462), [sym_float_literal] = ACTIONS(1462), }, - [STATE(486)] = { - [sym_attribute_item] = STATE(1369), - [sym_inner_attribute_item] = STATE(1369), - [sym_bracketed_type] = STATE(3698), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3419), - [sym_macro_invocation] = STATE(2942), - [sym_scoped_identifier] = STATE(2248), - [sym_scoped_type_identifier] = STATE(3103), - [sym_match_arm] = STATE(1370), - [sym_match_pattern] = STATE(3560), - [sym_const_block] = STATE(2942), - [sym__pattern] = STATE(3188), - [sym_generic_pattern] = STATE(2942), - [sym_tuple_pattern] = STATE(2942), - [sym_slice_pattern] = STATE(2942), - [sym_tuple_struct_pattern] = STATE(2942), - [sym_struct_pattern] = STATE(2942), - [sym_remaining_field_pattern] = STATE(2942), - [sym_mut_pattern] = STATE(2942), - [sym_range_pattern] = STATE(2942), - [sym_ref_pattern] = STATE(2942), - [sym_captured_pattern] = STATE(2942), - [sym_reference_pattern] = STATE(2942), - [sym_or_pattern] = STATE(2942), - [sym__literal_pattern] = STATE(2447), - [sym_negative_literal] = STATE(2441), - [sym_string_literal] = STATE(2441), - [sym_raw_string_literal] = STATE(2441), - [sym_boolean_literal] = STATE(2441), - [sym_line_comment] = STATE(486), - [sym_block_comment] = STATE(486), - [aux_sym_match_block_repeat1] = STATE(486), - [aux_sym_match_arm_repeat1] = STATE(746), - [sym_identifier] = ACTIONS(1760), - [anon_sym_LPAREN] = ACTIONS(1763), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_u8] = ACTIONS(1769), - [anon_sym_i8] = ACTIONS(1769), - [anon_sym_u16] = ACTIONS(1769), - [anon_sym_i16] = ACTIONS(1769), - [anon_sym_u32] = ACTIONS(1769), - [anon_sym_i32] = ACTIONS(1769), - [anon_sym_u64] = ACTIONS(1769), - [anon_sym_i64] = ACTIONS(1769), - [anon_sym_u128] = ACTIONS(1769), - [anon_sym_i128] = ACTIONS(1769), - [anon_sym_isize] = ACTIONS(1769), - [anon_sym_usize] = ACTIONS(1769), - [anon_sym_f32] = ACTIONS(1769), - [anon_sym_f64] = ACTIONS(1769), - [anon_sym_bool] = ACTIONS(1769), - [anon_sym_str] = ACTIONS(1769), - [anon_sym_char] = ACTIONS(1769), - [anon_sym_DASH] = ACTIONS(1772), - [anon_sym_AMP] = ACTIONS(1775), - [anon_sym_PIPE] = ACTIONS(1778), - [anon_sym_LT] = ACTIONS(1781), - [anon_sym__] = ACTIONS(1784), - [anon_sym_DOT_DOT] = ACTIONS(1787), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1790), - [anon_sym_COLON_COLON] = ACTIONS(1793), - [anon_sym_POUND] = ACTIONS(1796), - [anon_sym_const] = ACTIONS(1799), - [anon_sym_default] = ACTIONS(1802), - [anon_sym_gen] = ACTIONS(1802), - [anon_sym_union] = ACTIONS(1802), - [anon_sym_ref] = ACTIONS(1805), - [sym_mutable_specifier] = ACTIONS(1808), - [anon_sym_raw] = ACTIONS(1802), - [sym_integer_literal] = ACTIONS(1811), - [aux_sym_string_literal_token1] = ACTIONS(1814), - [sym_char_literal] = ACTIONS(1811), - [anon_sym_true] = ACTIONS(1817), - [anon_sym_false] = ACTIONS(1817), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1820), - [sym_super] = ACTIONS(1820), - [sym_crate] = ACTIONS(1820), - [sym_metavariable] = ACTIONS(1823), - [sym__raw_string_literal_start] = ACTIONS(1826), - [sym_float_literal] = ACTIONS(1811), - }, - [STATE(487)] = { - [sym_line_comment] = STATE(487), - [sym_block_comment] = STATE(487), - [sym_identifier] = ACTIONS(1548), - [anon_sym_LPAREN] = ACTIONS(1546), - [anon_sym_LBRACK] = ACTIONS(1546), - [anon_sym_RBRACE] = ACTIONS(1546), - [anon_sym_PLUS] = ACTIONS(1548), - [anon_sym_STAR] = ACTIONS(1548), - [anon_sym_QMARK] = ACTIONS(1546), - [anon_sym_u8] = ACTIONS(1548), - [anon_sym_i8] = ACTIONS(1548), - [anon_sym_u16] = ACTIONS(1548), - [anon_sym_i16] = ACTIONS(1548), - [anon_sym_u32] = ACTIONS(1548), - [anon_sym_i32] = ACTIONS(1548), - [anon_sym_u64] = ACTIONS(1548), - [anon_sym_i64] = ACTIONS(1548), - [anon_sym_u128] = ACTIONS(1548), - [anon_sym_i128] = ACTIONS(1548), - [anon_sym_isize] = ACTIONS(1548), - [anon_sym_usize] = ACTIONS(1548), - [anon_sym_f32] = ACTIONS(1548), - [anon_sym_f64] = ACTIONS(1548), - [anon_sym_bool] = ACTIONS(1548), - [anon_sym_str] = ACTIONS(1548), - [anon_sym_char] = ACTIONS(1548), - [anon_sym_DASH] = ACTIONS(1548), - [anon_sym_SLASH] = ACTIONS(1548), - [anon_sym_PERCENT] = ACTIONS(1548), - [anon_sym_CARET] = ACTIONS(1548), - [anon_sym_AMP] = ACTIONS(1548), - [anon_sym_PIPE] = ACTIONS(1548), - [anon_sym_AMP_AMP] = ACTIONS(1546), - [anon_sym_PIPE_PIPE] = ACTIONS(1546), - [anon_sym_LT_LT] = ACTIONS(1548), - [anon_sym_GT_GT] = ACTIONS(1548), - [anon_sym_PLUS_EQ] = ACTIONS(1546), - [anon_sym_DASH_EQ] = ACTIONS(1546), - [anon_sym_STAR_EQ] = ACTIONS(1546), - [anon_sym_SLASH_EQ] = ACTIONS(1546), - [anon_sym_PERCENT_EQ] = ACTIONS(1546), - [anon_sym_CARET_EQ] = ACTIONS(1546), - [anon_sym_AMP_EQ] = ACTIONS(1546), - [anon_sym_PIPE_EQ] = ACTIONS(1546), - [anon_sym_LT_LT_EQ] = ACTIONS(1546), - [anon_sym_GT_GT_EQ] = ACTIONS(1546), - [anon_sym_EQ] = ACTIONS(1548), - [anon_sym_EQ_EQ] = ACTIONS(1546), - [anon_sym_BANG_EQ] = ACTIONS(1546), - [anon_sym_GT] = ACTIONS(1548), - [anon_sym_LT] = ACTIONS(1548), - [anon_sym_GT_EQ] = ACTIONS(1546), - [anon_sym_LT_EQ] = ACTIONS(1546), - [anon_sym__] = ACTIONS(1548), - [anon_sym_DOT] = ACTIONS(1548), - [anon_sym_DOT_DOT] = ACTIONS(1548), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1546), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1546), - [anon_sym_COMMA] = ACTIONS(1546), - [anon_sym_COLON_COLON] = ACTIONS(1546), - [anon_sym_POUND] = ACTIONS(1546), - [anon_sym_as] = ACTIONS(1548), - [anon_sym_const] = ACTIONS(1548), - [anon_sym_default] = ACTIONS(1548), - [anon_sym_gen] = ACTIONS(1548), - [anon_sym_union] = ACTIONS(1548), - [anon_sym_ref] = ACTIONS(1548), - [sym_mutable_specifier] = ACTIONS(1548), - [anon_sym_raw] = ACTIONS(1548), - [sym_integer_literal] = ACTIONS(1546), - [aux_sym_string_literal_token1] = ACTIONS(1546), - [sym_char_literal] = ACTIONS(1546), - [anon_sym_true] = ACTIONS(1548), - [anon_sym_false] = ACTIONS(1548), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1548), - [sym_super] = ACTIONS(1548), - [sym_crate] = ACTIONS(1548), - [sym_metavariable] = ACTIONS(1546), - [sym__raw_string_literal_start] = ACTIONS(1546), - [sym_float_literal] = ACTIONS(1546), - }, - [STATE(488)] = { - [sym_line_comment] = STATE(488), - [sym_block_comment] = STATE(488), - [sym_identifier] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1488), - [anon_sym_RBRACE] = ACTIONS(1488), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_STAR] = ACTIONS(1490), - [anon_sym_QMARK] = ACTIONS(1488), - [anon_sym_u8] = ACTIONS(1490), - [anon_sym_i8] = ACTIONS(1490), - [anon_sym_u16] = ACTIONS(1490), - [anon_sym_i16] = ACTIONS(1490), - [anon_sym_u32] = ACTIONS(1490), - [anon_sym_i32] = ACTIONS(1490), - [anon_sym_u64] = ACTIONS(1490), - [anon_sym_i64] = ACTIONS(1490), - [anon_sym_u128] = ACTIONS(1490), - [anon_sym_i128] = ACTIONS(1490), - [anon_sym_isize] = ACTIONS(1490), - [anon_sym_usize] = ACTIONS(1490), - [anon_sym_f32] = ACTIONS(1490), - [anon_sym_f64] = ACTIONS(1490), - [anon_sym_bool] = ACTIONS(1490), - [anon_sym_str] = ACTIONS(1490), - [anon_sym_char] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_SLASH] = ACTIONS(1490), - [anon_sym_PERCENT] = ACTIONS(1490), - [anon_sym_CARET] = ACTIONS(1490), - [anon_sym_AMP] = ACTIONS(1490), - [anon_sym_PIPE] = ACTIONS(1490), - [anon_sym_AMP_AMP] = ACTIONS(1488), - [anon_sym_PIPE_PIPE] = ACTIONS(1488), - [anon_sym_LT_LT] = ACTIONS(1490), - [anon_sym_GT_GT] = ACTIONS(1490), - [anon_sym_PLUS_EQ] = ACTIONS(1488), - [anon_sym_DASH_EQ] = ACTIONS(1488), - [anon_sym_STAR_EQ] = ACTIONS(1488), - [anon_sym_SLASH_EQ] = ACTIONS(1488), - [anon_sym_PERCENT_EQ] = ACTIONS(1488), - [anon_sym_CARET_EQ] = ACTIONS(1488), - [anon_sym_AMP_EQ] = ACTIONS(1488), - [anon_sym_PIPE_EQ] = ACTIONS(1488), - [anon_sym_LT_LT_EQ] = ACTIONS(1488), - [anon_sym_GT_GT_EQ] = ACTIONS(1488), - [anon_sym_EQ] = ACTIONS(1490), - [anon_sym_EQ_EQ] = ACTIONS(1488), - [anon_sym_BANG_EQ] = ACTIONS(1488), - [anon_sym_GT] = ACTIONS(1490), - [anon_sym_LT] = ACTIONS(1490), - [anon_sym_GT_EQ] = ACTIONS(1488), - [anon_sym_LT_EQ] = ACTIONS(1488), - [anon_sym__] = ACTIONS(1490), - [anon_sym_DOT] = ACTIONS(1490), - [anon_sym_DOT_DOT] = ACTIONS(1490), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1488), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1488), - [anon_sym_COMMA] = ACTIONS(1488), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_POUND] = ACTIONS(1488), - [anon_sym_as] = ACTIONS(1490), - [anon_sym_const] = ACTIONS(1490), - [anon_sym_default] = ACTIONS(1490), - [anon_sym_gen] = ACTIONS(1490), - [anon_sym_union] = ACTIONS(1490), - [anon_sym_ref] = ACTIONS(1490), - [sym_mutable_specifier] = ACTIONS(1490), - [anon_sym_raw] = ACTIONS(1490), - [sym_integer_literal] = ACTIONS(1488), - [aux_sym_string_literal_token1] = ACTIONS(1488), - [sym_char_literal] = ACTIONS(1488), - [anon_sym_true] = ACTIONS(1490), - [anon_sym_false] = ACTIONS(1490), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1490), - [sym_super] = ACTIONS(1490), - [sym_crate] = ACTIONS(1490), - [sym_metavariable] = ACTIONS(1488), - [sym__raw_string_literal_start] = ACTIONS(1488), - [sym_float_literal] = ACTIONS(1488), - }, - [STATE(489)] = { - [sym_line_comment] = STATE(489), - [sym_block_comment] = STATE(489), - [sym_identifier] = ACTIONS(1829), - [anon_sym_LPAREN] = ACTIONS(1831), - [anon_sym_LBRACK] = ACTIONS(1831), - [anon_sym_RBRACE] = ACTIONS(1504), - [anon_sym_PLUS] = ACTIONS(1506), - [anon_sym_STAR] = ACTIONS(1506), - [anon_sym_QMARK] = ACTIONS(1504), - [anon_sym_u8] = ACTIONS(1829), - [anon_sym_i8] = ACTIONS(1829), - [anon_sym_u16] = ACTIONS(1829), - [anon_sym_i16] = ACTIONS(1829), - [anon_sym_u32] = ACTIONS(1829), - [anon_sym_i32] = ACTIONS(1829), - [anon_sym_u64] = ACTIONS(1829), - [anon_sym_i64] = ACTIONS(1829), - [anon_sym_u128] = ACTIONS(1829), - [anon_sym_i128] = ACTIONS(1829), - [anon_sym_isize] = ACTIONS(1829), - [anon_sym_usize] = ACTIONS(1829), - [anon_sym_f32] = ACTIONS(1829), - [anon_sym_f64] = ACTIONS(1829), - [anon_sym_bool] = ACTIONS(1829), - [anon_sym_str] = ACTIONS(1829), - [anon_sym_char] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1829), - [anon_sym_SLASH] = ACTIONS(1506), - [anon_sym_PERCENT] = ACTIONS(1506), - [anon_sym_CARET] = ACTIONS(1506), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_PIPE] = ACTIONS(1829), - [anon_sym_AMP_AMP] = ACTIONS(1504), - [anon_sym_PIPE_PIPE] = ACTIONS(1504), - [anon_sym_LT_LT] = ACTIONS(1506), - [anon_sym_GT_GT] = ACTIONS(1506), - [anon_sym_PLUS_EQ] = ACTIONS(1504), - [anon_sym_DASH_EQ] = ACTIONS(1504), - [anon_sym_STAR_EQ] = ACTIONS(1504), - [anon_sym_SLASH_EQ] = ACTIONS(1504), - [anon_sym_PERCENT_EQ] = ACTIONS(1504), - [anon_sym_CARET_EQ] = ACTIONS(1504), - [anon_sym_AMP_EQ] = ACTIONS(1504), - [anon_sym_PIPE_EQ] = ACTIONS(1504), - [anon_sym_LT_LT_EQ] = ACTIONS(1504), - [anon_sym_GT_GT_EQ] = ACTIONS(1504), - [anon_sym_EQ] = ACTIONS(1506), - [anon_sym_EQ_EQ] = ACTIONS(1504), - [anon_sym_BANG_EQ] = ACTIONS(1504), - [anon_sym_GT] = ACTIONS(1506), - [anon_sym_LT] = ACTIONS(1829), - [anon_sym_GT_EQ] = ACTIONS(1504), - [anon_sym_LT_EQ] = ACTIONS(1504), - [anon_sym__] = ACTIONS(1829), - [anon_sym_DOT] = ACTIONS(1506), - [anon_sym_DOT_DOT] = ACTIONS(1829), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1504), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1831), - [anon_sym_COMMA] = ACTIONS(1504), - [anon_sym_COLON_COLON] = ACTIONS(1831), - [anon_sym_POUND] = ACTIONS(1831), - [anon_sym_as] = ACTIONS(1506), - [anon_sym_const] = ACTIONS(1829), - [anon_sym_default] = ACTIONS(1829), - [anon_sym_gen] = ACTIONS(1829), - [anon_sym_union] = ACTIONS(1829), - [anon_sym_ref] = ACTIONS(1829), - [sym_mutable_specifier] = ACTIONS(1829), - [anon_sym_raw] = ACTIONS(1829), - [sym_integer_literal] = ACTIONS(1831), - [aux_sym_string_literal_token1] = ACTIONS(1831), - [sym_char_literal] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1829), - [anon_sym_false] = ACTIONS(1829), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1829), - [sym_super] = ACTIONS(1829), - [sym_crate] = ACTIONS(1829), - [sym_metavariable] = ACTIONS(1831), - [sym__raw_string_literal_start] = ACTIONS(1831), - [sym_float_literal] = ACTIONS(1831), - }, - [STATE(490)] = { + [490] = { [sym_line_comment] = STATE(490), [sym_block_comment] = STATE(490), - [sym_identifier] = ACTIONS(1478), - [anon_sym_LPAREN] = ACTIONS(1476), - [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_RBRACE] = ACTIONS(1476), - [anon_sym_PLUS] = ACTIONS(1478), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_QMARK] = ACTIONS(1476), - [anon_sym_u8] = ACTIONS(1478), - [anon_sym_i8] = ACTIONS(1478), - [anon_sym_u16] = ACTIONS(1478), - [anon_sym_i16] = ACTIONS(1478), - [anon_sym_u32] = ACTIONS(1478), - [anon_sym_i32] = ACTIONS(1478), - [anon_sym_u64] = ACTIONS(1478), - [anon_sym_i64] = ACTIONS(1478), - [anon_sym_u128] = ACTIONS(1478), - [anon_sym_i128] = ACTIONS(1478), - [anon_sym_isize] = ACTIONS(1478), - [anon_sym_usize] = ACTIONS(1478), - [anon_sym_f32] = ACTIONS(1478), - [anon_sym_f64] = ACTIONS(1478), - [anon_sym_bool] = ACTIONS(1478), - [anon_sym_str] = ACTIONS(1478), - [anon_sym_char] = ACTIONS(1478), - [anon_sym_DASH] = ACTIONS(1478), - [anon_sym_SLASH] = ACTIONS(1478), - [anon_sym_PERCENT] = ACTIONS(1478), - [anon_sym_CARET] = ACTIONS(1478), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_AMP_AMP] = ACTIONS(1476), - [anon_sym_PIPE_PIPE] = ACTIONS(1476), - [anon_sym_LT_LT] = ACTIONS(1478), - [anon_sym_GT_GT] = ACTIONS(1478), - [anon_sym_PLUS_EQ] = ACTIONS(1476), - [anon_sym_DASH_EQ] = ACTIONS(1476), - [anon_sym_STAR_EQ] = ACTIONS(1476), - [anon_sym_SLASH_EQ] = ACTIONS(1476), - [anon_sym_PERCENT_EQ] = ACTIONS(1476), - [anon_sym_CARET_EQ] = ACTIONS(1476), - [anon_sym_AMP_EQ] = ACTIONS(1476), - [anon_sym_PIPE_EQ] = ACTIONS(1476), - [anon_sym_LT_LT_EQ] = ACTIONS(1476), - [anon_sym_GT_GT_EQ] = ACTIONS(1476), - [anon_sym_EQ] = ACTIONS(1478), - [anon_sym_EQ_EQ] = ACTIONS(1476), - [anon_sym_BANG_EQ] = ACTIONS(1476), - [anon_sym_GT] = ACTIONS(1478), - [anon_sym_LT] = ACTIONS(1478), - [anon_sym_GT_EQ] = ACTIONS(1476), - [anon_sym_LT_EQ] = ACTIONS(1476), - [anon_sym__] = ACTIONS(1478), - [anon_sym_DOT] = ACTIONS(1478), - [anon_sym_DOT_DOT] = ACTIONS(1478), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1476), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1476), - [anon_sym_COMMA] = ACTIONS(1476), - [anon_sym_COLON_COLON] = ACTIONS(1476), - [anon_sym_POUND] = ACTIONS(1476), - [anon_sym_as] = ACTIONS(1478), - [anon_sym_const] = ACTIONS(1478), - [anon_sym_default] = ACTIONS(1478), - [anon_sym_gen] = ACTIONS(1478), - [anon_sym_union] = ACTIONS(1478), - [anon_sym_ref] = ACTIONS(1478), - [sym_mutable_specifier] = ACTIONS(1478), - [anon_sym_raw] = ACTIONS(1478), - [sym_integer_literal] = ACTIONS(1476), - [aux_sym_string_literal_token1] = ACTIONS(1476), - [sym_char_literal] = ACTIONS(1476), - [anon_sym_true] = ACTIONS(1478), - [anon_sym_false] = ACTIONS(1478), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1478), - [sym_super] = ACTIONS(1478), - [sym_crate] = ACTIONS(1478), - [sym_metavariable] = ACTIONS(1476), - [sym__raw_string_literal_start] = ACTIONS(1476), - [sym_float_literal] = ACTIONS(1476), - }, - [STATE(491)] = { + [sym_identifier] = ACTIONS(1480), + [anon_sym_LPAREN] = ACTIONS(1478), + [anon_sym_LBRACK] = ACTIONS(1478), + [anon_sym_RBRACE] = ACTIONS(1478), + [anon_sym_PLUS] = ACTIONS(1480), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_QMARK] = ACTIONS(1478), + [anon_sym_u8] = ACTIONS(1480), + [anon_sym_i8] = ACTIONS(1480), + [anon_sym_u16] = ACTIONS(1480), + [anon_sym_i16] = ACTIONS(1480), + [anon_sym_u32] = ACTIONS(1480), + [anon_sym_i32] = ACTIONS(1480), + [anon_sym_u64] = ACTIONS(1480), + [anon_sym_i64] = ACTIONS(1480), + [anon_sym_u128] = ACTIONS(1480), + [anon_sym_i128] = ACTIONS(1480), + [anon_sym_isize] = ACTIONS(1480), + [anon_sym_usize] = ACTIONS(1480), + [anon_sym_f32] = ACTIONS(1480), + [anon_sym_f64] = ACTIONS(1480), + [anon_sym_bool] = ACTIONS(1480), + [anon_sym_str] = ACTIONS(1480), + [anon_sym_char] = ACTIONS(1480), + [anon_sym_DASH] = ACTIONS(1480), + [anon_sym_SLASH] = ACTIONS(1480), + [anon_sym_PERCENT] = ACTIONS(1480), + [anon_sym_CARET] = ACTIONS(1480), + [anon_sym_AMP] = ACTIONS(1480), + [anon_sym_PIPE] = ACTIONS(1480), + [anon_sym_AMP_AMP] = ACTIONS(1478), + [anon_sym_PIPE_PIPE] = ACTIONS(1478), + [anon_sym_LT_LT] = ACTIONS(1480), + [anon_sym_GT_GT] = ACTIONS(1480), + [anon_sym_PLUS_EQ] = ACTIONS(1478), + [anon_sym_DASH_EQ] = ACTIONS(1478), + [anon_sym_STAR_EQ] = ACTIONS(1478), + [anon_sym_SLASH_EQ] = ACTIONS(1478), + [anon_sym_PERCENT_EQ] = ACTIONS(1478), + [anon_sym_CARET_EQ] = ACTIONS(1478), + [anon_sym_AMP_EQ] = ACTIONS(1478), + [anon_sym_PIPE_EQ] = ACTIONS(1478), + [anon_sym_LT_LT_EQ] = ACTIONS(1478), + [anon_sym_GT_GT_EQ] = ACTIONS(1478), + [anon_sym_EQ] = ACTIONS(1480), + [anon_sym_EQ_EQ] = ACTIONS(1478), + [anon_sym_BANG_EQ] = ACTIONS(1478), + [anon_sym_GT] = ACTIONS(1480), + [anon_sym_LT] = ACTIONS(1480), + [anon_sym_GT_EQ] = ACTIONS(1478), + [anon_sym_LT_EQ] = ACTIONS(1478), + [anon_sym__] = ACTIONS(1480), + [anon_sym_DOT] = ACTIONS(1480), + [anon_sym_DOT_DOT] = ACTIONS(1480), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1478), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1478), + [anon_sym_COMMA] = ACTIONS(1478), + [anon_sym_COLON_COLON] = ACTIONS(1478), + [anon_sym_POUND] = ACTIONS(1478), + [anon_sym_as] = ACTIONS(1480), + [anon_sym_const] = ACTIONS(1480), + [anon_sym_default] = ACTIONS(1480), + [anon_sym_gen] = ACTIONS(1480), + [anon_sym_union] = ACTIONS(1480), + [anon_sym_ref] = ACTIONS(1480), + [sym_mutable_specifier] = ACTIONS(1480), + [anon_sym_raw] = ACTIONS(1480), + [sym_integer_literal] = ACTIONS(1478), + [aux_sym_string_literal_token1] = ACTIONS(1478), + [sym_char_literal] = ACTIONS(1478), + [anon_sym_true] = ACTIONS(1480), + [anon_sym_false] = ACTIONS(1480), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1480), + [sym_super] = ACTIONS(1480), + [sym_crate] = ACTIONS(1480), + [sym_metavariable] = ACTIONS(1478), + [sym__raw_string_literal_start] = ACTIONS(1478), + [sym_float_literal] = ACTIONS(1478), + }, + [491] = { + [sym_bracketed_type] = STATE(3787), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_macro_invocation] = STATE(2198), + [sym_scoped_identifier] = STATE(2034), + [sym_scoped_type_identifier] = STATE(2991), + [sym_const_block] = STATE(2198), + [sym_closure_expression] = STATE(3220), + [sym_closure_parameters] = STATE(227), + [sym__pattern] = STATE(3020), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), [sym_line_comment] = STATE(491), [sym_block_comment] = STATE(491), - [sym_identifier] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1554), - [anon_sym_LBRACK] = ACTIONS(1554), - [anon_sym_RBRACE] = ACTIONS(1554), - [anon_sym_PLUS] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_QMARK] = ACTIONS(1554), - [anon_sym_u8] = ACTIONS(1556), - [anon_sym_i8] = ACTIONS(1556), - [anon_sym_u16] = ACTIONS(1556), - [anon_sym_i16] = ACTIONS(1556), - [anon_sym_u32] = ACTIONS(1556), - [anon_sym_i32] = ACTIONS(1556), - [anon_sym_u64] = ACTIONS(1556), - [anon_sym_i64] = ACTIONS(1556), - [anon_sym_u128] = ACTIONS(1556), - [anon_sym_i128] = ACTIONS(1556), - [anon_sym_isize] = ACTIONS(1556), - [anon_sym_usize] = ACTIONS(1556), - [anon_sym_f32] = ACTIONS(1556), - [anon_sym_f64] = ACTIONS(1556), - [anon_sym_bool] = ACTIONS(1556), - [anon_sym_str] = ACTIONS(1556), - [anon_sym_char] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_SLASH] = ACTIONS(1556), - [anon_sym_PERCENT] = ACTIONS(1556), - [anon_sym_CARET] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(1556), - [anon_sym_PIPE] = ACTIONS(1556), - [anon_sym_AMP_AMP] = ACTIONS(1554), - [anon_sym_PIPE_PIPE] = ACTIONS(1554), - [anon_sym_LT_LT] = ACTIONS(1556), - [anon_sym_GT_GT] = ACTIONS(1556), - [anon_sym_PLUS_EQ] = ACTIONS(1554), - [anon_sym_DASH_EQ] = ACTIONS(1554), - [anon_sym_STAR_EQ] = ACTIONS(1554), - [anon_sym_SLASH_EQ] = ACTIONS(1554), - [anon_sym_PERCENT_EQ] = ACTIONS(1554), - [anon_sym_CARET_EQ] = ACTIONS(1554), - [anon_sym_AMP_EQ] = ACTIONS(1554), - [anon_sym_PIPE_EQ] = ACTIONS(1554), - [anon_sym_LT_LT_EQ] = ACTIONS(1554), - [anon_sym_GT_GT_EQ] = ACTIONS(1554), - [anon_sym_EQ] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1554), - [anon_sym_BANG_EQ] = ACTIONS(1554), - [anon_sym_GT] = ACTIONS(1556), - [anon_sym_LT] = ACTIONS(1556), - [anon_sym_GT_EQ] = ACTIONS(1554), - [anon_sym_LT_EQ] = ACTIONS(1554), - [anon_sym__] = ACTIONS(1556), - [anon_sym_DOT] = ACTIONS(1556), - [anon_sym_DOT_DOT] = ACTIONS(1556), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1554), - [anon_sym_COMMA] = ACTIONS(1554), - [anon_sym_COLON_COLON] = ACTIONS(1554), - [anon_sym_POUND] = ACTIONS(1554), - [anon_sym_as] = ACTIONS(1556), - [anon_sym_const] = ACTIONS(1556), - [anon_sym_default] = ACTIONS(1556), - [anon_sym_gen] = ACTIONS(1556), - [anon_sym_union] = ACTIONS(1556), - [anon_sym_ref] = ACTIONS(1556), - [sym_mutable_specifier] = ACTIONS(1556), - [anon_sym_raw] = ACTIONS(1556), - [sym_integer_literal] = ACTIONS(1554), - [aux_sym_string_literal_token1] = ACTIONS(1554), - [sym_char_literal] = ACTIONS(1554), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1556), - [sym_super] = ACTIONS(1556), - [sym_crate] = ACTIONS(1556), - [sym_metavariable] = ACTIONS(1554), - [sym__raw_string_literal_start] = ACTIONS(1554), - [sym_float_literal] = ACTIONS(1554), - }, - [STATE(492)] = { + [sym_identifier] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_RPAREN] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_u8] = ACTIONS(1730), + [anon_sym_i8] = ACTIONS(1730), + [anon_sym_u16] = ACTIONS(1730), + [anon_sym_i16] = ACTIONS(1730), + [anon_sym_u32] = ACTIONS(1730), + [anon_sym_i32] = ACTIONS(1730), + [anon_sym_u64] = ACTIONS(1730), + [anon_sym_i64] = ACTIONS(1730), + [anon_sym_u128] = ACTIONS(1730), + [anon_sym_i128] = ACTIONS(1730), + [anon_sym_isize] = ACTIONS(1730), + [anon_sym_usize] = ACTIONS(1730), + [anon_sym_f32] = ACTIONS(1730), + [anon_sym_f64] = ACTIONS(1730), + [anon_sym_bool] = ACTIONS(1730), + [anon_sym_str] = ACTIONS(1730), + [anon_sym_char] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1412), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_async] = ACTIONS(1736), + [anon_sym_const] = ACTIONS(1738), + [anon_sym_default] = ACTIONS(1740), + [anon_sym_gen] = ACTIONS(1740), + [anon_sym_static] = ACTIONS(1420), + [anon_sym_union] = ACTIONS(1740), + [anon_sym_ref] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1422), + [anon_sym_raw] = ACTIONS(1740), + [anon_sym_move] = ACTIONS(1424), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1742), + [sym_super] = ACTIONS(1742), + [sym_crate] = ACTIONS(1742), + [sym_metavariable] = ACTIONS(1744), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [492] = { + [sym_bracketed_type] = STATE(3787), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_macro_invocation] = STATE(2198), + [sym_scoped_identifier] = STATE(2034), + [sym_scoped_type_identifier] = STATE(2991), + [sym_const_block] = STATE(2198), + [sym_closure_expression] = STATE(3220), + [sym_closure_parameters] = STATE(227), + [sym__pattern] = STATE(3020), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), [sym_line_comment] = STATE(492), [sym_block_comment] = STATE(492), - [sym_identifier] = ACTIONS(1494), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_LBRACK] = ACTIONS(1492), - [anon_sym_RBRACE] = ACTIONS(1492), - [anon_sym_PLUS] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1494), - [anon_sym_QMARK] = ACTIONS(1492), - [anon_sym_u8] = ACTIONS(1494), - [anon_sym_i8] = ACTIONS(1494), - [anon_sym_u16] = ACTIONS(1494), - [anon_sym_i16] = ACTIONS(1494), - [anon_sym_u32] = ACTIONS(1494), - [anon_sym_i32] = ACTIONS(1494), - [anon_sym_u64] = ACTIONS(1494), - [anon_sym_i64] = ACTIONS(1494), - [anon_sym_u128] = ACTIONS(1494), - [anon_sym_i128] = ACTIONS(1494), - [anon_sym_isize] = ACTIONS(1494), - [anon_sym_usize] = ACTIONS(1494), - [anon_sym_f32] = ACTIONS(1494), - [anon_sym_f64] = ACTIONS(1494), - [anon_sym_bool] = ACTIONS(1494), - [anon_sym_str] = ACTIONS(1494), - [anon_sym_char] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_SLASH] = ACTIONS(1494), - [anon_sym_PERCENT] = ACTIONS(1494), - [anon_sym_CARET] = ACTIONS(1494), - [anon_sym_AMP] = ACTIONS(1494), - [anon_sym_PIPE] = ACTIONS(1494), - [anon_sym_AMP_AMP] = ACTIONS(1492), - [anon_sym_PIPE_PIPE] = ACTIONS(1492), - [anon_sym_LT_LT] = ACTIONS(1494), - [anon_sym_GT_GT] = ACTIONS(1494), - [anon_sym_PLUS_EQ] = ACTIONS(1492), - [anon_sym_DASH_EQ] = ACTIONS(1492), - [anon_sym_STAR_EQ] = ACTIONS(1492), - [anon_sym_SLASH_EQ] = ACTIONS(1492), - [anon_sym_PERCENT_EQ] = ACTIONS(1492), - [anon_sym_CARET_EQ] = ACTIONS(1492), - [anon_sym_AMP_EQ] = ACTIONS(1492), - [anon_sym_PIPE_EQ] = ACTIONS(1492), - [anon_sym_LT_LT_EQ] = ACTIONS(1492), - [anon_sym_GT_GT_EQ] = ACTIONS(1492), - [anon_sym_EQ] = ACTIONS(1494), - [anon_sym_EQ_EQ] = ACTIONS(1492), - [anon_sym_BANG_EQ] = ACTIONS(1492), - [anon_sym_GT] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(1494), - [anon_sym_GT_EQ] = ACTIONS(1492), - [anon_sym_LT_EQ] = ACTIONS(1492), - [anon_sym__] = ACTIONS(1494), - [anon_sym_DOT] = ACTIONS(1494), - [anon_sym_DOT_DOT] = ACTIONS(1494), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1492), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1492), - [anon_sym_COMMA] = ACTIONS(1492), - [anon_sym_COLON_COLON] = ACTIONS(1492), - [anon_sym_POUND] = ACTIONS(1492), - [anon_sym_as] = ACTIONS(1494), - [anon_sym_const] = ACTIONS(1494), - [anon_sym_default] = ACTIONS(1494), - [anon_sym_gen] = ACTIONS(1494), - [anon_sym_union] = ACTIONS(1494), - [anon_sym_ref] = ACTIONS(1494), - [sym_mutable_specifier] = ACTIONS(1494), - [anon_sym_raw] = ACTIONS(1494), - [sym_integer_literal] = ACTIONS(1492), - [aux_sym_string_literal_token1] = ACTIONS(1492), - [sym_char_literal] = ACTIONS(1492), - [anon_sym_true] = ACTIONS(1494), - [anon_sym_false] = ACTIONS(1494), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1494), - [sym_super] = ACTIONS(1494), - [sym_crate] = ACTIONS(1494), - [sym_metavariable] = ACTIONS(1492), - [sym__raw_string_literal_start] = ACTIONS(1492), - [sym_float_literal] = ACTIONS(1492), - }, - [STATE(493)] = { + [sym_identifier] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_RPAREN] = ACTIONS(1829), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_u8] = ACTIONS(1730), + [anon_sym_i8] = ACTIONS(1730), + [anon_sym_u16] = ACTIONS(1730), + [anon_sym_i16] = ACTIONS(1730), + [anon_sym_u32] = ACTIONS(1730), + [anon_sym_i32] = ACTIONS(1730), + [anon_sym_u64] = ACTIONS(1730), + [anon_sym_i64] = ACTIONS(1730), + [anon_sym_u128] = ACTIONS(1730), + [anon_sym_i128] = ACTIONS(1730), + [anon_sym_isize] = ACTIONS(1730), + [anon_sym_usize] = ACTIONS(1730), + [anon_sym_f32] = ACTIONS(1730), + [anon_sym_f64] = ACTIONS(1730), + [anon_sym_bool] = ACTIONS(1730), + [anon_sym_str] = ACTIONS(1730), + [anon_sym_char] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1412), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_async] = ACTIONS(1736), + [anon_sym_const] = ACTIONS(1738), + [anon_sym_default] = ACTIONS(1740), + [anon_sym_gen] = ACTIONS(1740), + [anon_sym_static] = ACTIONS(1420), + [anon_sym_union] = ACTIONS(1740), + [anon_sym_ref] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1422), + [anon_sym_raw] = ACTIONS(1740), + [anon_sym_move] = ACTIONS(1424), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1742), + [sym_super] = ACTIONS(1742), + [sym_crate] = ACTIONS(1742), + [sym_metavariable] = ACTIONS(1744), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [493] = { + [sym_bracketed_type] = STATE(3787), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_macro_invocation] = STATE(2198), + [sym_scoped_identifier] = STATE(2034), + [sym_scoped_type_identifier] = STATE(2991), + [sym_const_block] = STATE(2198), + [sym_closure_expression] = STATE(3220), + [sym_closure_parameters] = STATE(227), + [sym__pattern] = STATE(3020), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), [sym_line_comment] = STATE(493), [sym_block_comment] = STATE(493), - [sym_identifier] = ACTIONS(1522), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_RBRACE] = ACTIONS(1520), - [anon_sym_PLUS] = ACTIONS(1522), - [anon_sym_STAR] = ACTIONS(1522), - [anon_sym_QMARK] = ACTIONS(1520), - [anon_sym_u8] = ACTIONS(1522), - [anon_sym_i8] = ACTIONS(1522), - [anon_sym_u16] = ACTIONS(1522), - [anon_sym_i16] = ACTIONS(1522), - [anon_sym_u32] = ACTIONS(1522), - [anon_sym_i32] = ACTIONS(1522), - [anon_sym_u64] = ACTIONS(1522), - [anon_sym_i64] = ACTIONS(1522), - [anon_sym_u128] = ACTIONS(1522), - [anon_sym_i128] = ACTIONS(1522), - [anon_sym_isize] = ACTIONS(1522), - [anon_sym_usize] = ACTIONS(1522), - [anon_sym_f32] = ACTIONS(1522), - [anon_sym_f64] = ACTIONS(1522), - [anon_sym_bool] = ACTIONS(1522), - [anon_sym_str] = ACTIONS(1522), - [anon_sym_char] = ACTIONS(1522), - [anon_sym_DASH] = ACTIONS(1522), - [anon_sym_SLASH] = ACTIONS(1522), - [anon_sym_PERCENT] = ACTIONS(1522), - [anon_sym_CARET] = ACTIONS(1522), - [anon_sym_AMP] = ACTIONS(1522), - [anon_sym_PIPE] = ACTIONS(1522), - [anon_sym_AMP_AMP] = ACTIONS(1520), - [anon_sym_PIPE_PIPE] = ACTIONS(1520), - [anon_sym_LT_LT] = ACTIONS(1522), - [anon_sym_GT_GT] = ACTIONS(1522), - [anon_sym_PLUS_EQ] = ACTIONS(1520), - [anon_sym_DASH_EQ] = ACTIONS(1520), - [anon_sym_STAR_EQ] = ACTIONS(1520), - [anon_sym_SLASH_EQ] = ACTIONS(1520), - [anon_sym_PERCENT_EQ] = ACTIONS(1520), - [anon_sym_CARET_EQ] = ACTIONS(1520), - [anon_sym_AMP_EQ] = ACTIONS(1520), - [anon_sym_PIPE_EQ] = ACTIONS(1520), - [anon_sym_LT_LT_EQ] = ACTIONS(1520), - [anon_sym_GT_GT_EQ] = ACTIONS(1520), - [anon_sym_EQ] = ACTIONS(1522), - [anon_sym_EQ_EQ] = ACTIONS(1520), - [anon_sym_BANG_EQ] = ACTIONS(1520), - [anon_sym_GT] = ACTIONS(1522), - [anon_sym_LT] = ACTIONS(1522), - [anon_sym_GT_EQ] = ACTIONS(1520), - [anon_sym_LT_EQ] = ACTIONS(1520), - [anon_sym__] = ACTIONS(1522), - [anon_sym_DOT] = ACTIONS(1522), - [anon_sym_DOT_DOT] = ACTIONS(1522), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1520), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1520), - [anon_sym_COMMA] = ACTIONS(1520), - [anon_sym_COLON_COLON] = ACTIONS(1520), - [anon_sym_POUND] = ACTIONS(1520), - [anon_sym_as] = ACTIONS(1522), - [anon_sym_const] = ACTIONS(1522), - [anon_sym_default] = ACTIONS(1522), - [anon_sym_gen] = ACTIONS(1522), - [anon_sym_union] = ACTIONS(1522), - [anon_sym_ref] = ACTIONS(1522), - [sym_mutable_specifier] = ACTIONS(1522), - [anon_sym_raw] = ACTIONS(1522), - [sym_integer_literal] = ACTIONS(1520), - [aux_sym_string_literal_token1] = ACTIONS(1520), - [sym_char_literal] = ACTIONS(1520), - [anon_sym_true] = ACTIONS(1522), - [anon_sym_false] = ACTIONS(1522), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1522), - [sym_super] = ACTIONS(1522), - [sym_crate] = ACTIONS(1522), - [sym_metavariable] = ACTIONS(1520), - [sym__raw_string_literal_start] = ACTIONS(1520), - [sym_float_literal] = ACTIONS(1520), - }, - [STATE(494)] = { + [sym_identifier] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_RPAREN] = ACTIONS(1831), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_u8] = ACTIONS(1730), + [anon_sym_i8] = ACTIONS(1730), + [anon_sym_u16] = ACTIONS(1730), + [anon_sym_i16] = ACTIONS(1730), + [anon_sym_u32] = ACTIONS(1730), + [anon_sym_i32] = ACTIONS(1730), + [anon_sym_u64] = ACTIONS(1730), + [anon_sym_i64] = ACTIONS(1730), + [anon_sym_u128] = ACTIONS(1730), + [anon_sym_i128] = ACTIONS(1730), + [anon_sym_isize] = ACTIONS(1730), + [anon_sym_usize] = ACTIONS(1730), + [anon_sym_f32] = ACTIONS(1730), + [anon_sym_f64] = ACTIONS(1730), + [anon_sym_bool] = ACTIONS(1730), + [anon_sym_str] = ACTIONS(1730), + [anon_sym_char] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1412), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_async] = ACTIONS(1736), + [anon_sym_const] = ACTIONS(1738), + [anon_sym_default] = ACTIONS(1740), + [anon_sym_gen] = ACTIONS(1740), + [anon_sym_static] = ACTIONS(1420), + [anon_sym_union] = ACTIONS(1740), + [anon_sym_ref] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1422), + [anon_sym_raw] = ACTIONS(1740), + [anon_sym_move] = ACTIONS(1424), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1742), + [sym_super] = ACTIONS(1742), + [sym_crate] = ACTIONS(1742), + [sym_metavariable] = ACTIONS(1744), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [494] = { + [sym_bracketed_type] = STATE(3787), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_macro_invocation] = STATE(2198), + [sym_scoped_identifier] = STATE(2034), + [sym_scoped_type_identifier] = STATE(2991), + [sym_const_block] = STATE(2198), + [sym_closure_expression] = STATE(3220), + [sym_closure_parameters] = STATE(227), + [sym__pattern] = STATE(3020), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), [sym_line_comment] = STATE(494), [sym_block_comment] = STATE(494), - [sym_identifier] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1516), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_RBRACE] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1518), - [anon_sym_STAR] = ACTIONS(1518), - [anon_sym_QMARK] = ACTIONS(1516), - [anon_sym_u8] = ACTIONS(1518), - [anon_sym_i8] = ACTIONS(1518), - [anon_sym_u16] = ACTIONS(1518), - [anon_sym_i16] = ACTIONS(1518), - [anon_sym_u32] = ACTIONS(1518), - [anon_sym_i32] = ACTIONS(1518), - [anon_sym_u64] = ACTIONS(1518), - [anon_sym_i64] = ACTIONS(1518), - [anon_sym_u128] = ACTIONS(1518), - [anon_sym_i128] = ACTIONS(1518), - [anon_sym_isize] = ACTIONS(1518), - [anon_sym_usize] = ACTIONS(1518), - [anon_sym_f32] = ACTIONS(1518), - [anon_sym_f64] = ACTIONS(1518), - [anon_sym_bool] = ACTIONS(1518), - [anon_sym_str] = ACTIONS(1518), - [anon_sym_char] = ACTIONS(1518), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_SLASH] = ACTIONS(1518), - [anon_sym_PERCENT] = ACTIONS(1518), - [anon_sym_CARET] = ACTIONS(1518), - [anon_sym_AMP] = ACTIONS(1518), - [anon_sym_PIPE] = ACTIONS(1518), - [anon_sym_AMP_AMP] = ACTIONS(1516), - [anon_sym_PIPE_PIPE] = ACTIONS(1516), - [anon_sym_LT_LT] = ACTIONS(1518), - [anon_sym_GT_GT] = ACTIONS(1518), - [anon_sym_PLUS_EQ] = ACTIONS(1516), - [anon_sym_DASH_EQ] = ACTIONS(1516), - [anon_sym_STAR_EQ] = ACTIONS(1516), - [anon_sym_SLASH_EQ] = ACTIONS(1516), - [anon_sym_PERCENT_EQ] = ACTIONS(1516), - [anon_sym_CARET_EQ] = ACTIONS(1516), - [anon_sym_AMP_EQ] = ACTIONS(1516), - [anon_sym_PIPE_EQ] = ACTIONS(1516), - [anon_sym_LT_LT_EQ] = ACTIONS(1516), - [anon_sym_GT_GT_EQ] = ACTIONS(1516), - [anon_sym_EQ] = ACTIONS(1518), - [anon_sym_EQ_EQ] = ACTIONS(1516), - [anon_sym_BANG_EQ] = ACTIONS(1516), - [anon_sym_GT] = ACTIONS(1518), - [anon_sym_LT] = ACTIONS(1518), - [anon_sym_GT_EQ] = ACTIONS(1516), - [anon_sym_LT_EQ] = ACTIONS(1516), - [anon_sym__] = ACTIONS(1518), - [anon_sym_DOT] = ACTIONS(1518), - [anon_sym_DOT_DOT] = ACTIONS(1518), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1516), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1516), - [anon_sym_COMMA] = ACTIONS(1516), - [anon_sym_COLON_COLON] = ACTIONS(1516), - [anon_sym_POUND] = ACTIONS(1516), - [anon_sym_as] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1518), - [anon_sym_default] = ACTIONS(1518), - [anon_sym_gen] = ACTIONS(1518), - [anon_sym_union] = ACTIONS(1518), - [anon_sym_ref] = ACTIONS(1518), - [sym_mutable_specifier] = ACTIONS(1518), - [anon_sym_raw] = ACTIONS(1518), - [sym_integer_literal] = ACTIONS(1516), - [aux_sym_string_literal_token1] = ACTIONS(1516), - [sym_char_literal] = ACTIONS(1516), - [anon_sym_true] = ACTIONS(1518), - [anon_sym_false] = ACTIONS(1518), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1518), - [sym_super] = ACTIONS(1518), - [sym_crate] = ACTIONS(1518), - [sym_metavariable] = ACTIONS(1516), - [sym__raw_string_literal_start] = ACTIONS(1516), - [sym_float_literal] = ACTIONS(1516), - }, - [STATE(495)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym_closure_expression] = STATE(3030), - [sym_closure_parameters] = STATE(242), - [sym__pattern] = STATE(2669), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_identifier] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_RPAREN] = ACTIONS(1833), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_u8] = ACTIONS(1730), + [anon_sym_i8] = ACTIONS(1730), + [anon_sym_u16] = ACTIONS(1730), + [anon_sym_i16] = ACTIONS(1730), + [anon_sym_u32] = ACTIONS(1730), + [anon_sym_i32] = ACTIONS(1730), + [anon_sym_u64] = ACTIONS(1730), + [anon_sym_i64] = ACTIONS(1730), + [anon_sym_u128] = ACTIONS(1730), + [anon_sym_i128] = ACTIONS(1730), + [anon_sym_isize] = ACTIONS(1730), + [anon_sym_usize] = ACTIONS(1730), + [anon_sym_f32] = ACTIONS(1730), + [anon_sym_f64] = ACTIONS(1730), + [anon_sym_bool] = ACTIONS(1730), + [anon_sym_str] = ACTIONS(1730), + [anon_sym_char] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1412), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_async] = ACTIONS(1736), + [anon_sym_const] = ACTIONS(1738), + [anon_sym_default] = ACTIONS(1740), + [anon_sym_gen] = ACTIONS(1740), + [anon_sym_static] = ACTIONS(1420), + [anon_sym_union] = ACTIONS(1740), + [anon_sym_ref] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1422), + [anon_sym_raw] = ACTIONS(1740), + [anon_sym_move] = ACTIONS(1424), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1742), + [sym_super] = ACTIONS(1742), + [sym_crate] = ACTIONS(1742), + [sym_metavariable] = ACTIONS(1744), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [495] = { [sym_line_comment] = STATE(495), [sym_block_comment] = STATE(495), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_RPAREN] = ACTIONS(1833), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1420), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COMMA] = ACTIONS(1424), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_async] = ACTIONS(1746), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_static] = ACTIONS(1428), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [anon_sym_move] = ACTIONS(1432), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(496)] = { + [ts_builtin_sym_end] = ACTIONS(1835), + [sym_identifier] = ACTIONS(1837), + [anon_sym_SEMI] = ACTIONS(1835), + [anon_sym_macro_rules_BANG] = ACTIONS(1835), + [anon_sym_LPAREN] = ACTIONS(1835), + [anon_sym_LBRACK] = ACTIONS(1835), + [anon_sym_LBRACE] = ACTIONS(1835), + [anon_sym_RBRACE] = ACTIONS(1835), + [anon_sym_STAR] = ACTIONS(1835), + [anon_sym_u8] = ACTIONS(1837), + [anon_sym_i8] = ACTIONS(1837), + [anon_sym_u16] = ACTIONS(1837), + [anon_sym_i16] = ACTIONS(1837), + [anon_sym_u32] = ACTIONS(1837), + [anon_sym_i32] = ACTIONS(1837), + [anon_sym_u64] = ACTIONS(1837), + [anon_sym_i64] = ACTIONS(1837), + [anon_sym_u128] = ACTIONS(1837), + [anon_sym_i128] = ACTIONS(1837), + [anon_sym_isize] = ACTIONS(1837), + [anon_sym_usize] = ACTIONS(1837), + [anon_sym_f32] = ACTIONS(1837), + [anon_sym_f64] = ACTIONS(1837), + [anon_sym_bool] = ACTIONS(1837), + [anon_sym_str] = ACTIONS(1837), + [anon_sym_char] = ACTIONS(1837), + [anon_sym_DASH] = ACTIONS(1835), + [anon_sym_BANG] = ACTIONS(1835), + [anon_sym_AMP] = ACTIONS(1835), + [anon_sym_PIPE] = ACTIONS(1835), + [anon_sym_LT] = ACTIONS(1835), + [anon_sym_DOT_DOT] = ACTIONS(1835), + [anon_sym_COLON_COLON] = ACTIONS(1835), + [anon_sym_POUND] = ACTIONS(1835), + [anon_sym_SQUOTE] = ACTIONS(1837), + [anon_sym_async] = ACTIONS(1837), + [anon_sym_break] = ACTIONS(1837), + [anon_sym_const] = ACTIONS(1837), + [anon_sym_continue] = ACTIONS(1837), + [anon_sym_default] = ACTIONS(1837), + [anon_sym_enum] = ACTIONS(1837), + [anon_sym_fn] = ACTIONS(1837), + [anon_sym_for] = ACTIONS(1837), + [anon_sym_gen] = ACTIONS(1837), + [anon_sym_if] = ACTIONS(1837), + [anon_sym_impl] = ACTIONS(1837), + [anon_sym_let] = ACTIONS(1837), + [anon_sym_loop] = ACTIONS(1837), + [anon_sym_match] = ACTIONS(1837), + [anon_sym_mod] = ACTIONS(1837), + [anon_sym_pub] = ACTIONS(1837), + [anon_sym_return] = ACTIONS(1837), + [anon_sym_static] = ACTIONS(1837), + [anon_sym_struct] = ACTIONS(1837), + [anon_sym_trait] = ACTIONS(1837), + [anon_sym_type] = ACTIONS(1837), + [anon_sym_union] = ACTIONS(1837), + [anon_sym_unsafe] = ACTIONS(1837), + [anon_sym_use] = ACTIONS(1837), + [anon_sym_while] = ACTIONS(1837), + [anon_sym_extern] = ACTIONS(1837), + [anon_sym_raw] = ACTIONS(1837), + [anon_sym_yield] = ACTIONS(1837), + [anon_sym_move] = ACTIONS(1837), + [anon_sym_try] = ACTIONS(1837), + [sym_integer_literal] = ACTIONS(1835), + [aux_sym_string_literal_token1] = ACTIONS(1835), + [sym_char_literal] = ACTIONS(1835), + [anon_sym_true] = ACTIONS(1837), + [anon_sym_false] = ACTIONS(1837), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1837), + [sym_super] = ACTIONS(1837), + [sym_crate] = ACTIONS(1837), + [sym_metavariable] = ACTIONS(1835), + [sym__raw_string_literal_start] = ACTIONS(1835), + [sym_float_literal] = ACTIONS(1835), + }, + [496] = { [sym_line_comment] = STATE(496), [sym_block_comment] = STATE(496), - [sym_identifier] = ACTIONS(1482), - [anon_sym_LPAREN] = ACTIONS(1480), - [anon_sym_LBRACK] = ACTIONS(1480), - [anon_sym_RBRACE] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_STAR] = ACTIONS(1482), - [anon_sym_QMARK] = ACTIONS(1480), - [anon_sym_u8] = ACTIONS(1482), - [anon_sym_i8] = ACTIONS(1482), - [anon_sym_u16] = ACTIONS(1482), - [anon_sym_i16] = ACTIONS(1482), - [anon_sym_u32] = ACTIONS(1482), - [anon_sym_i32] = ACTIONS(1482), - [anon_sym_u64] = ACTIONS(1482), - [anon_sym_i64] = ACTIONS(1482), - [anon_sym_u128] = ACTIONS(1482), - [anon_sym_i128] = ACTIONS(1482), - [anon_sym_isize] = ACTIONS(1482), - [anon_sym_usize] = ACTIONS(1482), - [anon_sym_f32] = ACTIONS(1482), - [anon_sym_f64] = ACTIONS(1482), - [anon_sym_bool] = ACTIONS(1482), - [anon_sym_str] = ACTIONS(1482), - [anon_sym_char] = ACTIONS(1482), - [anon_sym_DASH] = ACTIONS(1482), - [anon_sym_SLASH] = ACTIONS(1482), - [anon_sym_PERCENT] = ACTIONS(1482), - [anon_sym_CARET] = ACTIONS(1482), - [anon_sym_AMP] = ACTIONS(1482), - [anon_sym_PIPE] = ACTIONS(1482), - [anon_sym_AMP_AMP] = ACTIONS(1480), - [anon_sym_PIPE_PIPE] = ACTIONS(1480), - [anon_sym_LT_LT] = ACTIONS(1482), - [anon_sym_GT_GT] = ACTIONS(1482), - [anon_sym_PLUS_EQ] = ACTIONS(1480), - [anon_sym_DASH_EQ] = ACTIONS(1480), - [anon_sym_STAR_EQ] = ACTIONS(1480), - [anon_sym_SLASH_EQ] = ACTIONS(1480), - [anon_sym_PERCENT_EQ] = ACTIONS(1480), - [anon_sym_CARET_EQ] = ACTIONS(1480), - [anon_sym_AMP_EQ] = ACTIONS(1480), - [anon_sym_PIPE_EQ] = ACTIONS(1480), - [anon_sym_LT_LT_EQ] = ACTIONS(1480), - [anon_sym_GT_GT_EQ] = ACTIONS(1480), - [anon_sym_EQ] = ACTIONS(1482), - [anon_sym_EQ_EQ] = ACTIONS(1480), - [anon_sym_BANG_EQ] = ACTIONS(1480), - [anon_sym_GT] = ACTIONS(1482), - [anon_sym_LT] = ACTIONS(1482), - [anon_sym_GT_EQ] = ACTIONS(1480), - [anon_sym_LT_EQ] = ACTIONS(1480), - [anon_sym__] = ACTIONS(1482), - [anon_sym_DOT] = ACTIONS(1482), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1480), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1480), - [anon_sym_COMMA] = ACTIONS(1480), - [anon_sym_COLON_COLON] = ACTIONS(1480), - [anon_sym_POUND] = ACTIONS(1480), - [anon_sym_as] = ACTIONS(1482), - [anon_sym_const] = ACTIONS(1482), - [anon_sym_default] = ACTIONS(1482), - [anon_sym_gen] = ACTIONS(1482), - [anon_sym_union] = ACTIONS(1482), - [anon_sym_ref] = ACTIONS(1482), - [sym_mutable_specifier] = ACTIONS(1482), - [anon_sym_raw] = ACTIONS(1482), - [sym_integer_literal] = ACTIONS(1480), - [aux_sym_string_literal_token1] = ACTIONS(1480), - [sym_char_literal] = ACTIONS(1480), - [anon_sym_true] = ACTIONS(1482), - [anon_sym_false] = ACTIONS(1482), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1482), - [sym_super] = ACTIONS(1482), - [sym_crate] = ACTIONS(1482), - [sym_metavariable] = ACTIONS(1480), - [sym__raw_string_literal_start] = ACTIONS(1480), - [sym_float_literal] = ACTIONS(1480), - }, - [STATE(497)] = { + [ts_builtin_sym_end] = ACTIONS(1839), + [sym_identifier] = ACTIONS(1841), + [anon_sym_SEMI] = ACTIONS(1839), + [anon_sym_macro_rules_BANG] = ACTIONS(1839), + [anon_sym_LPAREN] = ACTIONS(1839), + [anon_sym_LBRACK] = ACTIONS(1839), + [anon_sym_LBRACE] = ACTIONS(1839), + [anon_sym_RBRACE] = ACTIONS(1839), + [anon_sym_STAR] = ACTIONS(1839), + [anon_sym_u8] = ACTIONS(1841), + [anon_sym_i8] = ACTIONS(1841), + [anon_sym_u16] = ACTIONS(1841), + [anon_sym_i16] = ACTIONS(1841), + [anon_sym_u32] = ACTIONS(1841), + [anon_sym_i32] = ACTIONS(1841), + [anon_sym_u64] = ACTIONS(1841), + [anon_sym_i64] = ACTIONS(1841), + [anon_sym_u128] = ACTIONS(1841), + [anon_sym_i128] = ACTIONS(1841), + [anon_sym_isize] = ACTIONS(1841), + [anon_sym_usize] = ACTIONS(1841), + [anon_sym_f32] = ACTIONS(1841), + [anon_sym_f64] = ACTIONS(1841), + [anon_sym_bool] = ACTIONS(1841), + [anon_sym_str] = ACTIONS(1841), + [anon_sym_char] = ACTIONS(1841), + [anon_sym_DASH] = ACTIONS(1839), + [anon_sym_BANG] = ACTIONS(1839), + [anon_sym_AMP] = ACTIONS(1839), + [anon_sym_PIPE] = ACTIONS(1839), + [anon_sym_LT] = ACTIONS(1839), + [anon_sym_DOT_DOT] = ACTIONS(1839), + [anon_sym_COLON_COLON] = ACTIONS(1839), + [anon_sym_POUND] = ACTIONS(1839), + [anon_sym_SQUOTE] = ACTIONS(1841), + [anon_sym_async] = ACTIONS(1841), + [anon_sym_break] = ACTIONS(1841), + [anon_sym_const] = ACTIONS(1841), + [anon_sym_continue] = ACTIONS(1841), + [anon_sym_default] = ACTIONS(1841), + [anon_sym_enum] = ACTIONS(1841), + [anon_sym_fn] = ACTIONS(1841), + [anon_sym_for] = ACTIONS(1841), + [anon_sym_gen] = ACTIONS(1841), + [anon_sym_if] = ACTIONS(1841), + [anon_sym_impl] = ACTIONS(1841), + [anon_sym_let] = ACTIONS(1841), + [anon_sym_loop] = ACTIONS(1841), + [anon_sym_match] = ACTIONS(1841), + [anon_sym_mod] = ACTIONS(1841), + [anon_sym_pub] = ACTIONS(1841), + [anon_sym_return] = ACTIONS(1841), + [anon_sym_static] = ACTIONS(1841), + [anon_sym_struct] = ACTIONS(1841), + [anon_sym_trait] = ACTIONS(1841), + [anon_sym_type] = ACTIONS(1841), + [anon_sym_union] = ACTIONS(1841), + [anon_sym_unsafe] = ACTIONS(1841), + [anon_sym_use] = ACTIONS(1841), + [anon_sym_while] = ACTIONS(1841), + [anon_sym_extern] = ACTIONS(1841), + [anon_sym_raw] = ACTIONS(1841), + [anon_sym_yield] = ACTIONS(1841), + [anon_sym_move] = ACTIONS(1841), + [anon_sym_try] = ACTIONS(1841), + [sym_integer_literal] = ACTIONS(1839), + [aux_sym_string_literal_token1] = ACTIONS(1839), + [sym_char_literal] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1841), + [sym_super] = ACTIONS(1841), + [sym_crate] = ACTIONS(1841), + [sym_metavariable] = ACTIONS(1839), + [sym__raw_string_literal_start] = ACTIONS(1839), + [sym_float_literal] = ACTIONS(1839), + }, + [497] = { [sym_line_comment] = STATE(497), [sym_block_comment] = STATE(497), - [sym_identifier] = ACTIONS(1526), - [anon_sym_LPAREN] = ACTIONS(1524), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_RBRACE] = ACTIONS(1524), - [anon_sym_PLUS] = ACTIONS(1526), - [anon_sym_STAR] = ACTIONS(1526), - [anon_sym_QMARK] = ACTIONS(1524), - [anon_sym_u8] = ACTIONS(1526), - [anon_sym_i8] = ACTIONS(1526), - [anon_sym_u16] = ACTIONS(1526), - [anon_sym_i16] = ACTIONS(1526), - [anon_sym_u32] = ACTIONS(1526), - [anon_sym_i32] = ACTIONS(1526), - [anon_sym_u64] = ACTIONS(1526), - [anon_sym_i64] = ACTIONS(1526), - [anon_sym_u128] = ACTIONS(1526), - [anon_sym_i128] = ACTIONS(1526), - [anon_sym_isize] = ACTIONS(1526), - [anon_sym_usize] = ACTIONS(1526), - [anon_sym_f32] = ACTIONS(1526), - [anon_sym_f64] = ACTIONS(1526), - [anon_sym_bool] = ACTIONS(1526), - [anon_sym_str] = ACTIONS(1526), - [anon_sym_char] = ACTIONS(1526), - [anon_sym_DASH] = ACTIONS(1526), - [anon_sym_SLASH] = ACTIONS(1526), - [anon_sym_PERCENT] = ACTIONS(1526), - [anon_sym_CARET] = ACTIONS(1526), - [anon_sym_AMP] = ACTIONS(1526), - [anon_sym_PIPE] = ACTIONS(1526), - [anon_sym_AMP_AMP] = ACTIONS(1524), - [anon_sym_PIPE_PIPE] = ACTIONS(1524), - [anon_sym_LT_LT] = ACTIONS(1526), - [anon_sym_GT_GT] = ACTIONS(1526), - [anon_sym_PLUS_EQ] = ACTIONS(1524), - [anon_sym_DASH_EQ] = ACTIONS(1524), - [anon_sym_STAR_EQ] = ACTIONS(1524), - [anon_sym_SLASH_EQ] = ACTIONS(1524), - [anon_sym_PERCENT_EQ] = ACTIONS(1524), - [anon_sym_CARET_EQ] = ACTIONS(1524), - [anon_sym_AMP_EQ] = ACTIONS(1524), - [anon_sym_PIPE_EQ] = ACTIONS(1524), - [anon_sym_LT_LT_EQ] = ACTIONS(1524), - [anon_sym_GT_GT_EQ] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(1526), - [anon_sym_EQ_EQ] = ACTIONS(1524), - [anon_sym_BANG_EQ] = ACTIONS(1524), - [anon_sym_GT] = ACTIONS(1526), - [anon_sym_LT] = ACTIONS(1526), - [anon_sym_GT_EQ] = ACTIONS(1524), - [anon_sym_LT_EQ] = ACTIONS(1524), - [anon_sym__] = ACTIONS(1526), - [anon_sym_DOT] = ACTIONS(1526), - [anon_sym_DOT_DOT] = ACTIONS(1526), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1524), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1524), - [anon_sym_COMMA] = ACTIONS(1524), - [anon_sym_COLON_COLON] = ACTIONS(1524), - [anon_sym_POUND] = ACTIONS(1524), - [anon_sym_as] = ACTIONS(1526), - [anon_sym_const] = ACTIONS(1526), - [anon_sym_default] = ACTIONS(1526), - [anon_sym_gen] = ACTIONS(1526), - [anon_sym_union] = ACTIONS(1526), - [anon_sym_ref] = ACTIONS(1526), - [sym_mutable_specifier] = ACTIONS(1526), - [anon_sym_raw] = ACTIONS(1526), - [sym_integer_literal] = ACTIONS(1524), - [aux_sym_string_literal_token1] = ACTIONS(1524), - [sym_char_literal] = ACTIONS(1524), - [anon_sym_true] = ACTIONS(1526), - [anon_sym_false] = ACTIONS(1526), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1526), - [sym_super] = ACTIONS(1526), - [sym_crate] = ACTIONS(1526), - [sym_metavariable] = ACTIONS(1524), - [sym__raw_string_literal_start] = ACTIONS(1524), - [sym_float_literal] = ACTIONS(1524), - }, - [STATE(498)] = { - [sym_line_comment] = STATE(498), - [sym_block_comment] = STATE(498), - [sym_identifier] = ACTIONS(1468), - [anon_sym_LPAREN] = ACTIONS(1466), - [anon_sym_LBRACK] = ACTIONS(1466), - [anon_sym_RBRACE] = ACTIONS(1466), - [anon_sym_PLUS] = ACTIONS(1468), - [anon_sym_STAR] = ACTIONS(1468), - [anon_sym_QMARK] = ACTIONS(1466), - [anon_sym_u8] = ACTIONS(1468), - [anon_sym_i8] = ACTIONS(1468), - [anon_sym_u16] = ACTIONS(1468), - [anon_sym_i16] = ACTIONS(1468), - [anon_sym_u32] = ACTIONS(1468), - [anon_sym_i32] = ACTIONS(1468), - [anon_sym_u64] = ACTIONS(1468), - [anon_sym_i64] = ACTIONS(1468), - [anon_sym_u128] = ACTIONS(1468), - [anon_sym_i128] = ACTIONS(1468), - [anon_sym_isize] = ACTIONS(1468), - [anon_sym_usize] = ACTIONS(1468), - [anon_sym_f32] = ACTIONS(1468), - [anon_sym_f64] = ACTIONS(1468), - [anon_sym_bool] = ACTIONS(1468), - [anon_sym_str] = ACTIONS(1468), - [anon_sym_char] = ACTIONS(1468), - [anon_sym_DASH] = ACTIONS(1468), - [anon_sym_SLASH] = ACTIONS(1468), - [anon_sym_PERCENT] = ACTIONS(1468), - [anon_sym_CARET] = ACTIONS(1468), - [anon_sym_AMP] = ACTIONS(1468), - [anon_sym_PIPE] = ACTIONS(1468), - [anon_sym_AMP_AMP] = ACTIONS(1466), - [anon_sym_PIPE_PIPE] = ACTIONS(1466), - [anon_sym_LT_LT] = ACTIONS(1468), - [anon_sym_GT_GT] = ACTIONS(1468), - [anon_sym_PLUS_EQ] = ACTIONS(1466), - [anon_sym_DASH_EQ] = ACTIONS(1466), - [anon_sym_STAR_EQ] = ACTIONS(1466), - [anon_sym_SLASH_EQ] = ACTIONS(1466), - [anon_sym_PERCENT_EQ] = ACTIONS(1466), - [anon_sym_CARET_EQ] = ACTIONS(1466), - [anon_sym_AMP_EQ] = ACTIONS(1466), - [anon_sym_PIPE_EQ] = ACTIONS(1466), - [anon_sym_LT_LT_EQ] = ACTIONS(1466), - [anon_sym_GT_GT_EQ] = ACTIONS(1466), - [anon_sym_EQ] = ACTIONS(1468), - [anon_sym_EQ_EQ] = ACTIONS(1466), - [anon_sym_BANG_EQ] = ACTIONS(1466), - [anon_sym_GT] = ACTIONS(1468), - [anon_sym_LT] = ACTIONS(1468), - [anon_sym_GT_EQ] = ACTIONS(1466), - [anon_sym_LT_EQ] = ACTIONS(1466), - [anon_sym__] = ACTIONS(1468), - [anon_sym_DOT] = ACTIONS(1468), - [anon_sym_DOT_DOT] = ACTIONS(1468), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1466), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1466), - [anon_sym_COMMA] = ACTIONS(1466), - [anon_sym_COLON_COLON] = ACTIONS(1466), - [anon_sym_POUND] = ACTIONS(1466), - [anon_sym_as] = ACTIONS(1468), - [anon_sym_const] = ACTIONS(1468), - [anon_sym_default] = ACTIONS(1468), - [anon_sym_gen] = ACTIONS(1468), - [anon_sym_union] = ACTIONS(1468), - [anon_sym_ref] = ACTIONS(1468), - [sym_mutable_specifier] = ACTIONS(1468), - [anon_sym_raw] = ACTIONS(1468), - [sym_integer_literal] = ACTIONS(1466), - [aux_sym_string_literal_token1] = ACTIONS(1466), - [sym_char_literal] = ACTIONS(1466), - [anon_sym_true] = ACTIONS(1468), - [anon_sym_false] = ACTIONS(1468), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1468), - [sym_super] = ACTIONS(1468), - [sym_crate] = ACTIONS(1468), - [sym_metavariable] = ACTIONS(1466), - [sym__raw_string_literal_start] = ACTIONS(1466), - [sym_float_literal] = ACTIONS(1466), - }, - [STATE(499)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym_closure_expression] = STATE(3415), - [sym_closure_parameters] = STATE(242), - [sym__pattern] = STATE(3151), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), - [sym_line_comment] = STATE(499), - [sym_block_comment] = STATE(499), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_RPAREN] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1420), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_async] = ACTIONS(1746), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_static] = ACTIONS(1428), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [anon_sym_move] = ACTIONS(1432), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(500)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym_closure_expression] = STATE(3415), - [sym_closure_parameters] = STATE(242), - [sym__pattern] = STATE(3151), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), - [sym_line_comment] = STATE(500), - [sym_block_comment] = STATE(500), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_RPAREN] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1420), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_async] = ACTIONS(1746), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_static] = ACTIONS(1428), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [anon_sym_move] = ACTIONS(1432), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(501)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym_closure_expression] = STATE(3415), - [sym_closure_parameters] = STATE(242), - [sym__pattern] = STATE(3151), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), - [sym_line_comment] = STATE(501), - [sym_block_comment] = STATE(501), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_RPAREN] = ACTIONS(1839), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1420), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_async] = ACTIONS(1746), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_static] = ACTIONS(1428), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [anon_sym_move] = ACTIONS(1432), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(502)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym_closure_expression] = STATE(3415), - [sym_closure_parameters] = STATE(242), - [sym__pattern] = STATE(3151), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), - [sym_line_comment] = STATE(502), - [sym_block_comment] = STATE(502), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_RPAREN] = ACTIONS(1841), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1420), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_async] = ACTIONS(1746), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_static] = ACTIONS(1428), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [anon_sym_move] = ACTIONS(1432), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(503)] = { - [sym_line_comment] = STATE(503), - [sym_block_comment] = STATE(503), [ts_builtin_sym_end] = ACTIONS(1843), [sym_identifier] = ACTIONS(1845), [anon_sym_SEMI] = ACTIONS(1843), @@ -73043,9 +72027,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1843), [sym_float_literal] = ACTIONS(1843), }, - [STATE(504)] = { - [sym_line_comment] = STATE(504), - [sym_block_comment] = STATE(504), + [498] = { + [sym_line_comment] = STATE(498), + [sym_block_comment] = STATE(498), [ts_builtin_sym_end] = ACTIONS(1847), [sym_identifier] = ACTIONS(1849), [anon_sym_SEMI] = ACTIONS(1847), @@ -73125,9 +72109,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1847), [sym_float_literal] = ACTIONS(1847), }, - [STATE(505)] = { - [sym_line_comment] = STATE(505), - [sym_block_comment] = STATE(505), + [499] = { + [sym_line_comment] = STATE(499), + [sym_block_comment] = STATE(499), [ts_builtin_sym_end] = ACTIONS(1851), [sym_identifier] = ACTIONS(1853), [anon_sym_SEMI] = ACTIONS(1851), @@ -73207,9 +72191,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1851), [sym_float_literal] = ACTIONS(1851), }, - [STATE(506)] = { - [sym_line_comment] = STATE(506), - [sym_block_comment] = STATE(506), + [500] = { + [sym_line_comment] = STATE(500), + [sym_block_comment] = STATE(500), [ts_builtin_sym_end] = ACTIONS(1855), [sym_identifier] = ACTIONS(1857), [anon_sym_SEMI] = ACTIONS(1855), @@ -73289,9 +72273,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1855), [sym_float_literal] = ACTIONS(1855), }, - [STATE(507)] = { - [sym_line_comment] = STATE(507), - [sym_block_comment] = STATE(507), + [501] = { + [sym_line_comment] = STATE(501), + [sym_block_comment] = STATE(501), [ts_builtin_sym_end] = ACTIONS(1859), [sym_identifier] = ACTIONS(1861), [anon_sym_SEMI] = ACTIONS(1859), @@ -73371,9 +72355,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1859), [sym_float_literal] = ACTIONS(1859), }, - [STATE(508)] = { - [sym_line_comment] = STATE(508), - [sym_block_comment] = STATE(508), + [502] = { + [sym_line_comment] = STATE(502), + [sym_block_comment] = STATE(502), [ts_builtin_sym_end] = ACTIONS(1863), [sym_identifier] = ACTIONS(1865), [anon_sym_SEMI] = ACTIONS(1863), @@ -73453,9 +72437,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1863), [sym_float_literal] = ACTIONS(1863), }, - [STATE(509)] = { - [sym_line_comment] = STATE(509), - [sym_block_comment] = STATE(509), + [503] = { + [sym_line_comment] = STATE(503), + [sym_block_comment] = STATE(503), [ts_builtin_sym_end] = ACTIONS(1867), [sym_identifier] = ACTIONS(1869), [anon_sym_SEMI] = ACTIONS(1867), @@ -73535,9 +72519,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1867), [sym_float_literal] = ACTIONS(1867), }, - [STATE(510)] = { - [sym_line_comment] = STATE(510), - [sym_block_comment] = STATE(510), + [504] = { + [sym_line_comment] = STATE(504), + [sym_block_comment] = STATE(504), [ts_builtin_sym_end] = ACTIONS(1871), [sym_identifier] = ACTIONS(1873), [anon_sym_SEMI] = ACTIONS(1871), @@ -73617,9 +72601,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1871), [sym_float_literal] = ACTIONS(1871), }, - [STATE(511)] = { - [sym_line_comment] = STATE(511), - [sym_block_comment] = STATE(511), + [505] = { + [sym_line_comment] = STATE(505), + [sym_block_comment] = STATE(505), [ts_builtin_sym_end] = ACTIONS(1875), [sym_identifier] = ACTIONS(1877), [anon_sym_SEMI] = ACTIONS(1875), @@ -73699,9 +72683,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1875), [sym_float_literal] = ACTIONS(1875), }, - [STATE(512)] = { - [sym_line_comment] = STATE(512), - [sym_block_comment] = STATE(512), + [506] = { + [sym_line_comment] = STATE(506), + [sym_block_comment] = STATE(506), [ts_builtin_sym_end] = ACTIONS(1879), [sym_identifier] = ACTIONS(1881), [anon_sym_SEMI] = ACTIONS(1879), @@ -73781,9 +72765,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1879), [sym_float_literal] = ACTIONS(1879), }, - [STATE(513)] = { - [sym_line_comment] = STATE(513), - [sym_block_comment] = STATE(513), + [507] = { + [sym_line_comment] = STATE(507), + [sym_block_comment] = STATE(507), [ts_builtin_sym_end] = ACTIONS(1883), [sym_identifier] = ACTIONS(1885), [anon_sym_SEMI] = ACTIONS(1883), @@ -73863,9 +72847,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1883), [sym_float_literal] = ACTIONS(1883), }, - [STATE(514)] = { - [sym_line_comment] = STATE(514), - [sym_block_comment] = STATE(514), + [508] = { + [sym_line_comment] = STATE(508), + [sym_block_comment] = STATE(508), [ts_builtin_sym_end] = ACTIONS(1887), [sym_identifier] = ACTIONS(1889), [anon_sym_SEMI] = ACTIONS(1887), @@ -73945,9 +72929,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1887), [sym_float_literal] = ACTIONS(1887), }, - [STATE(515)] = { - [sym_line_comment] = STATE(515), - [sym_block_comment] = STATE(515), + [509] = { + [sym_line_comment] = STATE(509), + [sym_block_comment] = STATE(509), [ts_builtin_sym_end] = ACTIONS(1891), [sym_identifier] = ACTIONS(1893), [anon_sym_SEMI] = ACTIONS(1891), @@ -74027,9 +73011,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1891), [sym_float_literal] = ACTIONS(1891), }, - [STATE(516)] = { - [sym_line_comment] = STATE(516), - [sym_block_comment] = STATE(516), + [510] = { + [sym_line_comment] = STATE(510), + [sym_block_comment] = STATE(510), [ts_builtin_sym_end] = ACTIONS(1895), [sym_identifier] = ACTIONS(1897), [anon_sym_SEMI] = ACTIONS(1895), @@ -74109,9 +73093,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1895), [sym_float_literal] = ACTIONS(1895), }, - [STATE(517)] = { - [sym_line_comment] = STATE(517), - [sym_block_comment] = STATE(517), + [511] = { + [sym_line_comment] = STATE(511), + [sym_block_comment] = STATE(511), [ts_builtin_sym_end] = ACTIONS(1899), [sym_identifier] = ACTIONS(1901), [anon_sym_SEMI] = ACTIONS(1899), @@ -74191,9 +73175,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1899), [sym_float_literal] = ACTIONS(1899), }, - [STATE(518)] = { - [sym_line_comment] = STATE(518), - [sym_block_comment] = STATE(518), + [512] = { + [sym_line_comment] = STATE(512), + [sym_block_comment] = STATE(512), [ts_builtin_sym_end] = ACTIONS(1903), [sym_identifier] = ACTIONS(1905), [anon_sym_SEMI] = ACTIONS(1903), @@ -74273,9 +73257,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1903), [sym_float_literal] = ACTIONS(1903), }, - [STATE(519)] = { - [sym_line_comment] = STATE(519), - [sym_block_comment] = STATE(519), + [513] = { + [sym_line_comment] = STATE(513), + [sym_block_comment] = STATE(513), [ts_builtin_sym_end] = ACTIONS(1907), [sym_identifier] = ACTIONS(1909), [anon_sym_SEMI] = ACTIONS(1907), @@ -74355,9 +73339,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1907), [sym_float_literal] = ACTIONS(1907), }, - [STATE(520)] = { - [sym_line_comment] = STATE(520), - [sym_block_comment] = STATE(520), + [514] = { + [sym_line_comment] = STATE(514), + [sym_block_comment] = STATE(514), [ts_builtin_sym_end] = ACTIONS(1911), [sym_identifier] = ACTIONS(1913), [anon_sym_SEMI] = ACTIONS(1911), @@ -74437,9 +73421,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1911), [sym_float_literal] = ACTIONS(1911), }, - [STATE(521)] = { - [sym_line_comment] = STATE(521), - [sym_block_comment] = STATE(521), + [515] = { + [sym_line_comment] = STATE(515), + [sym_block_comment] = STATE(515), [ts_builtin_sym_end] = ACTIONS(1915), [sym_identifier] = ACTIONS(1917), [anon_sym_SEMI] = ACTIONS(1915), @@ -74519,9 +73503,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1915), [sym_float_literal] = ACTIONS(1915), }, - [STATE(522)] = { - [sym_line_comment] = STATE(522), - [sym_block_comment] = STATE(522), + [516] = { + [sym_line_comment] = STATE(516), + [sym_block_comment] = STATE(516), [ts_builtin_sym_end] = ACTIONS(1919), [sym_identifier] = ACTIONS(1921), [anon_sym_SEMI] = ACTIONS(1919), @@ -74601,9 +73585,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1919), [sym_float_literal] = ACTIONS(1919), }, - [STATE(523)] = { - [sym_line_comment] = STATE(523), - [sym_block_comment] = STATE(523), + [517] = { + [sym_line_comment] = STATE(517), + [sym_block_comment] = STATE(517), [ts_builtin_sym_end] = ACTIONS(1923), [sym_identifier] = ACTIONS(1925), [anon_sym_SEMI] = ACTIONS(1923), @@ -74683,9 +73667,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1923), [sym_float_literal] = ACTIONS(1923), }, - [STATE(524)] = { - [sym_line_comment] = STATE(524), - [sym_block_comment] = STATE(524), + [518] = { + [sym_line_comment] = STATE(518), + [sym_block_comment] = STATE(518), [ts_builtin_sym_end] = ACTIONS(1927), [sym_identifier] = ACTIONS(1929), [anon_sym_SEMI] = ACTIONS(1927), @@ -74765,9 +73749,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1927), [sym_float_literal] = ACTIONS(1927), }, - [STATE(525)] = { - [sym_line_comment] = STATE(525), - [sym_block_comment] = STATE(525), + [519] = { + [sym_line_comment] = STATE(519), + [sym_block_comment] = STATE(519), [ts_builtin_sym_end] = ACTIONS(1931), [sym_identifier] = ACTIONS(1933), [anon_sym_SEMI] = ACTIONS(1931), @@ -74847,9 +73831,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1931), [sym_float_literal] = ACTIONS(1931), }, - [STATE(526)] = { - [sym_line_comment] = STATE(526), - [sym_block_comment] = STATE(526), + [520] = { + [sym_line_comment] = STATE(520), + [sym_block_comment] = STATE(520), [ts_builtin_sym_end] = ACTIONS(1935), [sym_identifier] = ACTIONS(1937), [anon_sym_SEMI] = ACTIONS(1935), @@ -74929,9 +73913,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1935), [sym_float_literal] = ACTIONS(1935), }, - [STATE(527)] = { - [sym_line_comment] = STATE(527), - [sym_block_comment] = STATE(527), + [521] = { + [sym_line_comment] = STATE(521), + [sym_block_comment] = STATE(521), [ts_builtin_sym_end] = ACTIONS(1939), [sym_identifier] = ACTIONS(1941), [anon_sym_SEMI] = ACTIONS(1939), @@ -75011,9 +73995,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1939), [sym_float_literal] = ACTIONS(1939), }, - [STATE(528)] = { - [sym_line_comment] = STATE(528), - [sym_block_comment] = STATE(528), + [522] = { + [sym_line_comment] = STATE(522), + [sym_block_comment] = STATE(522), [ts_builtin_sym_end] = ACTIONS(1943), [sym_identifier] = ACTIONS(1945), [anon_sym_SEMI] = ACTIONS(1943), @@ -75093,9 +74077,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1943), [sym_float_literal] = ACTIONS(1943), }, - [STATE(529)] = { - [sym_line_comment] = STATE(529), - [sym_block_comment] = STATE(529), + [523] = { + [sym_line_comment] = STATE(523), + [sym_block_comment] = STATE(523), [ts_builtin_sym_end] = ACTIONS(1947), [sym_identifier] = ACTIONS(1949), [anon_sym_SEMI] = ACTIONS(1947), @@ -75175,9 +74159,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1947), [sym_float_literal] = ACTIONS(1947), }, - [STATE(530)] = { - [sym_line_comment] = STATE(530), - [sym_block_comment] = STATE(530), + [524] = { + [sym_line_comment] = STATE(524), + [sym_block_comment] = STATE(524), [ts_builtin_sym_end] = ACTIONS(1951), [sym_identifier] = ACTIONS(1953), [anon_sym_SEMI] = ACTIONS(1951), @@ -75257,9 +74241,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1951), [sym_float_literal] = ACTIONS(1951), }, - [STATE(531)] = { - [sym_line_comment] = STATE(531), - [sym_block_comment] = STATE(531), + [525] = { + [sym_line_comment] = STATE(525), + [sym_block_comment] = STATE(525), [ts_builtin_sym_end] = ACTIONS(1955), [sym_identifier] = ACTIONS(1957), [anon_sym_SEMI] = ACTIONS(1955), @@ -75339,9 +74323,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1955), [sym_float_literal] = ACTIONS(1955), }, - [STATE(532)] = { - [sym_line_comment] = STATE(532), - [sym_block_comment] = STATE(532), + [526] = { + [sym_line_comment] = STATE(526), + [sym_block_comment] = STATE(526), [ts_builtin_sym_end] = ACTIONS(1959), [sym_identifier] = ACTIONS(1961), [anon_sym_SEMI] = ACTIONS(1959), @@ -75421,9 +74405,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1959), [sym_float_literal] = ACTIONS(1959), }, - [STATE(533)] = { - [sym_line_comment] = STATE(533), - [sym_block_comment] = STATE(533), + [527] = { + [sym_line_comment] = STATE(527), + [sym_block_comment] = STATE(527), [ts_builtin_sym_end] = ACTIONS(1963), [sym_identifier] = ACTIONS(1965), [anon_sym_SEMI] = ACTIONS(1963), @@ -75503,9 +74487,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1963), [sym_float_literal] = ACTIONS(1963), }, - [STATE(534)] = { - [sym_line_comment] = STATE(534), - [sym_block_comment] = STATE(534), + [528] = { + [sym_line_comment] = STATE(528), + [sym_block_comment] = STATE(528), [ts_builtin_sym_end] = ACTIONS(1967), [sym_identifier] = ACTIONS(1969), [anon_sym_SEMI] = ACTIONS(1967), @@ -75585,9 +74569,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1967), [sym_float_literal] = ACTIONS(1967), }, - [STATE(535)] = { - [sym_line_comment] = STATE(535), - [sym_block_comment] = STATE(535), + [529] = { + [sym_line_comment] = STATE(529), + [sym_block_comment] = STATE(529), [ts_builtin_sym_end] = ACTIONS(1971), [sym_identifier] = ACTIONS(1973), [anon_sym_SEMI] = ACTIONS(1971), @@ -75667,9 +74651,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1971), [sym_float_literal] = ACTIONS(1971), }, - [STATE(536)] = { - [sym_line_comment] = STATE(536), - [sym_block_comment] = STATE(536), + [530] = { + [sym_line_comment] = STATE(530), + [sym_block_comment] = STATE(530), [ts_builtin_sym_end] = ACTIONS(1975), [sym_identifier] = ACTIONS(1977), [anon_sym_SEMI] = ACTIONS(1975), @@ -75749,9 +74733,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1975), [sym_float_literal] = ACTIONS(1975), }, - [STATE(537)] = { - [sym_line_comment] = STATE(537), - [sym_block_comment] = STATE(537), + [531] = { + [sym_line_comment] = STATE(531), + [sym_block_comment] = STATE(531), [ts_builtin_sym_end] = ACTIONS(1979), [sym_identifier] = ACTIONS(1981), [anon_sym_SEMI] = ACTIONS(1979), @@ -75831,9 +74815,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1979), [sym_float_literal] = ACTIONS(1979), }, - [STATE(538)] = { - [sym_line_comment] = STATE(538), - [sym_block_comment] = STATE(538), + [532] = { + [sym_line_comment] = STATE(532), + [sym_block_comment] = STATE(532), [ts_builtin_sym_end] = ACTIONS(1983), [sym_identifier] = ACTIONS(1985), [anon_sym_SEMI] = ACTIONS(1983), @@ -75913,9 +74897,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1983), [sym_float_literal] = ACTIONS(1983), }, - [STATE(539)] = { - [sym_line_comment] = STATE(539), - [sym_block_comment] = STATE(539), + [533] = { + [sym_line_comment] = STATE(533), + [sym_block_comment] = STATE(533), [ts_builtin_sym_end] = ACTIONS(1987), [sym_identifier] = ACTIONS(1989), [anon_sym_SEMI] = ACTIONS(1987), @@ -75995,9 +74979,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1987), [sym_float_literal] = ACTIONS(1987), }, - [STATE(540)] = { - [sym_line_comment] = STATE(540), - [sym_block_comment] = STATE(540), + [534] = { + [sym_line_comment] = STATE(534), + [sym_block_comment] = STATE(534), [ts_builtin_sym_end] = ACTIONS(1991), [sym_identifier] = ACTIONS(1993), [anon_sym_SEMI] = ACTIONS(1991), @@ -76077,9 +75061,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1991), [sym_float_literal] = ACTIONS(1991), }, - [STATE(541)] = { - [sym_line_comment] = STATE(541), - [sym_block_comment] = STATE(541), + [535] = { + [sym_line_comment] = STATE(535), + [sym_block_comment] = STATE(535), [ts_builtin_sym_end] = ACTIONS(1995), [sym_identifier] = ACTIONS(1997), [anon_sym_SEMI] = ACTIONS(1995), @@ -76159,9 +75143,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1995), [sym_float_literal] = ACTIONS(1995), }, - [STATE(542)] = { - [sym_line_comment] = STATE(542), - [sym_block_comment] = STATE(542), + [536] = { + [sym_line_comment] = STATE(536), + [sym_block_comment] = STATE(536), [ts_builtin_sym_end] = ACTIONS(1999), [sym_identifier] = ACTIONS(2001), [anon_sym_SEMI] = ACTIONS(1999), @@ -76241,9 +75225,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1999), [sym_float_literal] = ACTIONS(1999), }, - [STATE(543)] = { - [sym_line_comment] = STATE(543), - [sym_block_comment] = STATE(543), + [537] = { + [sym_line_comment] = STATE(537), + [sym_block_comment] = STATE(537), [ts_builtin_sym_end] = ACTIONS(2003), [sym_identifier] = ACTIONS(2005), [anon_sym_SEMI] = ACTIONS(2003), @@ -76323,9 +75307,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2003), [sym_float_literal] = ACTIONS(2003), }, - [STATE(544)] = { - [sym_line_comment] = STATE(544), - [sym_block_comment] = STATE(544), + [538] = { + [sym_line_comment] = STATE(538), + [sym_block_comment] = STATE(538), [ts_builtin_sym_end] = ACTIONS(2007), [sym_identifier] = ACTIONS(2009), [anon_sym_SEMI] = ACTIONS(2007), @@ -76405,9 +75389,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2007), [sym_float_literal] = ACTIONS(2007), }, - [STATE(545)] = { - [sym_line_comment] = STATE(545), - [sym_block_comment] = STATE(545), + [539] = { + [sym_line_comment] = STATE(539), + [sym_block_comment] = STATE(539), [ts_builtin_sym_end] = ACTIONS(2011), [sym_identifier] = ACTIONS(2013), [anon_sym_SEMI] = ACTIONS(2011), @@ -76487,9 +75471,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2011), [sym_float_literal] = ACTIONS(2011), }, - [STATE(546)] = { - [sym_line_comment] = STATE(546), - [sym_block_comment] = STATE(546), + [540] = { + [sym_line_comment] = STATE(540), + [sym_block_comment] = STATE(540), [ts_builtin_sym_end] = ACTIONS(2015), [sym_identifier] = ACTIONS(2017), [anon_sym_SEMI] = ACTIONS(2015), @@ -76569,9 +75553,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2015), [sym_float_literal] = ACTIONS(2015), }, - [STATE(547)] = { - [sym_line_comment] = STATE(547), - [sym_block_comment] = STATE(547), + [541] = { + [sym_line_comment] = STATE(541), + [sym_block_comment] = STATE(541), [ts_builtin_sym_end] = ACTIONS(2019), [sym_identifier] = ACTIONS(2021), [anon_sym_SEMI] = ACTIONS(2019), @@ -76651,9 +75635,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2019), [sym_float_literal] = ACTIONS(2019), }, - [STATE(548)] = { - [sym_line_comment] = STATE(548), - [sym_block_comment] = STATE(548), + [542] = { + [sym_line_comment] = STATE(542), + [sym_block_comment] = STATE(542), [ts_builtin_sym_end] = ACTIONS(2023), [sym_identifier] = ACTIONS(2025), [anon_sym_SEMI] = ACTIONS(2023), @@ -76733,9 +75717,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2023), [sym_float_literal] = ACTIONS(2023), }, - [STATE(549)] = { - [sym_line_comment] = STATE(549), - [sym_block_comment] = STATE(549), + [543] = { + [sym_line_comment] = STATE(543), + [sym_block_comment] = STATE(543), [ts_builtin_sym_end] = ACTIONS(2027), [sym_identifier] = ACTIONS(2029), [anon_sym_SEMI] = ACTIONS(2027), @@ -76815,9 +75799,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2027), [sym_float_literal] = ACTIONS(2027), }, - [STATE(550)] = { - [sym_line_comment] = STATE(550), - [sym_block_comment] = STATE(550), + [544] = { + [sym_line_comment] = STATE(544), + [sym_block_comment] = STATE(544), [ts_builtin_sym_end] = ACTIONS(2031), [sym_identifier] = ACTIONS(2033), [anon_sym_SEMI] = ACTIONS(2031), @@ -76897,9 +75881,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2031), [sym_float_literal] = ACTIONS(2031), }, - [STATE(551)] = { - [sym_line_comment] = STATE(551), - [sym_block_comment] = STATE(551), + [545] = { + [sym_line_comment] = STATE(545), + [sym_block_comment] = STATE(545), [ts_builtin_sym_end] = ACTIONS(2035), [sym_identifier] = ACTIONS(2037), [anon_sym_SEMI] = ACTIONS(2035), @@ -76979,9 +75963,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2035), [sym_float_literal] = ACTIONS(2035), }, - [STATE(552)] = { - [sym_line_comment] = STATE(552), - [sym_block_comment] = STATE(552), + [546] = { + [sym_line_comment] = STATE(546), + [sym_block_comment] = STATE(546), [ts_builtin_sym_end] = ACTIONS(2039), [sym_identifier] = ACTIONS(2041), [anon_sym_SEMI] = ACTIONS(2039), @@ -77061,9 +76045,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2039), [sym_float_literal] = ACTIONS(2039), }, - [STATE(553)] = { - [sym_line_comment] = STATE(553), - [sym_block_comment] = STATE(553), + [547] = { + [sym_line_comment] = STATE(547), + [sym_block_comment] = STATE(547), [ts_builtin_sym_end] = ACTIONS(2043), [sym_identifier] = ACTIONS(2045), [anon_sym_SEMI] = ACTIONS(2043), @@ -77143,9 +76127,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2043), [sym_float_literal] = ACTIONS(2043), }, - [STATE(554)] = { - [sym_line_comment] = STATE(554), - [sym_block_comment] = STATE(554), + [548] = { + [sym_line_comment] = STATE(548), + [sym_block_comment] = STATE(548), [ts_builtin_sym_end] = ACTIONS(2047), [sym_identifier] = ACTIONS(2049), [anon_sym_SEMI] = ACTIONS(2047), @@ -77225,9 +76209,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2047), [sym_float_literal] = ACTIONS(2047), }, - [STATE(555)] = { - [sym_line_comment] = STATE(555), - [sym_block_comment] = STATE(555), + [549] = { + [sym_line_comment] = STATE(549), + [sym_block_comment] = STATE(549), [ts_builtin_sym_end] = ACTIONS(2051), [sym_identifier] = ACTIONS(2053), [anon_sym_SEMI] = ACTIONS(2051), @@ -77307,9 +76291,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2051), [sym_float_literal] = ACTIONS(2051), }, - [STATE(556)] = { - [sym_line_comment] = STATE(556), - [sym_block_comment] = STATE(556), + [550] = { + [sym_line_comment] = STATE(550), + [sym_block_comment] = STATE(550), [ts_builtin_sym_end] = ACTIONS(2055), [sym_identifier] = ACTIONS(2057), [anon_sym_SEMI] = ACTIONS(2055), @@ -77389,9 +76373,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2055), [sym_float_literal] = ACTIONS(2055), }, - [STATE(557)] = { - [sym_line_comment] = STATE(557), - [sym_block_comment] = STATE(557), + [551] = { + [sym_line_comment] = STATE(551), + [sym_block_comment] = STATE(551), [ts_builtin_sym_end] = ACTIONS(2059), [sym_identifier] = ACTIONS(2061), [anon_sym_SEMI] = ACTIONS(2059), @@ -77471,9 +76455,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2059), [sym_float_literal] = ACTIONS(2059), }, - [STATE(558)] = { - [sym_line_comment] = STATE(558), - [sym_block_comment] = STATE(558), + [552] = { + [sym_line_comment] = STATE(552), + [sym_block_comment] = STATE(552), [ts_builtin_sym_end] = ACTIONS(2063), [sym_identifier] = ACTIONS(2065), [anon_sym_SEMI] = ACTIONS(2063), @@ -77553,9 +76537,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2063), [sym_float_literal] = ACTIONS(2063), }, - [STATE(559)] = { - [sym_line_comment] = STATE(559), - [sym_block_comment] = STATE(559), + [553] = { + [sym_line_comment] = STATE(553), + [sym_block_comment] = STATE(553), [ts_builtin_sym_end] = ACTIONS(2067), [sym_identifier] = ACTIONS(2069), [anon_sym_SEMI] = ACTIONS(2067), @@ -77635,9 +76619,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2067), [sym_float_literal] = ACTIONS(2067), }, - [STATE(560)] = { - [sym_line_comment] = STATE(560), - [sym_block_comment] = STATE(560), + [554] = { + [sym_line_comment] = STATE(554), + [sym_block_comment] = STATE(554), [ts_builtin_sym_end] = ACTIONS(2071), [sym_identifier] = ACTIONS(2073), [anon_sym_SEMI] = ACTIONS(2071), @@ -77717,9 +76701,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2071), [sym_float_literal] = ACTIONS(2071), }, - [STATE(561)] = { - [sym_line_comment] = STATE(561), - [sym_block_comment] = STATE(561), + [555] = { + [sym_line_comment] = STATE(555), + [sym_block_comment] = STATE(555), [ts_builtin_sym_end] = ACTIONS(2075), [sym_identifier] = ACTIONS(2077), [anon_sym_SEMI] = ACTIONS(2075), @@ -77799,9 +76783,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2075), [sym_float_literal] = ACTIONS(2075), }, - [STATE(562)] = { - [sym_line_comment] = STATE(562), - [sym_block_comment] = STATE(562), + [556] = { + [sym_line_comment] = STATE(556), + [sym_block_comment] = STATE(556), [ts_builtin_sym_end] = ACTIONS(2079), [sym_identifier] = ACTIONS(2081), [anon_sym_SEMI] = ACTIONS(2079), @@ -77881,9 +76865,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2079), [sym_float_literal] = ACTIONS(2079), }, - [STATE(563)] = { - [sym_line_comment] = STATE(563), - [sym_block_comment] = STATE(563), + [557] = { + [sym_line_comment] = STATE(557), + [sym_block_comment] = STATE(557), [ts_builtin_sym_end] = ACTIONS(2083), [sym_identifier] = ACTIONS(2085), [anon_sym_SEMI] = ACTIONS(2083), @@ -77963,9 +76947,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2083), [sym_float_literal] = ACTIONS(2083), }, - [STATE(564)] = { - [sym_line_comment] = STATE(564), - [sym_block_comment] = STATE(564), + [558] = { + [sym_line_comment] = STATE(558), + [sym_block_comment] = STATE(558), [ts_builtin_sym_end] = ACTIONS(2087), [sym_identifier] = ACTIONS(2089), [anon_sym_SEMI] = ACTIONS(2087), @@ -78045,9 +77029,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2087), [sym_float_literal] = ACTIONS(2087), }, - [STATE(565)] = { - [sym_line_comment] = STATE(565), - [sym_block_comment] = STATE(565), + [559] = { + [sym_line_comment] = STATE(559), + [sym_block_comment] = STATE(559), [ts_builtin_sym_end] = ACTIONS(2091), [sym_identifier] = ACTIONS(2093), [anon_sym_SEMI] = ACTIONS(2091), @@ -78127,9 +77111,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2091), [sym_float_literal] = ACTIONS(2091), }, - [STATE(566)] = { - [sym_line_comment] = STATE(566), - [sym_block_comment] = STATE(566), + [560] = { + [sym_line_comment] = STATE(560), + [sym_block_comment] = STATE(560), [ts_builtin_sym_end] = ACTIONS(2095), [sym_identifier] = ACTIONS(2097), [anon_sym_SEMI] = ACTIONS(2095), @@ -78209,9 +77193,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2095), [sym_float_literal] = ACTIONS(2095), }, - [STATE(567)] = { - [sym_line_comment] = STATE(567), - [sym_block_comment] = STATE(567), + [561] = { + [sym_line_comment] = STATE(561), + [sym_block_comment] = STATE(561), [ts_builtin_sym_end] = ACTIONS(2099), [sym_identifier] = ACTIONS(2101), [anon_sym_SEMI] = ACTIONS(2099), @@ -78291,9 +77275,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2099), [sym_float_literal] = ACTIONS(2099), }, - [STATE(568)] = { - [sym_line_comment] = STATE(568), - [sym_block_comment] = STATE(568), + [562] = { + [sym_line_comment] = STATE(562), + [sym_block_comment] = STATE(562), [ts_builtin_sym_end] = ACTIONS(2103), [sym_identifier] = ACTIONS(2105), [anon_sym_SEMI] = ACTIONS(2103), @@ -78373,9 +77357,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2103), [sym_float_literal] = ACTIONS(2103), }, - [STATE(569)] = { - [sym_line_comment] = STATE(569), - [sym_block_comment] = STATE(569), + [563] = { + [sym_line_comment] = STATE(563), + [sym_block_comment] = STATE(563), [ts_builtin_sym_end] = ACTIONS(2107), [sym_identifier] = ACTIONS(2109), [anon_sym_SEMI] = ACTIONS(2107), @@ -78455,9 +77439,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2107), [sym_float_literal] = ACTIONS(2107), }, - [STATE(570)] = { - [sym_line_comment] = STATE(570), - [sym_block_comment] = STATE(570), + [564] = { + [sym_line_comment] = STATE(564), + [sym_block_comment] = STATE(564), [ts_builtin_sym_end] = ACTIONS(2111), [sym_identifier] = ACTIONS(2113), [anon_sym_SEMI] = ACTIONS(2111), @@ -78537,9 +77521,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2111), [sym_float_literal] = ACTIONS(2111), }, - [STATE(571)] = { - [sym_line_comment] = STATE(571), - [sym_block_comment] = STATE(571), + [565] = { + [sym_line_comment] = STATE(565), + [sym_block_comment] = STATE(565), [ts_builtin_sym_end] = ACTIONS(2115), [sym_identifier] = ACTIONS(2117), [anon_sym_SEMI] = ACTIONS(2115), @@ -78619,9 +77603,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2115), [sym_float_literal] = ACTIONS(2115), }, - [STATE(572)] = { - [sym_line_comment] = STATE(572), - [sym_block_comment] = STATE(572), + [566] = { + [sym_line_comment] = STATE(566), + [sym_block_comment] = STATE(566), [ts_builtin_sym_end] = ACTIONS(2119), [sym_identifier] = ACTIONS(2121), [anon_sym_SEMI] = ACTIONS(2119), @@ -78701,9 +77685,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2119), [sym_float_literal] = ACTIONS(2119), }, - [STATE(573)] = { - [sym_line_comment] = STATE(573), - [sym_block_comment] = STATE(573), + [567] = { + [sym_line_comment] = STATE(567), + [sym_block_comment] = STATE(567), [ts_builtin_sym_end] = ACTIONS(2123), [sym_identifier] = ACTIONS(2125), [anon_sym_SEMI] = ACTIONS(2123), @@ -78783,9 +77767,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2123), [sym_float_literal] = ACTIONS(2123), }, - [STATE(574)] = { - [sym_line_comment] = STATE(574), - [sym_block_comment] = STATE(574), + [568] = { + [sym_line_comment] = STATE(568), + [sym_block_comment] = STATE(568), [ts_builtin_sym_end] = ACTIONS(2127), [sym_identifier] = ACTIONS(2129), [anon_sym_SEMI] = ACTIONS(2127), @@ -78865,9 +77849,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2127), [sym_float_literal] = ACTIONS(2127), }, - [STATE(575)] = { - [sym_line_comment] = STATE(575), - [sym_block_comment] = STATE(575), + [569] = { + [sym_line_comment] = STATE(569), + [sym_block_comment] = STATE(569), [ts_builtin_sym_end] = ACTIONS(2131), [sym_identifier] = ACTIONS(2133), [anon_sym_SEMI] = ACTIONS(2131), @@ -78947,9 +77931,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2131), [sym_float_literal] = ACTIONS(2131), }, - [STATE(576)] = { - [sym_line_comment] = STATE(576), - [sym_block_comment] = STATE(576), + [570] = { + [sym_line_comment] = STATE(570), + [sym_block_comment] = STATE(570), [ts_builtin_sym_end] = ACTIONS(2135), [sym_identifier] = ACTIONS(2137), [anon_sym_SEMI] = ACTIONS(2135), @@ -79029,9 +78013,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2135), [sym_float_literal] = ACTIONS(2135), }, - [STATE(577)] = { - [sym_line_comment] = STATE(577), - [sym_block_comment] = STATE(577), + [571] = { + [sym_line_comment] = STATE(571), + [sym_block_comment] = STATE(571), [ts_builtin_sym_end] = ACTIONS(2139), [sym_identifier] = ACTIONS(2141), [anon_sym_SEMI] = ACTIONS(2139), @@ -79111,9 +78095,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2139), [sym_float_literal] = ACTIONS(2139), }, - [STATE(578)] = { - [sym_line_comment] = STATE(578), - [sym_block_comment] = STATE(578), + [572] = { + [sym_line_comment] = STATE(572), + [sym_block_comment] = STATE(572), [ts_builtin_sym_end] = ACTIONS(2143), [sym_identifier] = ACTIONS(2145), [anon_sym_SEMI] = ACTIONS(2143), @@ -79193,9 +78177,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2143), [sym_float_literal] = ACTIONS(2143), }, - [STATE(579)] = { - [sym_line_comment] = STATE(579), - [sym_block_comment] = STATE(579), + [573] = { + [sym_line_comment] = STATE(573), + [sym_block_comment] = STATE(573), [ts_builtin_sym_end] = ACTIONS(2147), [sym_identifier] = ACTIONS(2149), [anon_sym_SEMI] = ACTIONS(2147), @@ -79275,9 +78259,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2147), [sym_float_literal] = ACTIONS(2147), }, - [STATE(580)] = { - [sym_line_comment] = STATE(580), - [sym_block_comment] = STATE(580), + [574] = { + [sym_line_comment] = STATE(574), + [sym_block_comment] = STATE(574), [ts_builtin_sym_end] = ACTIONS(2151), [sym_identifier] = ACTIONS(2153), [anon_sym_SEMI] = ACTIONS(2151), @@ -79357,9 +78341,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2151), [sym_float_literal] = ACTIONS(2151), }, - [STATE(581)] = { - [sym_line_comment] = STATE(581), - [sym_block_comment] = STATE(581), + [575] = { + [sym_line_comment] = STATE(575), + [sym_block_comment] = STATE(575), [ts_builtin_sym_end] = ACTIONS(2155), [sym_identifier] = ACTIONS(2157), [anon_sym_SEMI] = ACTIONS(2155), @@ -79439,9 +78423,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2155), [sym_float_literal] = ACTIONS(2155), }, - [STATE(582)] = { - [sym_line_comment] = STATE(582), - [sym_block_comment] = STATE(582), + [576] = { + [sym_line_comment] = STATE(576), + [sym_block_comment] = STATE(576), [ts_builtin_sym_end] = ACTIONS(2159), [sym_identifier] = ACTIONS(2161), [anon_sym_SEMI] = ACTIONS(2159), @@ -79521,9 +78505,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2159), [sym_float_literal] = ACTIONS(2159), }, - [STATE(583)] = { - [sym_line_comment] = STATE(583), - [sym_block_comment] = STATE(583), + [577] = { + [sym_line_comment] = STATE(577), + [sym_block_comment] = STATE(577), [ts_builtin_sym_end] = ACTIONS(2163), [sym_identifier] = ACTIONS(2165), [anon_sym_SEMI] = ACTIONS(2163), @@ -79603,9 +78587,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2163), [sym_float_literal] = ACTIONS(2163), }, - [STATE(584)] = { - [sym_line_comment] = STATE(584), - [sym_block_comment] = STATE(584), + [578] = { + [sym_line_comment] = STATE(578), + [sym_block_comment] = STATE(578), [ts_builtin_sym_end] = ACTIONS(2167), [sym_identifier] = ACTIONS(2169), [anon_sym_SEMI] = ACTIONS(2167), @@ -79685,9 +78669,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2167), [sym_float_literal] = ACTIONS(2167), }, - [STATE(585)] = { - [sym_line_comment] = STATE(585), - [sym_block_comment] = STATE(585), + [579] = { + [sym_line_comment] = STATE(579), + [sym_block_comment] = STATE(579), [ts_builtin_sym_end] = ACTIONS(2171), [sym_identifier] = ACTIONS(2173), [anon_sym_SEMI] = ACTIONS(2171), @@ -79767,9 +78751,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2171), [sym_float_literal] = ACTIONS(2171), }, - [STATE(586)] = { - [sym_line_comment] = STATE(586), - [sym_block_comment] = STATE(586), + [580] = { + [sym_line_comment] = STATE(580), + [sym_block_comment] = STATE(580), [ts_builtin_sym_end] = ACTIONS(2175), [sym_identifier] = ACTIONS(2177), [anon_sym_SEMI] = ACTIONS(2175), @@ -79849,9 +78833,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2175), [sym_float_literal] = ACTIONS(2175), }, - [STATE(587)] = { - [sym_line_comment] = STATE(587), - [sym_block_comment] = STATE(587), + [581] = { + [sym_line_comment] = STATE(581), + [sym_block_comment] = STATE(581), [ts_builtin_sym_end] = ACTIONS(2179), [sym_identifier] = ACTIONS(2181), [anon_sym_SEMI] = ACTIONS(2179), @@ -79931,9 +78915,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2179), [sym_float_literal] = ACTIONS(2179), }, - [STATE(588)] = { - [sym_line_comment] = STATE(588), - [sym_block_comment] = STATE(588), + [582] = { + [sym_line_comment] = STATE(582), + [sym_block_comment] = STATE(582), [ts_builtin_sym_end] = ACTIONS(2183), [sym_identifier] = ACTIONS(2185), [anon_sym_SEMI] = ACTIONS(2183), @@ -80013,9 +78997,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2183), [sym_float_literal] = ACTIONS(2183), }, - [STATE(589)] = { - [sym_line_comment] = STATE(589), - [sym_block_comment] = STATE(589), + [583] = { + [sym_line_comment] = STATE(583), + [sym_block_comment] = STATE(583), [ts_builtin_sym_end] = ACTIONS(2187), [sym_identifier] = ACTIONS(2189), [anon_sym_SEMI] = ACTIONS(2187), @@ -80095,9 +79079,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2187), [sym_float_literal] = ACTIONS(2187), }, - [STATE(590)] = { - [sym_line_comment] = STATE(590), - [sym_block_comment] = STATE(590), + [584] = { + [sym_line_comment] = STATE(584), + [sym_block_comment] = STATE(584), [ts_builtin_sym_end] = ACTIONS(2191), [sym_identifier] = ACTIONS(2193), [anon_sym_SEMI] = ACTIONS(2191), @@ -80177,9 +79161,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2191), [sym_float_literal] = ACTIONS(2191), }, - [STATE(591)] = { - [sym_line_comment] = STATE(591), - [sym_block_comment] = STATE(591), + [585] = { + [sym_line_comment] = STATE(585), + [sym_block_comment] = STATE(585), [ts_builtin_sym_end] = ACTIONS(2195), [sym_identifier] = ACTIONS(2197), [anon_sym_SEMI] = ACTIONS(2195), @@ -80259,9 +79243,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2195), [sym_float_literal] = ACTIONS(2195), }, - [STATE(592)] = { - [sym_line_comment] = STATE(592), - [sym_block_comment] = STATE(592), + [586] = { + [sym_line_comment] = STATE(586), + [sym_block_comment] = STATE(586), [ts_builtin_sym_end] = ACTIONS(2199), [sym_identifier] = ACTIONS(2201), [anon_sym_SEMI] = ACTIONS(2199), @@ -80341,9 +79325,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2199), [sym_float_literal] = ACTIONS(2199), }, - [STATE(593)] = { - [sym_line_comment] = STATE(593), - [sym_block_comment] = STATE(593), + [587] = { + [sym_line_comment] = STATE(587), + [sym_block_comment] = STATE(587), [ts_builtin_sym_end] = ACTIONS(2203), [sym_identifier] = ACTIONS(2205), [anon_sym_SEMI] = ACTIONS(2203), @@ -80423,9 +79407,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2203), [sym_float_literal] = ACTIONS(2203), }, - [STATE(594)] = { - [sym_line_comment] = STATE(594), - [sym_block_comment] = STATE(594), + [588] = { + [sym_line_comment] = STATE(588), + [sym_block_comment] = STATE(588), [ts_builtin_sym_end] = ACTIONS(2207), [sym_identifier] = ACTIONS(2209), [anon_sym_SEMI] = ACTIONS(2207), @@ -80505,9 +79489,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2207), [sym_float_literal] = ACTIONS(2207), }, - [STATE(595)] = { - [sym_line_comment] = STATE(595), - [sym_block_comment] = STATE(595), + [589] = { + [sym_line_comment] = STATE(589), + [sym_block_comment] = STATE(589), [ts_builtin_sym_end] = ACTIONS(2211), [sym_identifier] = ACTIONS(2213), [anon_sym_SEMI] = ACTIONS(2211), @@ -80587,9 +79571,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2211), [sym_float_literal] = ACTIONS(2211), }, - [STATE(596)] = { - [sym_line_comment] = STATE(596), - [sym_block_comment] = STATE(596), + [590] = { + [sym_line_comment] = STATE(590), + [sym_block_comment] = STATE(590), [ts_builtin_sym_end] = ACTIONS(2215), [sym_identifier] = ACTIONS(2217), [anon_sym_SEMI] = ACTIONS(2215), @@ -80669,9 +79653,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2215), [sym_float_literal] = ACTIONS(2215), }, - [STATE(597)] = { - [sym_line_comment] = STATE(597), - [sym_block_comment] = STATE(597), + [591] = { + [sym_line_comment] = STATE(591), + [sym_block_comment] = STATE(591), [ts_builtin_sym_end] = ACTIONS(2219), [sym_identifier] = ACTIONS(2221), [anon_sym_SEMI] = ACTIONS(2219), @@ -80751,9 +79735,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2219), [sym_float_literal] = ACTIONS(2219), }, - [STATE(598)] = { - [sym_line_comment] = STATE(598), - [sym_block_comment] = STATE(598), + [592] = { + [sym_line_comment] = STATE(592), + [sym_block_comment] = STATE(592), [ts_builtin_sym_end] = ACTIONS(2223), [sym_identifier] = ACTIONS(2225), [anon_sym_SEMI] = ACTIONS(2223), @@ -80833,9 +79817,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2223), [sym_float_literal] = ACTIONS(2223), }, - [STATE(599)] = { - [sym_line_comment] = STATE(599), - [sym_block_comment] = STATE(599), + [593] = { + [sym_line_comment] = STATE(593), + [sym_block_comment] = STATE(593), [ts_builtin_sym_end] = ACTIONS(2227), [sym_identifier] = ACTIONS(2229), [anon_sym_SEMI] = ACTIONS(2227), @@ -80915,9 +79899,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2227), [sym_float_literal] = ACTIONS(2227), }, - [STATE(600)] = { - [sym_line_comment] = STATE(600), - [sym_block_comment] = STATE(600), + [594] = { + [sym_line_comment] = STATE(594), + [sym_block_comment] = STATE(594), [ts_builtin_sym_end] = ACTIONS(2231), [sym_identifier] = ACTIONS(2233), [anon_sym_SEMI] = ACTIONS(2231), @@ -80997,9 +79981,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2231), [sym_float_literal] = ACTIONS(2231), }, - [STATE(601)] = { - [sym_line_comment] = STATE(601), - [sym_block_comment] = STATE(601), + [595] = { + [sym_line_comment] = STATE(595), + [sym_block_comment] = STATE(595), [ts_builtin_sym_end] = ACTIONS(2235), [sym_identifier] = ACTIONS(2237), [anon_sym_SEMI] = ACTIONS(2235), @@ -81079,9 +80063,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2235), [sym_float_literal] = ACTIONS(2235), }, - [STATE(602)] = { - [sym_line_comment] = STATE(602), - [sym_block_comment] = STATE(602), + [596] = { + [sym_line_comment] = STATE(596), + [sym_block_comment] = STATE(596), [ts_builtin_sym_end] = ACTIONS(2239), [sym_identifier] = ACTIONS(2241), [anon_sym_SEMI] = ACTIONS(2239), @@ -81161,9 +80145,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2239), [sym_float_literal] = ACTIONS(2239), }, - [STATE(603)] = { - [sym_line_comment] = STATE(603), - [sym_block_comment] = STATE(603), + [597] = { + [sym_line_comment] = STATE(597), + [sym_block_comment] = STATE(597), [ts_builtin_sym_end] = ACTIONS(2243), [sym_identifier] = ACTIONS(2245), [anon_sym_SEMI] = ACTIONS(2243), @@ -81243,9 +80227,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2243), [sym_float_literal] = ACTIONS(2243), }, - [STATE(604)] = { - [sym_line_comment] = STATE(604), - [sym_block_comment] = STATE(604), + [598] = { + [sym_line_comment] = STATE(598), + [sym_block_comment] = STATE(598), [ts_builtin_sym_end] = ACTIONS(2247), [sym_identifier] = ACTIONS(2249), [anon_sym_SEMI] = ACTIONS(2247), @@ -81325,9 +80309,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2247), [sym_float_literal] = ACTIONS(2247), }, - [STATE(605)] = { - [sym_line_comment] = STATE(605), - [sym_block_comment] = STATE(605), + [599] = { + [sym_line_comment] = STATE(599), + [sym_block_comment] = STATE(599), [ts_builtin_sym_end] = ACTIONS(2251), [sym_identifier] = ACTIONS(2253), [anon_sym_SEMI] = ACTIONS(2251), @@ -81407,9 +80391,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2251), [sym_float_literal] = ACTIONS(2251), }, - [STATE(606)] = { - [sym_line_comment] = STATE(606), - [sym_block_comment] = STATE(606), + [600] = { + [sym_line_comment] = STATE(600), + [sym_block_comment] = STATE(600), [ts_builtin_sym_end] = ACTIONS(2255), [sym_identifier] = ACTIONS(2257), [anon_sym_SEMI] = ACTIONS(2255), @@ -81489,9 +80473,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2255), [sym_float_literal] = ACTIONS(2255), }, - [STATE(607)] = { - [sym_line_comment] = STATE(607), - [sym_block_comment] = STATE(607), + [601] = { + [sym_line_comment] = STATE(601), + [sym_block_comment] = STATE(601), [ts_builtin_sym_end] = ACTIONS(2259), [sym_identifier] = ACTIONS(2261), [anon_sym_SEMI] = ACTIONS(2259), @@ -81571,9 +80555,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2259), [sym_float_literal] = ACTIONS(2259), }, - [STATE(608)] = { - [sym_line_comment] = STATE(608), - [sym_block_comment] = STATE(608), + [602] = { + [sym_line_comment] = STATE(602), + [sym_block_comment] = STATE(602), [ts_builtin_sym_end] = ACTIONS(2263), [sym_identifier] = ACTIONS(2265), [anon_sym_SEMI] = ACTIONS(2263), @@ -81653,9 +80637,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2263), [sym_float_literal] = ACTIONS(2263), }, - [STATE(609)] = { - [sym_line_comment] = STATE(609), - [sym_block_comment] = STATE(609), + [603] = { + [sym_line_comment] = STATE(603), + [sym_block_comment] = STATE(603), [ts_builtin_sym_end] = ACTIONS(2267), [sym_identifier] = ACTIONS(2269), [anon_sym_SEMI] = ACTIONS(2267), @@ -81735,9 +80719,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2267), [sym_float_literal] = ACTIONS(2267), }, - [STATE(610)] = { - [sym_line_comment] = STATE(610), - [sym_block_comment] = STATE(610), + [604] = { + [sym_line_comment] = STATE(604), + [sym_block_comment] = STATE(604), [ts_builtin_sym_end] = ACTIONS(2271), [sym_identifier] = ACTIONS(2273), [anon_sym_SEMI] = ACTIONS(2271), @@ -81817,9 +80801,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2271), [sym_float_literal] = ACTIONS(2271), }, - [STATE(611)] = { - [sym_line_comment] = STATE(611), - [sym_block_comment] = STATE(611), + [605] = { + [sym_line_comment] = STATE(605), + [sym_block_comment] = STATE(605), [ts_builtin_sym_end] = ACTIONS(2275), [sym_identifier] = ACTIONS(2277), [anon_sym_SEMI] = ACTIONS(2275), @@ -81899,9 +80883,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2275), [sym_float_literal] = ACTIONS(2275), }, - [STATE(612)] = { - [sym_line_comment] = STATE(612), - [sym_block_comment] = STATE(612), + [606] = { + [sym_line_comment] = STATE(606), + [sym_block_comment] = STATE(606), [ts_builtin_sym_end] = ACTIONS(2279), [sym_identifier] = ACTIONS(2281), [anon_sym_SEMI] = ACTIONS(2279), @@ -81981,9 +80965,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2279), [sym_float_literal] = ACTIONS(2279), }, - [STATE(613)] = { - [sym_line_comment] = STATE(613), - [sym_block_comment] = STATE(613), + [607] = { + [sym_line_comment] = STATE(607), + [sym_block_comment] = STATE(607), [ts_builtin_sym_end] = ACTIONS(2283), [sym_identifier] = ACTIONS(2285), [anon_sym_SEMI] = ACTIONS(2283), @@ -82063,9 +81047,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2283), [sym_float_literal] = ACTIONS(2283), }, - [STATE(614)] = { - [sym_line_comment] = STATE(614), - [sym_block_comment] = STATE(614), + [608] = { + [sym_line_comment] = STATE(608), + [sym_block_comment] = STATE(608), [ts_builtin_sym_end] = ACTIONS(2287), [sym_identifier] = ACTIONS(2289), [anon_sym_SEMI] = ACTIONS(2287), @@ -82145,583 +81129,583 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2287), [sym_float_literal] = ACTIONS(2287), }, - [STATE(615)] = { - [sym_empty_statement] = STATE(1378), - [sym_macro_definition] = STATE(1378), - [sym_attribute_item] = STATE(1378), - [sym_inner_attribute_item] = STATE(1378), - [sym_mod_item] = STATE(1378), - [sym_foreign_mod_item] = STATE(1378), - [sym_struct_item] = STATE(1378), - [sym_union_item] = STATE(1378), - [sym_enum_item] = STATE(1378), - [sym_extern_crate_declaration] = STATE(1378), - [sym_const_item] = STATE(1378), - [sym_static_item] = STATE(1378), - [sym_type_item] = STATE(1378), - [sym_function_item] = STATE(1378), - [sym_function_signature_item] = STATE(1378), - [sym_function_modifiers] = STATE(3785), - [sym_impl_item] = STATE(1378), - [sym_trait_item] = STATE(1378), - [sym_associated_type] = STATE(1378), - [sym_let_declaration] = STATE(1378), - [sym_use_declaration] = STATE(1378), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2035), - [sym_bracketed_type] = STATE(3740), - [sym_generic_type_with_turbofish] = STATE(3804), - [sym_macro_invocation] = STATE(1378), - [sym_scoped_identifier] = STATE(3417), - [sym_line_comment] = STATE(615), - [sym_block_comment] = STATE(615), - [aux_sym_declaration_list_repeat1] = STATE(720), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(2291), - [anon_sym_SEMI] = ACTIONS(2293), + [609] = { + [sym_line_comment] = STATE(609), + [sym_block_comment] = STATE(609), + [ts_builtin_sym_end] = ACTIONS(2291), + [sym_identifier] = ACTIONS(2293), + [anon_sym_SEMI] = ACTIONS(2291), + [anon_sym_macro_rules_BANG] = ACTIONS(2291), + [anon_sym_LPAREN] = ACTIONS(2291), + [anon_sym_LBRACK] = ACTIONS(2291), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_RBRACE] = ACTIONS(2291), + [anon_sym_STAR] = ACTIONS(2291), + [anon_sym_u8] = ACTIONS(2293), + [anon_sym_i8] = ACTIONS(2293), + [anon_sym_u16] = ACTIONS(2293), + [anon_sym_i16] = ACTIONS(2293), + [anon_sym_u32] = ACTIONS(2293), + [anon_sym_i32] = ACTIONS(2293), + [anon_sym_u64] = ACTIONS(2293), + [anon_sym_i64] = ACTIONS(2293), + [anon_sym_u128] = ACTIONS(2293), + [anon_sym_i128] = ACTIONS(2293), + [anon_sym_isize] = ACTIONS(2293), + [anon_sym_usize] = ACTIONS(2293), + [anon_sym_f32] = ACTIONS(2293), + [anon_sym_f64] = ACTIONS(2293), + [anon_sym_bool] = ACTIONS(2293), + [anon_sym_str] = ACTIONS(2293), + [anon_sym_char] = ACTIONS(2293), + [anon_sym_DASH] = ACTIONS(2291), + [anon_sym_BANG] = ACTIONS(2291), + [anon_sym_AMP] = ACTIONS(2291), + [anon_sym_PIPE] = ACTIONS(2291), + [anon_sym_LT] = ACTIONS(2291), + [anon_sym_DOT_DOT] = ACTIONS(2291), + [anon_sym_COLON_COLON] = ACTIONS(2291), + [anon_sym_POUND] = ACTIONS(2291), + [anon_sym_SQUOTE] = ACTIONS(2293), + [anon_sym_async] = ACTIONS(2293), + [anon_sym_break] = ACTIONS(2293), + [anon_sym_const] = ACTIONS(2293), + [anon_sym_continue] = ACTIONS(2293), + [anon_sym_default] = ACTIONS(2293), + [anon_sym_enum] = ACTIONS(2293), + [anon_sym_fn] = ACTIONS(2293), + [anon_sym_for] = ACTIONS(2293), + [anon_sym_gen] = ACTIONS(2293), + [anon_sym_if] = ACTIONS(2293), + [anon_sym_impl] = ACTIONS(2293), + [anon_sym_let] = ACTIONS(2293), + [anon_sym_loop] = ACTIONS(2293), + [anon_sym_match] = ACTIONS(2293), + [anon_sym_mod] = ACTIONS(2293), + [anon_sym_pub] = ACTIONS(2293), + [anon_sym_return] = ACTIONS(2293), + [anon_sym_static] = ACTIONS(2293), + [anon_sym_struct] = ACTIONS(2293), + [anon_sym_trait] = ACTIONS(2293), + [anon_sym_type] = ACTIONS(2293), + [anon_sym_union] = ACTIONS(2293), + [anon_sym_unsafe] = ACTIONS(2293), + [anon_sym_use] = ACTIONS(2293), + [anon_sym_while] = ACTIONS(2293), + [anon_sym_extern] = ACTIONS(2293), + [anon_sym_raw] = ACTIONS(2293), + [anon_sym_yield] = ACTIONS(2293), + [anon_sym_move] = ACTIONS(2293), + [anon_sym_try] = ACTIONS(2293), + [sym_integer_literal] = ACTIONS(2291), + [aux_sym_string_literal_token1] = ACTIONS(2291), + [sym_char_literal] = ACTIONS(2291), + [anon_sym_true] = ACTIONS(2293), + [anon_sym_false] = ACTIONS(2293), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2293), + [sym_super] = ACTIONS(2293), + [sym_crate] = ACTIONS(2293), + [sym_metavariable] = ACTIONS(2291), + [sym__raw_string_literal_start] = ACTIONS(2291), + [sym_float_literal] = ACTIONS(2291), + }, + [610] = { + [sym_line_comment] = STATE(610), + [sym_block_comment] = STATE(610), + [ts_builtin_sym_end] = ACTIONS(2295), + [sym_identifier] = ACTIONS(2297), + [anon_sym_SEMI] = ACTIONS(2295), [anon_sym_macro_rules_BANG] = ACTIONS(2295), - [anon_sym_RBRACE] = ACTIONS(2297), - [anon_sym_u8] = ACTIONS(2299), - [anon_sym_i8] = ACTIONS(2299), - [anon_sym_u16] = ACTIONS(2299), - [anon_sym_i16] = ACTIONS(2299), - [anon_sym_u32] = ACTIONS(2299), - [anon_sym_i32] = ACTIONS(2299), - [anon_sym_u64] = ACTIONS(2299), - [anon_sym_i64] = ACTIONS(2299), - [anon_sym_u128] = ACTIONS(2299), - [anon_sym_i128] = ACTIONS(2299), - [anon_sym_isize] = ACTIONS(2299), - [anon_sym_usize] = ACTIONS(2299), - [anon_sym_f32] = ACTIONS(2299), - [anon_sym_f64] = ACTIONS(2299), - [anon_sym_bool] = ACTIONS(2299), - [anon_sym_str] = ACTIONS(2299), - [anon_sym_char] = ACTIONS(2299), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2301), + [anon_sym_LPAREN] = ACTIONS(2295), + [anon_sym_LBRACK] = ACTIONS(2295), + [anon_sym_LBRACE] = ACTIONS(2295), + [anon_sym_RBRACE] = ACTIONS(2295), + [anon_sym_STAR] = ACTIONS(2295), + [anon_sym_u8] = ACTIONS(2297), + [anon_sym_i8] = ACTIONS(2297), + [anon_sym_u16] = ACTIONS(2297), + [anon_sym_i16] = ACTIONS(2297), + [anon_sym_u32] = ACTIONS(2297), + [anon_sym_i32] = ACTIONS(2297), + [anon_sym_u64] = ACTIONS(2297), + [anon_sym_i64] = ACTIONS(2297), + [anon_sym_u128] = ACTIONS(2297), + [anon_sym_i128] = ACTIONS(2297), + [anon_sym_isize] = ACTIONS(2297), + [anon_sym_usize] = ACTIONS(2297), + [anon_sym_f32] = ACTIONS(2297), + [anon_sym_f64] = ACTIONS(2297), + [anon_sym_bool] = ACTIONS(2297), + [anon_sym_str] = ACTIONS(2297), + [anon_sym_char] = ACTIONS(2297), + [anon_sym_DASH] = ACTIONS(2295), + [anon_sym_BANG] = ACTIONS(2295), + [anon_sym_AMP] = ACTIONS(2295), + [anon_sym_PIPE] = ACTIONS(2295), + [anon_sym_LT] = ACTIONS(2295), + [anon_sym_DOT_DOT] = ACTIONS(2295), + [anon_sym_COLON_COLON] = ACTIONS(2295), + [anon_sym_POUND] = ACTIONS(2295), + [anon_sym_SQUOTE] = ACTIONS(2297), + [anon_sym_async] = ACTIONS(2297), + [anon_sym_break] = ACTIONS(2297), + [anon_sym_const] = ACTIONS(2297), + [anon_sym_continue] = ACTIONS(2297), + [anon_sym_default] = ACTIONS(2297), + [anon_sym_enum] = ACTIONS(2297), + [anon_sym_fn] = ACTIONS(2297), + [anon_sym_for] = ACTIONS(2297), + [anon_sym_gen] = ACTIONS(2297), + [anon_sym_if] = ACTIONS(2297), + [anon_sym_impl] = ACTIONS(2297), + [anon_sym_let] = ACTIONS(2297), + [anon_sym_loop] = ACTIONS(2297), + [anon_sym_match] = ACTIONS(2297), + [anon_sym_mod] = ACTIONS(2297), + [anon_sym_pub] = ACTIONS(2297), + [anon_sym_return] = ACTIONS(2297), + [anon_sym_static] = ACTIONS(2297), + [anon_sym_struct] = ACTIONS(2297), + [anon_sym_trait] = ACTIONS(2297), + [anon_sym_type] = ACTIONS(2297), + [anon_sym_union] = ACTIONS(2297), + [anon_sym_unsafe] = ACTIONS(2297), + [anon_sym_use] = ACTIONS(2297), + [anon_sym_while] = ACTIONS(2297), + [anon_sym_extern] = ACTIONS(2297), + [anon_sym_raw] = ACTIONS(2297), + [anon_sym_yield] = ACTIONS(2297), + [anon_sym_move] = ACTIONS(2297), + [anon_sym_try] = ACTIONS(2297), + [sym_integer_literal] = ACTIONS(2295), + [aux_sym_string_literal_token1] = ACTIONS(2295), + [sym_char_literal] = ACTIONS(2295), + [anon_sym_true] = ACTIONS(2297), + [anon_sym_false] = ACTIONS(2297), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2297), + [sym_super] = ACTIONS(2297), + [sym_crate] = ACTIONS(2297), + [sym_metavariable] = ACTIONS(2295), + [sym__raw_string_literal_start] = ACTIONS(2295), + [sym_float_literal] = ACTIONS(2295), + }, + [611] = { + [sym_line_comment] = STATE(611), + [sym_block_comment] = STATE(611), + [ts_builtin_sym_end] = ACTIONS(2299), + [sym_identifier] = ACTIONS(2301), + [anon_sym_SEMI] = ACTIONS(2299), + [anon_sym_macro_rules_BANG] = ACTIONS(2299), + [anon_sym_LPAREN] = ACTIONS(2299), + [anon_sym_LBRACK] = ACTIONS(2299), + [anon_sym_LBRACE] = ACTIONS(2299), + [anon_sym_RBRACE] = ACTIONS(2299), + [anon_sym_STAR] = ACTIONS(2299), + [anon_sym_u8] = ACTIONS(2301), + [anon_sym_i8] = ACTIONS(2301), + [anon_sym_u16] = ACTIONS(2301), + [anon_sym_i16] = ACTIONS(2301), + [anon_sym_u32] = ACTIONS(2301), + [anon_sym_i32] = ACTIONS(2301), + [anon_sym_u64] = ACTIONS(2301), + [anon_sym_i64] = ACTIONS(2301), + [anon_sym_u128] = ACTIONS(2301), + [anon_sym_i128] = ACTIONS(2301), + [anon_sym_isize] = ACTIONS(2301), + [anon_sym_usize] = ACTIONS(2301), + [anon_sym_f32] = ACTIONS(2301), + [anon_sym_f64] = ACTIONS(2301), + [anon_sym_bool] = ACTIONS(2301), + [anon_sym_str] = ACTIONS(2301), + [anon_sym_char] = ACTIONS(2301), + [anon_sym_DASH] = ACTIONS(2299), + [anon_sym_BANG] = ACTIONS(2299), + [anon_sym_AMP] = ACTIONS(2299), + [anon_sym_PIPE] = ACTIONS(2299), + [anon_sym_LT] = ACTIONS(2299), + [anon_sym_DOT_DOT] = ACTIONS(2299), + [anon_sym_COLON_COLON] = ACTIONS(2299), + [anon_sym_POUND] = ACTIONS(2299), + [anon_sym_SQUOTE] = ACTIONS(2301), + [anon_sym_async] = ACTIONS(2301), + [anon_sym_break] = ACTIONS(2301), + [anon_sym_const] = ACTIONS(2301), + [anon_sym_continue] = ACTIONS(2301), + [anon_sym_default] = ACTIONS(2301), + [anon_sym_enum] = ACTIONS(2301), + [anon_sym_fn] = ACTIONS(2301), + [anon_sym_for] = ACTIONS(2301), + [anon_sym_gen] = ACTIONS(2301), + [anon_sym_if] = ACTIONS(2301), + [anon_sym_impl] = ACTIONS(2301), + [anon_sym_let] = ACTIONS(2301), + [anon_sym_loop] = ACTIONS(2301), + [anon_sym_match] = ACTIONS(2301), + [anon_sym_mod] = ACTIONS(2301), + [anon_sym_pub] = ACTIONS(2301), + [anon_sym_return] = ACTIONS(2301), + [anon_sym_static] = ACTIONS(2301), + [anon_sym_struct] = ACTIONS(2301), + [anon_sym_trait] = ACTIONS(2301), + [anon_sym_type] = ACTIONS(2301), + [anon_sym_union] = ACTIONS(2301), + [anon_sym_unsafe] = ACTIONS(2301), + [anon_sym_use] = ACTIONS(2301), + [anon_sym_while] = ACTIONS(2301), + [anon_sym_extern] = ACTIONS(2301), + [anon_sym_raw] = ACTIONS(2301), + [anon_sym_yield] = ACTIONS(2301), + [anon_sym_move] = ACTIONS(2301), + [anon_sym_try] = ACTIONS(2301), + [sym_integer_literal] = ACTIONS(2299), + [aux_sym_string_literal_token1] = ACTIONS(2299), + [sym_char_literal] = ACTIONS(2299), + [anon_sym_true] = ACTIONS(2301), + [anon_sym_false] = ACTIONS(2301), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2301), + [sym_super] = ACTIONS(2301), + [sym_crate] = ACTIONS(2301), + [sym_metavariable] = ACTIONS(2299), + [sym__raw_string_literal_start] = ACTIONS(2299), + [sym_float_literal] = ACTIONS(2299), + }, + [612] = { + [sym_line_comment] = STATE(612), + [sym_block_comment] = STATE(612), + [ts_builtin_sym_end] = ACTIONS(2303), + [sym_identifier] = ACTIONS(2305), + [anon_sym_SEMI] = ACTIONS(2303), + [anon_sym_macro_rules_BANG] = ACTIONS(2303), + [anon_sym_LPAREN] = ACTIONS(2303), + [anon_sym_LBRACK] = ACTIONS(2303), + [anon_sym_LBRACE] = ACTIONS(2303), + [anon_sym_RBRACE] = ACTIONS(2303), + [anon_sym_STAR] = ACTIONS(2303), + [anon_sym_u8] = ACTIONS(2305), + [anon_sym_i8] = ACTIONS(2305), + [anon_sym_u16] = ACTIONS(2305), + [anon_sym_i16] = ACTIONS(2305), + [anon_sym_u32] = ACTIONS(2305), + [anon_sym_i32] = ACTIONS(2305), + [anon_sym_u64] = ACTIONS(2305), + [anon_sym_i64] = ACTIONS(2305), + [anon_sym_u128] = ACTIONS(2305), + [anon_sym_i128] = ACTIONS(2305), + [anon_sym_isize] = ACTIONS(2305), + [anon_sym_usize] = ACTIONS(2305), + [anon_sym_f32] = ACTIONS(2305), + [anon_sym_f64] = ACTIONS(2305), + [anon_sym_bool] = ACTIONS(2305), + [anon_sym_str] = ACTIONS(2305), + [anon_sym_char] = ACTIONS(2305), + [anon_sym_DASH] = ACTIONS(2303), + [anon_sym_BANG] = ACTIONS(2303), + [anon_sym_AMP] = ACTIONS(2303), + [anon_sym_PIPE] = ACTIONS(2303), + [anon_sym_LT] = ACTIONS(2303), + [anon_sym_DOT_DOT] = ACTIONS(2303), + [anon_sym_COLON_COLON] = ACTIONS(2303), [anon_sym_POUND] = ACTIONS(2303), - [anon_sym_async] = ACTIONS(1096), + [anon_sym_SQUOTE] = ACTIONS(2305), + [anon_sym_async] = ACTIONS(2305), + [anon_sym_break] = ACTIONS(2305), [anon_sym_const] = ACTIONS(2305), - [anon_sym_default] = ACTIONS(2307), + [anon_sym_continue] = ACTIONS(2305), + [anon_sym_default] = ACTIONS(2305), + [anon_sym_enum] = ACTIONS(2305), + [anon_sym_fn] = ACTIONS(2305), + [anon_sym_for] = ACTIONS(2305), + [anon_sym_gen] = ACTIONS(2305), + [anon_sym_if] = ACTIONS(2305), + [anon_sym_impl] = ACTIONS(2305), + [anon_sym_let] = ACTIONS(2305), + [anon_sym_loop] = ACTIONS(2305), + [anon_sym_match] = ACTIONS(2305), + [anon_sym_mod] = ACTIONS(2305), + [anon_sym_pub] = ACTIONS(2305), + [anon_sym_return] = ACTIONS(2305), + [anon_sym_static] = ACTIONS(2305), + [anon_sym_struct] = ACTIONS(2305), + [anon_sym_trait] = ACTIONS(2305), + [anon_sym_type] = ACTIONS(2305), + [anon_sym_union] = ACTIONS(2305), + [anon_sym_unsafe] = ACTIONS(2305), + [anon_sym_use] = ACTIONS(2305), + [anon_sym_while] = ACTIONS(2305), + [anon_sym_extern] = ACTIONS(2305), + [anon_sym_raw] = ACTIONS(2305), + [anon_sym_yield] = ACTIONS(2305), + [anon_sym_move] = ACTIONS(2305), + [anon_sym_try] = ACTIONS(2305), + [sym_integer_literal] = ACTIONS(2303), + [aux_sym_string_literal_token1] = ACTIONS(2303), + [sym_char_literal] = ACTIONS(2303), + [anon_sym_true] = ACTIONS(2305), + [anon_sym_false] = ACTIONS(2305), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2305), + [sym_super] = ACTIONS(2305), + [sym_crate] = ACTIONS(2305), + [sym_metavariable] = ACTIONS(2303), + [sym__raw_string_literal_start] = ACTIONS(2303), + [sym_float_literal] = ACTIONS(2303), + }, + [613] = { + [sym_line_comment] = STATE(613), + [sym_block_comment] = STATE(613), + [ts_builtin_sym_end] = ACTIONS(2307), + [sym_identifier] = ACTIONS(2309), + [anon_sym_SEMI] = ACTIONS(2307), + [anon_sym_macro_rules_BANG] = ACTIONS(2307), + [anon_sym_LPAREN] = ACTIONS(2307), + [anon_sym_LBRACK] = ACTIONS(2307), + [anon_sym_LBRACE] = ACTIONS(2307), + [anon_sym_RBRACE] = ACTIONS(2307), + [anon_sym_STAR] = ACTIONS(2307), + [anon_sym_u8] = ACTIONS(2309), + [anon_sym_i8] = ACTIONS(2309), + [anon_sym_u16] = ACTIONS(2309), + [anon_sym_i16] = ACTIONS(2309), + [anon_sym_u32] = ACTIONS(2309), + [anon_sym_i32] = ACTIONS(2309), + [anon_sym_u64] = ACTIONS(2309), + [anon_sym_i64] = ACTIONS(2309), + [anon_sym_u128] = ACTIONS(2309), + [anon_sym_i128] = ACTIONS(2309), + [anon_sym_isize] = ACTIONS(2309), + [anon_sym_usize] = ACTIONS(2309), + [anon_sym_f32] = ACTIONS(2309), + [anon_sym_f64] = ACTIONS(2309), + [anon_sym_bool] = ACTIONS(2309), + [anon_sym_str] = ACTIONS(2309), + [anon_sym_char] = ACTIONS(2309), + [anon_sym_DASH] = ACTIONS(2307), + [anon_sym_BANG] = ACTIONS(2307), + [anon_sym_AMP] = ACTIONS(2307), + [anon_sym_PIPE] = ACTIONS(2307), + [anon_sym_LT] = ACTIONS(2307), + [anon_sym_DOT_DOT] = ACTIONS(2307), + [anon_sym_COLON_COLON] = ACTIONS(2307), + [anon_sym_POUND] = ACTIONS(2307), + [anon_sym_SQUOTE] = ACTIONS(2309), + [anon_sym_async] = ACTIONS(2309), + [anon_sym_break] = ACTIONS(2309), + [anon_sym_const] = ACTIONS(2309), + [anon_sym_continue] = ACTIONS(2309), + [anon_sym_default] = ACTIONS(2309), [anon_sym_enum] = ACTIONS(2309), - [anon_sym_fn] = ACTIONS(2311), - [anon_sym_gen] = ACTIONS(2313), - [anon_sym_impl] = ACTIONS(2315), - [anon_sym_let] = ACTIONS(2317), - [anon_sym_mod] = ACTIONS(2319), + [anon_sym_fn] = ACTIONS(2309), + [anon_sym_for] = ACTIONS(2309), + [anon_sym_gen] = ACTIONS(2309), + [anon_sym_if] = ACTIONS(2309), + [anon_sym_impl] = ACTIONS(2309), + [anon_sym_let] = ACTIONS(2309), + [anon_sym_loop] = ACTIONS(2309), + [anon_sym_match] = ACTIONS(2309), + [anon_sym_mod] = ACTIONS(2309), + [anon_sym_pub] = ACTIONS(2309), + [anon_sym_return] = ACTIONS(2309), + [anon_sym_static] = ACTIONS(2309), + [anon_sym_struct] = ACTIONS(2309), + [anon_sym_trait] = ACTIONS(2309), + [anon_sym_type] = ACTIONS(2309), + [anon_sym_union] = ACTIONS(2309), + [anon_sym_unsafe] = ACTIONS(2309), + [anon_sym_use] = ACTIONS(2309), + [anon_sym_while] = ACTIONS(2309), + [anon_sym_extern] = ACTIONS(2309), + [anon_sym_raw] = ACTIONS(2309), + [anon_sym_yield] = ACTIONS(2309), + [anon_sym_move] = ACTIONS(2309), + [anon_sym_try] = ACTIONS(2309), + [sym_integer_literal] = ACTIONS(2307), + [aux_sym_string_literal_token1] = ACTIONS(2307), + [sym_char_literal] = ACTIONS(2307), + [anon_sym_true] = ACTIONS(2309), + [anon_sym_false] = ACTIONS(2309), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2309), + [sym_super] = ACTIONS(2309), + [sym_crate] = ACTIONS(2309), + [sym_metavariable] = ACTIONS(2307), + [sym__raw_string_literal_start] = ACTIONS(2307), + [sym_float_literal] = ACTIONS(2307), + }, + [614] = { + [sym_empty_statement] = STATE(1370), + [sym_macro_definition] = STATE(1370), + [sym_attribute_item] = STATE(1370), + [sym_inner_attribute_item] = STATE(1370), + [sym_mod_item] = STATE(1370), + [sym_foreign_mod_item] = STATE(1370), + [sym_struct_item] = STATE(1370), + [sym_union_item] = STATE(1370), + [sym_enum_item] = STATE(1370), + [sym_extern_crate_declaration] = STATE(1370), + [sym_const_item] = STATE(1370), + [sym_static_item] = STATE(1370), + [sym_type_item] = STATE(1370), + [sym_function_item] = STATE(1370), + [sym_function_signature_item] = STATE(1370), + [sym_function_modifiers] = STATE(3775), + [sym_impl_item] = STATE(1370), + [sym_trait_item] = STATE(1370), + [sym_associated_type] = STATE(1370), + [sym_let_declaration] = STATE(1370), + [sym_use_declaration] = STATE(1370), + [sym_extern_modifier] = STATE(2242), + [sym_visibility_modifier] = STATE(2025), + [sym_bracketed_type] = STATE(3723), + [sym_generic_type_with_turbofish] = STATE(3791), + [sym_macro_invocation] = STATE(1370), + [sym_scoped_identifier] = STATE(3388), + [sym_line_comment] = STATE(614), + [sym_block_comment] = STATE(614), + [aux_sym_declaration_list_repeat1] = STATE(719), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(2311), + [anon_sym_SEMI] = ACTIONS(2313), + [anon_sym_macro_rules_BANG] = ACTIONS(2315), + [anon_sym_RBRACE] = ACTIONS(2317), + [anon_sym_u8] = ACTIONS(2319), + [anon_sym_i8] = ACTIONS(2319), + [anon_sym_u16] = ACTIONS(2319), + [anon_sym_i16] = ACTIONS(2319), + [anon_sym_u32] = ACTIONS(2319), + [anon_sym_i32] = ACTIONS(2319), + [anon_sym_u64] = ACTIONS(2319), + [anon_sym_i64] = ACTIONS(2319), + [anon_sym_u128] = ACTIONS(2319), + [anon_sym_i128] = ACTIONS(2319), + [anon_sym_isize] = ACTIONS(2319), + [anon_sym_usize] = ACTIONS(2319), + [anon_sym_f32] = ACTIONS(2319), + [anon_sym_f64] = ACTIONS(2319), + [anon_sym_bool] = ACTIONS(2319), + [anon_sym_str] = ACTIONS(2319), + [anon_sym_char] = ACTIONS(2319), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(2321), + [anon_sym_POUND] = ACTIONS(2323), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(2325), + [anon_sym_default] = ACTIONS(2327), + [anon_sym_enum] = ACTIONS(2329), + [anon_sym_fn] = ACTIONS(2331), + [anon_sym_gen] = ACTIONS(2333), + [anon_sym_impl] = ACTIONS(2335), + [anon_sym_let] = ACTIONS(2337), + [anon_sym_mod] = ACTIONS(2339), [anon_sym_pub] = ACTIONS(69), - [anon_sym_static] = ACTIONS(2321), - [anon_sym_struct] = ACTIONS(2323), - [anon_sym_trait] = ACTIONS(2325), - [anon_sym_type] = ACTIONS(2327), - [anon_sym_union] = ACTIONS(2329), - [anon_sym_unsafe] = ACTIONS(2331), - [anon_sym_use] = ACTIONS(2333), - [anon_sym_extern] = ACTIONS(2335), - [anon_sym_raw] = ACTIONS(2313), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2337), - [sym_super] = ACTIONS(2337), - [sym_crate] = ACTIONS(2339), - [sym_metavariable] = ACTIONS(2341), - }, - [STATE(616)] = { - [sym_attribute_item] = STATE(1369), - [sym_inner_attribute_item] = STATE(1369), - [sym_bracketed_type] = STATE(3698), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3419), - [sym_macro_invocation] = STATE(2942), - [sym_scoped_identifier] = STATE(2248), - [sym_scoped_type_identifier] = STATE(3103), - [sym_match_pattern] = STATE(3511), - [sym_const_block] = STATE(2942), - [sym__pattern] = STATE(3188), - [sym_generic_pattern] = STATE(2942), - [sym_tuple_pattern] = STATE(2942), - [sym_slice_pattern] = STATE(2942), - [sym_tuple_struct_pattern] = STATE(2942), - [sym_struct_pattern] = STATE(2942), - [sym_remaining_field_pattern] = STATE(2942), - [sym_mut_pattern] = STATE(2942), - [sym_range_pattern] = STATE(2942), - [sym_ref_pattern] = STATE(2942), - [sym_captured_pattern] = STATE(2942), - [sym_reference_pattern] = STATE(2942), - [sym_or_pattern] = STATE(2942), - [sym__literal_pattern] = STATE(2447), - [sym_negative_literal] = STATE(2441), - [sym_string_literal] = STATE(2441), - [sym_raw_string_literal] = STATE(2441), - [sym_boolean_literal] = STATE(2441), - [sym_line_comment] = STATE(616), - [sym_block_comment] = STATE(616), - [aux_sym_match_arm_repeat1] = STATE(1077), - [sym_identifier] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_LBRACK] = ACTIONS(1680), - [anon_sym_u8] = ACTIONS(1684), - [anon_sym_i8] = ACTIONS(1684), - [anon_sym_u16] = ACTIONS(1684), - [anon_sym_i16] = ACTIONS(1684), - [anon_sym_u32] = ACTIONS(1684), - [anon_sym_i32] = ACTIONS(1684), - [anon_sym_u64] = ACTIONS(1684), - [anon_sym_i64] = ACTIONS(1684), - [anon_sym_u128] = ACTIONS(1684), - [anon_sym_i128] = ACTIONS(1684), - [anon_sym_isize] = ACTIONS(1684), - [anon_sym_usize] = ACTIONS(1684), - [anon_sym_f32] = ACTIONS(1684), - [anon_sym_f64] = ACTIONS(1684), - [anon_sym_bool] = ACTIONS(1684), - [anon_sym_str] = ACTIONS(1684), - [anon_sym_char] = ACTIONS(1684), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_AMP] = ACTIONS(1688), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1692), - [anon_sym_DOT_DOT] = ACTIONS(1694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_POUND] = ACTIONS(1700), - [anon_sym_const] = ACTIONS(1702), - [anon_sym_default] = ACTIONS(1704), - [anon_sym_gen] = ACTIONS(1704), - [anon_sym_union] = ACTIONS(1704), - [anon_sym_ref] = ACTIONS(1706), - [sym_mutable_specifier] = ACTIONS(1708), - [anon_sym_raw] = ACTIONS(1704), - [sym_integer_literal] = ACTIONS(1710), - [aux_sym_string_literal_token1] = ACTIONS(1712), - [sym_char_literal] = ACTIONS(1710), - [anon_sym_true] = ACTIONS(1714), - [anon_sym_false] = ACTIONS(1714), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1716), - [sym_super] = ACTIONS(1716), - [sym_crate] = ACTIONS(1716), - [sym_metavariable] = ACTIONS(1718), - [sym__raw_string_literal_start] = ACTIONS(1720), - [sym_float_literal] = ACTIONS(1710), - }, - [STATE(617)] = { - [sym_line_comment] = STATE(617), - [sym_block_comment] = STATE(617), - [ts_builtin_sym_end] = ACTIONS(2343), - [sym_identifier] = ACTIONS(2345), - [anon_sym_SEMI] = ACTIONS(2343), - [anon_sym_macro_rules_BANG] = ACTIONS(2343), - [anon_sym_LPAREN] = ACTIONS(2343), - [anon_sym_LBRACK] = ACTIONS(2343), - [anon_sym_LBRACE] = ACTIONS(2343), - [anon_sym_RBRACE] = ACTIONS(2343), - [anon_sym_STAR] = ACTIONS(2343), - [anon_sym_u8] = ACTIONS(2345), - [anon_sym_i8] = ACTIONS(2345), - [anon_sym_u16] = ACTIONS(2345), - [anon_sym_i16] = ACTIONS(2345), - [anon_sym_u32] = ACTIONS(2345), - [anon_sym_i32] = ACTIONS(2345), - [anon_sym_u64] = ACTIONS(2345), - [anon_sym_i64] = ACTIONS(2345), - [anon_sym_u128] = ACTIONS(2345), - [anon_sym_i128] = ACTIONS(2345), - [anon_sym_isize] = ACTIONS(2345), - [anon_sym_usize] = ACTIONS(2345), - [anon_sym_f32] = ACTIONS(2345), - [anon_sym_f64] = ACTIONS(2345), - [anon_sym_bool] = ACTIONS(2345), - [anon_sym_str] = ACTIONS(2345), - [anon_sym_char] = ACTIONS(2345), - [anon_sym_DASH] = ACTIONS(2343), - [anon_sym_BANG] = ACTIONS(2343), - [anon_sym_AMP] = ACTIONS(2343), - [anon_sym_PIPE] = ACTIONS(2343), - [anon_sym_LT] = ACTIONS(2343), - [anon_sym_DOT_DOT] = ACTIONS(2343), - [anon_sym_COLON_COLON] = ACTIONS(2343), - [anon_sym_POUND] = ACTIONS(2343), - [anon_sym_SQUOTE] = ACTIONS(2345), - [anon_sym_async] = ACTIONS(2345), - [anon_sym_break] = ACTIONS(2345), - [anon_sym_const] = ACTIONS(2345), - [anon_sym_continue] = ACTIONS(2345), - [anon_sym_default] = ACTIONS(2345), - [anon_sym_enum] = ACTIONS(2345), - [anon_sym_fn] = ACTIONS(2345), - [anon_sym_for] = ACTIONS(2345), - [anon_sym_gen] = ACTIONS(2345), - [anon_sym_if] = ACTIONS(2345), - [anon_sym_impl] = ACTIONS(2345), - [anon_sym_let] = ACTIONS(2345), - [anon_sym_loop] = ACTIONS(2345), - [anon_sym_match] = ACTIONS(2345), - [anon_sym_mod] = ACTIONS(2345), - [anon_sym_pub] = ACTIONS(2345), - [anon_sym_return] = ACTIONS(2345), - [anon_sym_static] = ACTIONS(2345), - [anon_sym_struct] = ACTIONS(2345), + [anon_sym_static] = ACTIONS(2341), + [anon_sym_struct] = ACTIONS(2343), [anon_sym_trait] = ACTIONS(2345), - [anon_sym_type] = ACTIONS(2345), - [anon_sym_union] = ACTIONS(2345), - [anon_sym_unsafe] = ACTIONS(2345), - [anon_sym_use] = ACTIONS(2345), - [anon_sym_while] = ACTIONS(2345), - [anon_sym_extern] = ACTIONS(2345), - [anon_sym_raw] = ACTIONS(2345), - [anon_sym_yield] = ACTIONS(2345), - [anon_sym_move] = ACTIONS(2345), - [anon_sym_try] = ACTIONS(2345), - [sym_integer_literal] = ACTIONS(2343), - [aux_sym_string_literal_token1] = ACTIONS(2343), - [sym_char_literal] = ACTIONS(2343), - [anon_sym_true] = ACTIONS(2345), - [anon_sym_false] = ACTIONS(2345), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2345), - [sym_super] = ACTIONS(2345), - [sym_crate] = ACTIONS(2345), - [sym_metavariable] = ACTIONS(2343), - [sym__raw_string_literal_start] = ACTIONS(2343), - [sym_float_literal] = ACTIONS(2343), - }, - [STATE(618)] = { - [sym_line_comment] = STATE(618), - [sym_block_comment] = STATE(618), - [ts_builtin_sym_end] = ACTIONS(2347), - [sym_identifier] = ACTIONS(2349), - [anon_sym_SEMI] = ACTIONS(2347), - [anon_sym_macro_rules_BANG] = ACTIONS(2347), - [anon_sym_LPAREN] = ACTIONS(2347), - [anon_sym_LBRACK] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2347), - [anon_sym_RBRACE] = ACTIONS(2347), - [anon_sym_STAR] = ACTIONS(2347), - [anon_sym_u8] = ACTIONS(2349), - [anon_sym_i8] = ACTIONS(2349), - [anon_sym_u16] = ACTIONS(2349), - [anon_sym_i16] = ACTIONS(2349), - [anon_sym_u32] = ACTIONS(2349), - [anon_sym_i32] = ACTIONS(2349), - [anon_sym_u64] = ACTIONS(2349), - [anon_sym_i64] = ACTIONS(2349), - [anon_sym_u128] = ACTIONS(2349), - [anon_sym_i128] = ACTIONS(2349), - [anon_sym_isize] = ACTIONS(2349), - [anon_sym_usize] = ACTIONS(2349), - [anon_sym_f32] = ACTIONS(2349), - [anon_sym_f64] = ACTIONS(2349), - [anon_sym_bool] = ACTIONS(2349), - [anon_sym_str] = ACTIONS(2349), - [anon_sym_char] = ACTIONS(2349), - [anon_sym_DASH] = ACTIONS(2347), - [anon_sym_BANG] = ACTIONS(2347), - [anon_sym_AMP] = ACTIONS(2347), - [anon_sym_PIPE] = ACTIONS(2347), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_DOT_DOT] = ACTIONS(2347), - [anon_sym_COLON_COLON] = ACTIONS(2347), - [anon_sym_POUND] = ACTIONS(2347), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_async] = ACTIONS(2349), - [anon_sym_break] = ACTIONS(2349), - [anon_sym_const] = ACTIONS(2349), - [anon_sym_continue] = ACTIONS(2349), - [anon_sym_default] = ACTIONS(2349), - [anon_sym_enum] = ACTIONS(2349), - [anon_sym_fn] = ACTIONS(2349), - [anon_sym_for] = ACTIONS(2349), - [anon_sym_gen] = ACTIONS(2349), - [anon_sym_if] = ACTIONS(2349), - [anon_sym_impl] = ACTIONS(2349), - [anon_sym_let] = ACTIONS(2349), - [anon_sym_loop] = ACTIONS(2349), - [anon_sym_match] = ACTIONS(2349), - [anon_sym_mod] = ACTIONS(2349), - [anon_sym_pub] = ACTIONS(2349), - [anon_sym_return] = ACTIONS(2349), - [anon_sym_static] = ACTIONS(2349), - [anon_sym_struct] = ACTIONS(2349), - [anon_sym_trait] = ACTIONS(2349), - [anon_sym_type] = ACTIONS(2349), + [anon_sym_type] = ACTIONS(2347), [anon_sym_union] = ACTIONS(2349), - [anon_sym_unsafe] = ACTIONS(2349), - [anon_sym_use] = ACTIONS(2349), - [anon_sym_while] = ACTIONS(2349), - [anon_sym_extern] = ACTIONS(2349), - [anon_sym_raw] = ACTIONS(2349), - [anon_sym_yield] = ACTIONS(2349), - [anon_sym_move] = ACTIONS(2349), - [anon_sym_try] = ACTIONS(2349), - [sym_integer_literal] = ACTIONS(2347), - [aux_sym_string_literal_token1] = ACTIONS(2347), - [sym_char_literal] = ACTIONS(2347), - [anon_sym_true] = ACTIONS(2349), - [anon_sym_false] = ACTIONS(2349), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2349), - [sym_super] = ACTIONS(2349), - [sym_crate] = ACTIONS(2349), - [sym_metavariable] = ACTIONS(2347), - [sym__raw_string_literal_start] = ACTIONS(2347), - [sym_float_literal] = ACTIONS(2347), - }, - [STATE(619)] = { - [sym_line_comment] = STATE(619), - [sym_block_comment] = STATE(619), - [ts_builtin_sym_end] = ACTIONS(2351), - [sym_identifier] = ACTIONS(2353), - [anon_sym_SEMI] = ACTIONS(2351), - [anon_sym_macro_rules_BANG] = ACTIONS(2351), - [anon_sym_LPAREN] = ACTIONS(2351), - [anon_sym_LBRACK] = ACTIONS(2351), - [anon_sym_LBRACE] = ACTIONS(2351), - [anon_sym_RBRACE] = ACTIONS(2351), - [anon_sym_STAR] = ACTIONS(2351), - [anon_sym_u8] = ACTIONS(2353), - [anon_sym_i8] = ACTIONS(2353), - [anon_sym_u16] = ACTIONS(2353), - [anon_sym_i16] = ACTIONS(2353), - [anon_sym_u32] = ACTIONS(2353), - [anon_sym_i32] = ACTIONS(2353), - [anon_sym_u64] = ACTIONS(2353), - [anon_sym_i64] = ACTIONS(2353), - [anon_sym_u128] = ACTIONS(2353), - [anon_sym_i128] = ACTIONS(2353), - [anon_sym_isize] = ACTIONS(2353), - [anon_sym_usize] = ACTIONS(2353), - [anon_sym_f32] = ACTIONS(2353), - [anon_sym_f64] = ACTIONS(2353), - [anon_sym_bool] = ACTIONS(2353), - [anon_sym_str] = ACTIONS(2353), - [anon_sym_char] = ACTIONS(2353), - [anon_sym_DASH] = ACTIONS(2351), - [anon_sym_BANG] = ACTIONS(2351), - [anon_sym_AMP] = ACTIONS(2351), - [anon_sym_PIPE] = ACTIONS(2351), - [anon_sym_LT] = ACTIONS(2351), - [anon_sym_DOT_DOT] = ACTIONS(2351), - [anon_sym_COLON_COLON] = ACTIONS(2351), - [anon_sym_POUND] = ACTIONS(2351), - [anon_sym_SQUOTE] = ACTIONS(2353), - [anon_sym_async] = ACTIONS(2353), - [anon_sym_break] = ACTIONS(2353), - [anon_sym_const] = ACTIONS(2353), - [anon_sym_continue] = ACTIONS(2353), - [anon_sym_default] = ACTIONS(2353), - [anon_sym_enum] = ACTIONS(2353), - [anon_sym_fn] = ACTIONS(2353), - [anon_sym_for] = ACTIONS(2353), - [anon_sym_gen] = ACTIONS(2353), - [anon_sym_if] = ACTIONS(2353), - [anon_sym_impl] = ACTIONS(2353), - [anon_sym_let] = ACTIONS(2353), - [anon_sym_loop] = ACTIONS(2353), - [anon_sym_match] = ACTIONS(2353), - [anon_sym_mod] = ACTIONS(2353), - [anon_sym_pub] = ACTIONS(2353), - [anon_sym_return] = ACTIONS(2353), - [anon_sym_static] = ACTIONS(2353), - [anon_sym_struct] = ACTIONS(2353), - [anon_sym_trait] = ACTIONS(2353), - [anon_sym_type] = ACTIONS(2353), - [anon_sym_union] = ACTIONS(2353), - [anon_sym_unsafe] = ACTIONS(2353), + [anon_sym_unsafe] = ACTIONS(2351), [anon_sym_use] = ACTIONS(2353), - [anon_sym_while] = ACTIONS(2353), - [anon_sym_extern] = ACTIONS(2353), - [anon_sym_raw] = ACTIONS(2353), - [anon_sym_yield] = ACTIONS(2353), - [anon_sym_move] = ACTIONS(2353), - [anon_sym_try] = ACTIONS(2353), - [sym_integer_literal] = ACTIONS(2351), - [aux_sym_string_literal_token1] = ACTIONS(2351), - [sym_char_literal] = ACTIONS(2351), - [anon_sym_true] = ACTIONS(2353), - [anon_sym_false] = ACTIONS(2353), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2353), - [sym_super] = ACTIONS(2353), - [sym_crate] = ACTIONS(2353), - [sym_metavariable] = ACTIONS(2351), - [sym__raw_string_literal_start] = ACTIONS(2351), - [sym_float_literal] = ACTIONS(2351), - }, - [STATE(620)] = { - [sym_line_comment] = STATE(620), - [sym_block_comment] = STATE(620), - [ts_builtin_sym_end] = ACTIONS(2355), - [sym_identifier] = ACTIONS(2357), - [anon_sym_SEMI] = ACTIONS(2355), - [anon_sym_macro_rules_BANG] = ACTIONS(2355), - [anon_sym_LPAREN] = ACTIONS(2355), - [anon_sym_LBRACK] = ACTIONS(2355), - [anon_sym_LBRACE] = ACTIONS(2355), - [anon_sym_RBRACE] = ACTIONS(2355), - [anon_sym_STAR] = ACTIONS(2355), - [anon_sym_u8] = ACTIONS(2357), - [anon_sym_i8] = ACTIONS(2357), - [anon_sym_u16] = ACTIONS(2357), - [anon_sym_i16] = ACTIONS(2357), - [anon_sym_u32] = ACTIONS(2357), - [anon_sym_i32] = ACTIONS(2357), - [anon_sym_u64] = ACTIONS(2357), - [anon_sym_i64] = ACTIONS(2357), - [anon_sym_u128] = ACTIONS(2357), - [anon_sym_i128] = ACTIONS(2357), - [anon_sym_isize] = ACTIONS(2357), - [anon_sym_usize] = ACTIONS(2357), - [anon_sym_f32] = ACTIONS(2357), - [anon_sym_f64] = ACTIONS(2357), - [anon_sym_bool] = ACTIONS(2357), - [anon_sym_str] = ACTIONS(2357), - [anon_sym_char] = ACTIONS(2357), - [anon_sym_DASH] = ACTIONS(2355), - [anon_sym_BANG] = ACTIONS(2355), - [anon_sym_AMP] = ACTIONS(2355), - [anon_sym_PIPE] = ACTIONS(2355), - [anon_sym_LT] = ACTIONS(2355), - [anon_sym_DOT_DOT] = ACTIONS(2355), - [anon_sym_COLON_COLON] = ACTIONS(2355), - [anon_sym_POUND] = ACTIONS(2355), - [anon_sym_SQUOTE] = ACTIONS(2357), - [anon_sym_async] = ACTIONS(2357), - [anon_sym_break] = ACTIONS(2357), - [anon_sym_const] = ACTIONS(2357), - [anon_sym_continue] = ACTIONS(2357), - [anon_sym_default] = ACTIONS(2357), - [anon_sym_enum] = ACTIONS(2357), - [anon_sym_fn] = ACTIONS(2357), - [anon_sym_for] = ACTIONS(2357), - [anon_sym_gen] = ACTIONS(2357), - [anon_sym_if] = ACTIONS(2357), - [anon_sym_impl] = ACTIONS(2357), - [anon_sym_let] = ACTIONS(2357), - [anon_sym_loop] = ACTIONS(2357), - [anon_sym_match] = ACTIONS(2357), - [anon_sym_mod] = ACTIONS(2357), - [anon_sym_pub] = ACTIONS(2357), - [anon_sym_return] = ACTIONS(2357), - [anon_sym_static] = ACTIONS(2357), - [anon_sym_struct] = ACTIONS(2357), - [anon_sym_trait] = ACTIONS(2357), - [anon_sym_type] = ACTIONS(2357), - [anon_sym_union] = ACTIONS(2357), - [anon_sym_unsafe] = ACTIONS(2357), - [anon_sym_use] = ACTIONS(2357), - [anon_sym_while] = ACTIONS(2357), - [anon_sym_extern] = ACTIONS(2357), - [anon_sym_raw] = ACTIONS(2357), - [anon_sym_yield] = ACTIONS(2357), - [anon_sym_move] = ACTIONS(2357), - [anon_sym_try] = ACTIONS(2357), - [sym_integer_literal] = ACTIONS(2355), - [aux_sym_string_literal_token1] = ACTIONS(2355), - [sym_char_literal] = ACTIONS(2355), - [anon_sym_true] = ACTIONS(2357), - [anon_sym_false] = ACTIONS(2357), + [anon_sym_extern] = ACTIONS(2355), + [anon_sym_raw] = ACTIONS(2333), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), [sym_self] = ACTIONS(2357), [sym_super] = ACTIONS(2357), - [sym_crate] = ACTIONS(2357), - [sym_metavariable] = ACTIONS(2355), - [sym__raw_string_literal_start] = ACTIONS(2355), - [sym_float_literal] = ACTIONS(2355), - }, - [STATE(621)] = { - [sym_line_comment] = STATE(621), - [sym_block_comment] = STATE(621), - [ts_builtin_sym_end] = ACTIONS(2359), - [sym_identifier] = ACTIONS(2361), - [anon_sym_SEMI] = ACTIONS(2359), - [anon_sym_macro_rules_BANG] = ACTIONS(2359), - [anon_sym_LPAREN] = ACTIONS(2359), - [anon_sym_LBRACK] = ACTIONS(2359), - [anon_sym_LBRACE] = ACTIONS(2359), - [anon_sym_RBRACE] = ACTIONS(2359), - [anon_sym_STAR] = ACTIONS(2359), - [anon_sym_u8] = ACTIONS(2361), - [anon_sym_i8] = ACTIONS(2361), - [anon_sym_u16] = ACTIONS(2361), - [anon_sym_i16] = ACTIONS(2361), - [anon_sym_u32] = ACTIONS(2361), - [anon_sym_i32] = ACTIONS(2361), - [anon_sym_u64] = ACTIONS(2361), - [anon_sym_i64] = ACTIONS(2361), - [anon_sym_u128] = ACTIONS(2361), - [anon_sym_i128] = ACTIONS(2361), - [anon_sym_isize] = ACTIONS(2361), - [anon_sym_usize] = ACTIONS(2361), - [anon_sym_f32] = ACTIONS(2361), - [anon_sym_f64] = ACTIONS(2361), - [anon_sym_bool] = ACTIONS(2361), - [anon_sym_str] = ACTIONS(2361), - [anon_sym_char] = ACTIONS(2361), - [anon_sym_DASH] = ACTIONS(2359), - [anon_sym_BANG] = ACTIONS(2359), - [anon_sym_AMP] = ACTIONS(2359), - [anon_sym_PIPE] = ACTIONS(2359), - [anon_sym_LT] = ACTIONS(2359), - [anon_sym_DOT_DOT] = ACTIONS(2359), - [anon_sym_COLON_COLON] = ACTIONS(2359), - [anon_sym_POUND] = ACTIONS(2359), - [anon_sym_SQUOTE] = ACTIONS(2361), - [anon_sym_async] = ACTIONS(2361), - [anon_sym_break] = ACTIONS(2361), - [anon_sym_const] = ACTIONS(2361), - [anon_sym_continue] = ACTIONS(2361), - [anon_sym_default] = ACTIONS(2361), - [anon_sym_enum] = ACTIONS(2361), - [anon_sym_fn] = ACTIONS(2361), - [anon_sym_for] = ACTIONS(2361), - [anon_sym_gen] = ACTIONS(2361), - [anon_sym_if] = ACTIONS(2361), - [anon_sym_impl] = ACTIONS(2361), - [anon_sym_let] = ACTIONS(2361), - [anon_sym_loop] = ACTIONS(2361), - [anon_sym_match] = ACTIONS(2361), - [anon_sym_mod] = ACTIONS(2361), - [anon_sym_pub] = ACTIONS(2361), - [anon_sym_return] = ACTIONS(2361), - [anon_sym_static] = ACTIONS(2361), - [anon_sym_struct] = ACTIONS(2361), - [anon_sym_trait] = ACTIONS(2361), - [anon_sym_type] = ACTIONS(2361), - [anon_sym_union] = ACTIONS(2361), - [anon_sym_unsafe] = ACTIONS(2361), - [anon_sym_use] = ACTIONS(2361), - [anon_sym_while] = ACTIONS(2361), - [anon_sym_extern] = ACTIONS(2361), - [anon_sym_raw] = ACTIONS(2361), - [anon_sym_yield] = ACTIONS(2361), - [anon_sym_move] = ACTIONS(2361), - [anon_sym_try] = ACTIONS(2361), - [sym_integer_literal] = ACTIONS(2359), - [aux_sym_string_literal_token1] = ACTIONS(2359), - [sym_char_literal] = ACTIONS(2359), - [anon_sym_true] = ACTIONS(2361), - [anon_sym_false] = ACTIONS(2361), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2361), - [sym_super] = ACTIONS(2361), - [sym_crate] = ACTIONS(2361), - [sym_metavariable] = ACTIONS(2359), - [sym__raw_string_literal_start] = ACTIONS(2359), - [sym_float_literal] = ACTIONS(2359), - }, - [STATE(622)] = { - [sym_line_comment] = STATE(622), - [sym_block_comment] = STATE(622), + [sym_crate] = ACTIONS(2359), + [sym_metavariable] = ACTIONS(2361), + }, + [615] = { + [sym_attribute_item] = STATE(1361), + [sym_inner_attribute_item] = STATE(1361), + [sym_bracketed_type] = STATE(3688), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3407), + [sym_macro_invocation] = STATE(3125), + [sym_scoped_identifier] = STATE(2279), + [sym_scoped_type_identifier] = STATE(3095), + [sym_match_pattern] = STATE(3665), + [sym_const_block] = STATE(3125), + [sym__pattern] = STATE(3046), + [sym_generic_pattern] = STATE(3125), + [sym_tuple_pattern] = STATE(3125), + [sym_slice_pattern] = STATE(3125), + [sym_tuple_struct_pattern] = STATE(3125), + [sym_struct_pattern] = STATE(3125), + [sym_remaining_field_pattern] = STATE(3125), + [sym_mut_pattern] = STATE(3125), + [sym_range_pattern] = STATE(3125), + [sym_ref_pattern] = STATE(3125), + [sym_captured_pattern] = STATE(3125), + [sym_reference_pattern] = STATE(3125), + [sym_or_pattern] = STATE(3125), + [sym__literal_pattern] = STATE(2478), + [sym_negative_literal] = STATE(2502), + [sym_string_literal] = STATE(2502), + [sym_raw_string_literal] = STATE(2502), + [sym_boolean_literal] = STATE(2502), + [sym_line_comment] = STATE(615), + [sym_block_comment] = STATE(615), + [aux_sym_match_arm_repeat1] = STATE(1071), + [sym_identifier] = ACTIONS(1668), + [anon_sym_LPAREN] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_u8] = ACTIONS(1676), + [anon_sym_i8] = ACTIONS(1676), + [anon_sym_u16] = ACTIONS(1676), + [anon_sym_i16] = ACTIONS(1676), + [anon_sym_u32] = ACTIONS(1676), + [anon_sym_i32] = ACTIONS(1676), + [anon_sym_u64] = ACTIONS(1676), + [anon_sym_i64] = ACTIONS(1676), + [anon_sym_u128] = ACTIONS(1676), + [anon_sym_i128] = ACTIONS(1676), + [anon_sym_isize] = ACTIONS(1676), + [anon_sym_usize] = ACTIONS(1676), + [anon_sym_f32] = ACTIONS(1676), + [anon_sym_f64] = ACTIONS(1676), + [anon_sym_bool] = ACTIONS(1676), + [anon_sym_str] = ACTIONS(1676), + [anon_sym_char] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1680), + [anon_sym_PIPE] = ACTIONS(1682), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1684), + [anon_sym_DOT_DOT] = ACTIONS(1686), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1688), + [anon_sym_COLON_COLON] = ACTIONS(1690), + [anon_sym_POUND] = ACTIONS(1692), + [anon_sym_const] = ACTIONS(1694), + [anon_sym_default] = ACTIONS(1696), + [anon_sym_gen] = ACTIONS(1696), + [anon_sym_union] = ACTIONS(1696), + [anon_sym_ref] = ACTIONS(1698), + [sym_mutable_specifier] = ACTIONS(1700), + [anon_sym_raw] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1702), + [aux_sym_string_literal_token1] = ACTIONS(1704), + [sym_char_literal] = ACTIONS(1702), + [anon_sym_true] = ACTIONS(1706), + [anon_sym_false] = ACTIONS(1706), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1708), + [sym_super] = ACTIONS(1708), + [sym_crate] = ACTIONS(1708), + [sym_metavariable] = ACTIONS(1710), + [sym__raw_string_literal_start] = ACTIONS(1712), + [sym_float_literal] = ACTIONS(1702), + }, + [616] = { + [sym_line_comment] = STATE(616), + [sym_block_comment] = STATE(616), [ts_builtin_sym_end] = ACTIONS(2363), [sym_identifier] = ACTIONS(2365), [anon_sym_SEMI] = ACTIONS(2363), @@ -82801,9 +81785,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2363), [sym_float_literal] = ACTIONS(2363), }, - [STATE(623)] = { - [sym_line_comment] = STATE(623), - [sym_block_comment] = STATE(623), + [617] = { + [sym_line_comment] = STATE(617), + [sym_block_comment] = STATE(617), [ts_builtin_sym_end] = ACTIONS(2367), [sym_identifier] = ACTIONS(2369), [anon_sym_SEMI] = ACTIONS(2367), @@ -82883,9 +81867,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2367), [sym_float_literal] = ACTIONS(2367), }, - [STATE(624)] = { - [sym_line_comment] = STATE(624), - [sym_block_comment] = STATE(624), + [618] = { + [sym_line_comment] = STATE(618), + [sym_block_comment] = STATE(618), [ts_builtin_sym_end] = ACTIONS(2371), [sym_identifier] = ACTIONS(2373), [anon_sym_SEMI] = ACTIONS(2371), @@ -82965,9 +81949,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2371), [sym_float_literal] = ACTIONS(2371), }, - [STATE(625)] = { - [sym_line_comment] = STATE(625), - [sym_block_comment] = STATE(625), + [619] = { + [sym_line_comment] = STATE(619), + [sym_block_comment] = STATE(619), [ts_builtin_sym_end] = ACTIONS(2375), [sym_identifier] = ACTIONS(2377), [anon_sym_SEMI] = ACTIONS(2375), @@ -83047,9 +82031,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2375), [sym_float_literal] = ACTIONS(2375), }, - [STATE(626)] = { - [sym_line_comment] = STATE(626), - [sym_block_comment] = STATE(626), + [620] = { + [sym_line_comment] = STATE(620), + [sym_block_comment] = STATE(620), [ts_builtin_sym_end] = ACTIONS(2379), [sym_identifier] = ACTIONS(2381), [anon_sym_SEMI] = ACTIONS(2379), @@ -83129,9 +82113,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2379), [sym_float_literal] = ACTIONS(2379), }, - [STATE(627)] = { - [sym_line_comment] = STATE(627), - [sym_block_comment] = STATE(627), + [621] = { + [sym_line_comment] = STATE(621), + [sym_block_comment] = STATE(621), [ts_builtin_sym_end] = ACTIONS(2383), [sym_identifier] = ACTIONS(2385), [anon_sym_SEMI] = ACTIONS(2383), @@ -83211,9 +82195,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2383), [sym_float_literal] = ACTIONS(2383), }, - [STATE(628)] = { - [sym_line_comment] = STATE(628), - [sym_block_comment] = STATE(628), + [622] = { + [sym_line_comment] = STATE(622), + [sym_block_comment] = STATE(622), [ts_builtin_sym_end] = ACTIONS(2387), [sym_identifier] = ACTIONS(2389), [anon_sym_SEMI] = ACTIONS(2387), @@ -83293,9 +82277,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2387), [sym_float_literal] = ACTIONS(2387), }, - [STATE(629)] = { - [sym_line_comment] = STATE(629), - [sym_block_comment] = STATE(629), + [623] = { + [sym_line_comment] = STATE(623), + [sym_block_comment] = STATE(623), [ts_builtin_sym_end] = ACTIONS(2391), [sym_identifier] = ACTIONS(2393), [anon_sym_SEMI] = ACTIONS(2391), @@ -83375,9 +82359,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2391), [sym_float_literal] = ACTIONS(2391), }, - [STATE(630)] = { - [sym_line_comment] = STATE(630), - [sym_block_comment] = STATE(630), + [624] = { + [sym_line_comment] = STATE(624), + [sym_block_comment] = STATE(624), [ts_builtin_sym_end] = ACTIONS(2395), [sym_identifier] = ACTIONS(2397), [anon_sym_SEMI] = ACTIONS(2395), @@ -83457,9 +82441,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2395), [sym_float_literal] = ACTIONS(2395), }, - [STATE(631)] = { - [sym_line_comment] = STATE(631), - [sym_block_comment] = STATE(631), + [625] = { + [sym_line_comment] = STATE(625), + [sym_block_comment] = STATE(625), [ts_builtin_sym_end] = ACTIONS(2399), [sym_identifier] = ACTIONS(2401), [anon_sym_SEMI] = ACTIONS(2399), @@ -83539,9 +82523,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2399), [sym_float_literal] = ACTIONS(2399), }, - [STATE(632)] = { - [sym_line_comment] = STATE(632), - [sym_block_comment] = STATE(632), + [626] = { + [sym_line_comment] = STATE(626), + [sym_block_comment] = STATE(626), [ts_builtin_sym_end] = ACTIONS(2403), [sym_identifier] = ACTIONS(2405), [anon_sym_SEMI] = ACTIONS(2403), @@ -83621,9 +82605,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2403), [sym_float_literal] = ACTIONS(2403), }, - [STATE(633)] = { - [sym_line_comment] = STATE(633), - [sym_block_comment] = STATE(633), + [627] = { + [sym_line_comment] = STATE(627), + [sym_block_comment] = STATE(627), [ts_builtin_sym_end] = ACTIONS(2407), [sym_identifier] = ACTIONS(2409), [anon_sym_SEMI] = ACTIONS(2407), @@ -83703,9 +82687,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2407), [sym_float_literal] = ACTIONS(2407), }, - [STATE(634)] = { - [sym_line_comment] = STATE(634), - [sym_block_comment] = STATE(634), + [628] = { + [sym_line_comment] = STATE(628), + [sym_block_comment] = STATE(628), [ts_builtin_sym_end] = ACTIONS(2411), [sym_identifier] = ACTIONS(2413), [anon_sym_SEMI] = ACTIONS(2411), @@ -83785,9 +82769,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2411), [sym_float_literal] = ACTIONS(2411), }, - [STATE(635)] = { - [sym_line_comment] = STATE(635), - [sym_block_comment] = STATE(635), + [629] = { + [sym_line_comment] = STATE(629), + [sym_block_comment] = STATE(629), [ts_builtin_sym_end] = ACTIONS(2415), [sym_identifier] = ACTIONS(2417), [anon_sym_SEMI] = ACTIONS(2415), @@ -83867,501 +82851,501 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2415), [sym_float_literal] = ACTIONS(2415), }, - [STATE(636)] = { - [sym_empty_statement] = STATE(1378), - [sym_macro_definition] = STATE(1378), - [sym_attribute_item] = STATE(1378), - [sym_inner_attribute_item] = STATE(1378), - [sym_mod_item] = STATE(1378), - [sym_foreign_mod_item] = STATE(1378), - [sym_struct_item] = STATE(1378), - [sym_union_item] = STATE(1378), - [sym_enum_item] = STATE(1378), - [sym_extern_crate_declaration] = STATE(1378), - [sym_const_item] = STATE(1378), - [sym_static_item] = STATE(1378), - [sym_type_item] = STATE(1378), - [sym_function_item] = STATE(1378), - [sym_function_signature_item] = STATE(1378), - [sym_function_modifiers] = STATE(3785), - [sym_impl_item] = STATE(1378), - [sym_trait_item] = STATE(1378), - [sym_associated_type] = STATE(1378), - [sym_let_declaration] = STATE(1378), - [sym_use_declaration] = STATE(1378), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2035), - [sym_bracketed_type] = STATE(3740), - [sym_generic_type_with_turbofish] = STATE(3804), - [sym_macro_invocation] = STATE(1378), - [sym_scoped_identifier] = STATE(3417), - [sym_line_comment] = STATE(636), - [sym_block_comment] = STATE(636), - [aux_sym_declaration_list_repeat1] = STATE(636), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(2419), - [anon_sym_SEMI] = ACTIONS(2422), - [anon_sym_macro_rules_BANG] = ACTIONS(2425), - [anon_sym_RBRACE] = 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_LT] = ACTIONS(2433), - [anon_sym_COLON_COLON] = ACTIONS(2436), - [anon_sym_POUND] = ACTIONS(2439), - [anon_sym_async] = ACTIONS(2442), - [anon_sym_const] = ACTIONS(2445), - [anon_sym_default] = ACTIONS(2448), - [anon_sym_enum] = ACTIONS(2451), - [anon_sym_fn] = ACTIONS(2454), - [anon_sym_gen] = ACTIONS(2457), - [anon_sym_impl] = ACTIONS(2460), - [anon_sym_let] = ACTIONS(2463), - [anon_sym_mod] = ACTIONS(2466), - [anon_sym_pub] = ACTIONS(2469), - [anon_sym_static] = ACTIONS(2472), - [anon_sym_struct] = ACTIONS(2475), - [anon_sym_trait] = ACTIONS(2478), - [anon_sym_type] = ACTIONS(2481), - [anon_sym_union] = ACTIONS(2484), - [anon_sym_unsafe] = ACTIONS(2487), - [anon_sym_use] = ACTIONS(2490), - [anon_sym_extern] = ACTIONS(2493), - [anon_sym_raw] = ACTIONS(2457), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2496), - [sym_super] = ACTIONS(2496), - [sym_crate] = ACTIONS(2499), - [sym_metavariable] = ACTIONS(2502), - }, - [STATE(637)] = { - [sym_line_comment] = STATE(637), - [sym_block_comment] = STATE(637), - [ts_builtin_sym_end] = ACTIONS(2505), - [sym_identifier] = ACTIONS(2507), - [anon_sym_SEMI] = ACTIONS(2505), - [anon_sym_macro_rules_BANG] = ACTIONS(2505), - [anon_sym_LPAREN] = ACTIONS(2505), - [anon_sym_LBRACK] = ACTIONS(2505), - [anon_sym_LBRACE] = ACTIONS(2505), - [anon_sym_RBRACE] = ACTIONS(2505), - [anon_sym_STAR] = ACTIONS(2505), - [anon_sym_u8] = ACTIONS(2507), - [anon_sym_i8] = ACTIONS(2507), - [anon_sym_u16] = ACTIONS(2507), - [anon_sym_i16] = ACTIONS(2507), - [anon_sym_u32] = ACTIONS(2507), - [anon_sym_i32] = ACTIONS(2507), - [anon_sym_u64] = ACTIONS(2507), - [anon_sym_i64] = ACTIONS(2507), - [anon_sym_u128] = ACTIONS(2507), - [anon_sym_i128] = ACTIONS(2507), - [anon_sym_isize] = ACTIONS(2507), - [anon_sym_usize] = ACTIONS(2507), - [anon_sym_f32] = ACTIONS(2507), - [anon_sym_f64] = ACTIONS(2507), - [anon_sym_bool] = ACTIONS(2507), - [anon_sym_str] = ACTIONS(2507), - [anon_sym_char] = ACTIONS(2507), - [anon_sym_DASH] = ACTIONS(2505), - [anon_sym_BANG] = ACTIONS(2505), - [anon_sym_AMP] = ACTIONS(2505), - [anon_sym_PIPE] = ACTIONS(2505), - [anon_sym_LT] = ACTIONS(2505), - [anon_sym_DOT_DOT] = ACTIONS(2505), - [anon_sym_COLON_COLON] = ACTIONS(2505), - [anon_sym_POUND] = ACTIONS(2505), - [anon_sym_SQUOTE] = ACTIONS(2507), - [anon_sym_async] = ACTIONS(2507), - [anon_sym_break] = ACTIONS(2507), - [anon_sym_const] = ACTIONS(2507), - [anon_sym_continue] = ACTIONS(2507), - [anon_sym_default] = ACTIONS(2507), - [anon_sym_enum] = ACTIONS(2507), - [anon_sym_fn] = ACTIONS(2507), - [anon_sym_for] = ACTIONS(2507), - [anon_sym_gen] = ACTIONS(2507), - [anon_sym_if] = ACTIONS(2507), - [anon_sym_impl] = ACTIONS(2507), - [anon_sym_let] = ACTIONS(2507), - [anon_sym_loop] = ACTIONS(2507), - [anon_sym_match] = ACTIONS(2507), - [anon_sym_mod] = ACTIONS(2507), - [anon_sym_pub] = ACTIONS(2507), - [anon_sym_return] = ACTIONS(2507), - [anon_sym_static] = ACTIONS(2507), - [anon_sym_struct] = ACTIONS(2507), - [anon_sym_trait] = ACTIONS(2507), - [anon_sym_type] = ACTIONS(2507), - [anon_sym_union] = ACTIONS(2507), + [630] = { + [sym_line_comment] = STATE(630), + [sym_block_comment] = STATE(630), + [ts_builtin_sym_end] = ACTIONS(2419), + [sym_identifier] = ACTIONS(2421), + [anon_sym_SEMI] = ACTIONS(2419), + [anon_sym_macro_rules_BANG] = ACTIONS(2419), + [anon_sym_LPAREN] = ACTIONS(2419), + [anon_sym_LBRACK] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_RBRACE] = ACTIONS(2419), + [anon_sym_STAR] = ACTIONS(2419), + [anon_sym_u8] = ACTIONS(2421), + [anon_sym_i8] = ACTIONS(2421), + [anon_sym_u16] = ACTIONS(2421), + [anon_sym_i16] = ACTIONS(2421), + [anon_sym_u32] = ACTIONS(2421), + [anon_sym_i32] = ACTIONS(2421), + [anon_sym_u64] = ACTIONS(2421), + [anon_sym_i64] = ACTIONS(2421), + [anon_sym_u128] = ACTIONS(2421), + [anon_sym_i128] = ACTIONS(2421), + [anon_sym_isize] = ACTIONS(2421), + [anon_sym_usize] = ACTIONS(2421), + [anon_sym_f32] = ACTIONS(2421), + [anon_sym_f64] = ACTIONS(2421), + [anon_sym_bool] = ACTIONS(2421), + [anon_sym_str] = ACTIONS(2421), + [anon_sym_char] = ACTIONS(2421), + [anon_sym_DASH] = ACTIONS(2419), + [anon_sym_BANG] = ACTIONS(2419), + [anon_sym_AMP] = ACTIONS(2419), + [anon_sym_PIPE] = ACTIONS(2419), + [anon_sym_LT] = ACTIONS(2419), + [anon_sym_DOT_DOT] = ACTIONS(2419), + [anon_sym_COLON_COLON] = ACTIONS(2419), + [anon_sym_POUND] = ACTIONS(2419), + [anon_sym_SQUOTE] = ACTIONS(2421), + [anon_sym_async] = ACTIONS(2421), + [anon_sym_break] = ACTIONS(2421), + [anon_sym_const] = ACTIONS(2421), + [anon_sym_continue] = ACTIONS(2421), + [anon_sym_default] = ACTIONS(2421), + [anon_sym_enum] = ACTIONS(2421), + [anon_sym_fn] = ACTIONS(2421), + [anon_sym_for] = ACTIONS(2421), + [anon_sym_gen] = ACTIONS(2421), + [anon_sym_if] = ACTIONS(2421), + [anon_sym_impl] = ACTIONS(2421), + [anon_sym_let] = ACTIONS(2421), + [anon_sym_loop] = ACTIONS(2421), + [anon_sym_match] = ACTIONS(2421), + [anon_sym_mod] = ACTIONS(2421), + [anon_sym_pub] = ACTIONS(2421), + [anon_sym_return] = ACTIONS(2421), + [anon_sym_static] = ACTIONS(2421), + [anon_sym_struct] = ACTIONS(2421), + [anon_sym_trait] = ACTIONS(2421), + [anon_sym_type] = ACTIONS(2421), + [anon_sym_union] = ACTIONS(2421), + [anon_sym_unsafe] = ACTIONS(2421), + [anon_sym_use] = ACTIONS(2421), + [anon_sym_while] = ACTIONS(2421), + [anon_sym_extern] = ACTIONS(2421), + [anon_sym_raw] = ACTIONS(2421), + [anon_sym_yield] = ACTIONS(2421), + [anon_sym_move] = ACTIONS(2421), + [anon_sym_try] = ACTIONS(2421), + [sym_integer_literal] = ACTIONS(2419), + [aux_sym_string_literal_token1] = ACTIONS(2419), + [sym_char_literal] = ACTIONS(2419), + [anon_sym_true] = ACTIONS(2421), + [anon_sym_false] = ACTIONS(2421), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2421), + [sym_super] = ACTIONS(2421), + [sym_crate] = ACTIONS(2421), + [sym_metavariable] = ACTIONS(2419), + [sym__raw_string_literal_start] = ACTIONS(2419), + [sym_float_literal] = ACTIONS(2419), + }, + [631] = { + [sym_line_comment] = STATE(631), + [sym_block_comment] = STATE(631), + [ts_builtin_sym_end] = ACTIONS(2423), + [sym_identifier] = ACTIONS(2425), + [anon_sym_SEMI] = ACTIONS(2423), + [anon_sym_macro_rules_BANG] = ACTIONS(2423), + [anon_sym_LPAREN] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(2423), + [anon_sym_LBRACE] = ACTIONS(2423), + [anon_sym_RBRACE] = ACTIONS(2423), + [anon_sym_STAR] = ACTIONS(2423), + [anon_sym_u8] = ACTIONS(2425), + [anon_sym_i8] = ACTIONS(2425), + [anon_sym_u16] = ACTIONS(2425), + [anon_sym_i16] = ACTIONS(2425), + [anon_sym_u32] = ACTIONS(2425), + [anon_sym_i32] = ACTIONS(2425), + [anon_sym_u64] = ACTIONS(2425), + [anon_sym_i64] = ACTIONS(2425), + [anon_sym_u128] = ACTIONS(2425), + [anon_sym_i128] = ACTIONS(2425), + [anon_sym_isize] = ACTIONS(2425), + [anon_sym_usize] = ACTIONS(2425), + [anon_sym_f32] = ACTIONS(2425), + [anon_sym_f64] = ACTIONS(2425), + [anon_sym_bool] = ACTIONS(2425), + [anon_sym_str] = ACTIONS(2425), + [anon_sym_char] = ACTIONS(2425), + [anon_sym_DASH] = ACTIONS(2423), + [anon_sym_BANG] = ACTIONS(2423), + [anon_sym_AMP] = ACTIONS(2423), + [anon_sym_PIPE] = ACTIONS(2423), + [anon_sym_LT] = ACTIONS(2423), + [anon_sym_DOT_DOT] = ACTIONS(2423), + [anon_sym_COLON_COLON] = ACTIONS(2423), + [anon_sym_POUND] = ACTIONS(2423), + [anon_sym_SQUOTE] = ACTIONS(2425), + [anon_sym_async] = ACTIONS(2425), + [anon_sym_break] = ACTIONS(2425), + [anon_sym_const] = ACTIONS(2425), + [anon_sym_continue] = ACTIONS(2425), + [anon_sym_default] = ACTIONS(2425), + [anon_sym_enum] = ACTIONS(2425), + [anon_sym_fn] = ACTIONS(2425), + [anon_sym_for] = ACTIONS(2425), + [anon_sym_gen] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(2425), + [anon_sym_impl] = ACTIONS(2425), + [anon_sym_let] = ACTIONS(2425), + [anon_sym_loop] = ACTIONS(2425), + [anon_sym_match] = ACTIONS(2425), + [anon_sym_mod] = ACTIONS(2425), + [anon_sym_pub] = ACTIONS(2425), + [anon_sym_return] = ACTIONS(2425), + [anon_sym_static] = ACTIONS(2425), + [anon_sym_struct] = ACTIONS(2425), + [anon_sym_trait] = ACTIONS(2425), + [anon_sym_type] = ACTIONS(2425), + [anon_sym_union] = ACTIONS(2425), + [anon_sym_unsafe] = ACTIONS(2425), + [anon_sym_use] = ACTIONS(2425), + [anon_sym_while] = ACTIONS(2425), + [anon_sym_extern] = ACTIONS(2425), + [anon_sym_raw] = ACTIONS(2425), + [anon_sym_yield] = ACTIONS(2425), + [anon_sym_move] = ACTIONS(2425), + [anon_sym_try] = ACTIONS(2425), + [sym_integer_literal] = ACTIONS(2423), + [aux_sym_string_literal_token1] = ACTIONS(2423), + [sym_char_literal] = ACTIONS(2423), + [anon_sym_true] = ACTIONS(2425), + [anon_sym_false] = ACTIONS(2425), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2425), + [sym_super] = ACTIONS(2425), + [sym_crate] = ACTIONS(2425), + [sym_metavariable] = ACTIONS(2423), + [sym__raw_string_literal_start] = ACTIONS(2423), + [sym_float_literal] = ACTIONS(2423), + }, + [632] = { + [sym_line_comment] = STATE(632), + [sym_block_comment] = STATE(632), + [ts_builtin_sym_end] = ACTIONS(2427), + [sym_identifier] = ACTIONS(2429), + [anon_sym_SEMI] = ACTIONS(2427), + [anon_sym_macro_rules_BANG] = ACTIONS(2427), + [anon_sym_LPAREN] = ACTIONS(2427), + [anon_sym_LBRACK] = ACTIONS(2427), + [anon_sym_LBRACE] = ACTIONS(2427), + [anon_sym_RBRACE] = ACTIONS(2427), + [anon_sym_STAR] = ACTIONS(2427), + [anon_sym_u8] = ACTIONS(2429), + [anon_sym_i8] = ACTIONS(2429), + [anon_sym_u16] = ACTIONS(2429), + [anon_sym_i16] = ACTIONS(2429), + [anon_sym_u32] = ACTIONS(2429), + [anon_sym_i32] = ACTIONS(2429), + [anon_sym_u64] = ACTIONS(2429), + [anon_sym_i64] = ACTIONS(2429), + [anon_sym_u128] = ACTIONS(2429), + [anon_sym_i128] = ACTIONS(2429), + [anon_sym_isize] = ACTIONS(2429), + [anon_sym_usize] = ACTIONS(2429), + [anon_sym_f32] = ACTIONS(2429), + [anon_sym_f64] = ACTIONS(2429), + [anon_sym_bool] = ACTIONS(2429), + [anon_sym_str] = ACTIONS(2429), + [anon_sym_char] = ACTIONS(2429), + [anon_sym_DASH] = ACTIONS(2427), + [anon_sym_BANG] = ACTIONS(2427), + [anon_sym_AMP] = ACTIONS(2427), + [anon_sym_PIPE] = ACTIONS(2427), + [anon_sym_LT] = ACTIONS(2427), + [anon_sym_DOT_DOT] = ACTIONS(2427), + [anon_sym_COLON_COLON] = ACTIONS(2427), + [anon_sym_POUND] = ACTIONS(2427), + [anon_sym_SQUOTE] = ACTIONS(2429), + [anon_sym_async] = ACTIONS(2429), + [anon_sym_break] = ACTIONS(2429), + [anon_sym_const] = ACTIONS(2429), + [anon_sym_continue] = ACTIONS(2429), + [anon_sym_default] = ACTIONS(2429), + [anon_sym_enum] = ACTIONS(2429), + [anon_sym_fn] = ACTIONS(2429), + [anon_sym_for] = ACTIONS(2429), + [anon_sym_gen] = ACTIONS(2429), + [anon_sym_if] = ACTIONS(2429), + [anon_sym_impl] = ACTIONS(2429), + [anon_sym_let] = ACTIONS(2429), + [anon_sym_loop] = ACTIONS(2429), + [anon_sym_match] = ACTIONS(2429), + [anon_sym_mod] = ACTIONS(2429), + [anon_sym_pub] = ACTIONS(2429), + [anon_sym_return] = ACTIONS(2429), + [anon_sym_static] = ACTIONS(2429), + [anon_sym_struct] = ACTIONS(2429), + [anon_sym_trait] = ACTIONS(2429), + [anon_sym_type] = ACTIONS(2429), + [anon_sym_union] = ACTIONS(2429), + [anon_sym_unsafe] = ACTIONS(2429), + [anon_sym_use] = ACTIONS(2429), + [anon_sym_while] = ACTIONS(2429), + [anon_sym_extern] = ACTIONS(2429), + [anon_sym_raw] = ACTIONS(2429), + [anon_sym_yield] = ACTIONS(2429), + [anon_sym_move] = ACTIONS(2429), + [anon_sym_try] = ACTIONS(2429), + [sym_integer_literal] = ACTIONS(2427), + [aux_sym_string_literal_token1] = ACTIONS(2427), + [sym_char_literal] = ACTIONS(2427), + [anon_sym_true] = ACTIONS(2429), + [anon_sym_false] = ACTIONS(2429), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2429), + [sym_super] = ACTIONS(2429), + [sym_crate] = ACTIONS(2429), + [sym_metavariable] = ACTIONS(2427), + [sym__raw_string_literal_start] = ACTIONS(2427), + [sym_float_literal] = ACTIONS(2427), + }, + [633] = { + [sym_line_comment] = STATE(633), + [sym_block_comment] = STATE(633), + [ts_builtin_sym_end] = ACTIONS(2431), + [sym_identifier] = ACTIONS(2433), + [anon_sym_SEMI] = ACTIONS(2431), + [anon_sym_macro_rules_BANG] = ACTIONS(2431), + [anon_sym_LPAREN] = ACTIONS(2431), + [anon_sym_LBRACK] = ACTIONS(2431), + [anon_sym_LBRACE] = ACTIONS(2431), + [anon_sym_RBRACE] = ACTIONS(2431), + [anon_sym_STAR] = ACTIONS(2431), + [anon_sym_u8] = ACTIONS(2433), + [anon_sym_i8] = ACTIONS(2433), + [anon_sym_u16] = ACTIONS(2433), + [anon_sym_i16] = ACTIONS(2433), + [anon_sym_u32] = ACTIONS(2433), + [anon_sym_i32] = ACTIONS(2433), + [anon_sym_u64] = ACTIONS(2433), + [anon_sym_i64] = ACTIONS(2433), + [anon_sym_u128] = ACTIONS(2433), + [anon_sym_i128] = ACTIONS(2433), + [anon_sym_isize] = ACTIONS(2433), + [anon_sym_usize] = ACTIONS(2433), + [anon_sym_f32] = ACTIONS(2433), + [anon_sym_f64] = ACTIONS(2433), + [anon_sym_bool] = ACTIONS(2433), + [anon_sym_str] = ACTIONS(2433), + [anon_sym_char] = ACTIONS(2433), + [anon_sym_DASH] = ACTIONS(2431), + [anon_sym_BANG] = ACTIONS(2431), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_PIPE] = ACTIONS(2431), + [anon_sym_LT] = ACTIONS(2431), + [anon_sym_DOT_DOT] = ACTIONS(2431), + [anon_sym_COLON_COLON] = ACTIONS(2431), + [anon_sym_POUND] = ACTIONS(2431), + [anon_sym_SQUOTE] = ACTIONS(2433), + [anon_sym_async] = ACTIONS(2433), + [anon_sym_break] = ACTIONS(2433), + [anon_sym_const] = ACTIONS(2433), + [anon_sym_continue] = ACTIONS(2433), + [anon_sym_default] = ACTIONS(2433), + [anon_sym_enum] = ACTIONS(2433), + [anon_sym_fn] = ACTIONS(2433), + [anon_sym_for] = ACTIONS(2433), + [anon_sym_gen] = ACTIONS(2433), + [anon_sym_if] = ACTIONS(2433), + [anon_sym_impl] = ACTIONS(2433), + [anon_sym_let] = ACTIONS(2433), + [anon_sym_loop] = ACTIONS(2433), + [anon_sym_match] = ACTIONS(2433), + [anon_sym_mod] = ACTIONS(2433), + [anon_sym_pub] = ACTIONS(2433), + [anon_sym_return] = ACTIONS(2433), + [anon_sym_static] = ACTIONS(2433), + [anon_sym_struct] = ACTIONS(2433), + [anon_sym_trait] = ACTIONS(2433), + [anon_sym_type] = ACTIONS(2433), + [anon_sym_union] = ACTIONS(2433), + [anon_sym_unsafe] = ACTIONS(2433), + [anon_sym_use] = ACTIONS(2433), + [anon_sym_while] = ACTIONS(2433), + [anon_sym_extern] = ACTIONS(2433), + [anon_sym_raw] = ACTIONS(2433), + [anon_sym_yield] = ACTIONS(2433), + [anon_sym_move] = ACTIONS(2433), + [anon_sym_try] = ACTIONS(2433), + [sym_integer_literal] = ACTIONS(2431), + [aux_sym_string_literal_token1] = ACTIONS(2431), + [sym_char_literal] = ACTIONS(2431), + [anon_sym_true] = ACTIONS(2433), + [anon_sym_false] = ACTIONS(2433), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2433), + [sym_super] = ACTIONS(2433), + [sym_crate] = ACTIONS(2433), + [sym_metavariable] = ACTIONS(2431), + [sym__raw_string_literal_start] = ACTIONS(2431), + [sym_float_literal] = ACTIONS(2431), + }, + [634] = { + [sym_line_comment] = STATE(634), + [sym_block_comment] = STATE(634), + [ts_builtin_sym_end] = ACTIONS(2435), + [sym_identifier] = ACTIONS(2437), + [anon_sym_SEMI] = ACTIONS(2435), + [anon_sym_macro_rules_BANG] = ACTIONS(2435), + [anon_sym_LPAREN] = ACTIONS(2435), + [anon_sym_LBRACK] = ACTIONS(2435), + [anon_sym_LBRACE] = ACTIONS(2435), + [anon_sym_RBRACE] = ACTIONS(2435), + [anon_sym_STAR] = ACTIONS(2435), + [anon_sym_u8] = ACTIONS(2437), + [anon_sym_i8] = ACTIONS(2437), + [anon_sym_u16] = ACTIONS(2437), + [anon_sym_i16] = ACTIONS(2437), + [anon_sym_u32] = ACTIONS(2437), + [anon_sym_i32] = ACTIONS(2437), + [anon_sym_u64] = ACTIONS(2437), + [anon_sym_i64] = ACTIONS(2437), + [anon_sym_u128] = ACTIONS(2437), + [anon_sym_i128] = ACTIONS(2437), + [anon_sym_isize] = ACTIONS(2437), + [anon_sym_usize] = ACTIONS(2437), + [anon_sym_f32] = ACTIONS(2437), + [anon_sym_f64] = ACTIONS(2437), + [anon_sym_bool] = ACTIONS(2437), + [anon_sym_str] = ACTIONS(2437), + [anon_sym_char] = ACTIONS(2437), + [anon_sym_DASH] = ACTIONS(2435), + [anon_sym_BANG] = ACTIONS(2435), + [anon_sym_AMP] = ACTIONS(2435), + [anon_sym_PIPE] = ACTIONS(2435), + [anon_sym_LT] = ACTIONS(2435), + [anon_sym_DOT_DOT] = ACTIONS(2435), + [anon_sym_COLON_COLON] = ACTIONS(2435), + [anon_sym_POUND] = ACTIONS(2435), + [anon_sym_SQUOTE] = ACTIONS(2437), + [anon_sym_async] = ACTIONS(2437), + [anon_sym_break] = ACTIONS(2437), + [anon_sym_const] = ACTIONS(2437), + [anon_sym_continue] = ACTIONS(2437), + [anon_sym_default] = ACTIONS(2437), + [anon_sym_enum] = ACTIONS(2437), + [anon_sym_fn] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2437), + [anon_sym_gen] = ACTIONS(2437), + [anon_sym_if] = ACTIONS(2437), + [anon_sym_impl] = ACTIONS(2437), + [anon_sym_let] = ACTIONS(2437), + [anon_sym_loop] = ACTIONS(2437), + [anon_sym_match] = ACTIONS(2437), + [anon_sym_mod] = ACTIONS(2437), + [anon_sym_pub] = ACTIONS(2437), + [anon_sym_return] = ACTIONS(2437), + [anon_sym_static] = ACTIONS(2437), + [anon_sym_struct] = ACTIONS(2437), + [anon_sym_trait] = ACTIONS(2437), + [anon_sym_type] = ACTIONS(2437), + [anon_sym_union] = ACTIONS(2437), + [anon_sym_unsafe] = ACTIONS(2437), + [anon_sym_use] = ACTIONS(2437), + [anon_sym_while] = ACTIONS(2437), + [anon_sym_extern] = ACTIONS(2437), + [anon_sym_raw] = ACTIONS(2437), + [anon_sym_yield] = ACTIONS(2437), + [anon_sym_move] = ACTIONS(2437), + [anon_sym_try] = ACTIONS(2437), + [sym_integer_literal] = ACTIONS(2435), + [aux_sym_string_literal_token1] = ACTIONS(2435), + [sym_char_literal] = ACTIONS(2435), + [anon_sym_true] = ACTIONS(2437), + [anon_sym_false] = ACTIONS(2437), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2437), + [sym_super] = ACTIONS(2437), + [sym_crate] = ACTIONS(2437), + [sym_metavariable] = ACTIONS(2435), + [sym__raw_string_literal_start] = ACTIONS(2435), + [sym_float_literal] = ACTIONS(2435), + }, + [635] = { + [sym_empty_statement] = STATE(1370), + [sym_macro_definition] = STATE(1370), + [sym_attribute_item] = STATE(1370), + [sym_inner_attribute_item] = STATE(1370), + [sym_mod_item] = STATE(1370), + [sym_foreign_mod_item] = STATE(1370), + [sym_struct_item] = STATE(1370), + [sym_union_item] = STATE(1370), + [sym_enum_item] = STATE(1370), + [sym_extern_crate_declaration] = STATE(1370), + [sym_const_item] = STATE(1370), + [sym_static_item] = STATE(1370), + [sym_type_item] = STATE(1370), + [sym_function_item] = STATE(1370), + [sym_function_signature_item] = STATE(1370), + [sym_function_modifiers] = STATE(3775), + [sym_impl_item] = STATE(1370), + [sym_trait_item] = STATE(1370), + [sym_associated_type] = STATE(1370), + [sym_let_declaration] = STATE(1370), + [sym_use_declaration] = STATE(1370), + [sym_extern_modifier] = STATE(2242), + [sym_visibility_modifier] = STATE(2025), + [sym_bracketed_type] = STATE(3723), + [sym_generic_type_with_turbofish] = STATE(3791), + [sym_macro_invocation] = STATE(1370), + [sym_scoped_identifier] = STATE(3388), + [sym_line_comment] = STATE(635), + [sym_block_comment] = STATE(635), + [aux_sym_declaration_list_repeat1] = STATE(635), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(2439), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_macro_rules_BANG] = ACTIONS(2445), + [anon_sym_RBRACE] = 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_LT] = ACTIONS(2453), + [anon_sym_COLON_COLON] = ACTIONS(2456), + [anon_sym_POUND] = ACTIONS(2459), + [anon_sym_async] = ACTIONS(2462), + [anon_sym_const] = ACTIONS(2465), + [anon_sym_default] = ACTIONS(2468), + [anon_sym_enum] = ACTIONS(2471), + [anon_sym_fn] = ACTIONS(2474), + [anon_sym_gen] = ACTIONS(2477), + [anon_sym_impl] = ACTIONS(2480), + [anon_sym_let] = ACTIONS(2483), + [anon_sym_mod] = ACTIONS(2486), + [anon_sym_pub] = ACTIONS(2489), + [anon_sym_static] = ACTIONS(2492), + [anon_sym_struct] = ACTIONS(2495), + [anon_sym_trait] = ACTIONS(2498), + [anon_sym_type] = ACTIONS(2501), + [anon_sym_union] = ACTIONS(2504), [anon_sym_unsafe] = ACTIONS(2507), - [anon_sym_use] = ACTIONS(2507), - [anon_sym_while] = ACTIONS(2507), - [anon_sym_extern] = ACTIONS(2507), - [anon_sym_raw] = ACTIONS(2507), - [anon_sym_yield] = ACTIONS(2507), - [anon_sym_move] = ACTIONS(2507), - [anon_sym_try] = ACTIONS(2507), - [sym_integer_literal] = ACTIONS(2505), - [aux_sym_string_literal_token1] = ACTIONS(2505), - [sym_char_literal] = ACTIONS(2505), - [anon_sym_true] = ACTIONS(2507), - [anon_sym_false] = ACTIONS(2507), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2507), - [sym_super] = ACTIONS(2507), - [sym_crate] = ACTIONS(2507), - [sym_metavariable] = ACTIONS(2505), - [sym__raw_string_literal_start] = ACTIONS(2505), - [sym_float_literal] = ACTIONS(2505), - }, - [STATE(638)] = { - [sym_line_comment] = STATE(638), - [sym_block_comment] = STATE(638), - [ts_builtin_sym_end] = ACTIONS(2509), - [sym_identifier] = ACTIONS(2511), - [anon_sym_SEMI] = ACTIONS(2509), - [anon_sym_macro_rules_BANG] = ACTIONS(2509), - [anon_sym_LPAREN] = ACTIONS(2509), - [anon_sym_LBRACK] = ACTIONS(2509), - [anon_sym_LBRACE] = ACTIONS(2509), - [anon_sym_RBRACE] = ACTIONS(2509), - [anon_sym_STAR] = ACTIONS(2509), - [anon_sym_u8] = ACTIONS(2511), - [anon_sym_i8] = ACTIONS(2511), - [anon_sym_u16] = ACTIONS(2511), - [anon_sym_i16] = ACTIONS(2511), - [anon_sym_u32] = ACTIONS(2511), - [anon_sym_i32] = ACTIONS(2511), - [anon_sym_u64] = ACTIONS(2511), - [anon_sym_i64] = ACTIONS(2511), - [anon_sym_u128] = ACTIONS(2511), - [anon_sym_i128] = ACTIONS(2511), - [anon_sym_isize] = ACTIONS(2511), - [anon_sym_usize] = ACTIONS(2511), - [anon_sym_f32] = ACTIONS(2511), - [anon_sym_f64] = ACTIONS(2511), - [anon_sym_bool] = ACTIONS(2511), - [anon_sym_str] = ACTIONS(2511), - [anon_sym_char] = ACTIONS(2511), - [anon_sym_DASH] = ACTIONS(2509), - [anon_sym_BANG] = ACTIONS(2509), - [anon_sym_AMP] = ACTIONS(2509), - [anon_sym_PIPE] = ACTIONS(2509), - [anon_sym_LT] = ACTIONS(2509), - [anon_sym_DOT_DOT] = ACTIONS(2509), - [anon_sym_COLON_COLON] = ACTIONS(2509), - [anon_sym_POUND] = ACTIONS(2509), - [anon_sym_SQUOTE] = ACTIONS(2511), - [anon_sym_async] = ACTIONS(2511), - [anon_sym_break] = ACTIONS(2511), - [anon_sym_const] = ACTIONS(2511), - [anon_sym_continue] = ACTIONS(2511), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_enum] = ACTIONS(2511), - [anon_sym_fn] = ACTIONS(2511), - [anon_sym_for] = ACTIONS(2511), - [anon_sym_gen] = ACTIONS(2511), - [anon_sym_if] = ACTIONS(2511), - [anon_sym_impl] = ACTIONS(2511), - [anon_sym_let] = ACTIONS(2511), - [anon_sym_loop] = ACTIONS(2511), - [anon_sym_match] = ACTIONS(2511), - [anon_sym_mod] = ACTIONS(2511), - [anon_sym_pub] = ACTIONS(2511), - [anon_sym_return] = ACTIONS(2511), - [anon_sym_static] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2511), - [anon_sym_trait] = ACTIONS(2511), - [anon_sym_type] = ACTIONS(2511), - [anon_sym_union] = ACTIONS(2511), - [anon_sym_unsafe] = ACTIONS(2511), - [anon_sym_use] = ACTIONS(2511), - [anon_sym_while] = ACTIONS(2511), - [anon_sym_extern] = ACTIONS(2511), - [anon_sym_raw] = ACTIONS(2511), - [anon_sym_yield] = ACTIONS(2511), - [anon_sym_move] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2511), - [sym_integer_literal] = ACTIONS(2509), - [aux_sym_string_literal_token1] = ACTIONS(2509), - [sym_char_literal] = ACTIONS(2509), - [anon_sym_true] = ACTIONS(2511), - [anon_sym_false] = ACTIONS(2511), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2511), - [sym_super] = ACTIONS(2511), - [sym_crate] = ACTIONS(2511), - [sym_metavariable] = ACTIONS(2509), - [sym__raw_string_literal_start] = ACTIONS(2509), - [sym_float_literal] = ACTIONS(2509), - }, - [STATE(639)] = { - [sym_line_comment] = STATE(639), - [sym_block_comment] = STATE(639), - [ts_builtin_sym_end] = ACTIONS(2513), - [sym_identifier] = ACTIONS(2515), - [anon_sym_SEMI] = ACTIONS(2513), - [anon_sym_macro_rules_BANG] = ACTIONS(2513), - [anon_sym_LPAREN] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2513), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_RBRACE] = ACTIONS(2513), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_u8] = ACTIONS(2515), - [anon_sym_i8] = ACTIONS(2515), - [anon_sym_u16] = ACTIONS(2515), - [anon_sym_i16] = ACTIONS(2515), - [anon_sym_u32] = ACTIONS(2515), - [anon_sym_i32] = ACTIONS(2515), - [anon_sym_u64] = ACTIONS(2515), - [anon_sym_i64] = ACTIONS(2515), - [anon_sym_u128] = ACTIONS(2515), - [anon_sym_i128] = ACTIONS(2515), - [anon_sym_isize] = ACTIONS(2515), - [anon_sym_usize] = ACTIONS(2515), - [anon_sym_f32] = ACTIONS(2515), - [anon_sym_f64] = ACTIONS(2515), - [anon_sym_bool] = ACTIONS(2515), - [anon_sym_str] = ACTIONS(2515), - [anon_sym_char] = ACTIONS(2515), - [anon_sym_DASH] = ACTIONS(2513), - [anon_sym_BANG] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_PIPE] = ACTIONS(2513), - [anon_sym_LT] = ACTIONS(2513), - [anon_sym_DOT_DOT] = ACTIONS(2513), - [anon_sym_COLON_COLON] = ACTIONS(2513), - [anon_sym_POUND] = ACTIONS(2513), - [anon_sym_SQUOTE] = ACTIONS(2515), - [anon_sym_async] = ACTIONS(2515), - [anon_sym_break] = ACTIONS(2515), - [anon_sym_const] = ACTIONS(2515), - [anon_sym_continue] = ACTIONS(2515), - [anon_sym_default] = ACTIONS(2515), - [anon_sym_enum] = ACTIONS(2515), - [anon_sym_fn] = ACTIONS(2515), - [anon_sym_for] = ACTIONS(2515), - [anon_sym_gen] = ACTIONS(2515), - [anon_sym_if] = ACTIONS(2515), - [anon_sym_impl] = ACTIONS(2515), - [anon_sym_let] = ACTIONS(2515), - [anon_sym_loop] = ACTIONS(2515), - [anon_sym_match] = ACTIONS(2515), - [anon_sym_mod] = ACTIONS(2515), - [anon_sym_pub] = ACTIONS(2515), - [anon_sym_return] = ACTIONS(2515), - [anon_sym_static] = ACTIONS(2515), - [anon_sym_struct] = ACTIONS(2515), - [anon_sym_trait] = ACTIONS(2515), - [anon_sym_type] = ACTIONS(2515), - [anon_sym_union] = ACTIONS(2515), - [anon_sym_unsafe] = ACTIONS(2515), - [anon_sym_use] = ACTIONS(2515), - [anon_sym_while] = ACTIONS(2515), - [anon_sym_extern] = ACTIONS(2515), - [anon_sym_raw] = ACTIONS(2515), - [anon_sym_yield] = ACTIONS(2515), - [anon_sym_move] = ACTIONS(2515), - [anon_sym_try] = ACTIONS(2515), - [sym_integer_literal] = ACTIONS(2513), - [aux_sym_string_literal_token1] = ACTIONS(2513), - [sym_char_literal] = ACTIONS(2513), - [anon_sym_true] = ACTIONS(2515), - [anon_sym_false] = ACTIONS(2515), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2515), - [sym_super] = ACTIONS(2515), - [sym_crate] = ACTIONS(2515), - [sym_metavariable] = ACTIONS(2513), - [sym__raw_string_literal_start] = ACTIONS(2513), - [sym_float_literal] = ACTIONS(2513), - }, - [STATE(640)] = { - [sym_line_comment] = STATE(640), - [sym_block_comment] = STATE(640), - [ts_builtin_sym_end] = ACTIONS(2517), - [sym_identifier] = ACTIONS(2519), - [anon_sym_SEMI] = ACTIONS(2517), - [anon_sym_macro_rules_BANG] = ACTIONS(2517), - [anon_sym_LPAREN] = ACTIONS(2517), - [anon_sym_LBRACK] = ACTIONS(2517), - [anon_sym_LBRACE] = ACTIONS(2517), - [anon_sym_RBRACE] = ACTIONS(2517), - [anon_sym_STAR] = ACTIONS(2517), - [anon_sym_u8] = ACTIONS(2519), - [anon_sym_i8] = ACTIONS(2519), - [anon_sym_u16] = ACTIONS(2519), - [anon_sym_i16] = ACTIONS(2519), - [anon_sym_u32] = ACTIONS(2519), - [anon_sym_i32] = ACTIONS(2519), - [anon_sym_u64] = ACTIONS(2519), - [anon_sym_i64] = ACTIONS(2519), - [anon_sym_u128] = ACTIONS(2519), - [anon_sym_i128] = ACTIONS(2519), - [anon_sym_isize] = ACTIONS(2519), - [anon_sym_usize] = ACTIONS(2519), - [anon_sym_f32] = ACTIONS(2519), - [anon_sym_f64] = ACTIONS(2519), - [anon_sym_bool] = ACTIONS(2519), - [anon_sym_str] = ACTIONS(2519), - [anon_sym_char] = ACTIONS(2519), - [anon_sym_DASH] = ACTIONS(2517), - [anon_sym_BANG] = ACTIONS(2517), - [anon_sym_AMP] = ACTIONS(2517), - [anon_sym_PIPE] = ACTIONS(2517), - [anon_sym_LT] = ACTIONS(2517), - [anon_sym_DOT_DOT] = ACTIONS(2517), - [anon_sym_COLON_COLON] = ACTIONS(2517), - [anon_sym_POUND] = ACTIONS(2517), - [anon_sym_SQUOTE] = ACTIONS(2519), - [anon_sym_async] = ACTIONS(2519), - [anon_sym_break] = ACTIONS(2519), - [anon_sym_const] = ACTIONS(2519), - [anon_sym_continue] = ACTIONS(2519), - [anon_sym_default] = ACTIONS(2519), - [anon_sym_enum] = ACTIONS(2519), - [anon_sym_fn] = ACTIONS(2519), - [anon_sym_for] = ACTIONS(2519), - [anon_sym_gen] = ACTIONS(2519), - [anon_sym_if] = ACTIONS(2519), - [anon_sym_impl] = ACTIONS(2519), - [anon_sym_let] = ACTIONS(2519), - [anon_sym_loop] = ACTIONS(2519), - [anon_sym_match] = ACTIONS(2519), - [anon_sym_mod] = ACTIONS(2519), - [anon_sym_pub] = ACTIONS(2519), - [anon_sym_return] = ACTIONS(2519), - [anon_sym_static] = ACTIONS(2519), - [anon_sym_struct] = ACTIONS(2519), - [anon_sym_trait] = ACTIONS(2519), - [anon_sym_type] = ACTIONS(2519), - [anon_sym_union] = ACTIONS(2519), - [anon_sym_unsafe] = ACTIONS(2519), - [anon_sym_use] = ACTIONS(2519), - [anon_sym_while] = ACTIONS(2519), - [anon_sym_extern] = ACTIONS(2519), - [anon_sym_raw] = ACTIONS(2519), - [anon_sym_yield] = ACTIONS(2519), - [anon_sym_move] = ACTIONS(2519), - [anon_sym_try] = ACTIONS(2519), - [sym_integer_literal] = ACTIONS(2517), - [aux_sym_string_literal_token1] = ACTIONS(2517), - [sym_char_literal] = ACTIONS(2517), - [anon_sym_true] = ACTIONS(2519), - [anon_sym_false] = ACTIONS(2519), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2519), - [sym_super] = ACTIONS(2519), + [anon_sym_use] = ACTIONS(2510), + [anon_sym_extern] = ACTIONS(2513), + [anon_sym_raw] = ACTIONS(2477), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2516), + [sym_super] = ACTIONS(2516), [sym_crate] = ACTIONS(2519), - [sym_metavariable] = ACTIONS(2517), - [sym__raw_string_literal_start] = ACTIONS(2517), - [sym_float_literal] = ACTIONS(2517), + [sym_metavariable] = ACTIONS(2522), }, - [STATE(641)] = { - [sym_line_comment] = STATE(641), - [sym_block_comment] = STATE(641), - [ts_builtin_sym_end] = ACTIONS(2521), - [sym_identifier] = ACTIONS(2523), - [anon_sym_SEMI] = ACTIONS(2521), - [anon_sym_macro_rules_BANG] = ACTIONS(2521), - [anon_sym_LPAREN] = ACTIONS(2521), - [anon_sym_LBRACK] = ACTIONS(2521), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_RBRACE] = ACTIONS(2521), - [anon_sym_STAR] = ACTIONS(2521), - [anon_sym_u8] = ACTIONS(2523), - [anon_sym_i8] = ACTIONS(2523), - [anon_sym_u16] = ACTIONS(2523), - [anon_sym_i16] = ACTIONS(2523), - [anon_sym_u32] = ACTIONS(2523), - [anon_sym_i32] = ACTIONS(2523), - [anon_sym_u64] = ACTIONS(2523), - [anon_sym_i64] = ACTIONS(2523), - [anon_sym_u128] = ACTIONS(2523), - [anon_sym_i128] = ACTIONS(2523), - [anon_sym_isize] = ACTIONS(2523), - [anon_sym_usize] = ACTIONS(2523), - [anon_sym_f32] = ACTIONS(2523), - [anon_sym_f64] = ACTIONS(2523), - [anon_sym_bool] = ACTIONS(2523), - [anon_sym_str] = ACTIONS(2523), - [anon_sym_char] = ACTIONS(2523), - [anon_sym_DASH] = ACTIONS(2521), - [anon_sym_BANG] = ACTIONS(2521), - [anon_sym_AMP] = ACTIONS(2521), - [anon_sym_PIPE] = ACTIONS(2521), - [anon_sym_LT] = ACTIONS(2521), - [anon_sym_DOT_DOT] = ACTIONS(2521), - [anon_sym_COLON_COLON] = ACTIONS(2521), - [anon_sym_POUND] = ACTIONS(2521), - [anon_sym_SQUOTE] = ACTIONS(2523), - [anon_sym_async] = ACTIONS(2523), - [anon_sym_break] = ACTIONS(2523), - [anon_sym_const] = ACTIONS(2523), - [anon_sym_continue] = ACTIONS(2523), - [anon_sym_default] = ACTIONS(2523), - [anon_sym_enum] = ACTIONS(2523), - [anon_sym_fn] = ACTIONS(2523), - [anon_sym_for] = ACTIONS(2523), - [anon_sym_gen] = ACTIONS(2523), - [anon_sym_if] = ACTIONS(2523), - [anon_sym_impl] = ACTIONS(2523), - [anon_sym_let] = ACTIONS(2523), - [anon_sym_loop] = ACTIONS(2523), - [anon_sym_match] = ACTIONS(2523), - [anon_sym_mod] = ACTIONS(2523), - [anon_sym_pub] = ACTIONS(2523), - [anon_sym_return] = ACTIONS(2523), - [anon_sym_static] = ACTIONS(2523), - [anon_sym_struct] = ACTIONS(2523), - [anon_sym_trait] = ACTIONS(2523), - [anon_sym_type] = ACTIONS(2523), - [anon_sym_union] = ACTIONS(2523), - [anon_sym_unsafe] = ACTIONS(2523), - [anon_sym_use] = ACTIONS(2523), - [anon_sym_while] = ACTIONS(2523), - [anon_sym_extern] = ACTIONS(2523), - [anon_sym_raw] = ACTIONS(2523), - [anon_sym_yield] = ACTIONS(2523), - [anon_sym_move] = ACTIONS(2523), - [anon_sym_try] = ACTIONS(2523), - [sym_integer_literal] = ACTIONS(2521), - [aux_sym_string_literal_token1] = ACTIONS(2521), - [sym_char_literal] = ACTIONS(2521), - [anon_sym_true] = ACTIONS(2523), - [anon_sym_false] = ACTIONS(2523), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2523), - [sym_super] = ACTIONS(2523), - [sym_crate] = ACTIONS(2523), - [sym_metavariable] = ACTIONS(2521), - [sym__raw_string_literal_start] = ACTIONS(2521), - [sym_float_literal] = ACTIONS(2521), - }, - [STATE(642)] = { - [sym_line_comment] = STATE(642), - [sym_block_comment] = STATE(642), + [636] = { + [sym_line_comment] = STATE(636), + [sym_block_comment] = STATE(636), [ts_builtin_sym_end] = ACTIONS(2525), [sym_identifier] = ACTIONS(2527), [anon_sym_SEMI] = ACTIONS(2525), @@ -84441,9 +83425,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2525), [sym_float_literal] = ACTIONS(2525), }, - [STATE(643)] = { - [sym_line_comment] = STATE(643), - [sym_block_comment] = STATE(643), + [637] = { + [sym_line_comment] = STATE(637), + [sym_block_comment] = STATE(637), [ts_builtin_sym_end] = ACTIONS(2529), [sym_identifier] = ACTIONS(2531), [anon_sym_SEMI] = ACTIONS(2529), @@ -84523,9 +83507,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2529), [sym_float_literal] = ACTIONS(2529), }, - [STATE(644)] = { - [sym_line_comment] = STATE(644), - [sym_block_comment] = STATE(644), + [638] = { + [sym_line_comment] = STATE(638), + [sym_block_comment] = STATE(638), [ts_builtin_sym_end] = ACTIONS(2533), [sym_identifier] = ACTIONS(2535), [anon_sym_SEMI] = ACTIONS(2533), @@ -84605,9 +83589,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2533), [sym_float_literal] = ACTIONS(2533), }, - [STATE(645)] = { - [sym_line_comment] = STATE(645), - [sym_block_comment] = STATE(645), + [639] = { + [sym_line_comment] = STATE(639), + [sym_block_comment] = STATE(639), [ts_builtin_sym_end] = ACTIONS(2537), [sym_identifier] = ACTIONS(2539), [anon_sym_SEMI] = ACTIONS(2537), @@ -84687,9 +83671,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2537), [sym_float_literal] = ACTIONS(2537), }, - [STATE(646)] = { - [sym_line_comment] = STATE(646), - [sym_block_comment] = STATE(646), + [640] = { + [sym_line_comment] = STATE(640), + [sym_block_comment] = STATE(640), [ts_builtin_sym_end] = ACTIONS(2541), [sym_identifier] = ACTIONS(2543), [anon_sym_SEMI] = ACTIONS(2541), @@ -84769,9 +83753,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2541), [sym_float_literal] = ACTIONS(2541), }, - [STATE(647)] = { - [sym_line_comment] = STATE(647), - [sym_block_comment] = STATE(647), + [641] = { + [sym_line_comment] = STATE(641), + [sym_block_comment] = STATE(641), [ts_builtin_sym_end] = ACTIONS(2545), [sym_identifier] = ACTIONS(2547), [anon_sym_SEMI] = ACTIONS(2545), @@ -84851,9 +83835,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2545), [sym_float_literal] = ACTIONS(2545), }, - [STATE(648)] = { - [sym_line_comment] = STATE(648), - [sym_block_comment] = STATE(648), + [642] = { + [sym_line_comment] = STATE(642), + [sym_block_comment] = STATE(642), [ts_builtin_sym_end] = ACTIONS(2549), [sym_identifier] = ACTIONS(2551), [anon_sym_SEMI] = ACTIONS(2549), @@ -84933,9 +83917,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2549), [sym_float_literal] = ACTIONS(2549), }, - [STATE(649)] = { - [sym_line_comment] = STATE(649), - [sym_block_comment] = STATE(649), + [643] = { + [sym_line_comment] = STATE(643), + [sym_block_comment] = STATE(643), [ts_builtin_sym_end] = ACTIONS(2553), [sym_identifier] = ACTIONS(2555), [anon_sym_SEMI] = ACTIONS(2553), @@ -85015,9 +83999,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2553), [sym_float_literal] = ACTIONS(2553), }, - [STATE(650)] = { - [sym_line_comment] = STATE(650), - [sym_block_comment] = STATE(650), + [644] = { + [sym_line_comment] = STATE(644), + [sym_block_comment] = STATE(644), [ts_builtin_sym_end] = ACTIONS(2557), [sym_identifier] = ACTIONS(2559), [anon_sym_SEMI] = ACTIONS(2557), @@ -85097,9 +84081,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2557), [sym_float_literal] = ACTIONS(2557), }, - [STATE(651)] = { - [sym_line_comment] = STATE(651), - [sym_block_comment] = STATE(651), + [645] = { + [sym_line_comment] = STATE(645), + [sym_block_comment] = STATE(645), [ts_builtin_sym_end] = ACTIONS(2561), [sym_identifier] = ACTIONS(2563), [anon_sym_SEMI] = ACTIONS(2561), @@ -85179,9 +84163,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2561), [sym_float_literal] = ACTIONS(2561), }, - [STATE(652)] = { - [sym_line_comment] = STATE(652), - [sym_block_comment] = STATE(652), + [646] = { + [sym_line_comment] = STATE(646), + [sym_block_comment] = STATE(646), [ts_builtin_sym_end] = ACTIONS(2565), [sym_identifier] = ACTIONS(2567), [anon_sym_SEMI] = ACTIONS(2565), @@ -85261,9 +84245,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2565), [sym_float_literal] = ACTIONS(2565), }, - [STATE(653)] = { - [sym_line_comment] = STATE(653), - [sym_block_comment] = STATE(653), + [647] = { + [sym_line_comment] = STATE(647), + [sym_block_comment] = STATE(647), [ts_builtin_sym_end] = ACTIONS(2569), [sym_identifier] = ACTIONS(2571), [anon_sym_SEMI] = ACTIONS(2569), @@ -85343,9 +84327,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2569), [sym_float_literal] = ACTIONS(2569), }, - [STATE(654)] = { - [sym_line_comment] = STATE(654), - [sym_block_comment] = STATE(654), + [648] = { + [sym_line_comment] = STATE(648), + [sym_block_comment] = STATE(648), [ts_builtin_sym_end] = ACTIONS(2573), [sym_identifier] = ACTIONS(2575), [anon_sym_SEMI] = ACTIONS(2573), @@ -85425,9 +84409,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2573), [sym_float_literal] = ACTIONS(2573), }, - [STATE(655)] = { - [sym_line_comment] = STATE(655), - [sym_block_comment] = STATE(655), + [649] = { + [sym_line_comment] = STATE(649), + [sym_block_comment] = STATE(649), [ts_builtin_sym_end] = ACTIONS(2577), [sym_identifier] = ACTIONS(2579), [anon_sym_SEMI] = ACTIONS(2577), @@ -85507,91 +84491,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2577), [sym_float_literal] = ACTIONS(2577), }, - [STATE(656)] = { - [sym_line_comment] = STATE(656), - [sym_block_comment] = STATE(656), - [ts_builtin_sym_end] = ACTIONS(1442), - [sym_identifier] = ACTIONS(1444), - [anon_sym_SEMI] = ACTIONS(1442), - [anon_sym_macro_rules_BANG] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1442), - [anon_sym_LBRACK] = ACTIONS(1442), - [anon_sym_LBRACE] = ACTIONS(1442), - [anon_sym_RBRACE] = ACTIONS(1442), - [anon_sym_STAR] = ACTIONS(1442), - [anon_sym_u8] = ACTIONS(1444), - [anon_sym_i8] = ACTIONS(1444), - [anon_sym_u16] = ACTIONS(1444), - [anon_sym_i16] = ACTIONS(1444), - [anon_sym_u32] = ACTIONS(1444), - [anon_sym_i32] = ACTIONS(1444), - [anon_sym_u64] = ACTIONS(1444), - [anon_sym_i64] = ACTIONS(1444), - [anon_sym_u128] = ACTIONS(1444), - [anon_sym_i128] = ACTIONS(1444), - [anon_sym_isize] = ACTIONS(1444), - [anon_sym_usize] = ACTIONS(1444), - [anon_sym_f32] = ACTIONS(1444), - [anon_sym_f64] = ACTIONS(1444), - [anon_sym_bool] = ACTIONS(1444), - [anon_sym_str] = ACTIONS(1444), - [anon_sym_char] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1442), - [anon_sym_PIPE] = ACTIONS(1442), - [anon_sym_LT] = ACTIONS(1442), - [anon_sym_DOT_DOT] = ACTIONS(1442), - [anon_sym_COLON_COLON] = ACTIONS(1442), - [anon_sym_POUND] = ACTIONS(1442), - [anon_sym_SQUOTE] = ACTIONS(1444), - [anon_sym_async] = ACTIONS(1444), - [anon_sym_break] = ACTIONS(1444), - [anon_sym_const] = ACTIONS(1444), - [anon_sym_continue] = ACTIONS(1444), - [anon_sym_default] = ACTIONS(1444), - [anon_sym_enum] = ACTIONS(1444), - [anon_sym_fn] = ACTIONS(1444), - [anon_sym_for] = ACTIONS(1444), - [anon_sym_gen] = ACTIONS(1444), - [anon_sym_if] = ACTIONS(1444), - [anon_sym_impl] = ACTIONS(1444), - [anon_sym_let] = ACTIONS(1444), - [anon_sym_loop] = ACTIONS(1444), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_mod] = ACTIONS(1444), - [anon_sym_pub] = ACTIONS(1444), - [anon_sym_return] = ACTIONS(1444), - [anon_sym_static] = ACTIONS(1444), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_trait] = ACTIONS(1444), - [anon_sym_type] = ACTIONS(1444), - [anon_sym_union] = ACTIONS(1444), - [anon_sym_unsafe] = ACTIONS(1444), - [anon_sym_use] = ACTIONS(1444), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_extern] = ACTIONS(1444), - [anon_sym_raw] = ACTIONS(1444), - [anon_sym_yield] = ACTIONS(1444), - [anon_sym_move] = ACTIONS(1444), - [anon_sym_try] = ACTIONS(1444), - [sym_integer_literal] = ACTIONS(1442), - [aux_sym_string_literal_token1] = ACTIONS(1442), - [sym_char_literal] = ACTIONS(1442), - [anon_sym_true] = ACTIONS(1444), - [anon_sym_false] = ACTIONS(1444), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1444), - [sym_super] = ACTIONS(1444), - [sym_crate] = ACTIONS(1444), - [sym_metavariable] = ACTIONS(1442), - [sym__raw_string_literal_start] = ACTIONS(1442), - [sym_float_literal] = ACTIONS(1442), - }, - [STATE(657)] = { - [sym_line_comment] = STATE(657), - [sym_block_comment] = STATE(657), + [650] = { + [sym_line_comment] = STATE(650), + [sym_block_comment] = STATE(650), [ts_builtin_sym_end] = ACTIONS(2581), [sym_identifier] = ACTIONS(2583), [anon_sym_SEMI] = ACTIONS(2581), @@ -85671,9 +84573,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2581), [sym_float_literal] = ACTIONS(2581), }, - [STATE(658)] = { - [sym_line_comment] = STATE(658), - [sym_block_comment] = STATE(658), + [651] = { + [sym_line_comment] = STATE(651), + [sym_block_comment] = STATE(651), [ts_builtin_sym_end] = ACTIONS(2585), [sym_identifier] = ACTIONS(2587), [anon_sym_SEMI] = ACTIONS(2585), @@ -85753,9 +84655,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2585), [sym_float_literal] = ACTIONS(2585), }, - [STATE(659)] = { - [sym_line_comment] = STATE(659), - [sym_block_comment] = STATE(659), + [652] = { + [sym_line_comment] = STATE(652), + [sym_block_comment] = STATE(652), [ts_builtin_sym_end] = ACTIONS(2589), [sym_identifier] = ACTIONS(2591), [anon_sym_SEMI] = ACTIONS(2589), @@ -85835,9 +84737,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2589), [sym_float_literal] = ACTIONS(2589), }, - [STATE(660)] = { - [sym_line_comment] = STATE(660), - [sym_block_comment] = STATE(660), + [653] = { + [sym_line_comment] = STATE(653), + [sym_block_comment] = STATE(653), [ts_builtin_sym_end] = ACTIONS(2593), [sym_identifier] = ACTIONS(2595), [anon_sym_SEMI] = ACTIONS(2593), @@ -85917,9 +84819,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2593), [sym_float_literal] = ACTIONS(2593), }, - [STATE(661)] = { - [sym_line_comment] = STATE(661), - [sym_block_comment] = STATE(661), + [654] = { + [sym_line_comment] = STATE(654), + [sym_block_comment] = STATE(654), + [ts_builtin_sym_end] = ACTIONS(1438), + [sym_identifier] = ACTIONS(1440), + [anon_sym_SEMI] = ACTIONS(1438), + [anon_sym_macro_rules_BANG] = ACTIONS(1438), + [anon_sym_LPAREN] = ACTIONS(1438), + [anon_sym_LBRACK] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1438), + [anon_sym_RBRACE] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1438), + [anon_sym_u8] = ACTIONS(1440), + [anon_sym_i8] = ACTIONS(1440), + [anon_sym_u16] = ACTIONS(1440), + [anon_sym_i16] = ACTIONS(1440), + [anon_sym_u32] = ACTIONS(1440), + [anon_sym_i32] = ACTIONS(1440), + [anon_sym_u64] = ACTIONS(1440), + [anon_sym_i64] = ACTIONS(1440), + [anon_sym_u128] = ACTIONS(1440), + [anon_sym_i128] = ACTIONS(1440), + [anon_sym_isize] = ACTIONS(1440), + [anon_sym_usize] = ACTIONS(1440), + [anon_sym_f32] = ACTIONS(1440), + [anon_sym_f64] = ACTIONS(1440), + [anon_sym_bool] = ACTIONS(1440), + [anon_sym_str] = ACTIONS(1440), + [anon_sym_char] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_BANG] = ACTIONS(1438), + [anon_sym_AMP] = ACTIONS(1438), + [anon_sym_PIPE] = ACTIONS(1438), + [anon_sym_LT] = ACTIONS(1438), + [anon_sym_DOT_DOT] = ACTIONS(1438), + [anon_sym_COLON_COLON] = ACTIONS(1438), + [anon_sym_POUND] = ACTIONS(1438), + [anon_sym_SQUOTE] = ACTIONS(1440), + [anon_sym_async] = ACTIONS(1440), + [anon_sym_break] = ACTIONS(1440), + [anon_sym_const] = ACTIONS(1440), + [anon_sym_continue] = ACTIONS(1440), + [anon_sym_default] = ACTIONS(1440), + [anon_sym_enum] = ACTIONS(1440), + [anon_sym_fn] = ACTIONS(1440), + [anon_sym_for] = ACTIONS(1440), + [anon_sym_gen] = ACTIONS(1440), + [anon_sym_if] = ACTIONS(1440), + [anon_sym_impl] = ACTIONS(1440), + [anon_sym_let] = ACTIONS(1440), + [anon_sym_loop] = ACTIONS(1440), + [anon_sym_match] = ACTIONS(1440), + [anon_sym_mod] = ACTIONS(1440), + [anon_sym_pub] = ACTIONS(1440), + [anon_sym_return] = ACTIONS(1440), + [anon_sym_static] = ACTIONS(1440), + [anon_sym_struct] = ACTIONS(1440), + [anon_sym_trait] = ACTIONS(1440), + [anon_sym_type] = ACTIONS(1440), + [anon_sym_union] = ACTIONS(1440), + [anon_sym_unsafe] = ACTIONS(1440), + [anon_sym_use] = ACTIONS(1440), + [anon_sym_while] = ACTIONS(1440), + [anon_sym_extern] = ACTIONS(1440), + [anon_sym_raw] = ACTIONS(1440), + [anon_sym_yield] = ACTIONS(1440), + [anon_sym_move] = ACTIONS(1440), + [anon_sym_try] = ACTIONS(1440), + [sym_integer_literal] = ACTIONS(1438), + [aux_sym_string_literal_token1] = ACTIONS(1438), + [sym_char_literal] = ACTIONS(1438), + [anon_sym_true] = ACTIONS(1440), + [anon_sym_false] = ACTIONS(1440), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1440), + [sym_super] = ACTIONS(1440), + [sym_crate] = ACTIONS(1440), + [sym_metavariable] = ACTIONS(1438), + [sym__raw_string_literal_start] = ACTIONS(1438), + [sym_float_literal] = ACTIONS(1438), + }, + [655] = { + [sym_line_comment] = STATE(655), + [sym_block_comment] = STATE(655), [ts_builtin_sym_end] = ACTIONS(2597), [sym_identifier] = ACTIONS(2599), [anon_sym_SEMI] = ACTIONS(2597), @@ -85999,9 +84983,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2597), [sym_float_literal] = ACTIONS(2597), }, - [STATE(662)] = { - [sym_line_comment] = STATE(662), - [sym_block_comment] = STATE(662), + [656] = { + [sym_line_comment] = STATE(656), + [sym_block_comment] = STATE(656), [ts_builtin_sym_end] = ACTIONS(2601), [sym_identifier] = ACTIONS(2603), [anon_sym_SEMI] = ACTIONS(2601), @@ -86081,9 +85065,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2601), [sym_float_literal] = ACTIONS(2601), }, - [STATE(663)] = { - [sym_line_comment] = STATE(663), - [sym_block_comment] = STATE(663), + [657] = { + [sym_line_comment] = STATE(657), + [sym_block_comment] = STATE(657), [ts_builtin_sym_end] = ACTIONS(2605), [sym_identifier] = ACTIONS(2607), [anon_sym_SEMI] = ACTIONS(2605), @@ -86163,9 +85147,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2605), [sym_float_literal] = ACTIONS(2605), }, - [STATE(664)] = { - [sym_line_comment] = STATE(664), - [sym_block_comment] = STATE(664), + [658] = { + [sym_line_comment] = STATE(658), + [sym_block_comment] = STATE(658), [ts_builtin_sym_end] = ACTIONS(2609), [sym_identifier] = ACTIONS(2611), [anon_sym_SEMI] = ACTIONS(2609), @@ -86245,9 +85229,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2609), [sym_float_literal] = ACTIONS(2609), }, - [STATE(665)] = { - [sym_line_comment] = STATE(665), - [sym_block_comment] = STATE(665), + [659] = { + [sym_line_comment] = STATE(659), + [sym_block_comment] = STATE(659), [ts_builtin_sym_end] = ACTIONS(2613), [sym_identifier] = ACTIONS(2615), [anon_sym_SEMI] = ACTIONS(2613), @@ -86327,9 +85311,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2613), [sym_float_literal] = ACTIONS(2613), }, - [STATE(666)] = { - [sym_line_comment] = STATE(666), - [sym_block_comment] = STATE(666), + [660] = { + [sym_line_comment] = STATE(660), + [sym_block_comment] = STATE(660), [ts_builtin_sym_end] = ACTIONS(2617), [sym_identifier] = ACTIONS(2619), [anon_sym_SEMI] = ACTIONS(2617), @@ -86409,91 +85393,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2617), [sym_float_literal] = ACTIONS(2617), }, - [STATE(667)] = { - [sym_line_comment] = STATE(667), - [sym_block_comment] = STATE(667), - [ts_builtin_sym_end] = ACTIONS(1450), - [sym_identifier] = ACTIONS(1452), - [anon_sym_SEMI] = ACTIONS(1450), - [anon_sym_macro_rules_BANG] = ACTIONS(1450), - [anon_sym_LPAREN] = ACTIONS(1450), - [anon_sym_LBRACK] = ACTIONS(1450), - [anon_sym_LBRACE] = ACTIONS(1450), - [anon_sym_RBRACE] = ACTIONS(1450), - [anon_sym_STAR] = ACTIONS(1450), - [anon_sym_u8] = ACTIONS(1452), - [anon_sym_i8] = ACTIONS(1452), - [anon_sym_u16] = ACTIONS(1452), - [anon_sym_i16] = ACTIONS(1452), - [anon_sym_u32] = ACTIONS(1452), - [anon_sym_i32] = ACTIONS(1452), - [anon_sym_u64] = ACTIONS(1452), - [anon_sym_i64] = ACTIONS(1452), - [anon_sym_u128] = ACTIONS(1452), - [anon_sym_i128] = ACTIONS(1452), - [anon_sym_isize] = ACTIONS(1452), - [anon_sym_usize] = ACTIONS(1452), - [anon_sym_f32] = ACTIONS(1452), - [anon_sym_f64] = ACTIONS(1452), - [anon_sym_bool] = ACTIONS(1452), - [anon_sym_str] = ACTIONS(1452), - [anon_sym_char] = ACTIONS(1452), - [anon_sym_DASH] = ACTIONS(1450), - [anon_sym_BANG] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1450), - [anon_sym_PIPE] = ACTIONS(1450), - [anon_sym_LT] = ACTIONS(1450), - [anon_sym_DOT_DOT] = ACTIONS(1450), - [anon_sym_COLON_COLON] = ACTIONS(1450), - [anon_sym_POUND] = ACTIONS(1450), - [anon_sym_SQUOTE] = ACTIONS(1452), - [anon_sym_async] = ACTIONS(1452), - [anon_sym_break] = ACTIONS(1452), - [anon_sym_const] = ACTIONS(1452), - [anon_sym_continue] = ACTIONS(1452), - [anon_sym_default] = ACTIONS(1452), - [anon_sym_enum] = ACTIONS(1452), - [anon_sym_fn] = ACTIONS(1452), - [anon_sym_for] = ACTIONS(1452), - [anon_sym_gen] = ACTIONS(1452), - [anon_sym_if] = ACTIONS(1452), - [anon_sym_impl] = ACTIONS(1452), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_loop] = ACTIONS(1452), - [anon_sym_match] = ACTIONS(1452), - [anon_sym_mod] = ACTIONS(1452), - [anon_sym_pub] = ACTIONS(1452), - [anon_sym_return] = ACTIONS(1452), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_struct] = ACTIONS(1452), - [anon_sym_trait] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_union] = ACTIONS(1452), - [anon_sym_unsafe] = ACTIONS(1452), - [anon_sym_use] = ACTIONS(1452), - [anon_sym_while] = ACTIONS(1452), - [anon_sym_extern] = ACTIONS(1452), - [anon_sym_raw] = ACTIONS(1452), - [anon_sym_yield] = ACTIONS(1452), - [anon_sym_move] = ACTIONS(1452), - [anon_sym_try] = ACTIONS(1452), - [sym_integer_literal] = ACTIONS(1450), - [aux_sym_string_literal_token1] = ACTIONS(1450), - [sym_char_literal] = ACTIONS(1450), - [anon_sym_true] = ACTIONS(1452), - [anon_sym_false] = ACTIONS(1452), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1452), - [sym_super] = ACTIONS(1452), - [sym_crate] = ACTIONS(1452), - [sym_metavariable] = ACTIONS(1450), - [sym__raw_string_literal_start] = ACTIONS(1450), - [sym_float_literal] = ACTIONS(1450), - }, - [STATE(668)] = { - [sym_line_comment] = STATE(668), - [sym_block_comment] = STATE(668), + [661] = { + [sym_line_comment] = STATE(661), + [sym_block_comment] = STATE(661), [ts_builtin_sym_end] = ACTIONS(2621), [sym_identifier] = ACTIONS(2623), [anon_sym_SEMI] = ACTIONS(2621), @@ -86573,9 +85475,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2621), [sym_float_literal] = ACTIONS(2621), }, - [STATE(669)] = { - [sym_line_comment] = STATE(669), - [sym_block_comment] = STATE(669), + [662] = { + [sym_line_comment] = STATE(662), + [sym_block_comment] = STATE(662), [ts_builtin_sym_end] = ACTIONS(2625), [sym_identifier] = ACTIONS(2627), [anon_sym_SEMI] = ACTIONS(2625), @@ -86655,9 +85557,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2625), [sym_float_literal] = ACTIONS(2625), }, - [STATE(670)] = { - [sym_line_comment] = STATE(670), - [sym_block_comment] = STATE(670), + [663] = { + [sym_line_comment] = STATE(663), + [sym_block_comment] = STATE(663), [ts_builtin_sym_end] = ACTIONS(2629), [sym_identifier] = ACTIONS(2631), [anon_sym_SEMI] = ACTIONS(2629), @@ -86737,91 +85639,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2629), [sym_float_literal] = ACTIONS(2629), }, - [STATE(671)] = { - [sym_line_comment] = STATE(671), - [sym_block_comment] = STATE(671), - [ts_builtin_sym_end] = ACTIONS(1454), - [sym_identifier] = ACTIONS(1456), - [anon_sym_SEMI] = ACTIONS(1454), - [anon_sym_macro_rules_BANG] = ACTIONS(1454), - [anon_sym_LPAREN] = ACTIONS(1454), - [anon_sym_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(1454), - [anon_sym_RBRACE] = ACTIONS(1454), - [anon_sym_STAR] = ACTIONS(1454), - [anon_sym_u8] = ACTIONS(1456), - [anon_sym_i8] = ACTIONS(1456), - [anon_sym_u16] = ACTIONS(1456), - [anon_sym_i16] = ACTIONS(1456), - [anon_sym_u32] = ACTIONS(1456), - [anon_sym_i32] = ACTIONS(1456), - [anon_sym_u64] = ACTIONS(1456), - [anon_sym_i64] = ACTIONS(1456), - [anon_sym_u128] = ACTIONS(1456), - [anon_sym_i128] = ACTIONS(1456), - [anon_sym_isize] = ACTIONS(1456), - [anon_sym_usize] = ACTIONS(1456), - [anon_sym_f32] = ACTIONS(1456), - [anon_sym_f64] = ACTIONS(1456), - [anon_sym_bool] = ACTIONS(1456), - [anon_sym_str] = ACTIONS(1456), - [anon_sym_char] = ACTIONS(1456), - [anon_sym_DASH] = ACTIONS(1454), - [anon_sym_BANG] = ACTIONS(1454), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_PIPE] = ACTIONS(1454), - [anon_sym_LT] = ACTIONS(1454), - [anon_sym_DOT_DOT] = ACTIONS(1454), - [anon_sym_COLON_COLON] = ACTIONS(1454), - [anon_sym_POUND] = ACTIONS(1454), - [anon_sym_SQUOTE] = ACTIONS(1456), - [anon_sym_async] = ACTIONS(1456), - [anon_sym_break] = ACTIONS(1456), - [anon_sym_const] = ACTIONS(1456), - [anon_sym_continue] = ACTIONS(1456), - [anon_sym_default] = ACTIONS(1456), - [anon_sym_enum] = ACTIONS(1456), - [anon_sym_fn] = ACTIONS(1456), - [anon_sym_for] = ACTIONS(1456), - [anon_sym_gen] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1456), - [anon_sym_impl] = ACTIONS(1456), - [anon_sym_let] = ACTIONS(1456), - [anon_sym_loop] = ACTIONS(1456), - [anon_sym_match] = ACTIONS(1456), - [anon_sym_mod] = ACTIONS(1456), - [anon_sym_pub] = ACTIONS(1456), - [anon_sym_return] = ACTIONS(1456), - [anon_sym_static] = ACTIONS(1456), - [anon_sym_struct] = ACTIONS(1456), - [anon_sym_trait] = ACTIONS(1456), - [anon_sym_type] = ACTIONS(1456), - [anon_sym_union] = ACTIONS(1456), - [anon_sym_unsafe] = ACTIONS(1456), - [anon_sym_use] = ACTIONS(1456), - [anon_sym_while] = ACTIONS(1456), - [anon_sym_extern] = ACTIONS(1456), - [anon_sym_raw] = ACTIONS(1456), - [anon_sym_yield] = ACTIONS(1456), - [anon_sym_move] = ACTIONS(1456), - [anon_sym_try] = ACTIONS(1456), - [sym_integer_literal] = ACTIONS(1454), - [aux_sym_string_literal_token1] = ACTIONS(1454), - [sym_char_literal] = ACTIONS(1454), - [anon_sym_true] = ACTIONS(1456), - [anon_sym_false] = ACTIONS(1456), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1456), - [sym_super] = ACTIONS(1456), - [sym_crate] = ACTIONS(1456), - [sym_metavariable] = ACTIONS(1454), - [sym__raw_string_literal_start] = ACTIONS(1454), - [sym_float_literal] = ACTIONS(1454), - }, - [STATE(672)] = { - [sym_line_comment] = STATE(672), - [sym_block_comment] = STATE(672), + [664] = { + [sym_line_comment] = STATE(664), + [sym_block_comment] = STATE(664), [ts_builtin_sym_end] = ACTIONS(2633), [sym_identifier] = ACTIONS(2635), [anon_sym_SEMI] = ACTIONS(2633), @@ -86901,9 +85721,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2633), [sym_float_literal] = ACTIONS(2633), }, - [STATE(673)] = { - [sym_line_comment] = STATE(673), - [sym_block_comment] = STATE(673), + [665] = { + [sym_line_comment] = STATE(665), + [sym_block_comment] = STATE(665), + [ts_builtin_sym_end] = ACTIONS(1446), + [sym_identifier] = ACTIONS(1448), + [anon_sym_SEMI] = ACTIONS(1446), + [anon_sym_macro_rules_BANG] = ACTIONS(1446), + [anon_sym_LPAREN] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1446), + [anon_sym_RBRACE] = ACTIONS(1446), + [anon_sym_STAR] = ACTIONS(1446), + [anon_sym_u8] = ACTIONS(1448), + [anon_sym_i8] = ACTIONS(1448), + [anon_sym_u16] = ACTIONS(1448), + [anon_sym_i16] = ACTIONS(1448), + [anon_sym_u32] = ACTIONS(1448), + [anon_sym_i32] = ACTIONS(1448), + [anon_sym_u64] = ACTIONS(1448), + [anon_sym_i64] = ACTIONS(1448), + [anon_sym_u128] = ACTIONS(1448), + [anon_sym_i128] = ACTIONS(1448), + [anon_sym_isize] = ACTIONS(1448), + [anon_sym_usize] = ACTIONS(1448), + [anon_sym_f32] = ACTIONS(1448), + [anon_sym_f64] = ACTIONS(1448), + [anon_sym_bool] = ACTIONS(1448), + [anon_sym_str] = ACTIONS(1448), + [anon_sym_char] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_BANG] = ACTIONS(1446), + [anon_sym_AMP] = ACTIONS(1446), + [anon_sym_PIPE] = ACTIONS(1446), + [anon_sym_LT] = ACTIONS(1446), + [anon_sym_DOT_DOT] = ACTIONS(1446), + [anon_sym_COLON_COLON] = ACTIONS(1446), + [anon_sym_POUND] = ACTIONS(1446), + [anon_sym_SQUOTE] = ACTIONS(1448), + [anon_sym_async] = ACTIONS(1448), + [anon_sym_break] = ACTIONS(1448), + [anon_sym_const] = ACTIONS(1448), + [anon_sym_continue] = ACTIONS(1448), + [anon_sym_default] = ACTIONS(1448), + [anon_sym_enum] = ACTIONS(1448), + [anon_sym_fn] = ACTIONS(1448), + [anon_sym_for] = ACTIONS(1448), + [anon_sym_gen] = ACTIONS(1448), + [anon_sym_if] = ACTIONS(1448), + [anon_sym_impl] = ACTIONS(1448), + [anon_sym_let] = ACTIONS(1448), + [anon_sym_loop] = ACTIONS(1448), + [anon_sym_match] = ACTIONS(1448), + [anon_sym_mod] = ACTIONS(1448), + [anon_sym_pub] = ACTIONS(1448), + [anon_sym_return] = ACTIONS(1448), + [anon_sym_static] = ACTIONS(1448), + [anon_sym_struct] = ACTIONS(1448), + [anon_sym_trait] = ACTIONS(1448), + [anon_sym_type] = ACTIONS(1448), + [anon_sym_union] = ACTIONS(1448), + [anon_sym_unsafe] = ACTIONS(1448), + [anon_sym_use] = ACTIONS(1448), + [anon_sym_while] = ACTIONS(1448), + [anon_sym_extern] = ACTIONS(1448), + [anon_sym_raw] = ACTIONS(1448), + [anon_sym_yield] = ACTIONS(1448), + [anon_sym_move] = ACTIONS(1448), + [anon_sym_try] = ACTIONS(1448), + [sym_integer_literal] = ACTIONS(1446), + [aux_sym_string_literal_token1] = ACTIONS(1446), + [sym_char_literal] = ACTIONS(1446), + [anon_sym_true] = ACTIONS(1448), + [anon_sym_false] = ACTIONS(1448), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1448), + [sym_super] = ACTIONS(1448), + [sym_crate] = ACTIONS(1448), + [sym_metavariable] = ACTIONS(1446), + [sym__raw_string_literal_start] = ACTIONS(1446), + [sym_float_literal] = ACTIONS(1446), + }, + [666] = { + [sym_line_comment] = STATE(666), + [sym_block_comment] = STATE(666), [ts_builtin_sym_end] = ACTIONS(2637), [sym_identifier] = ACTIONS(2639), [anon_sym_SEMI] = ACTIONS(2637), @@ -86983,9 +85885,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2637), [sym_float_literal] = ACTIONS(2637), }, - [STATE(674)] = { - [sym_line_comment] = STATE(674), - [sym_block_comment] = STATE(674), + [667] = { + [sym_line_comment] = STATE(667), + [sym_block_comment] = STATE(667), [ts_builtin_sym_end] = ACTIONS(2641), [sym_identifier] = ACTIONS(2643), [anon_sym_SEMI] = ACTIONS(2641), @@ -87065,173 +85967,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2641), [sym_float_literal] = ACTIONS(2641), }, - [STATE(675)] = { - [sym_line_comment] = STATE(675), - [sym_block_comment] = STATE(675), - [ts_builtin_sym_end] = ACTIONS(1438), - [sym_identifier] = ACTIONS(1440), - [anon_sym_SEMI] = ACTIONS(1438), - [anon_sym_macro_rules_BANG] = ACTIONS(1438), - [anon_sym_LPAREN] = ACTIONS(1438), - [anon_sym_LBRACK] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1438), - [anon_sym_RBRACE] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_u8] = ACTIONS(1440), - [anon_sym_i8] = ACTIONS(1440), - [anon_sym_u16] = ACTIONS(1440), - [anon_sym_i16] = ACTIONS(1440), - [anon_sym_u32] = ACTIONS(1440), - [anon_sym_i32] = ACTIONS(1440), - [anon_sym_u64] = ACTIONS(1440), - [anon_sym_i64] = ACTIONS(1440), - [anon_sym_u128] = ACTIONS(1440), - [anon_sym_i128] = ACTIONS(1440), - [anon_sym_isize] = ACTIONS(1440), - [anon_sym_usize] = ACTIONS(1440), - [anon_sym_f32] = ACTIONS(1440), - [anon_sym_f64] = ACTIONS(1440), - [anon_sym_bool] = ACTIONS(1440), - [anon_sym_str] = ACTIONS(1440), - [anon_sym_char] = ACTIONS(1440), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_BANG] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_PIPE] = ACTIONS(1438), - [anon_sym_LT] = ACTIONS(1438), - [anon_sym_DOT_DOT] = ACTIONS(1438), - [anon_sym_COLON_COLON] = ACTIONS(1438), - [anon_sym_POUND] = ACTIONS(1438), - [anon_sym_SQUOTE] = ACTIONS(1440), - [anon_sym_async] = ACTIONS(1440), - [anon_sym_break] = ACTIONS(1440), - [anon_sym_const] = ACTIONS(1440), - [anon_sym_continue] = ACTIONS(1440), - [anon_sym_default] = ACTIONS(1440), - [anon_sym_enum] = ACTIONS(1440), - [anon_sym_fn] = ACTIONS(1440), - [anon_sym_for] = ACTIONS(1440), - [anon_sym_gen] = ACTIONS(1440), - [anon_sym_if] = ACTIONS(1440), - [anon_sym_impl] = ACTIONS(1440), - [anon_sym_let] = ACTIONS(1440), - [anon_sym_loop] = ACTIONS(1440), - [anon_sym_match] = ACTIONS(1440), - [anon_sym_mod] = ACTIONS(1440), - [anon_sym_pub] = ACTIONS(1440), - [anon_sym_return] = ACTIONS(1440), - [anon_sym_static] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1440), - [anon_sym_trait] = ACTIONS(1440), - [anon_sym_type] = ACTIONS(1440), - [anon_sym_union] = ACTIONS(1440), - [anon_sym_unsafe] = ACTIONS(1440), - [anon_sym_use] = ACTIONS(1440), - [anon_sym_while] = ACTIONS(1440), - [anon_sym_extern] = ACTIONS(1440), - [anon_sym_raw] = ACTIONS(1440), - [anon_sym_yield] = ACTIONS(1440), - [anon_sym_move] = ACTIONS(1440), - [anon_sym_try] = ACTIONS(1440), - [sym_integer_literal] = ACTIONS(1438), - [aux_sym_string_literal_token1] = ACTIONS(1438), - [sym_char_literal] = ACTIONS(1438), - [anon_sym_true] = ACTIONS(1440), - [anon_sym_false] = ACTIONS(1440), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1440), - [sym_super] = ACTIONS(1440), - [sym_crate] = ACTIONS(1440), - [sym_metavariable] = ACTIONS(1438), - [sym__raw_string_literal_start] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1438), - }, - [STATE(676)] = { - [sym_line_comment] = STATE(676), - [sym_block_comment] = STATE(676), - [ts_builtin_sym_end] = ACTIONS(1446), - [sym_identifier] = ACTIONS(1448), - [anon_sym_SEMI] = ACTIONS(1446), - [anon_sym_macro_rules_BANG] = ACTIONS(1446), - [anon_sym_LPAREN] = ACTIONS(1446), - [anon_sym_LBRACK] = ACTIONS(1446), - [anon_sym_LBRACE] = ACTIONS(1446), - [anon_sym_RBRACE] = ACTIONS(1446), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_u8] = ACTIONS(1448), - [anon_sym_i8] = ACTIONS(1448), - [anon_sym_u16] = ACTIONS(1448), - [anon_sym_i16] = ACTIONS(1448), - [anon_sym_u32] = ACTIONS(1448), - [anon_sym_i32] = ACTIONS(1448), - [anon_sym_u64] = ACTIONS(1448), - [anon_sym_i64] = ACTIONS(1448), - [anon_sym_u128] = ACTIONS(1448), - [anon_sym_i128] = ACTIONS(1448), - [anon_sym_isize] = ACTIONS(1448), - [anon_sym_usize] = ACTIONS(1448), - [anon_sym_f32] = ACTIONS(1448), - [anon_sym_f64] = ACTIONS(1448), - [anon_sym_bool] = ACTIONS(1448), - [anon_sym_str] = ACTIONS(1448), - [anon_sym_char] = ACTIONS(1448), - [anon_sym_DASH] = ACTIONS(1446), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_AMP] = ACTIONS(1446), - [anon_sym_PIPE] = ACTIONS(1446), - [anon_sym_LT] = ACTIONS(1446), - [anon_sym_DOT_DOT] = ACTIONS(1446), - [anon_sym_COLON_COLON] = ACTIONS(1446), - [anon_sym_POUND] = ACTIONS(1446), - [anon_sym_SQUOTE] = ACTIONS(1448), - [anon_sym_async] = ACTIONS(1448), - [anon_sym_break] = ACTIONS(1448), - [anon_sym_const] = ACTIONS(1448), - [anon_sym_continue] = ACTIONS(1448), - [anon_sym_default] = ACTIONS(1448), - [anon_sym_enum] = ACTIONS(1448), - [anon_sym_fn] = ACTIONS(1448), - [anon_sym_for] = ACTIONS(1448), - [anon_sym_gen] = ACTIONS(1448), - [anon_sym_if] = ACTIONS(1448), - [anon_sym_impl] = ACTIONS(1448), - [anon_sym_let] = ACTIONS(1448), - [anon_sym_loop] = ACTIONS(1448), - [anon_sym_match] = ACTIONS(1448), - [anon_sym_mod] = ACTIONS(1448), - [anon_sym_pub] = ACTIONS(1448), - [anon_sym_return] = ACTIONS(1448), - [anon_sym_static] = ACTIONS(1448), - [anon_sym_struct] = ACTIONS(1448), - [anon_sym_trait] = ACTIONS(1448), - [anon_sym_type] = ACTIONS(1448), - [anon_sym_union] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1448), - [anon_sym_use] = ACTIONS(1448), - [anon_sym_while] = ACTIONS(1448), - [anon_sym_extern] = ACTIONS(1448), - [anon_sym_raw] = ACTIONS(1448), - [anon_sym_yield] = ACTIONS(1448), - [anon_sym_move] = ACTIONS(1448), - [anon_sym_try] = ACTIONS(1448), - [sym_integer_literal] = ACTIONS(1446), - [aux_sym_string_literal_token1] = ACTIONS(1446), - [sym_char_literal] = ACTIONS(1446), - [anon_sym_true] = ACTIONS(1448), - [anon_sym_false] = ACTIONS(1448), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1448), - [sym_super] = ACTIONS(1448), - [sym_crate] = ACTIONS(1448), - [sym_metavariable] = ACTIONS(1446), - [sym__raw_string_literal_start] = ACTIONS(1446), - [sym_float_literal] = ACTIONS(1446), - }, - [STATE(677)] = { - [sym_line_comment] = STATE(677), - [sym_block_comment] = STATE(677), + [668] = { + [sym_line_comment] = STATE(668), + [sym_block_comment] = STATE(668), + [ts_builtin_sym_end] = ACTIONS(1430), + [sym_identifier] = ACTIONS(1432), + [anon_sym_SEMI] = ACTIONS(1430), + [anon_sym_macro_rules_BANG] = ACTIONS(1430), + [anon_sym_LPAREN] = ACTIONS(1430), + [anon_sym_LBRACK] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1430), + [anon_sym_RBRACE] = ACTIONS(1430), + [anon_sym_STAR] = ACTIONS(1430), + [anon_sym_u8] = ACTIONS(1432), + [anon_sym_i8] = ACTIONS(1432), + [anon_sym_u16] = ACTIONS(1432), + [anon_sym_i16] = ACTIONS(1432), + [anon_sym_u32] = ACTIONS(1432), + [anon_sym_i32] = ACTIONS(1432), + [anon_sym_u64] = ACTIONS(1432), + [anon_sym_i64] = ACTIONS(1432), + [anon_sym_u128] = ACTIONS(1432), + [anon_sym_i128] = ACTIONS(1432), + [anon_sym_isize] = ACTIONS(1432), + [anon_sym_usize] = ACTIONS(1432), + [anon_sym_f32] = ACTIONS(1432), + [anon_sym_f64] = ACTIONS(1432), + [anon_sym_bool] = ACTIONS(1432), + [anon_sym_str] = ACTIONS(1432), + [anon_sym_char] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1430), + [anon_sym_BANG] = ACTIONS(1430), + [anon_sym_AMP] = ACTIONS(1430), + [anon_sym_PIPE] = ACTIONS(1430), + [anon_sym_LT] = ACTIONS(1430), + [anon_sym_DOT_DOT] = ACTIONS(1430), + [anon_sym_COLON_COLON] = ACTIONS(1430), + [anon_sym_POUND] = ACTIONS(1430), + [anon_sym_SQUOTE] = ACTIONS(1432), + [anon_sym_async] = ACTIONS(1432), + [anon_sym_break] = ACTIONS(1432), + [anon_sym_const] = ACTIONS(1432), + [anon_sym_continue] = ACTIONS(1432), + [anon_sym_default] = ACTIONS(1432), + [anon_sym_enum] = ACTIONS(1432), + [anon_sym_fn] = ACTIONS(1432), + [anon_sym_for] = ACTIONS(1432), + [anon_sym_gen] = ACTIONS(1432), + [anon_sym_if] = ACTIONS(1432), + [anon_sym_impl] = ACTIONS(1432), + [anon_sym_let] = ACTIONS(1432), + [anon_sym_loop] = ACTIONS(1432), + [anon_sym_match] = ACTIONS(1432), + [anon_sym_mod] = ACTIONS(1432), + [anon_sym_pub] = ACTIONS(1432), + [anon_sym_return] = ACTIONS(1432), + [anon_sym_static] = ACTIONS(1432), + [anon_sym_struct] = ACTIONS(1432), + [anon_sym_trait] = ACTIONS(1432), + [anon_sym_type] = ACTIONS(1432), + [anon_sym_union] = ACTIONS(1432), + [anon_sym_unsafe] = ACTIONS(1432), + [anon_sym_use] = ACTIONS(1432), + [anon_sym_while] = ACTIONS(1432), + [anon_sym_extern] = ACTIONS(1432), + [anon_sym_raw] = ACTIONS(1432), + [anon_sym_yield] = ACTIONS(1432), + [anon_sym_move] = ACTIONS(1432), + [anon_sym_try] = ACTIONS(1432), + [sym_integer_literal] = ACTIONS(1430), + [aux_sym_string_literal_token1] = ACTIONS(1430), + [sym_char_literal] = ACTIONS(1430), + [anon_sym_true] = ACTIONS(1432), + [anon_sym_false] = ACTIONS(1432), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1432), + [sym_super] = ACTIONS(1432), + [sym_crate] = ACTIONS(1432), + [sym_metavariable] = ACTIONS(1430), + [sym__raw_string_literal_start] = ACTIONS(1430), + [sym_float_literal] = ACTIONS(1430), + }, + [669] = { + [sym_line_comment] = STATE(669), + [sym_block_comment] = STATE(669), [ts_builtin_sym_end] = ACTIONS(2645), [sym_identifier] = ACTIONS(2647), [anon_sym_SEMI] = ACTIONS(2645), @@ -87311,9 +86131,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2645), [sym_float_literal] = ACTIONS(2645), }, - [STATE(678)] = { - [sym_line_comment] = STATE(678), - [sym_block_comment] = STATE(678), + [670] = { + [sym_line_comment] = STATE(670), + [sym_block_comment] = STATE(670), [ts_builtin_sym_end] = ACTIONS(2649), [sym_identifier] = ACTIONS(2651), [anon_sym_SEMI] = ACTIONS(2649), @@ -87393,9 +86213,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2649), [sym_float_literal] = ACTIONS(2649), }, - [STATE(679)] = { - [sym_line_comment] = STATE(679), - [sym_block_comment] = STATE(679), + [671] = { + [sym_line_comment] = STATE(671), + [sym_block_comment] = STATE(671), [ts_builtin_sym_end] = ACTIONS(2653), [sym_identifier] = ACTIONS(2655), [anon_sym_SEMI] = ACTIONS(2653), @@ -87475,9 +86295,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2653), [sym_float_literal] = ACTIONS(2653), }, - [STATE(680)] = { - [sym_line_comment] = STATE(680), - [sym_block_comment] = STATE(680), + [672] = { + [sym_line_comment] = STATE(672), + [sym_block_comment] = STATE(672), + [ts_builtin_sym_end] = ACTIONS(1434), + [sym_identifier] = ACTIONS(1436), + [anon_sym_SEMI] = ACTIONS(1434), + [anon_sym_macro_rules_BANG] = ACTIONS(1434), + [anon_sym_LPAREN] = ACTIONS(1434), + [anon_sym_LBRACK] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1434), + [anon_sym_RBRACE] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1434), + [anon_sym_u8] = ACTIONS(1436), + [anon_sym_i8] = ACTIONS(1436), + [anon_sym_u16] = ACTIONS(1436), + [anon_sym_i16] = ACTIONS(1436), + [anon_sym_u32] = ACTIONS(1436), + [anon_sym_i32] = ACTIONS(1436), + [anon_sym_u64] = ACTIONS(1436), + [anon_sym_i64] = ACTIONS(1436), + [anon_sym_u128] = ACTIONS(1436), + [anon_sym_i128] = ACTIONS(1436), + [anon_sym_isize] = ACTIONS(1436), + [anon_sym_usize] = ACTIONS(1436), + [anon_sym_f32] = ACTIONS(1436), + [anon_sym_f64] = ACTIONS(1436), + [anon_sym_bool] = ACTIONS(1436), + [anon_sym_str] = ACTIONS(1436), + [anon_sym_char] = ACTIONS(1436), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_BANG] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1434), + [anon_sym_PIPE] = ACTIONS(1434), + [anon_sym_LT] = ACTIONS(1434), + [anon_sym_DOT_DOT] = ACTIONS(1434), + [anon_sym_COLON_COLON] = ACTIONS(1434), + [anon_sym_POUND] = ACTIONS(1434), + [anon_sym_SQUOTE] = ACTIONS(1436), + [anon_sym_async] = ACTIONS(1436), + [anon_sym_break] = ACTIONS(1436), + [anon_sym_const] = ACTIONS(1436), + [anon_sym_continue] = ACTIONS(1436), + [anon_sym_default] = ACTIONS(1436), + [anon_sym_enum] = ACTIONS(1436), + [anon_sym_fn] = ACTIONS(1436), + [anon_sym_for] = ACTIONS(1436), + [anon_sym_gen] = ACTIONS(1436), + [anon_sym_if] = ACTIONS(1436), + [anon_sym_impl] = ACTIONS(1436), + [anon_sym_let] = ACTIONS(1436), + [anon_sym_loop] = ACTIONS(1436), + [anon_sym_match] = ACTIONS(1436), + [anon_sym_mod] = ACTIONS(1436), + [anon_sym_pub] = ACTIONS(1436), + [anon_sym_return] = ACTIONS(1436), + [anon_sym_static] = ACTIONS(1436), + [anon_sym_struct] = ACTIONS(1436), + [anon_sym_trait] = ACTIONS(1436), + [anon_sym_type] = ACTIONS(1436), + [anon_sym_union] = ACTIONS(1436), + [anon_sym_unsafe] = ACTIONS(1436), + [anon_sym_use] = ACTIONS(1436), + [anon_sym_while] = ACTIONS(1436), + [anon_sym_extern] = ACTIONS(1436), + [anon_sym_raw] = ACTIONS(1436), + [anon_sym_yield] = ACTIONS(1436), + [anon_sym_move] = ACTIONS(1436), + [anon_sym_try] = ACTIONS(1436), + [sym_integer_literal] = ACTIONS(1434), + [aux_sym_string_literal_token1] = ACTIONS(1434), + [sym_char_literal] = ACTIONS(1434), + [anon_sym_true] = ACTIONS(1436), + [anon_sym_false] = ACTIONS(1436), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1436), + [sym_super] = ACTIONS(1436), + [sym_crate] = ACTIONS(1436), + [sym_metavariable] = ACTIONS(1434), + [sym__raw_string_literal_start] = ACTIONS(1434), + [sym_float_literal] = ACTIONS(1434), + }, + [673] = { + [sym_line_comment] = STATE(673), + [sym_block_comment] = STATE(673), + [ts_builtin_sym_end] = ACTIONS(1442), + [sym_identifier] = ACTIONS(1444), + [anon_sym_SEMI] = ACTIONS(1442), + [anon_sym_macro_rules_BANG] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1442), + [anon_sym_LBRACK] = ACTIONS(1442), + [anon_sym_LBRACE] = ACTIONS(1442), + [anon_sym_RBRACE] = ACTIONS(1442), + [anon_sym_STAR] = ACTIONS(1442), + [anon_sym_u8] = ACTIONS(1444), + [anon_sym_i8] = ACTIONS(1444), + [anon_sym_u16] = ACTIONS(1444), + [anon_sym_i16] = ACTIONS(1444), + [anon_sym_u32] = ACTIONS(1444), + [anon_sym_i32] = ACTIONS(1444), + [anon_sym_u64] = ACTIONS(1444), + [anon_sym_i64] = ACTIONS(1444), + [anon_sym_u128] = ACTIONS(1444), + [anon_sym_i128] = ACTIONS(1444), + [anon_sym_isize] = ACTIONS(1444), + [anon_sym_usize] = ACTIONS(1444), + [anon_sym_f32] = ACTIONS(1444), + [anon_sym_f64] = ACTIONS(1444), + [anon_sym_bool] = ACTIONS(1444), + [anon_sym_str] = ACTIONS(1444), + [anon_sym_char] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_BANG] = ACTIONS(1442), + [anon_sym_AMP] = ACTIONS(1442), + [anon_sym_PIPE] = ACTIONS(1442), + [anon_sym_LT] = ACTIONS(1442), + [anon_sym_DOT_DOT] = ACTIONS(1442), + [anon_sym_COLON_COLON] = ACTIONS(1442), + [anon_sym_POUND] = ACTIONS(1442), + [anon_sym_SQUOTE] = ACTIONS(1444), + [anon_sym_async] = ACTIONS(1444), + [anon_sym_break] = ACTIONS(1444), + [anon_sym_const] = ACTIONS(1444), + [anon_sym_continue] = ACTIONS(1444), + [anon_sym_default] = ACTIONS(1444), + [anon_sym_enum] = ACTIONS(1444), + [anon_sym_fn] = ACTIONS(1444), + [anon_sym_for] = ACTIONS(1444), + [anon_sym_gen] = ACTIONS(1444), + [anon_sym_if] = ACTIONS(1444), + [anon_sym_impl] = ACTIONS(1444), + [anon_sym_let] = ACTIONS(1444), + [anon_sym_loop] = ACTIONS(1444), + [anon_sym_match] = ACTIONS(1444), + [anon_sym_mod] = ACTIONS(1444), + [anon_sym_pub] = ACTIONS(1444), + [anon_sym_return] = ACTIONS(1444), + [anon_sym_static] = ACTIONS(1444), + [anon_sym_struct] = ACTIONS(1444), + [anon_sym_trait] = ACTIONS(1444), + [anon_sym_type] = ACTIONS(1444), + [anon_sym_union] = ACTIONS(1444), + [anon_sym_unsafe] = ACTIONS(1444), + [anon_sym_use] = ACTIONS(1444), + [anon_sym_while] = ACTIONS(1444), + [anon_sym_extern] = ACTIONS(1444), + [anon_sym_raw] = ACTIONS(1444), + [anon_sym_yield] = ACTIONS(1444), + [anon_sym_move] = ACTIONS(1444), + [anon_sym_try] = ACTIONS(1444), + [sym_integer_literal] = ACTIONS(1442), + [aux_sym_string_literal_token1] = ACTIONS(1442), + [sym_char_literal] = ACTIONS(1442), + [anon_sym_true] = ACTIONS(1444), + [anon_sym_false] = ACTIONS(1444), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1444), + [sym_super] = ACTIONS(1444), + [sym_crate] = ACTIONS(1444), + [sym_metavariable] = ACTIONS(1442), + [sym__raw_string_literal_start] = ACTIONS(1442), + [sym_float_literal] = ACTIONS(1442), + }, + [674] = { + [sym_line_comment] = STATE(674), + [sym_block_comment] = STATE(674), [ts_builtin_sym_end] = ACTIONS(2657), [sym_identifier] = ACTIONS(2659), [anon_sym_SEMI] = ACTIONS(2657), @@ -87557,9 +86541,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2657), [sym_float_literal] = ACTIONS(2657), }, - [STATE(681)] = { - [sym_line_comment] = STATE(681), - [sym_block_comment] = STATE(681), + [675] = { + [sym_line_comment] = STATE(675), + [sym_block_comment] = STATE(675), [ts_builtin_sym_end] = ACTIONS(2661), [sym_identifier] = ACTIONS(2663), [anon_sym_SEMI] = ACTIONS(2661), @@ -87639,9 +86623,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2661), [sym_float_literal] = ACTIONS(2661), }, - [STATE(682)] = { - [sym_line_comment] = STATE(682), - [sym_block_comment] = STATE(682), + [676] = { + [sym_line_comment] = STATE(676), + [sym_block_comment] = STATE(676), [ts_builtin_sym_end] = ACTIONS(2665), [sym_identifier] = ACTIONS(2667), [anon_sym_SEMI] = ACTIONS(2665), @@ -87721,9 +86705,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2665), [sym_float_literal] = ACTIONS(2665), }, - [STATE(683)] = { - [sym_line_comment] = STATE(683), - [sym_block_comment] = STATE(683), + [677] = { + [sym_line_comment] = STATE(677), + [sym_block_comment] = STATE(677), [ts_builtin_sym_end] = ACTIONS(2669), [sym_identifier] = ACTIONS(2671), [anon_sym_SEMI] = ACTIONS(2669), @@ -87803,9 +86787,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2669), [sym_float_literal] = ACTIONS(2669), }, - [STATE(684)] = { - [sym_line_comment] = STATE(684), - [sym_block_comment] = STATE(684), + [678] = { + [sym_line_comment] = STATE(678), + [sym_block_comment] = STATE(678), [ts_builtin_sym_end] = ACTIONS(2673), [sym_identifier] = ACTIONS(2675), [anon_sym_SEMI] = ACTIONS(2673), @@ -87885,9 +86869,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2673), [sym_float_literal] = ACTIONS(2673), }, - [STATE(685)] = { - [sym_line_comment] = STATE(685), - [sym_block_comment] = STATE(685), + [679] = { + [sym_line_comment] = STATE(679), + [sym_block_comment] = STATE(679), [ts_builtin_sym_end] = ACTIONS(2677), [sym_identifier] = ACTIONS(2679), [anon_sym_SEMI] = ACTIONS(2677), @@ -87967,9 +86951,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2677), [sym_float_literal] = ACTIONS(2677), }, - [STATE(686)] = { - [sym_line_comment] = STATE(686), - [sym_block_comment] = STATE(686), + [680] = { + [sym_line_comment] = STATE(680), + [sym_block_comment] = STATE(680), [ts_builtin_sym_end] = ACTIONS(2681), [sym_identifier] = ACTIONS(2683), [anon_sym_SEMI] = ACTIONS(2681), @@ -88049,9 +87033,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2681), [sym_float_literal] = ACTIONS(2681), }, - [STATE(687)] = { - [sym_line_comment] = STATE(687), - [sym_block_comment] = STATE(687), + [681] = { + [sym_line_comment] = STATE(681), + [sym_block_comment] = STATE(681), [ts_builtin_sym_end] = ACTIONS(2685), [sym_identifier] = ACTIONS(2687), [anon_sym_SEMI] = ACTIONS(2685), @@ -88131,9 +87115,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2685), [sym_float_literal] = ACTIONS(2685), }, - [STATE(688)] = { - [sym_line_comment] = STATE(688), - [sym_block_comment] = STATE(688), + [682] = { + [sym_line_comment] = STATE(682), + [sym_block_comment] = STATE(682), [ts_builtin_sym_end] = ACTIONS(2689), [sym_identifier] = ACTIONS(2691), [anon_sym_SEMI] = ACTIONS(2689), @@ -88213,9 +87197,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2689), [sym_float_literal] = ACTIONS(2689), }, - [STATE(689)] = { - [sym_line_comment] = STATE(689), - [sym_block_comment] = STATE(689), + [683] = { + [sym_line_comment] = STATE(683), + [sym_block_comment] = STATE(683), [ts_builtin_sym_end] = ACTIONS(2693), [sym_identifier] = ACTIONS(2695), [anon_sym_SEMI] = ACTIONS(2693), @@ -88295,9 +87279,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2693), [sym_float_literal] = ACTIONS(2693), }, - [STATE(690)] = { - [sym_line_comment] = STATE(690), - [sym_block_comment] = STATE(690), + [684] = { + [sym_line_comment] = STATE(684), + [sym_block_comment] = STATE(684), [ts_builtin_sym_end] = ACTIONS(2697), [sym_identifier] = ACTIONS(2699), [anon_sym_SEMI] = ACTIONS(2697), @@ -88377,337 +87361,337 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2697), [sym_float_literal] = ACTIONS(2697), }, - [STATE(691)] = { - [sym_line_comment] = STATE(691), - [sym_block_comment] = STATE(691), - [ts_builtin_sym_end] = ACTIONS(2701), - [sym_identifier] = ACTIONS(2703), - [anon_sym_SEMI] = ACTIONS(2701), - [anon_sym_macro_rules_BANG] = ACTIONS(2701), - [anon_sym_LPAREN] = ACTIONS(2701), - [anon_sym_LBRACK] = ACTIONS(2701), - [anon_sym_LBRACE] = ACTIONS(2701), + [685] = { + [sym_empty_statement] = STATE(1370), + [sym_macro_definition] = STATE(1370), + [sym_attribute_item] = STATE(1370), + [sym_inner_attribute_item] = STATE(1370), + [sym_mod_item] = STATE(1370), + [sym_foreign_mod_item] = STATE(1370), + [sym_struct_item] = STATE(1370), + [sym_union_item] = STATE(1370), + [sym_enum_item] = STATE(1370), + [sym_extern_crate_declaration] = STATE(1370), + [sym_const_item] = STATE(1370), + [sym_static_item] = STATE(1370), + [sym_type_item] = STATE(1370), + [sym_function_item] = STATE(1370), + [sym_function_signature_item] = STATE(1370), + [sym_function_modifiers] = STATE(3775), + [sym_impl_item] = STATE(1370), + [sym_trait_item] = STATE(1370), + [sym_associated_type] = STATE(1370), + [sym_let_declaration] = STATE(1370), + [sym_use_declaration] = STATE(1370), + [sym_extern_modifier] = STATE(2242), + [sym_visibility_modifier] = STATE(2025), + [sym_bracketed_type] = STATE(3723), + [sym_generic_type_with_turbofish] = STATE(3791), + [sym_macro_invocation] = STATE(1370), + [sym_scoped_identifier] = STATE(3388), + [sym_line_comment] = STATE(685), + [sym_block_comment] = STATE(685), + [aux_sym_declaration_list_repeat1] = STATE(694), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(2311), + [anon_sym_SEMI] = ACTIONS(2313), + [anon_sym_macro_rules_BANG] = ACTIONS(2315), [anon_sym_RBRACE] = ACTIONS(2701), - [anon_sym_STAR] = ACTIONS(2701), - [anon_sym_u8] = ACTIONS(2703), - [anon_sym_i8] = ACTIONS(2703), - [anon_sym_u16] = ACTIONS(2703), - [anon_sym_i16] = ACTIONS(2703), - [anon_sym_u32] = ACTIONS(2703), - [anon_sym_i32] = ACTIONS(2703), - [anon_sym_u64] = ACTIONS(2703), - [anon_sym_i64] = ACTIONS(2703), - [anon_sym_u128] = ACTIONS(2703), - [anon_sym_i128] = ACTIONS(2703), - [anon_sym_isize] = ACTIONS(2703), - [anon_sym_usize] = ACTIONS(2703), - [anon_sym_f32] = ACTIONS(2703), - [anon_sym_f64] = ACTIONS(2703), - [anon_sym_bool] = ACTIONS(2703), - [anon_sym_str] = ACTIONS(2703), - [anon_sym_char] = ACTIONS(2703), - [anon_sym_DASH] = ACTIONS(2701), - [anon_sym_BANG] = ACTIONS(2701), - [anon_sym_AMP] = ACTIONS(2701), - [anon_sym_PIPE] = ACTIONS(2701), - [anon_sym_LT] = ACTIONS(2701), - [anon_sym_DOT_DOT] = ACTIONS(2701), - [anon_sym_COLON_COLON] = ACTIONS(2701), - [anon_sym_POUND] = ACTIONS(2701), - [anon_sym_SQUOTE] = ACTIONS(2703), - [anon_sym_async] = ACTIONS(2703), - [anon_sym_break] = ACTIONS(2703), - [anon_sym_const] = ACTIONS(2703), - [anon_sym_continue] = ACTIONS(2703), - [anon_sym_default] = ACTIONS(2703), - [anon_sym_enum] = ACTIONS(2703), - [anon_sym_fn] = ACTIONS(2703), - [anon_sym_for] = ACTIONS(2703), - [anon_sym_gen] = ACTIONS(2703), - [anon_sym_if] = ACTIONS(2703), - [anon_sym_impl] = ACTIONS(2703), - [anon_sym_let] = ACTIONS(2703), - [anon_sym_loop] = ACTIONS(2703), - [anon_sym_match] = ACTIONS(2703), - [anon_sym_mod] = ACTIONS(2703), - [anon_sym_pub] = ACTIONS(2703), - [anon_sym_return] = ACTIONS(2703), - [anon_sym_static] = ACTIONS(2703), - [anon_sym_struct] = ACTIONS(2703), - [anon_sym_trait] = ACTIONS(2703), - [anon_sym_type] = ACTIONS(2703), - [anon_sym_union] = ACTIONS(2703), - [anon_sym_unsafe] = ACTIONS(2703), - [anon_sym_use] = ACTIONS(2703), - [anon_sym_while] = ACTIONS(2703), - [anon_sym_extern] = ACTIONS(2703), - [anon_sym_raw] = ACTIONS(2703), - [anon_sym_yield] = ACTIONS(2703), - [anon_sym_move] = ACTIONS(2703), - [anon_sym_try] = ACTIONS(2703), - [sym_integer_literal] = ACTIONS(2701), - [aux_sym_string_literal_token1] = ACTIONS(2701), - [sym_char_literal] = ACTIONS(2701), - [anon_sym_true] = ACTIONS(2703), - [anon_sym_false] = ACTIONS(2703), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2703), - [sym_super] = ACTIONS(2703), - [sym_crate] = ACTIONS(2703), - [sym_metavariable] = ACTIONS(2701), - [sym__raw_string_literal_start] = ACTIONS(2701), - [sym_float_literal] = ACTIONS(2701), - }, - [STATE(692)] = { - [sym_line_comment] = STATE(692), - [sym_block_comment] = STATE(692), - [ts_builtin_sym_end] = ACTIONS(2705), - [sym_identifier] = ACTIONS(2707), - [anon_sym_SEMI] = ACTIONS(2705), - [anon_sym_macro_rules_BANG] = ACTIONS(2705), - [anon_sym_LPAREN] = ACTIONS(2705), - [anon_sym_LBRACK] = ACTIONS(2705), - [anon_sym_LBRACE] = ACTIONS(2705), - [anon_sym_RBRACE] = ACTIONS(2705), - [anon_sym_STAR] = ACTIONS(2705), - [anon_sym_u8] = ACTIONS(2707), - [anon_sym_i8] = ACTIONS(2707), - [anon_sym_u16] = ACTIONS(2707), - [anon_sym_i16] = ACTIONS(2707), - [anon_sym_u32] = ACTIONS(2707), - [anon_sym_i32] = ACTIONS(2707), - [anon_sym_u64] = ACTIONS(2707), - [anon_sym_i64] = ACTIONS(2707), - [anon_sym_u128] = ACTIONS(2707), - [anon_sym_i128] = ACTIONS(2707), - [anon_sym_isize] = ACTIONS(2707), - [anon_sym_usize] = ACTIONS(2707), - [anon_sym_f32] = ACTIONS(2707), - [anon_sym_f64] = ACTIONS(2707), - [anon_sym_bool] = ACTIONS(2707), - [anon_sym_str] = ACTIONS(2707), - [anon_sym_char] = ACTIONS(2707), - [anon_sym_DASH] = ACTIONS(2705), - [anon_sym_BANG] = ACTIONS(2705), - [anon_sym_AMP] = ACTIONS(2705), - [anon_sym_PIPE] = ACTIONS(2705), - [anon_sym_LT] = ACTIONS(2705), - [anon_sym_DOT_DOT] = ACTIONS(2705), - [anon_sym_COLON_COLON] = ACTIONS(2705), - [anon_sym_POUND] = ACTIONS(2705), - [anon_sym_SQUOTE] = ACTIONS(2707), - [anon_sym_async] = ACTIONS(2707), - [anon_sym_break] = ACTIONS(2707), - [anon_sym_const] = ACTIONS(2707), - [anon_sym_continue] = ACTIONS(2707), - [anon_sym_default] = ACTIONS(2707), - [anon_sym_enum] = ACTIONS(2707), - [anon_sym_fn] = ACTIONS(2707), - [anon_sym_for] = ACTIONS(2707), - [anon_sym_gen] = ACTIONS(2707), - [anon_sym_if] = ACTIONS(2707), - [anon_sym_impl] = ACTIONS(2707), - [anon_sym_let] = ACTIONS(2707), - [anon_sym_loop] = ACTIONS(2707), - [anon_sym_match] = ACTIONS(2707), - [anon_sym_mod] = ACTIONS(2707), - [anon_sym_pub] = ACTIONS(2707), - [anon_sym_return] = ACTIONS(2707), - [anon_sym_static] = ACTIONS(2707), - [anon_sym_struct] = ACTIONS(2707), - [anon_sym_trait] = ACTIONS(2707), - [anon_sym_type] = ACTIONS(2707), - [anon_sym_union] = ACTIONS(2707), - [anon_sym_unsafe] = ACTIONS(2707), - [anon_sym_use] = ACTIONS(2707), - [anon_sym_while] = ACTIONS(2707), - [anon_sym_extern] = ACTIONS(2707), - [anon_sym_raw] = ACTIONS(2707), - [anon_sym_yield] = ACTIONS(2707), - [anon_sym_move] = ACTIONS(2707), - [anon_sym_try] = ACTIONS(2707), - [sym_integer_literal] = ACTIONS(2705), - [aux_sym_string_literal_token1] = ACTIONS(2705), - [sym_char_literal] = ACTIONS(2705), - [anon_sym_true] = ACTIONS(2707), - [anon_sym_false] = ACTIONS(2707), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2707), - [sym_super] = ACTIONS(2707), - [sym_crate] = ACTIONS(2707), - [sym_metavariable] = ACTIONS(2705), - [sym__raw_string_literal_start] = ACTIONS(2705), - [sym_float_literal] = ACTIONS(2705), - }, - [STATE(693)] = { - [sym_line_comment] = STATE(693), - [sym_block_comment] = STATE(693), - [ts_builtin_sym_end] = ACTIONS(2709), - [sym_identifier] = ACTIONS(2711), - [anon_sym_SEMI] = ACTIONS(2709), - [anon_sym_macro_rules_BANG] = ACTIONS(2709), - [anon_sym_LPAREN] = ACTIONS(2709), - [anon_sym_LBRACK] = ACTIONS(2709), - [anon_sym_LBRACE] = ACTIONS(2709), - [anon_sym_RBRACE] = ACTIONS(2709), - [anon_sym_STAR] = ACTIONS(2709), - [anon_sym_u8] = ACTIONS(2711), - [anon_sym_i8] = ACTIONS(2711), - [anon_sym_u16] = ACTIONS(2711), - [anon_sym_i16] = ACTIONS(2711), - [anon_sym_u32] = ACTIONS(2711), - [anon_sym_i32] = ACTIONS(2711), - [anon_sym_u64] = ACTIONS(2711), - [anon_sym_i64] = ACTIONS(2711), - [anon_sym_u128] = ACTIONS(2711), - [anon_sym_i128] = ACTIONS(2711), - [anon_sym_isize] = ACTIONS(2711), - [anon_sym_usize] = ACTIONS(2711), - [anon_sym_f32] = ACTIONS(2711), - [anon_sym_f64] = ACTIONS(2711), - [anon_sym_bool] = ACTIONS(2711), - [anon_sym_str] = ACTIONS(2711), - [anon_sym_char] = ACTIONS(2711), - [anon_sym_DASH] = ACTIONS(2709), - [anon_sym_BANG] = ACTIONS(2709), - [anon_sym_AMP] = ACTIONS(2709), - [anon_sym_PIPE] = ACTIONS(2709), - [anon_sym_LT] = ACTIONS(2709), - [anon_sym_DOT_DOT] = ACTIONS(2709), - [anon_sym_COLON_COLON] = ACTIONS(2709), - [anon_sym_POUND] = ACTIONS(2709), - [anon_sym_SQUOTE] = ACTIONS(2711), - [anon_sym_async] = ACTIONS(2711), - [anon_sym_break] = ACTIONS(2711), - [anon_sym_const] = ACTIONS(2711), - [anon_sym_continue] = ACTIONS(2711), - [anon_sym_default] = ACTIONS(2711), - [anon_sym_enum] = ACTIONS(2711), - [anon_sym_fn] = ACTIONS(2711), - [anon_sym_for] = ACTIONS(2711), - [anon_sym_gen] = ACTIONS(2711), - [anon_sym_if] = ACTIONS(2711), - [anon_sym_impl] = ACTIONS(2711), - [anon_sym_let] = ACTIONS(2711), - [anon_sym_loop] = ACTIONS(2711), - [anon_sym_match] = ACTIONS(2711), - [anon_sym_mod] = ACTIONS(2711), - [anon_sym_pub] = ACTIONS(2711), - [anon_sym_return] = ACTIONS(2711), - [anon_sym_static] = ACTIONS(2711), - [anon_sym_struct] = ACTIONS(2711), - [anon_sym_trait] = ACTIONS(2711), - [anon_sym_type] = ACTIONS(2711), - [anon_sym_union] = ACTIONS(2711), - [anon_sym_unsafe] = ACTIONS(2711), - [anon_sym_use] = ACTIONS(2711), - [anon_sym_while] = ACTIONS(2711), - [anon_sym_extern] = ACTIONS(2711), - [anon_sym_raw] = ACTIONS(2711), - [anon_sym_yield] = ACTIONS(2711), - [anon_sym_move] = ACTIONS(2711), - [anon_sym_try] = ACTIONS(2711), - [sym_integer_literal] = ACTIONS(2709), - [aux_sym_string_literal_token1] = ACTIONS(2709), - [sym_char_literal] = ACTIONS(2709), - [anon_sym_true] = ACTIONS(2711), - [anon_sym_false] = ACTIONS(2711), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2711), - [sym_super] = ACTIONS(2711), - [sym_crate] = ACTIONS(2711), - [sym_metavariable] = ACTIONS(2709), - [sym__raw_string_literal_start] = ACTIONS(2709), - [sym_float_literal] = ACTIONS(2709), - }, - [STATE(694)] = { - [sym_empty_statement] = STATE(1378), - [sym_macro_definition] = STATE(1378), - [sym_attribute_item] = STATE(1378), - [sym_inner_attribute_item] = STATE(1378), - [sym_mod_item] = STATE(1378), - [sym_foreign_mod_item] = STATE(1378), - [sym_struct_item] = STATE(1378), - [sym_union_item] = STATE(1378), - [sym_enum_item] = STATE(1378), - [sym_extern_crate_declaration] = STATE(1378), - [sym_const_item] = STATE(1378), - [sym_static_item] = STATE(1378), - [sym_type_item] = STATE(1378), - [sym_function_item] = STATE(1378), - [sym_function_signature_item] = STATE(1378), - [sym_function_modifiers] = STATE(3785), - [sym_impl_item] = STATE(1378), - [sym_trait_item] = STATE(1378), - [sym_associated_type] = STATE(1378), - [sym_let_declaration] = STATE(1378), - [sym_use_declaration] = STATE(1378), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2035), - [sym_bracketed_type] = STATE(3740), - [sym_generic_type_with_turbofish] = STATE(3804), - [sym_macro_invocation] = STATE(1378), - [sym_scoped_identifier] = STATE(3417), - [sym_line_comment] = STATE(694), - [sym_block_comment] = STATE(694), - [aux_sym_declaration_list_repeat1] = STATE(701), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(2291), - [anon_sym_SEMI] = ACTIONS(2293), - [anon_sym_macro_rules_BANG] = ACTIONS(2295), - [anon_sym_RBRACE] = ACTIONS(2713), - [anon_sym_u8] = ACTIONS(2299), - [anon_sym_i8] = ACTIONS(2299), - [anon_sym_u16] = ACTIONS(2299), - [anon_sym_i16] = ACTIONS(2299), - [anon_sym_u32] = ACTIONS(2299), - [anon_sym_i32] = ACTIONS(2299), - [anon_sym_u64] = ACTIONS(2299), - [anon_sym_i64] = ACTIONS(2299), - [anon_sym_u128] = ACTIONS(2299), - [anon_sym_i128] = ACTIONS(2299), - [anon_sym_isize] = ACTIONS(2299), - [anon_sym_usize] = ACTIONS(2299), - [anon_sym_f32] = ACTIONS(2299), - [anon_sym_f64] = ACTIONS(2299), - [anon_sym_bool] = ACTIONS(2299), - [anon_sym_str] = ACTIONS(2299), - [anon_sym_char] = ACTIONS(2299), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2301), - [anon_sym_POUND] = ACTIONS(2303), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(2305), - [anon_sym_default] = ACTIONS(2307), - [anon_sym_enum] = ACTIONS(2309), - [anon_sym_fn] = ACTIONS(2311), - [anon_sym_gen] = ACTIONS(2313), - [anon_sym_impl] = ACTIONS(2315), - [anon_sym_let] = ACTIONS(2317), - [anon_sym_mod] = ACTIONS(2319), + [anon_sym_u8] = ACTIONS(2319), + [anon_sym_i8] = ACTIONS(2319), + [anon_sym_u16] = ACTIONS(2319), + [anon_sym_i16] = ACTIONS(2319), + [anon_sym_u32] = ACTIONS(2319), + [anon_sym_i32] = ACTIONS(2319), + [anon_sym_u64] = ACTIONS(2319), + [anon_sym_i64] = ACTIONS(2319), + [anon_sym_u128] = ACTIONS(2319), + [anon_sym_i128] = ACTIONS(2319), + [anon_sym_isize] = ACTIONS(2319), + [anon_sym_usize] = ACTIONS(2319), + [anon_sym_f32] = ACTIONS(2319), + [anon_sym_f64] = ACTIONS(2319), + [anon_sym_bool] = ACTIONS(2319), + [anon_sym_str] = ACTIONS(2319), + [anon_sym_char] = ACTIONS(2319), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(2321), + [anon_sym_POUND] = ACTIONS(2323), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(2325), + [anon_sym_default] = ACTIONS(2327), + [anon_sym_enum] = ACTIONS(2329), + [anon_sym_fn] = ACTIONS(2331), + [anon_sym_gen] = ACTIONS(2333), + [anon_sym_impl] = ACTIONS(2335), + [anon_sym_let] = ACTIONS(2337), + [anon_sym_mod] = ACTIONS(2339), [anon_sym_pub] = ACTIONS(69), - [anon_sym_static] = ACTIONS(2321), - [anon_sym_struct] = ACTIONS(2323), - [anon_sym_trait] = ACTIONS(2325), - [anon_sym_type] = ACTIONS(2327), - [anon_sym_union] = ACTIONS(2329), - [anon_sym_unsafe] = ACTIONS(2331), - [anon_sym_use] = ACTIONS(2333), - [anon_sym_extern] = ACTIONS(2335), - [anon_sym_raw] = ACTIONS(2313), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2337), - [sym_super] = ACTIONS(2337), - [sym_crate] = ACTIONS(2339), - [sym_metavariable] = ACTIONS(2341), - }, - [STATE(695)] = { - [sym_line_comment] = STATE(695), - [sym_block_comment] = STATE(695), + [anon_sym_static] = ACTIONS(2341), + [anon_sym_struct] = ACTIONS(2343), + [anon_sym_trait] = ACTIONS(2345), + [anon_sym_type] = ACTIONS(2347), + [anon_sym_union] = ACTIONS(2349), + [anon_sym_unsafe] = ACTIONS(2351), + [anon_sym_use] = ACTIONS(2353), + [anon_sym_extern] = ACTIONS(2355), + [anon_sym_raw] = ACTIONS(2333), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2357), + [sym_super] = ACTIONS(2357), + [sym_crate] = ACTIONS(2359), + [sym_metavariable] = ACTIONS(2361), + }, + [686] = { + [sym_line_comment] = STATE(686), + [sym_block_comment] = STATE(686), + [ts_builtin_sym_end] = ACTIONS(2703), + [sym_identifier] = ACTIONS(2705), + [anon_sym_SEMI] = ACTIONS(2703), + [anon_sym_macro_rules_BANG] = ACTIONS(2703), + [anon_sym_LPAREN] = ACTIONS(2703), + [anon_sym_LBRACK] = ACTIONS(2703), + [anon_sym_LBRACE] = ACTIONS(2703), + [anon_sym_RBRACE] = ACTIONS(2703), + [anon_sym_STAR] = ACTIONS(2703), + [anon_sym_u8] = ACTIONS(2705), + [anon_sym_i8] = ACTIONS(2705), + [anon_sym_u16] = ACTIONS(2705), + [anon_sym_i16] = ACTIONS(2705), + [anon_sym_u32] = ACTIONS(2705), + [anon_sym_i32] = ACTIONS(2705), + [anon_sym_u64] = ACTIONS(2705), + [anon_sym_i64] = ACTIONS(2705), + [anon_sym_u128] = ACTIONS(2705), + [anon_sym_i128] = ACTIONS(2705), + [anon_sym_isize] = ACTIONS(2705), + [anon_sym_usize] = ACTIONS(2705), + [anon_sym_f32] = ACTIONS(2705), + [anon_sym_f64] = ACTIONS(2705), + [anon_sym_bool] = ACTIONS(2705), + [anon_sym_str] = ACTIONS(2705), + [anon_sym_char] = ACTIONS(2705), + [anon_sym_DASH] = ACTIONS(2703), + [anon_sym_BANG] = ACTIONS(2703), + [anon_sym_AMP] = ACTIONS(2703), + [anon_sym_PIPE] = ACTIONS(2703), + [anon_sym_LT] = ACTIONS(2703), + [anon_sym_DOT_DOT] = ACTIONS(2703), + [anon_sym_COLON_COLON] = ACTIONS(2703), + [anon_sym_POUND] = ACTIONS(2703), + [anon_sym_SQUOTE] = ACTIONS(2705), + [anon_sym_async] = ACTIONS(2705), + [anon_sym_break] = ACTIONS(2705), + [anon_sym_const] = ACTIONS(2705), + [anon_sym_continue] = ACTIONS(2705), + [anon_sym_default] = ACTIONS(2705), + [anon_sym_enum] = ACTIONS(2705), + [anon_sym_fn] = ACTIONS(2705), + [anon_sym_for] = ACTIONS(2705), + [anon_sym_gen] = ACTIONS(2705), + [anon_sym_if] = ACTIONS(2705), + [anon_sym_impl] = ACTIONS(2705), + [anon_sym_let] = ACTIONS(2705), + [anon_sym_loop] = ACTIONS(2705), + [anon_sym_match] = ACTIONS(2705), + [anon_sym_mod] = ACTIONS(2705), + [anon_sym_pub] = ACTIONS(2705), + [anon_sym_return] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(2705), + [anon_sym_struct] = ACTIONS(2705), + [anon_sym_trait] = ACTIONS(2705), + [anon_sym_type] = ACTIONS(2705), + [anon_sym_union] = ACTIONS(2705), + [anon_sym_unsafe] = ACTIONS(2705), + [anon_sym_use] = ACTIONS(2705), + [anon_sym_while] = ACTIONS(2705), + [anon_sym_extern] = ACTIONS(2705), + [anon_sym_raw] = ACTIONS(2705), + [anon_sym_yield] = ACTIONS(2705), + [anon_sym_move] = ACTIONS(2705), + [anon_sym_try] = ACTIONS(2705), + [sym_integer_literal] = ACTIONS(2703), + [aux_sym_string_literal_token1] = ACTIONS(2703), + [sym_char_literal] = ACTIONS(2703), + [anon_sym_true] = ACTIONS(2705), + [anon_sym_false] = ACTIONS(2705), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2705), + [sym_super] = ACTIONS(2705), + [sym_crate] = ACTIONS(2705), + [sym_metavariable] = ACTIONS(2703), + [sym__raw_string_literal_start] = ACTIONS(2703), + [sym_float_literal] = ACTIONS(2703), + }, + [687] = { + [sym_line_comment] = STATE(687), + [sym_block_comment] = STATE(687), + [ts_builtin_sym_end] = ACTIONS(2707), + [sym_identifier] = ACTIONS(2709), + [anon_sym_SEMI] = ACTIONS(2707), + [anon_sym_macro_rules_BANG] = ACTIONS(2707), + [anon_sym_LPAREN] = ACTIONS(2707), + [anon_sym_LBRACK] = ACTIONS(2707), + [anon_sym_LBRACE] = ACTIONS(2707), + [anon_sym_RBRACE] = ACTIONS(2707), + [anon_sym_STAR] = ACTIONS(2707), + [anon_sym_u8] = ACTIONS(2709), + [anon_sym_i8] = ACTIONS(2709), + [anon_sym_u16] = ACTIONS(2709), + [anon_sym_i16] = ACTIONS(2709), + [anon_sym_u32] = ACTIONS(2709), + [anon_sym_i32] = ACTIONS(2709), + [anon_sym_u64] = ACTIONS(2709), + [anon_sym_i64] = ACTIONS(2709), + [anon_sym_u128] = ACTIONS(2709), + [anon_sym_i128] = ACTIONS(2709), + [anon_sym_isize] = ACTIONS(2709), + [anon_sym_usize] = ACTIONS(2709), + [anon_sym_f32] = ACTIONS(2709), + [anon_sym_f64] = ACTIONS(2709), + [anon_sym_bool] = ACTIONS(2709), + [anon_sym_str] = ACTIONS(2709), + [anon_sym_char] = ACTIONS(2709), + [anon_sym_DASH] = ACTIONS(2707), + [anon_sym_BANG] = ACTIONS(2707), + [anon_sym_AMP] = ACTIONS(2707), + [anon_sym_PIPE] = ACTIONS(2707), + [anon_sym_LT] = ACTIONS(2707), + [anon_sym_DOT_DOT] = ACTIONS(2707), + [anon_sym_COLON_COLON] = ACTIONS(2707), + [anon_sym_POUND] = ACTIONS(2707), + [anon_sym_SQUOTE] = ACTIONS(2709), + [anon_sym_async] = ACTIONS(2709), + [anon_sym_break] = ACTIONS(2709), + [anon_sym_const] = ACTIONS(2709), + [anon_sym_continue] = ACTIONS(2709), + [anon_sym_default] = ACTIONS(2709), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_fn] = ACTIONS(2709), + [anon_sym_for] = ACTIONS(2709), + [anon_sym_gen] = ACTIONS(2709), + [anon_sym_if] = ACTIONS(2709), + [anon_sym_impl] = ACTIONS(2709), + [anon_sym_let] = ACTIONS(2709), + [anon_sym_loop] = ACTIONS(2709), + [anon_sym_match] = ACTIONS(2709), + [anon_sym_mod] = ACTIONS(2709), + [anon_sym_pub] = ACTIONS(2709), + [anon_sym_return] = ACTIONS(2709), + [anon_sym_static] = ACTIONS(2709), + [anon_sym_struct] = ACTIONS(2709), + [anon_sym_trait] = ACTIONS(2709), + [anon_sym_type] = ACTIONS(2709), + [anon_sym_union] = ACTIONS(2709), + [anon_sym_unsafe] = ACTIONS(2709), + [anon_sym_use] = ACTIONS(2709), + [anon_sym_while] = ACTIONS(2709), + [anon_sym_extern] = ACTIONS(2709), + [anon_sym_raw] = ACTIONS(2709), + [anon_sym_yield] = ACTIONS(2709), + [anon_sym_move] = ACTIONS(2709), + [anon_sym_try] = ACTIONS(2709), + [sym_integer_literal] = ACTIONS(2707), + [aux_sym_string_literal_token1] = ACTIONS(2707), + [sym_char_literal] = ACTIONS(2707), + [anon_sym_true] = ACTIONS(2709), + [anon_sym_false] = ACTIONS(2709), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2709), + [sym_super] = ACTIONS(2709), + [sym_crate] = ACTIONS(2709), + [sym_metavariable] = ACTIONS(2707), + [sym__raw_string_literal_start] = ACTIONS(2707), + [sym_float_literal] = ACTIONS(2707), + }, + [688] = { + [sym_line_comment] = STATE(688), + [sym_block_comment] = STATE(688), + [ts_builtin_sym_end] = ACTIONS(2711), + [sym_identifier] = ACTIONS(2713), + [anon_sym_SEMI] = ACTIONS(2711), + [anon_sym_macro_rules_BANG] = ACTIONS(2711), + [anon_sym_LPAREN] = ACTIONS(2711), + [anon_sym_LBRACK] = ACTIONS(2711), + [anon_sym_LBRACE] = ACTIONS(2711), + [anon_sym_RBRACE] = ACTIONS(2711), + [anon_sym_STAR] = ACTIONS(2711), + [anon_sym_u8] = ACTIONS(2713), + [anon_sym_i8] = ACTIONS(2713), + [anon_sym_u16] = ACTIONS(2713), + [anon_sym_i16] = ACTIONS(2713), + [anon_sym_u32] = ACTIONS(2713), + [anon_sym_i32] = ACTIONS(2713), + [anon_sym_u64] = ACTIONS(2713), + [anon_sym_i64] = ACTIONS(2713), + [anon_sym_u128] = ACTIONS(2713), + [anon_sym_i128] = ACTIONS(2713), + [anon_sym_isize] = ACTIONS(2713), + [anon_sym_usize] = ACTIONS(2713), + [anon_sym_f32] = ACTIONS(2713), + [anon_sym_f64] = ACTIONS(2713), + [anon_sym_bool] = ACTIONS(2713), + [anon_sym_str] = ACTIONS(2713), + [anon_sym_char] = ACTIONS(2713), + [anon_sym_DASH] = ACTIONS(2711), + [anon_sym_BANG] = ACTIONS(2711), + [anon_sym_AMP] = ACTIONS(2711), + [anon_sym_PIPE] = ACTIONS(2711), + [anon_sym_LT] = ACTIONS(2711), + [anon_sym_DOT_DOT] = ACTIONS(2711), + [anon_sym_COLON_COLON] = ACTIONS(2711), + [anon_sym_POUND] = ACTIONS(2711), + [anon_sym_SQUOTE] = ACTIONS(2713), + [anon_sym_async] = ACTIONS(2713), + [anon_sym_break] = ACTIONS(2713), + [anon_sym_const] = ACTIONS(2713), + [anon_sym_continue] = ACTIONS(2713), + [anon_sym_default] = ACTIONS(2713), + [anon_sym_enum] = ACTIONS(2713), + [anon_sym_fn] = ACTIONS(2713), + [anon_sym_for] = ACTIONS(2713), + [anon_sym_gen] = ACTIONS(2713), + [anon_sym_if] = ACTIONS(2713), + [anon_sym_impl] = ACTIONS(2713), + [anon_sym_let] = ACTIONS(2713), + [anon_sym_loop] = ACTIONS(2713), + [anon_sym_match] = ACTIONS(2713), + [anon_sym_mod] = ACTIONS(2713), + [anon_sym_pub] = ACTIONS(2713), + [anon_sym_return] = ACTIONS(2713), + [anon_sym_static] = ACTIONS(2713), + [anon_sym_struct] = ACTIONS(2713), + [anon_sym_trait] = ACTIONS(2713), + [anon_sym_type] = ACTIONS(2713), + [anon_sym_union] = ACTIONS(2713), + [anon_sym_unsafe] = ACTIONS(2713), + [anon_sym_use] = ACTIONS(2713), + [anon_sym_while] = ACTIONS(2713), + [anon_sym_extern] = ACTIONS(2713), + [anon_sym_raw] = ACTIONS(2713), + [anon_sym_yield] = ACTIONS(2713), + [anon_sym_move] = ACTIONS(2713), + [anon_sym_try] = ACTIONS(2713), + [sym_integer_literal] = ACTIONS(2711), + [aux_sym_string_literal_token1] = ACTIONS(2711), + [sym_char_literal] = ACTIONS(2711), + [anon_sym_true] = ACTIONS(2713), + [anon_sym_false] = ACTIONS(2713), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2713), + [sym_super] = ACTIONS(2713), + [sym_crate] = ACTIONS(2713), + [sym_metavariable] = ACTIONS(2711), + [sym__raw_string_literal_start] = ACTIONS(2711), + [sym_float_literal] = ACTIONS(2711), + }, + [689] = { + [sym_line_comment] = STATE(689), + [sym_block_comment] = STATE(689), [ts_builtin_sym_end] = ACTIONS(2715), [sym_identifier] = ACTIONS(2717), [anon_sym_SEMI] = ACTIONS(2715), @@ -88787,9 +87771,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2715), [sym_float_literal] = ACTIONS(2715), }, - [STATE(696)] = { - [sym_line_comment] = STATE(696), - [sym_block_comment] = STATE(696), + [690] = { + [sym_line_comment] = STATE(690), + [sym_block_comment] = STATE(690), [ts_builtin_sym_end] = ACTIONS(2719), [sym_identifier] = ACTIONS(2721), [anon_sym_SEMI] = ACTIONS(2719), @@ -88869,9 +87853,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2719), [sym_float_literal] = ACTIONS(2719), }, - [STATE(697)] = { - [sym_line_comment] = STATE(697), - [sym_block_comment] = STATE(697), + [691] = { + [sym_line_comment] = STATE(691), + [sym_block_comment] = STATE(691), [ts_builtin_sym_end] = ACTIONS(2723), [sym_identifier] = ACTIONS(2725), [anon_sym_SEMI] = ACTIONS(2723), @@ -88951,9 +87935,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2723), [sym_float_literal] = ACTIONS(2723), }, - [STATE(698)] = { - [sym_line_comment] = STATE(698), - [sym_block_comment] = STATE(698), + [692] = { + [sym_line_comment] = STATE(692), + [sym_block_comment] = STATE(692), [ts_builtin_sym_end] = ACTIONS(2727), [sym_identifier] = ACTIONS(2729), [anon_sym_SEMI] = ACTIONS(2727), @@ -89033,9 +88017,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2727), [sym_float_literal] = ACTIONS(2727), }, - [STATE(699)] = { - [sym_line_comment] = STATE(699), - [sym_block_comment] = STATE(699), + [693] = { + [sym_line_comment] = STATE(693), + [sym_block_comment] = STATE(693), [ts_builtin_sym_end] = ACTIONS(2731), [sym_identifier] = ACTIONS(2733), [anon_sym_SEMI] = ACTIONS(2731), @@ -89115,173 +88099,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2731), [sym_float_literal] = ACTIONS(2731), }, - [STATE(700)] = { - [sym_line_comment] = STATE(700), - [sym_block_comment] = STATE(700), - [ts_builtin_sym_end] = ACTIONS(2735), - [sym_identifier] = ACTIONS(2737), - [anon_sym_SEMI] = ACTIONS(2735), - [anon_sym_macro_rules_BANG] = ACTIONS(2735), - [anon_sym_LPAREN] = ACTIONS(2735), - [anon_sym_LBRACK] = ACTIONS(2735), - [anon_sym_LBRACE] = ACTIONS(2735), + [694] = { + [sym_empty_statement] = STATE(1370), + [sym_macro_definition] = STATE(1370), + [sym_attribute_item] = STATE(1370), + [sym_inner_attribute_item] = STATE(1370), + [sym_mod_item] = STATE(1370), + [sym_foreign_mod_item] = STATE(1370), + [sym_struct_item] = STATE(1370), + [sym_union_item] = STATE(1370), + [sym_enum_item] = STATE(1370), + [sym_extern_crate_declaration] = STATE(1370), + [sym_const_item] = STATE(1370), + [sym_static_item] = STATE(1370), + [sym_type_item] = STATE(1370), + [sym_function_item] = STATE(1370), + [sym_function_signature_item] = STATE(1370), + [sym_function_modifiers] = STATE(3775), + [sym_impl_item] = STATE(1370), + [sym_trait_item] = STATE(1370), + [sym_associated_type] = STATE(1370), + [sym_let_declaration] = STATE(1370), + [sym_use_declaration] = STATE(1370), + [sym_extern_modifier] = STATE(2242), + [sym_visibility_modifier] = STATE(2025), + [sym_bracketed_type] = STATE(3723), + [sym_generic_type_with_turbofish] = STATE(3791), + [sym_macro_invocation] = STATE(1370), + [sym_scoped_identifier] = STATE(3388), + [sym_line_comment] = STATE(694), + [sym_block_comment] = STATE(694), + [aux_sym_declaration_list_repeat1] = STATE(635), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(2311), + [anon_sym_SEMI] = ACTIONS(2313), + [anon_sym_macro_rules_BANG] = ACTIONS(2315), [anon_sym_RBRACE] = ACTIONS(2735), - [anon_sym_STAR] = ACTIONS(2735), - [anon_sym_u8] = ACTIONS(2737), - [anon_sym_i8] = ACTIONS(2737), - [anon_sym_u16] = ACTIONS(2737), - [anon_sym_i16] = ACTIONS(2737), - [anon_sym_u32] = ACTIONS(2737), - [anon_sym_i32] = ACTIONS(2737), - [anon_sym_u64] = ACTIONS(2737), - [anon_sym_i64] = ACTIONS(2737), - [anon_sym_u128] = ACTIONS(2737), - [anon_sym_i128] = ACTIONS(2737), - [anon_sym_isize] = ACTIONS(2737), - [anon_sym_usize] = ACTIONS(2737), - [anon_sym_f32] = ACTIONS(2737), - [anon_sym_f64] = ACTIONS(2737), - [anon_sym_bool] = ACTIONS(2737), - [anon_sym_str] = ACTIONS(2737), - [anon_sym_char] = ACTIONS(2737), - [anon_sym_DASH] = ACTIONS(2735), - [anon_sym_BANG] = ACTIONS(2735), - [anon_sym_AMP] = ACTIONS(2735), - [anon_sym_PIPE] = ACTIONS(2735), - [anon_sym_LT] = ACTIONS(2735), - [anon_sym_DOT_DOT] = ACTIONS(2735), - [anon_sym_COLON_COLON] = ACTIONS(2735), - [anon_sym_POUND] = ACTIONS(2735), - [anon_sym_SQUOTE] = ACTIONS(2737), - [anon_sym_async] = ACTIONS(2737), - [anon_sym_break] = ACTIONS(2737), - [anon_sym_const] = ACTIONS(2737), - [anon_sym_continue] = ACTIONS(2737), - [anon_sym_default] = ACTIONS(2737), - [anon_sym_enum] = ACTIONS(2737), - [anon_sym_fn] = ACTIONS(2737), - [anon_sym_for] = ACTIONS(2737), - [anon_sym_gen] = ACTIONS(2737), - [anon_sym_if] = ACTIONS(2737), - [anon_sym_impl] = ACTIONS(2737), - [anon_sym_let] = ACTIONS(2737), - [anon_sym_loop] = ACTIONS(2737), - [anon_sym_match] = ACTIONS(2737), - [anon_sym_mod] = ACTIONS(2737), - [anon_sym_pub] = ACTIONS(2737), - [anon_sym_return] = ACTIONS(2737), - [anon_sym_static] = ACTIONS(2737), - [anon_sym_struct] = ACTIONS(2737), - [anon_sym_trait] = ACTIONS(2737), - [anon_sym_type] = ACTIONS(2737), - [anon_sym_union] = ACTIONS(2737), - [anon_sym_unsafe] = ACTIONS(2737), - [anon_sym_use] = ACTIONS(2737), - [anon_sym_while] = ACTIONS(2737), - [anon_sym_extern] = ACTIONS(2737), - [anon_sym_raw] = ACTIONS(2737), - [anon_sym_yield] = ACTIONS(2737), - [anon_sym_move] = ACTIONS(2737), - [anon_sym_try] = ACTIONS(2737), - [sym_integer_literal] = ACTIONS(2735), - [aux_sym_string_literal_token1] = ACTIONS(2735), - [sym_char_literal] = ACTIONS(2735), - [anon_sym_true] = ACTIONS(2737), - [anon_sym_false] = ACTIONS(2737), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2737), - [sym_super] = ACTIONS(2737), - [sym_crate] = ACTIONS(2737), - [sym_metavariable] = ACTIONS(2735), - [sym__raw_string_literal_start] = ACTIONS(2735), - [sym_float_literal] = ACTIONS(2735), - }, - [STATE(701)] = { - [sym_empty_statement] = STATE(1378), - [sym_macro_definition] = STATE(1378), - [sym_attribute_item] = STATE(1378), - [sym_inner_attribute_item] = STATE(1378), - [sym_mod_item] = STATE(1378), - [sym_foreign_mod_item] = STATE(1378), - [sym_struct_item] = STATE(1378), - [sym_union_item] = STATE(1378), - [sym_enum_item] = STATE(1378), - [sym_extern_crate_declaration] = STATE(1378), - [sym_const_item] = STATE(1378), - [sym_static_item] = STATE(1378), - [sym_type_item] = STATE(1378), - [sym_function_item] = STATE(1378), - [sym_function_signature_item] = STATE(1378), - [sym_function_modifiers] = STATE(3785), - [sym_impl_item] = STATE(1378), - [sym_trait_item] = STATE(1378), - [sym_associated_type] = STATE(1378), - [sym_let_declaration] = STATE(1378), - [sym_use_declaration] = STATE(1378), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2035), - [sym_bracketed_type] = STATE(3740), - [sym_generic_type_with_turbofish] = STATE(3804), - [sym_macro_invocation] = STATE(1378), - [sym_scoped_identifier] = STATE(3417), - [sym_line_comment] = STATE(701), - [sym_block_comment] = STATE(701), - [aux_sym_declaration_list_repeat1] = STATE(636), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(2291), - [anon_sym_SEMI] = ACTIONS(2293), - [anon_sym_macro_rules_BANG] = ACTIONS(2295), - [anon_sym_RBRACE] = ACTIONS(2739), - [anon_sym_u8] = ACTIONS(2299), - [anon_sym_i8] = ACTIONS(2299), - [anon_sym_u16] = ACTIONS(2299), - [anon_sym_i16] = ACTIONS(2299), - [anon_sym_u32] = ACTIONS(2299), - [anon_sym_i32] = ACTIONS(2299), - [anon_sym_u64] = ACTIONS(2299), - [anon_sym_i64] = ACTIONS(2299), - [anon_sym_u128] = ACTIONS(2299), - [anon_sym_i128] = ACTIONS(2299), - [anon_sym_isize] = ACTIONS(2299), - [anon_sym_usize] = ACTIONS(2299), - [anon_sym_f32] = ACTIONS(2299), - [anon_sym_f64] = ACTIONS(2299), - [anon_sym_bool] = ACTIONS(2299), - [anon_sym_str] = ACTIONS(2299), - [anon_sym_char] = ACTIONS(2299), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2301), - [anon_sym_POUND] = ACTIONS(2303), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(2305), - [anon_sym_default] = ACTIONS(2307), - [anon_sym_enum] = ACTIONS(2309), - [anon_sym_fn] = ACTIONS(2311), - [anon_sym_gen] = ACTIONS(2313), - [anon_sym_impl] = ACTIONS(2315), - [anon_sym_let] = ACTIONS(2317), - [anon_sym_mod] = ACTIONS(2319), + [anon_sym_u8] = ACTIONS(2319), + [anon_sym_i8] = ACTIONS(2319), + [anon_sym_u16] = ACTIONS(2319), + [anon_sym_i16] = ACTIONS(2319), + [anon_sym_u32] = ACTIONS(2319), + [anon_sym_i32] = ACTIONS(2319), + [anon_sym_u64] = ACTIONS(2319), + [anon_sym_i64] = ACTIONS(2319), + [anon_sym_u128] = ACTIONS(2319), + [anon_sym_i128] = ACTIONS(2319), + [anon_sym_isize] = ACTIONS(2319), + [anon_sym_usize] = ACTIONS(2319), + [anon_sym_f32] = ACTIONS(2319), + [anon_sym_f64] = ACTIONS(2319), + [anon_sym_bool] = ACTIONS(2319), + [anon_sym_str] = ACTIONS(2319), + [anon_sym_char] = ACTIONS(2319), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(2321), + [anon_sym_POUND] = ACTIONS(2323), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(2325), + [anon_sym_default] = ACTIONS(2327), + [anon_sym_enum] = ACTIONS(2329), + [anon_sym_fn] = ACTIONS(2331), + [anon_sym_gen] = ACTIONS(2333), + [anon_sym_impl] = ACTIONS(2335), + [anon_sym_let] = ACTIONS(2337), + [anon_sym_mod] = ACTIONS(2339), [anon_sym_pub] = ACTIONS(69), - [anon_sym_static] = ACTIONS(2321), - [anon_sym_struct] = ACTIONS(2323), - [anon_sym_trait] = ACTIONS(2325), - [anon_sym_type] = ACTIONS(2327), - [anon_sym_union] = ACTIONS(2329), - [anon_sym_unsafe] = ACTIONS(2331), - [anon_sym_use] = ACTIONS(2333), - [anon_sym_extern] = ACTIONS(2335), - [anon_sym_raw] = ACTIONS(2313), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2337), - [sym_super] = ACTIONS(2337), - [sym_crate] = ACTIONS(2339), - [sym_metavariable] = ACTIONS(2341), - }, - [STATE(702)] = { - [sym_line_comment] = STATE(702), - [sym_block_comment] = STATE(702), + [anon_sym_static] = ACTIONS(2341), + [anon_sym_struct] = ACTIONS(2343), + [anon_sym_trait] = ACTIONS(2345), + [anon_sym_type] = ACTIONS(2347), + [anon_sym_union] = ACTIONS(2349), + [anon_sym_unsafe] = ACTIONS(2351), + [anon_sym_use] = ACTIONS(2353), + [anon_sym_extern] = ACTIONS(2355), + [anon_sym_raw] = ACTIONS(2333), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2357), + [sym_super] = ACTIONS(2357), + [sym_crate] = ACTIONS(2359), + [sym_metavariable] = ACTIONS(2361), + }, + [695] = { + [sym_line_comment] = STATE(695), + [sym_block_comment] = STATE(695), + [ts_builtin_sym_end] = ACTIONS(2737), + [sym_identifier] = ACTIONS(2739), + [anon_sym_SEMI] = ACTIONS(2737), + [anon_sym_macro_rules_BANG] = ACTIONS(2737), + [anon_sym_LPAREN] = ACTIONS(2737), + [anon_sym_LBRACK] = ACTIONS(2737), + [anon_sym_LBRACE] = ACTIONS(2737), + [anon_sym_RBRACE] = ACTIONS(2737), + [anon_sym_STAR] = ACTIONS(2737), + [anon_sym_u8] = ACTIONS(2739), + [anon_sym_i8] = ACTIONS(2739), + [anon_sym_u16] = ACTIONS(2739), + [anon_sym_i16] = ACTIONS(2739), + [anon_sym_u32] = ACTIONS(2739), + [anon_sym_i32] = ACTIONS(2739), + [anon_sym_u64] = ACTIONS(2739), + [anon_sym_i64] = ACTIONS(2739), + [anon_sym_u128] = ACTIONS(2739), + [anon_sym_i128] = ACTIONS(2739), + [anon_sym_isize] = ACTIONS(2739), + [anon_sym_usize] = ACTIONS(2739), + [anon_sym_f32] = ACTIONS(2739), + [anon_sym_f64] = ACTIONS(2739), + [anon_sym_bool] = ACTIONS(2739), + [anon_sym_str] = ACTIONS(2739), + [anon_sym_char] = ACTIONS(2739), + [anon_sym_DASH] = ACTIONS(2737), + [anon_sym_BANG] = ACTIONS(2737), + [anon_sym_AMP] = ACTIONS(2737), + [anon_sym_PIPE] = ACTIONS(2737), + [anon_sym_LT] = ACTIONS(2737), + [anon_sym_DOT_DOT] = ACTIONS(2737), + [anon_sym_COLON_COLON] = ACTIONS(2737), + [anon_sym_POUND] = ACTIONS(2737), + [anon_sym_SQUOTE] = ACTIONS(2739), + [anon_sym_async] = ACTIONS(2739), + [anon_sym_break] = ACTIONS(2739), + [anon_sym_const] = ACTIONS(2739), + [anon_sym_continue] = ACTIONS(2739), + [anon_sym_default] = ACTIONS(2739), + [anon_sym_enum] = ACTIONS(2739), + [anon_sym_fn] = ACTIONS(2739), + [anon_sym_for] = ACTIONS(2739), + [anon_sym_gen] = ACTIONS(2739), + [anon_sym_if] = ACTIONS(2739), + [anon_sym_impl] = ACTIONS(2739), + [anon_sym_let] = ACTIONS(2739), + [anon_sym_loop] = ACTIONS(2739), + [anon_sym_match] = ACTIONS(2739), + [anon_sym_mod] = ACTIONS(2739), + [anon_sym_pub] = ACTIONS(2739), + [anon_sym_return] = ACTIONS(2739), + [anon_sym_static] = ACTIONS(2739), + [anon_sym_struct] = ACTIONS(2739), + [anon_sym_trait] = ACTIONS(2739), + [anon_sym_type] = ACTIONS(2739), + [anon_sym_union] = ACTIONS(2739), + [anon_sym_unsafe] = ACTIONS(2739), + [anon_sym_use] = ACTIONS(2739), + [anon_sym_while] = ACTIONS(2739), + [anon_sym_extern] = ACTIONS(2739), + [anon_sym_raw] = ACTIONS(2739), + [anon_sym_yield] = ACTIONS(2739), + [anon_sym_move] = ACTIONS(2739), + [anon_sym_try] = ACTIONS(2739), + [sym_integer_literal] = ACTIONS(2737), + [aux_sym_string_literal_token1] = ACTIONS(2737), + [sym_char_literal] = ACTIONS(2737), + [anon_sym_true] = ACTIONS(2739), + [anon_sym_false] = ACTIONS(2739), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2739), + [sym_super] = ACTIONS(2739), + [sym_crate] = ACTIONS(2739), + [sym_metavariable] = ACTIONS(2737), + [sym__raw_string_literal_start] = ACTIONS(2737), + [sym_float_literal] = ACTIONS(2737), + }, + [696] = { + [sym_line_comment] = STATE(696), + [sym_block_comment] = STATE(696), [ts_builtin_sym_end] = ACTIONS(2741), [sym_identifier] = ACTIONS(2743), [anon_sym_SEMI] = ACTIONS(2741), @@ -89361,9 +88345,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2741), [sym_float_literal] = ACTIONS(2741), }, - [STATE(703)] = { - [sym_line_comment] = STATE(703), - [sym_block_comment] = STATE(703), + [697] = { + [sym_line_comment] = STATE(697), + [sym_block_comment] = STATE(697), [ts_builtin_sym_end] = ACTIONS(2745), [sym_identifier] = ACTIONS(2747), [anon_sym_SEMI] = ACTIONS(2745), @@ -89443,9 +88427,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2745), [sym_float_literal] = ACTIONS(2745), }, - [STATE(704)] = { - [sym_line_comment] = STATE(704), - [sym_block_comment] = STATE(704), + [698] = { + [sym_line_comment] = STATE(698), + [sym_block_comment] = STATE(698), [ts_builtin_sym_end] = ACTIONS(2749), [sym_identifier] = ACTIONS(2751), [anon_sym_SEMI] = ACTIONS(2749), @@ -89525,9 +88509,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2749), [sym_float_literal] = ACTIONS(2749), }, - [STATE(705)] = { - [sym_line_comment] = STATE(705), - [sym_block_comment] = STATE(705), + [699] = { + [sym_line_comment] = STATE(699), + [sym_block_comment] = STATE(699), [ts_builtin_sym_end] = ACTIONS(2753), [sym_identifier] = ACTIONS(2755), [anon_sym_SEMI] = ACTIONS(2753), @@ -89607,9 +88591,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2753), [sym_float_literal] = ACTIONS(2753), }, - [STATE(706)] = { - [sym_line_comment] = STATE(706), - [sym_block_comment] = STATE(706), + [700] = { + [sym_line_comment] = STATE(700), + [sym_block_comment] = STATE(700), [ts_builtin_sym_end] = ACTIONS(2757), [sym_identifier] = ACTIONS(2759), [anon_sym_SEMI] = ACTIONS(2757), @@ -89689,9 +88673,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2757), [sym_float_literal] = ACTIONS(2757), }, - [STATE(707)] = { - [sym_line_comment] = STATE(707), - [sym_block_comment] = STATE(707), + [701] = { + [sym_line_comment] = STATE(701), + [sym_block_comment] = STATE(701), [ts_builtin_sym_end] = ACTIONS(2761), [sym_identifier] = ACTIONS(2763), [anon_sym_SEMI] = ACTIONS(2761), @@ -89771,9 +88755,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2761), [sym_float_literal] = ACTIONS(2761), }, - [STATE(708)] = { - [sym_line_comment] = STATE(708), - [sym_block_comment] = STATE(708), + [702] = { + [sym_line_comment] = STATE(702), + [sym_block_comment] = STATE(702), [ts_builtin_sym_end] = ACTIONS(2765), [sym_identifier] = ACTIONS(2767), [anon_sym_SEMI] = ACTIONS(2765), @@ -89853,9 +88837,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2765), [sym_float_literal] = ACTIONS(2765), }, - [STATE(709)] = { - [sym_line_comment] = STATE(709), - [sym_block_comment] = STATE(709), + [703] = { + [sym_line_comment] = STATE(703), + [sym_block_comment] = STATE(703), [ts_builtin_sym_end] = ACTIONS(2769), [sym_identifier] = ACTIONS(2771), [anon_sym_SEMI] = ACTIONS(2769), @@ -89935,9 +88919,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2769), [sym_float_literal] = ACTIONS(2769), }, - [STATE(710)] = { - [sym_line_comment] = STATE(710), - [sym_block_comment] = STATE(710), + [704] = { + [sym_line_comment] = STATE(704), + [sym_block_comment] = STATE(704), [ts_builtin_sym_end] = ACTIONS(2773), [sym_identifier] = ACTIONS(2775), [anon_sym_SEMI] = ACTIONS(2773), @@ -90017,9 +89001,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2773), [sym_float_literal] = ACTIONS(2773), }, - [STATE(711)] = { - [sym_line_comment] = STATE(711), - [sym_block_comment] = STATE(711), + [705] = { + [sym_line_comment] = STATE(705), + [sym_block_comment] = STATE(705), [ts_builtin_sym_end] = ACTIONS(2777), [sym_identifier] = ACTIONS(2779), [anon_sym_SEMI] = ACTIONS(2777), @@ -90099,9 +89083,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2777), [sym_float_literal] = ACTIONS(2777), }, - [STATE(712)] = { - [sym_line_comment] = STATE(712), - [sym_block_comment] = STATE(712), + [706] = { + [sym_line_comment] = STATE(706), + [sym_block_comment] = STATE(706), [ts_builtin_sym_end] = ACTIONS(2781), [sym_identifier] = ACTIONS(2783), [anon_sym_SEMI] = ACTIONS(2781), @@ -90181,9 +89165,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2781), [sym_float_literal] = ACTIONS(2781), }, - [STATE(713)] = { - [sym_line_comment] = STATE(713), - [sym_block_comment] = STATE(713), + [707] = { + [sym_line_comment] = STATE(707), + [sym_block_comment] = STATE(707), [ts_builtin_sym_end] = ACTIONS(2785), [sym_identifier] = ACTIONS(2787), [anon_sym_SEMI] = ACTIONS(2785), @@ -90263,9 +89247,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2785), [sym_float_literal] = ACTIONS(2785), }, - [STATE(714)] = { - [sym_line_comment] = STATE(714), - [sym_block_comment] = STATE(714), + [708] = { + [sym_line_comment] = STATE(708), + [sym_block_comment] = STATE(708), [ts_builtin_sym_end] = ACTIONS(2789), [sym_identifier] = ACTIONS(2791), [anon_sym_SEMI] = ACTIONS(2789), @@ -90345,9 +89329,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2789), [sym_float_literal] = ACTIONS(2789), }, - [STATE(715)] = { - [sym_line_comment] = STATE(715), - [sym_block_comment] = STATE(715), + [709] = { + [sym_line_comment] = STATE(709), + [sym_block_comment] = STATE(709), [ts_builtin_sym_end] = ACTIONS(2793), [sym_identifier] = ACTIONS(2795), [anon_sym_SEMI] = ACTIONS(2793), @@ -90427,9 +89411,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2793), [sym_float_literal] = ACTIONS(2793), }, - [STATE(716)] = { - [sym_line_comment] = STATE(716), - [sym_block_comment] = STATE(716), + [710] = { + [sym_line_comment] = STATE(710), + [sym_block_comment] = STATE(710), [ts_builtin_sym_end] = ACTIONS(2797), [sym_identifier] = ACTIONS(2799), [anon_sym_SEMI] = ACTIONS(2797), @@ -90509,9 +89493,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2797), [sym_float_literal] = ACTIONS(2797), }, - [STATE(717)] = { - [sym_line_comment] = STATE(717), - [sym_block_comment] = STATE(717), + [711] = { + [sym_line_comment] = STATE(711), + [sym_block_comment] = STATE(711), [ts_builtin_sym_end] = ACTIONS(2801), [sym_identifier] = ACTIONS(2803), [anon_sym_SEMI] = ACTIONS(2801), @@ -90591,91 +89575,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2801), [sym_float_literal] = ACTIONS(2801), }, - [STATE(718)] = { - [sym_line_comment] = STATE(718), - [sym_block_comment] = STATE(718), - [ts_builtin_sym_end] = ACTIONS(1500), - [sym_identifier] = ACTIONS(1502), - [anon_sym_SEMI] = ACTIONS(1500), - [anon_sym_macro_rules_BANG] = ACTIONS(1500), - [anon_sym_LPAREN] = ACTIONS(1500), - [anon_sym_LBRACK] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1500), - [anon_sym_RBRACE] = ACTIONS(1500), - [anon_sym_STAR] = ACTIONS(1500), - [anon_sym_u8] = ACTIONS(1502), - [anon_sym_i8] = ACTIONS(1502), - [anon_sym_u16] = ACTIONS(1502), - [anon_sym_i16] = ACTIONS(1502), - [anon_sym_u32] = ACTIONS(1502), - [anon_sym_i32] = ACTIONS(1502), - [anon_sym_u64] = ACTIONS(1502), - [anon_sym_i64] = ACTIONS(1502), - [anon_sym_u128] = ACTIONS(1502), - [anon_sym_i128] = ACTIONS(1502), - [anon_sym_isize] = ACTIONS(1502), - [anon_sym_usize] = ACTIONS(1502), - [anon_sym_f32] = ACTIONS(1502), - [anon_sym_f64] = ACTIONS(1502), - [anon_sym_bool] = ACTIONS(1502), - [anon_sym_str] = ACTIONS(1502), - [anon_sym_char] = ACTIONS(1502), - [anon_sym_DASH] = ACTIONS(1500), - [anon_sym_BANG] = ACTIONS(1500), - [anon_sym_AMP] = ACTIONS(1500), - [anon_sym_PIPE] = ACTIONS(1500), - [anon_sym_LT] = ACTIONS(1500), - [anon_sym_DOT_DOT] = ACTIONS(1500), - [anon_sym_COLON_COLON] = ACTIONS(1500), - [anon_sym_POUND] = ACTIONS(1500), - [anon_sym_SQUOTE] = ACTIONS(1502), - [anon_sym_async] = ACTIONS(1502), - [anon_sym_break] = ACTIONS(1502), - [anon_sym_const] = ACTIONS(1502), - [anon_sym_continue] = ACTIONS(1502), - [anon_sym_default] = ACTIONS(1502), - [anon_sym_enum] = ACTIONS(1502), - [anon_sym_fn] = ACTIONS(1502), - [anon_sym_for] = ACTIONS(1502), - [anon_sym_gen] = ACTIONS(1502), - [anon_sym_if] = ACTIONS(1502), - [anon_sym_impl] = ACTIONS(1502), - [anon_sym_let] = ACTIONS(1502), - [anon_sym_loop] = ACTIONS(1502), - [anon_sym_match] = ACTIONS(1502), - [anon_sym_mod] = ACTIONS(1502), - [anon_sym_pub] = ACTIONS(1502), - [anon_sym_return] = ACTIONS(1502), - [anon_sym_static] = ACTIONS(1502), - [anon_sym_struct] = ACTIONS(1502), - [anon_sym_trait] = ACTIONS(1502), - [anon_sym_type] = ACTIONS(1502), - [anon_sym_union] = ACTIONS(1502), - [anon_sym_unsafe] = ACTIONS(1502), - [anon_sym_use] = ACTIONS(1502), - [anon_sym_while] = ACTIONS(1502), - [anon_sym_extern] = ACTIONS(1502), - [anon_sym_raw] = ACTIONS(1502), - [anon_sym_yield] = ACTIONS(1502), - [anon_sym_move] = ACTIONS(1502), - [anon_sym_try] = ACTIONS(1502), - [sym_integer_literal] = ACTIONS(1500), - [aux_sym_string_literal_token1] = ACTIONS(1500), - [sym_char_literal] = ACTIONS(1500), - [anon_sym_true] = ACTIONS(1502), - [anon_sym_false] = ACTIONS(1502), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1502), - [sym_super] = ACTIONS(1502), - [sym_crate] = ACTIONS(1502), - [sym_metavariable] = ACTIONS(1500), - [sym__raw_string_literal_start] = ACTIONS(1500), - [sym_float_literal] = ACTIONS(1500), - }, - [STATE(719)] = { - [sym_line_comment] = STATE(719), - [sym_block_comment] = STATE(719), + [712] = { + [sym_line_comment] = STATE(712), + [sym_block_comment] = STATE(712), [ts_builtin_sym_end] = ACTIONS(2805), [sym_identifier] = ACTIONS(2807), [anon_sym_SEMI] = ACTIONS(2805), @@ -90755,583 +89657,583 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2805), [sym_float_literal] = ACTIONS(2805), }, - [STATE(720)] = { - [sym_empty_statement] = STATE(1378), - [sym_macro_definition] = STATE(1378), - [sym_attribute_item] = STATE(1378), - [sym_inner_attribute_item] = STATE(1378), - [sym_mod_item] = STATE(1378), - [sym_foreign_mod_item] = STATE(1378), - [sym_struct_item] = STATE(1378), - [sym_union_item] = STATE(1378), - [sym_enum_item] = STATE(1378), - [sym_extern_crate_declaration] = STATE(1378), - [sym_const_item] = STATE(1378), - [sym_static_item] = STATE(1378), - [sym_type_item] = STATE(1378), - [sym_function_item] = STATE(1378), - [sym_function_signature_item] = STATE(1378), - [sym_function_modifiers] = STATE(3785), - [sym_impl_item] = STATE(1378), - [sym_trait_item] = STATE(1378), - [sym_associated_type] = STATE(1378), - [sym_let_declaration] = STATE(1378), - [sym_use_declaration] = STATE(1378), - [sym_extern_modifier] = STATE(2259), - [sym_visibility_modifier] = STATE(2035), - [sym_bracketed_type] = STATE(3740), - [sym_generic_type_with_turbofish] = STATE(3804), - [sym_macro_invocation] = STATE(1378), - [sym_scoped_identifier] = STATE(3417), - [sym_line_comment] = STATE(720), - [sym_block_comment] = STATE(720), - [aux_sym_declaration_list_repeat1] = STATE(636), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(2291), - [anon_sym_SEMI] = ACTIONS(2293), - [anon_sym_macro_rules_BANG] = ACTIONS(2295), + [713] = { + [sym_line_comment] = STATE(713), + [sym_block_comment] = STATE(713), + [ts_builtin_sym_end] = ACTIONS(2809), + [sym_identifier] = ACTIONS(2811), + [anon_sym_SEMI] = ACTIONS(2809), + [anon_sym_macro_rules_BANG] = ACTIONS(2809), + [anon_sym_LPAREN] = ACTIONS(2809), + [anon_sym_LBRACK] = ACTIONS(2809), + [anon_sym_LBRACE] = ACTIONS(2809), [anon_sym_RBRACE] = ACTIONS(2809), - [anon_sym_u8] = ACTIONS(2299), - [anon_sym_i8] = ACTIONS(2299), - [anon_sym_u16] = ACTIONS(2299), - [anon_sym_i16] = ACTIONS(2299), - [anon_sym_u32] = ACTIONS(2299), - [anon_sym_i32] = ACTIONS(2299), - [anon_sym_u64] = ACTIONS(2299), - [anon_sym_i64] = ACTIONS(2299), - [anon_sym_u128] = ACTIONS(2299), - [anon_sym_i128] = ACTIONS(2299), - [anon_sym_isize] = ACTIONS(2299), - [anon_sym_usize] = ACTIONS(2299), - [anon_sym_f32] = ACTIONS(2299), - [anon_sym_f64] = ACTIONS(2299), - [anon_sym_bool] = ACTIONS(2299), - [anon_sym_str] = ACTIONS(2299), - [anon_sym_char] = ACTIONS(2299), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2301), - [anon_sym_POUND] = ACTIONS(2303), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(2305), - [anon_sym_default] = ACTIONS(2307), - [anon_sym_enum] = ACTIONS(2309), - [anon_sym_fn] = ACTIONS(2311), - [anon_sym_gen] = ACTIONS(2313), - [anon_sym_impl] = ACTIONS(2315), - [anon_sym_let] = ACTIONS(2317), - [anon_sym_mod] = ACTIONS(2319), + [anon_sym_STAR] = ACTIONS(2809), + [anon_sym_u8] = ACTIONS(2811), + [anon_sym_i8] = ACTIONS(2811), + [anon_sym_u16] = ACTIONS(2811), + [anon_sym_i16] = ACTIONS(2811), + [anon_sym_u32] = ACTIONS(2811), + [anon_sym_i32] = ACTIONS(2811), + [anon_sym_u64] = ACTIONS(2811), + [anon_sym_i64] = ACTIONS(2811), + [anon_sym_u128] = ACTIONS(2811), + [anon_sym_i128] = ACTIONS(2811), + [anon_sym_isize] = ACTIONS(2811), + [anon_sym_usize] = ACTIONS(2811), + [anon_sym_f32] = ACTIONS(2811), + [anon_sym_f64] = ACTIONS(2811), + [anon_sym_bool] = ACTIONS(2811), + [anon_sym_str] = ACTIONS(2811), + [anon_sym_char] = ACTIONS(2811), + [anon_sym_DASH] = ACTIONS(2809), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_AMP] = ACTIONS(2809), + [anon_sym_PIPE] = ACTIONS(2809), + [anon_sym_LT] = ACTIONS(2809), + [anon_sym_DOT_DOT] = ACTIONS(2809), + [anon_sym_COLON_COLON] = ACTIONS(2809), + [anon_sym_POUND] = ACTIONS(2809), + [anon_sym_SQUOTE] = ACTIONS(2811), + [anon_sym_async] = ACTIONS(2811), + [anon_sym_break] = ACTIONS(2811), + [anon_sym_const] = ACTIONS(2811), + [anon_sym_continue] = ACTIONS(2811), + [anon_sym_default] = ACTIONS(2811), + [anon_sym_enum] = ACTIONS(2811), + [anon_sym_fn] = ACTIONS(2811), + [anon_sym_for] = ACTIONS(2811), + [anon_sym_gen] = ACTIONS(2811), + [anon_sym_if] = ACTIONS(2811), + [anon_sym_impl] = ACTIONS(2811), + [anon_sym_let] = ACTIONS(2811), + [anon_sym_loop] = ACTIONS(2811), + [anon_sym_match] = ACTIONS(2811), + [anon_sym_mod] = ACTIONS(2811), + [anon_sym_pub] = ACTIONS(2811), + [anon_sym_return] = ACTIONS(2811), + [anon_sym_static] = ACTIONS(2811), + [anon_sym_struct] = ACTIONS(2811), + [anon_sym_trait] = ACTIONS(2811), + [anon_sym_type] = ACTIONS(2811), + [anon_sym_union] = ACTIONS(2811), + [anon_sym_unsafe] = ACTIONS(2811), + [anon_sym_use] = ACTIONS(2811), + [anon_sym_while] = ACTIONS(2811), + [anon_sym_extern] = ACTIONS(2811), + [anon_sym_raw] = ACTIONS(2811), + [anon_sym_yield] = ACTIONS(2811), + [anon_sym_move] = ACTIONS(2811), + [anon_sym_try] = ACTIONS(2811), + [sym_integer_literal] = ACTIONS(2809), + [aux_sym_string_literal_token1] = ACTIONS(2809), + [sym_char_literal] = ACTIONS(2809), + [anon_sym_true] = ACTIONS(2811), + [anon_sym_false] = ACTIONS(2811), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2811), + [sym_super] = ACTIONS(2811), + [sym_crate] = ACTIONS(2811), + [sym_metavariable] = ACTIONS(2809), + [sym__raw_string_literal_start] = ACTIONS(2809), + [sym_float_literal] = ACTIONS(2809), + }, + [714] = { + [sym_line_comment] = STATE(714), + [sym_block_comment] = STATE(714), + [ts_builtin_sym_end] = ACTIONS(2813), + [sym_identifier] = ACTIONS(2815), + [anon_sym_SEMI] = ACTIONS(2813), + [anon_sym_macro_rules_BANG] = ACTIONS(2813), + [anon_sym_LPAREN] = ACTIONS(2813), + [anon_sym_LBRACK] = ACTIONS(2813), + [anon_sym_LBRACE] = ACTIONS(2813), + [anon_sym_RBRACE] = ACTIONS(2813), + [anon_sym_STAR] = ACTIONS(2813), + [anon_sym_u8] = ACTIONS(2815), + [anon_sym_i8] = ACTIONS(2815), + [anon_sym_u16] = ACTIONS(2815), + [anon_sym_i16] = ACTIONS(2815), + [anon_sym_u32] = ACTIONS(2815), + [anon_sym_i32] = ACTIONS(2815), + [anon_sym_u64] = ACTIONS(2815), + [anon_sym_i64] = ACTIONS(2815), + [anon_sym_u128] = ACTIONS(2815), + [anon_sym_i128] = ACTIONS(2815), + [anon_sym_isize] = ACTIONS(2815), + [anon_sym_usize] = ACTIONS(2815), + [anon_sym_f32] = ACTIONS(2815), + [anon_sym_f64] = ACTIONS(2815), + [anon_sym_bool] = ACTIONS(2815), + [anon_sym_str] = ACTIONS(2815), + [anon_sym_char] = ACTIONS(2815), + [anon_sym_DASH] = ACTIONS(2813), + [anon_sym_BANG] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym_PIPE] = ACTIONS(2813), + [anon_sym_LT] = ACTIONS(2813), + [anon_sym_DOT_DOT] = ACTIONS(2813), + [anon_sym_COLON_COLON] = ACTIONS(2813), + [anon_sym_POUND] = ACTIONS(2813), + [anon_sym_SQUOTE] = ACTIONS(2815), + [anon_sym_async] = ACTIONS(2815), + [anon_sym_break] = ACTIONS(2815), + [anon_sym_const] = ACTIONS(2815), + [anon_sym_continue] = ACTIONS(2815), + [anon_sym_default] = ACTIONS(2815), + [anon_sym_enum] = ACTIONS(2815), + [anon_sym_fn] = ACTIONS(2815), + [anon_sym_for] = ACTIONS(2815), + [anon_sym_gen] = ACTIONS(2815), + [anon_sym_if] = ACTIONS(2815), + [anon_sym_impl] = ACTIONS(2815), + [anon_sym_let] = ACTIONS(2815), + [anon_sym_loop] = ACTIONS(2815), + [anon_sym_match] = ACTIONS(2815), + [anon_sym_mod] = ACTIONS(2815), + [anon_sym_pub] = ACTIONS(2815), + [anon_sym_return] = ACTIONS(2815), + [anon_sym_static] = ACTIONS(2815), + [anon_sym_struct] = ACTIONS(2815), + [anon_sym_trait] = ACTIONS(2815), + [anon_sym_type] = ACTIONS(2815), + [anon_sym_union] = ACTIONS(2815), + [anon_sym_unsafe] = ACTIONS(2815), + [anon_sym_use] = ACTIONS(2815), + [anon_sym_while] = ACTIONS(2815), + [anon_sym_extern] = ACTIONS(2815), + [anon_sym_raw] = ACTIONS(2815), + [anon_sym_yield] = ACTIONS(2815), + [anon_sym_move] = ACTIONS(2815), + [anon_sym_try] = ACTIONS(2815), + [sym_integer_literal] = ACTIONS(2813), + [aux_sym_string_literal_token1] = ACTIONS(2813), + [sym_char_literal] = ACTIONS(2813), + [anon_sym_true] = ACTIONS(2815), + [anon_sym_false] = ACTIONS(2815), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2815), + [sym_super] = ACTIONS(2815), + [sym_crate] = ACTIONS(2815), + [sym_metavariable] = ACTIONS(2813), + [sym__raw_string_literal_start] = ACTIONS(2813), + [sym_float_literal] = ACTIONS(2813), + }, + [715] = { + [sym_line_comment] = STATE(715), + [sym_block_comment] = STATE(715), + [ts_builtin_sym_end] = ACTIONS(2817), + [sym_identifier] = ACTIONS(2819), + [anon_sym_SEMI] = ACTIONS(2817), + [anon_sym_macro_rules_BANG] = ACTIONS(2817), + [anon_sym_LPAREN] = ACTIONS(2817), + [anon_sym_LBRACK] = ACTIONS(2817), + [anon_sym_LBRACE] = ACTIONS(2817), + [anon_sym_RBRACE] = ACTIONS(2817), + [anon_sym_STAR] = ACTIONS(2817), + [anon_sym_u8] = ACTIONS(2819), + [anon_sym_i8] = ACTIONS(2819), + [anon_sym_u16] = ACTIONS(2819), + [anon_sym_i16] = ACTIONS(2819), + [anon_sym_u32] = ACTIONS(2819), + [anon_sym_i32] = ACTIONS(2819), + [anon_sym_u64] = ACTIONS(2819), + [anon_sym_i64] = ACTIONS(2819), + [anon_sym_u128] = ACTIONS(2819), + [anon_sym_i128] = ACTIONS(2819), + [anon_sym_isize] = ACTIONS(2819), + [anon_sym_usize] = ACTIONS(2819), + [anon_sym_f32] = ACTIONS(2819), + [anon_sym_f64] = ACTIONS(2819), + [anon_sym_bool] = ACTIONS(2819), + [anon_sym_str] = ACTIONS(2819), + [anon_sym_char] = ACTIONS(2819), + [anon_sym_DASH] = ACTIONS(2817), + [anon_sym_BANG] = ACTIONS(2817), + [anon_sym_AMP] = ACTIONS(2817), + [anon_sym_PIPE] = ACTIONS(2817), + [anon_sym_LT] = ACTIONS(2817), + [anon_sym_DOT_DOT] = ACTIONS(2817), + [anon_sym_COLON_COLON] = ACTIONS(2817), + [anon_sym_POUND] = ACTIONS(2817), + [anon_sym_SQUOTE] = ACTIONS(2819), + [anon_sym_async] = ACTIONS(2819), + [anon_sym_break] = ACTIONS(2819), + [anon_sym_const] = ACTIONS(2819), + [anon_sym_continue] = ACTIONS(2819), + [anon_sym_default] = ACTIONS(2819), + [anon_sym_enum] = ACTIONS(2819), + [anon_sym_fn] = ACTIONS(2819), + [anon_sym_for] = ACTIONS(2819), + [anon_sym_gen] = ACTIONS(2819), + [anon_sym_if] = ACTIONS(2819), + [anon_sym_impl] = ACTIONS(2819), + [anon_sym_let] = ACTIONS(2819), + [anon_sym_loop] = ACTIONS(2819), + [anon_sym_match] = ACTIONS(2819), + [anon_sym_mod] = ACTIONS(2819), + [anon_sym_pub] = ACTIONS(2819), + [anon_sym_return] = ACTIONS(2819), + [anon_sym_static] = ACTIONS(2819), + [anon_sym_struct] = ACTIONS(2819), + [anon_sym_trait] = ACTIONS(2819), + [anon_sym_type] = ACTIONS(2819), + [anon_sym_union] = ACTIONS(2819), + [anon_sym_unsafe] = ACTIONS(2819), + [anon_sym_use] = ACTIONS(2819), + [anon_sym_while] = ACTIONS(2819), + [anon_sym_extern] = ACTIONS(2819), + [anon_sym_raw] = ACTIONS(2819), + [anon_sym_yield] = ACTIONS(2819), + [anon_sym_move] = ACTIONS(2819), + [anon_sym_try] = ACTIONS(2819), + [sym_integer_literal] = ACTIONS(2817), + [aux_sym_string_literal_token1] = ACTIONS(2817), + [sym_char_literal] = ACTIONS(2817), + [anon_sym_true] = ACTIONS(2819), + [anon_sym_false] = ACTIONS(2819), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2819), + [sym_super] = ACTIONS(2819), + [sym_crate] = ACTIONS(2819), + [sym_metavariable] = ACTIONS(2817), + [sym__raw_string_literal_start] = ACTIONS(2817), + [sym_float_literal] = ACTIONS(2817), + }, + [716] = { + [sym_line_comment] = STATE(716), + [sym_block_comment] = STATE(716), + [ts_builtin_sym_end] = ACTIONS(2821), + [sym_identifier] = ACTIONS(2823), + [anon_sym_SEMI] = ACTIONS(2821), + [anon_sym_macro_rules_BANG] = ACTIONS(2821), + [anon_sym_LPAREN] = ACTIONS(2821), + [anon_sym_LBRACK] = ACTIONS(2821), + [anon_sym_LBRACE] = ACTIONS(2821), + [anon_sym_RBRACE] = ACTIONS(2821), + [anon_sym_STAR] = ACTIONS(2821), + [anon_sym_u8] = ACTIONS(2823), + [anon_sym_i8] = ACTIONS(2823), + [anon_sym_u16] = ACTIONS(2823), + [anon_sym_i16] = ACTIONS(2823), + [anon_sym_u32] = ACTIONS(2823), + [anon_sym_i32] = ACTIONS(2823), + [anon_sym_u64] = ACTIONS(2823), + [anon_sym_i64] = ACTIONS(2823), + [anon_sym_u128] = ACTIONS(2823), + [anon_sym_i128] = ACTIONS(2823), + [anon_sym_isize] = ACTIONS(2823), + [anon_sym_usize] = ACTIONS(2823), + [anon_sym_f32] = ACTIONS(2823), + [anon_sym_f64] = ACTIONS(2823), + [anon_sym_bool] = ACTIONS(2823), + [anon_sym_str] = ACTIONS(2823), + [anon_sym_char] = ACTIONS(2823), + [anon_sym_DASH] = ACTIONS(2821), + [anon_sym_BANG] = ACTIONS(2821), + [anon_sym_AMP] = ACTIONS(2821), + [anon_sym_PIPE] = ACTIONS(2821), + [anon_sym_LT] = ACTIONS(2821), + [anon_sym_DOT_DOT] = ACTIONS(2821), + [anon_sym_COLON_COLON] = ACTIONS(2821), + [anon_sym_POUND] = ACTIONS(2821), + [anon_sym_SQUOTE] = ACTIONS(2823), + [anon_sym_async] = ACTIONS(2823), + [anon_sym_break] = ACTIONS(2823), + [anon_sym_const] = ACTIONS(2823), + [anon_sym_continue] = ACTIONS(2823), + [anon_sym_default] = ACTIONS(2823), + [anon_sym_enum] = ACTIONS(2823), + [anon_sym_fn] = ACTIONS(2823), + [anon_sym_for] = ACTIONS(2823), + [anon_sym_gen] = ACTIONS(2823), + [anon_sym_if] = ACTIONS(2823), + [anon_sym_impl] = ACTIONS(2823), + [anon_sym_let] = ACTIONS(2823), + [anon_sym_loop] = ACTIONS(2823), + [anon_sym_match] = ACTIONS(2823), + [anon_sym_mod] = ACTIONS(2823), + [anon_sym_pub] = ACTIONS(2823), + [anon_sym_return] = ACTIONS(2823), + [anon_sym_static] = ACTIONS(2823), + [anon_sym_struct] = ACTIONS(2823), + [anon_sym_trait] = ACTIONS(2823), + [anon_sym_type] = ACTIONS(2823), + [anon_sym_union] = ACTIONS(2823), + [anon_sym_unsafe] = ACTIONS(2823), + [anon_sym_use] = ACTIONS(2823), + [anon_sym_while] = ACTIONS(2823), + [anon_sym_extern] = ACTIONS(2823), + [anon_sym_raw] = ACTIONS(2823), + [anon_sym_yield] = ACTIONS(2823), + [anon_sym_move] = ACTIONS(2823), + [anon_sym_try] = ACTIONS(2823), + [sym_integer_literal] = ACTIONS(2821), + [aux_sym_string_literal_token1] = ACTIONS(2821), + [sym_char_literal] = ACTIONS(2821), + [anon_sym_true] = ACTIONS(2823), + [anon_sym_false] = ACTIONS(2823), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2823), + [sym_super] = ACTIONS(2823), + [sym_crate] = ACTIONS(2823), + [sym_metavariable] = ACTIONS(2821), + [sym__raw_string_literal_start] = ACTIONS(2821), + [sym_float_literal] = ACTIONS(2821), + }, + [717] = { + [sym_line_comment] = STATE(717), + [sym_block_comment] = STATE(717), + [ts_builtin_sym_end] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1504), + [anon_sym_SEMI] = ACTIONS(1502), + [anon_sym_macro_rules_BANG] = ACTIONS(1502), + [anon_sym_LPAREN] = ACTIONS(1502), + [anon_sym_LBRACK] = ACTIONS(1502), + [anon_sym_LBRACE] = ACTIONS(1502), + [anon_sym_RBRACE] = ACTIONS(1502), + [anon_sym_STAR] = ACTIONS(1502), + [anon_sym_u8] = ACTIONS(1504), + [anon_sym_i8] = ACTIONS(1504), + [anon_sym_u16] = ACTIONS(1504), + [anon_sym_i16] = ACTIONS(1504), + [anon_sym_u32] = ACTIONS(1504), + [anon_sym_i32] = ACTIONS(1504), + [anon_sym_u64] = ACTIONS(1504), + [anon_sym_i64] = ACTIONS(1504), + [anon_sym_u128] = ACTIONS(1504), + [anon_sym_i128] = ACTIONS(1504), + [anon_sym_isize] = ACTIONS(1504), + [anon_sym_usize] = ACTIONS(1504), + [anon_sym_f32] = ACTIONS(1504), + [anon_sym_f64] = ACTIONS(1504), + [anon_sym_bool] = ACTIONS(1504), + [anon_sym_str] = ACTIONS(1504), + [anon_sym_char] = ACTIONS(1504), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_PIPE] = ACTIONS(1502), + [anon_sym_LT] = ACTIONS(1502), + [anon_sym_DOT_DOT] = ACTIONS(1502), + [anon_sym_COLON_COLON] = ACTIONS(1502), + [anon_sym_POUND] = ACTIONS(1502), + [anon_sym_SQUOTE] = ACTIONS(1504), + [anon_sym_async] = ACTIONS(1504), + [anon_sym_break] = ACTIONS(1504), + [anon_sym_const] = ACTIONS(1504), + [anon_sym_continue] = ACTIONS(1504), + [anon_sym_default] = ACTIONS(1504), + [anon_sym_enum] = ACTIONS(1504), + [anon_sym_fn] = ACTIONS(1504), + [anon_sym_for] = ACTIONS(1504), + [anon_sym_gen] = ACTIONS(1504), + [anon_sym_if] = ACTIONS(1504), + [anon_sym_impl] = ACTIONS(1504), + [anon_sym_let] = ACTIONS(1504), + [anon_sym_loop] = ACTIONS(1504), + [anon_sym_match] = ACTIONS(1504), + [anon_sym_mod] = ACTIONS(1504), + [anon_sym_pub] = ACTIONS(1504), + [anon_sym_return] = ACTIONS(1504), + [anon_sym_static] = ACTIONS(1504), + [anon_sym_struct] = ACTIONS(1504), + [anon_sym_trait] = ACTIONS(1504), + [anon_sym_type] = ACTIONS(1504), + [anon_sym_union] = ACTIONS(1504), + [anon_sym_unsafe] = ACTIONS(1504), + [anon_sym_use] = ACTIONS(1504), + [anon_sym_while] = ACTIONS(1504), + [anon_sym_extern] = ACTIONS(1504), + [anon_sym_raw] = ACTIONS(1504), + [anon_sym_yield] = ACTIONS(1504), + [anon_sym_move] = ACTIONS(1504), + [anon_sym_try] = ACTIONS(1504), + [sym_integer_literal] = ACTIONS(1502), + [aux_sym_string_literal_token1] = ACTIONS(1502), + [sym_char_literal] = ACTIONS(1502), + [anon_sym_true] = ACTIONS(1504), + [anon_sym_false] = ACTIONS(1504), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1504), + [sym_super] = ACTIONS(1504), + [sym_crate] = ACTIONS(1504), + [sym_metavariable] = ACTIONS(1502), + [sym__raw_string_literal_start] = ACTIONS(1502), + [sym_float_literal] = ACTIONS(1502), + }, + [718] = { + [sym_line_comment] = STATE(718), + [sym_block_comment] = STATE(718), + [ts_builtin_sym_end] = ACTIONS(2825), + [sym_identifier] = ACTIONS(2827), + [anon_sym_SEMI] = ACTIONS(2825), + [anon_sym_macro_rules_BANG] = ACTIONS(2825), + [anon_sym_LPAREN] = ACTIONS(2825), + [anon_sym_LBRACK] = ACTIONS(2825), + [anon_sym_LBRACE] = ACTIONS(2825), + [anon_sym_RBRACE] = ACTIONS(2825), + [anon_sym_STAR] = ACTIONS(2825), + [anon_sym_u8] = ACTIONS(2827), + [anon_sym_i8] = ACTIONS(2827), + [anon_sym_u16] = ACTIONS(2827), + [anon_sym_i16] = ACTIONS(2827), + [anon_sym_u32] = ACTIONS(2827), + [anon_sym_i32] = ACTIONS(2827), + [anon_sym_u64] = ACTIONS(2827), + [anon_sym_i64] = ACTIONS(2827), + [anon_sym_u128] = ACTIONS(2827), + [anon_sym_i128] = ACTIONS(2827), + [anon_sym_isize] = ACTIONS(2827), + [anon_sym_usize] = ACTIONS(2827), + [anon_sym_f32] = ACTIONS(2827), + [anon_sym_f64] = ACTIONS(2827), + [anon_sym_bool] = ACTIONS(2827), + [anon_sym_str] = ACTIONS(2827), + [anon_sym_char] = ACTIONS(2827), + [anon_sym_DASH] = ACTIONS(2825), + [anon_sym_BANG] = ACTIONS(2825), + [anon_sym_AMP] = ACTIONS(2825), + [anon_sym_PIPE] = ACTIONS(2825), + [anon_sym_LT] = ACTIONS(2825), + [anon_sym_DOT_DOT] = ACTIONS(2825), + [anon_sym_COLON_COLON] = ACTIONS(2825), + [anon_sym_POUND] = ACTIONS(2825), + [anon_sym_SQUOTE] = ACTIONS(2827), + [anon_sym_async] = ACTIONS(2827), + [anon_sym_break] = ACTIONS(2827), + [anon_sym_const] = ACTIONS(2827), + [anon_sym_continue] = ACTIONS(2827), + [anon_sym_default] = ACTIONS(2827), + [anon_sym_enum] = ACTIONS(2827), + [anon_sym_fn] = ACTIONS(2827), + [anon_sym_for] = ACTIONS(2827), + [anon_sym_gen] = ACTIONS(2827), + [anon_sym_if] = ACTIONS(2827), + [anon_sym_impl] = ACTIONS(2827), + [anon_sym_let] = ACTIONS(2827), + [anon_sym_loop] = ACTIONS(2827), + [anon_sym_match] = ACTIONS(2827), + [anon_sym_mod] = ACTIONS(2827), + [anon_sym_pub] = ACTIONS(2827), + [anon_sym_return] = ACTIONS(2827), + [anon_sym_static] = ACTIONS(2827), + [anon_sym_struct] = ACTIONS(2827), + [anon_sym_trait] = ACTIONS(2827), + [anon_sym_type] = ACTIONS(2827), + [anon_sym_union] = ACTIONS(2827), + [anon_sym_unsafe] = ACTIONS(2827), + [anon_sym_use] = ACTIONS(2827), + [anon_sym_while] = ACTIONS(2827), + [anon_sym_extern] = ACTIONS(2827), + [anon_sym_raw] = ACTIONS(2827), + [anon_sym_yield] = ACTIONS(2827), + [anon_sym_move] = ACTIONS(2827), + [anon_sym_try] = ACTIONS(2827), + [sym_integer_literal] = ACTIONS(2825), + [aux_sym_string_literal_token1] = ACTIONS(2825), + [sym_char_literal] = ACTIONS(2825), + [anon_sym_true] = ACTIONS(2827), + [anon_sym_false] = ACTIONS(2827), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(2827), + [sym_super] = ACTIONS(2827), + [sym_crate] = ACTIONS(2827), + [sym_metavariable] = ACTIONS(2825), + [sym__raw_string_literal_start] = ACTIONS(2825), + [sym_float_literal] = ACTIONS(2825), + }, + [719] = { + [sym_empty_statement] = STATE(1370), + [sym_macro_definition] = STATE(1370), + [sym_attribute_item] = STATE(1370), + [sym_inner_attribute_item] = STATE(1370), + [sym_mod_item] = STATE(1370), + [sym_foreign_mod_item] = STATE(1370), + [sym_struct_item] = STATE(1370), + [sym_union_item] = STATE(1370), + [sym_enum_item] = STATE(1370), + [sym_extern_crate_declaration] = STATE(1370), + [sym_const_item] = STATE(1370), + [sym_static_item] = STATE(1370), + [sym_type_item] = STATE(1370), + [sym_function_item] = STATE(1370), + [sym_function_signature_item] = STATE(1370), + [sym_function_modifiers] = STATE(3775), + [sym_impl_item] = STATE(1370), + [sym_trait_item] = STATE(1370), + [sym_associated_type] = STATE(1370), + [sym_let_declaration] = STATE(1370), + [sym_use_declaration] = STATE(1370), + [sym_extern_modifier] = STATE(2242), + [sym_visibility_modifier] = STATE(2025), + [sym_bracketed_type] = STATE(3723), + [sym_generic_type_with_turbofish] = STATE(3791), + [sym_macro_invocation] = STATE(1370), + [sym_scoped_identifier] = STATE(3388), + [sym_line_comment] = STATE(719), + [sym_block_comment] = STATE(719), + [aux_sym_declaration_list_repeat1] = STATE(635), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(2311), + [anon_sym_SEMI] = ACTIONS(2313), + [anon_sym_macro_rules_BANG] = ACTIONS(2315), + [anon_sym_RBRACE] = ACTIONS(2829), + [anon_sym_u8] = ACTIONS(2319), + [anon_sym_i8] = ACTIONS(2319), + [anon_sym_u16] = ACTIONS(2319), + [anon_sym_i16] = ACTIONS(2319), + [anon_sym_u32] = ACTIONS(2319), + [anon_sym_i32] = ACTIONS(2319), + [anon_sym_u64] = ACTIONS(2319), + [anon_sym_i64] = ACTIONS(2319), + [anon_sym_u128] = ACTIONS(2319), + [anon_sym_i128] = ACTIONS(2319), + [anon_sym_isize] = ACTIONS(2319), + [anon_sym_usize] = ACTIONS(2319), + [anon_sym_f32] = ACTIONS(2319), + [anon_sym_f64] = ACTIONS(2319), + [anon_sym_bool] = ACTIONS(2319), + [anon_sym_str] = ACTIONS(2319), + [anon_sym_char] = ACTIONS(2319), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(2321), + [anon_sym_POUND] = ACTIONS(2323), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(2325), + [anon_sym_default] = ACTIONS(2327), + [anon_sym_enum] = ACTIONS(2329), + [anon_sym_fn] = ACTIONS(2331), + [anon_sym_gen] = ACTIONS(2333), + [anon_sym_impl] = ACTIONS(2335), + [anon_sym_let] = ACTIONS(2337), + [anon_sym_mod] = ACTIONS(2339), [anon_sym_pub] = ACTIONS(69), - [anon_sym_static] = ACTIONS(2321), - [anon_sym_struct] = ACTIONS(2323), - [anon_sym_trait] = ACTIONS(2325), - [anon_sym_type] = ACTIONS(2327), - [anon_sym_union] = ACTIONS(2329), - [anon_sym_unsafe] = ACTIONS(2331), - [anon_sym_use] = ACTIONS(2333), - [anon_sym_extern] = ACTIONS(2335), - [anon_sym_raw] = ACTIONS(2313), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2337), - [sym_super] = ACTIONS(2337), - [sym_crate] = ACTIONS(2339), - [sym_metavariable] = ACTIONS(2341), - }, - [STATE(721)] = { - [sym_line_comment] = STATE(721), - [sym_block_comment] = STATE(721), - [ts_builtin_sym_end] = ACTIONS(2811), - [sym_identifier] = ACTIONS(2813), - [anon_sym_SEMI] = ACTIONS(2811), - [anon_sym_macro_rules_BANG] = ACTIONS(2811), - [anon_sym_LPAREN] = ACTIONS(2811), - [anon_sym_LBRACK] = ACTIONS(2811), - [anon_sym_LBRACE] = ACTIONS(2811), - [anon_sym_RBRACE] = ACTIONS(2811), - [anon_sym_STAR] = ACTIONS(2811), - [anon_sym_u8] = ACTIONS(2813), - [anon_sym_i8] = ACTIONS(2813), - [anon_sym_u16] = ACTIONS(2813), - [anon_sym_i16] = ACTIONS(2813), - [anon_sym_u32] = ACTIONS(2813), - [anon_sym_i32] = ACTIONS(2813), - [anon_sym_u64] = ACTIONS(2813), - [anon_sym_i64] = ACTIONS(2813), - [anon_sym_u128] = ACTIONS(2813), - [anon_sym_i128] = ACTIONS(2813), - [anon_sym_isize] = ACTIONS(2813), - [anon_sym_usize] = ACTIONS(2813), - [anon_sym_f32] = ACTIONS(2813), - [anon_sym_f64] = ACTIONS(2813), - [anon_sym_bool] = ACTIONS(2813), - [anon_sym_str] = ACTIONS(2813), - [anon_sym_char] = ACTIONS(2813), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_BANG] = ACTIONS(2811), - [anon_sym_AMP] = ACTIONS(2811), - [anon_sym_PIPE] = ACTIONS(2811), - [anon_sym_LT] = ACTIONS(2811), - [anon_sym_DOT_DOT] = ACTIONS(2811), - [anon_sym_COLON_COLON] = ACTIONS(2811), - [anon_sym_POUND] = ACTIONS(2811), - [anon_sym_SQUOTE] = ACTIONS(2813), - [anon_sym_async] = ACTIONS(2813), - [anon_sym_break] = ACTIONS(2813), - [anon_sym_const] = ACTIONS(2813), - [anon_sym_continue] = ACTIONS(2813), - [anon_sym_default] = ACTIONS(2813), - [anon_sym_enum] = ACTIONS(2813), - [anon_sym_fn] = ACTIONS(2813), - [anon_sym_for] = ACTIONS(2813), - [anon_sym_gen] = ACTIONS(2813), - [anon_sym_if] = ACTIONS(2813), - [anon_sym_impl] = ACTIONS(2813), - [anon_sym_let] = ACTIONS(2813), - [anon_sym_loop] = ACTIONS(2813), - [anon_sym_match] = ACTIONS(2813), - [anon_sym_mod] = ACTIONS(2813), - [anon_sym_pub] = ACTIONS(2813), - [anon_sym_return] = ACTIONS(2813), - [anon_sym_static] = ACTIONS(2813), - [anon_sym_struct] = ACTIONS(2813), - [anon_sym_trait] = ACTIONS(2813), - [anon_sym_type] = ACTIONS(2813), - [anon_sym_union] = ACTIONS(2813), - [anon_sym_unsafe] = ACTIONS(2813), - [anon_sym_use] = ACTIONS(2813), - [anon_sym_while] = ACTIONS(2813), - [anon_sym_extern] = ACTIONS(2813), - [anon_sym_raw] = ACTIONS(2813), - [anon_sym_yield] = ACTIONS(2813), - [anon_sym_move] = ACTIONS(2813), - [anon_sym_try] = ACTIONS(2813), - [sym_integer_literal] = ACTIONS(2811), - [aux_sym_string_literal_token1] = ACTIONS(2811), - [sym_char_literal] = ACTIONS(2811), - [anon_sym_true] = ACTIONS(2813), - [anon_sym_false] = ACTIONS(2813), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2813), - [sym_super] = ACTIONS(2813), - [sym_crate] = ACTIONS(2813), - [sym_metavariable] = ACTIONS(2811), - [sym__raw_string_literal_start] = ACTIONS(2811), - [sym_float_literal] = ACTIONS(2811), - }, - [STATE(722)] = { - [sym_line_comment] = STATE(722), - [sym_block_comment] = STATE(722), - [ts_builtin_sym_end] = ACTIONS(2815), - [sym_identifier] = ACTIONS(2817), - [anon_sym_SEMI] = ACTIONS(2815), - [anon_sym_macro_rules_BANG] = ACTIONS(2815), - [anon_sym_LPAREN] = ACTIONS(2815), - [anon_sym_LBRACK] = ACTIONS(2815), - [anon_sym_LBRACE] = ACTIONS(2815), - [anon_sym_RBRACE] = ACTIONS(2815), - [anon_sym_STAR] = ACTIONS(2815), - [anon_sym_u8] = ACTIONS(2817), - [anon_sym_i8] = ACTIONS(2817), - [anon_sym_u16] = ACTIONS(2817), - [anon_sym_i16] = ACTIONS(2817), - [anon_sym_u32] = ACTIONS(2817), - [anon_sym_i32] = ACTIONS(2817), - [anon_sym_u64] = ACTIONS(2817), - [anon_sym_i64] = ACTIONS(2817), - [anon_sym_u128] = ACTIONS(2817), - [anon_sym_i128] = ACTIONS(2817), - [anon_sym_isize] = ACTIONS(2817), - [anon_sym_usize] = ACTIONS(2817), - [anon_sym_f32] = ACTIONS(2817), - [anon_sym_f64] = ACTIONS(2817), - [anon_sym_bool] = ACTIONS(2817), - [anon_sym_str] = ACTIONS(2817), - [anon_sym_char] = ACTIONS(2817), - [anon_sym_DASH] = ACTIONS(2815), - [anon_sym_BANG] = ACTIONS(2815), - [anon_sym_AMP] = ACTIONS(2815), - [anon_sym_PIPE] = ACTIONS(2815), - [anon_sym_LT] = ACTIONS(2815), - [anon_sym_DOT_DOT] = ACTIONS(2815), - [anon_sym_COLON_COLON] = ACTIONS(2815), - [anon_sym_POUND] = ACTIONS(2815), - [anon_sym_SQUOTE] = ACTIONS(2817), - [anon_sym_async] = ACTIONS(2817), - [anon_sym_break] = ACTIONS(2817), - [anon_sym_const] = ACTIONS(2817), - [anon_sym_continue] = ACTIONS(2817), - [anon_sym_default] = ACTIONS(2817), - [anon_sym_enum] = ACTIONS(2817), - [anon_sym_fn] = ACTIONS(2817), - [anon_sym_for] = ACTIONS(2817), - [anon_sym_gen] = ACTIONS(2817), - [anon_sym_if] = ACTIONS(2817), - [anon_sym_impl] = ACTIONS(2817), - [anon_sym_let] = ACTIONS(2817), - [anon_sym_loop] = ACTIONS(2817), - [anon_sym_match] = ACTIONS(2817), - [anon_sym_mod] = ACTIONS(2817), - [anon_sym_pub] = ACTIONS(2817), - [anon_sym_return] = ACTIONS(2817), - [anon_sym_static] = ACTIONS(2817), - [anon_sym_struct] = ACTIONS(2817), - [anon_sym_trait] = ACTIONS(2817), - [anon_sym_type] = ACTIONS(2817), - [anon_sym_union] = ACTIONS(2817), - [anon_sym_unsafe] = ACTIONS(2817), - [anon_sym_use] = ACTIONS(2817), - [anon_sym_while] = ACTIONS(2817), - [anon_sym_extern] = ACTIONS(2817), - [anon_sym_raw] = ACTIONS(2817), - [anon_sym_yield] = ACTIONS(2817), - [anon_sym_move] = ACTIONS(2817), - [anon_sym_try] = ACTIONS(2817), - [sym_integer_literal] = ACTIONS(2815), - [aux_sym_string_literal_token1] = ACTIONS(2815), - [sym_char_literal] = ACTIONS(2815), - [anon_sym_true] = ACTIONS(2817), - [anon_sym_false] = ACTIONS(2817), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2817), - [sym_super] = ACTIONS(2817), - [sym_crate] = ACTIONS(2817), - [sym_metavariable] = ACTIONS(2815), - [sym__raw_string_literal_start] = ACTIONS(2815), - [sym_float_literal] = ACTIONS(2815), - }, - [STATE(723)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym_closure_expression] = STATE(3415), - [sym_closure_parameters] = STATE(242), - [sym__pattern] = STATE(3151), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), - [sym_line_comment] = STATE(723), - [sym_block_comment] = STATE(723), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1420), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_async] = ACTIONS(1746), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_static] = ACTIONS(1428), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [anon_sym_move] = ACTIONS(1432), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), + [anon_sym_static] = ACTIONS(2341), + [anon_sym_struct] = ACTIONS(2343), + [anon_sym_trait] = ACTIONS(2345), + [anon_sym_type] = ACTIONS(2347), + [anon_sym_union] = ACTIONS(2349), + [anon_sym_unsafe] = ACTIONS(2351), + [anon_sym_use] = ACTIONS(2353), + [anon_sym_extern] = ACTIONS(2355), + [anon_sym_raw] = ACTIONS(2333), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), + [sym_self] = ACTIONS(2357), + [sym_super] = ACTIONS(2357), + [sym_crate] = ACTIONS(2359), + [sym_metavariable] = ACTIONS(2361), }, - [STATE(724)] = { - [sym_line_comment] = STATE(724), - [sym_block_comment] = STATE(724), - [ts_builtin_sym_end] = ACTIONS(2819), - [sym_identifier] = ACTIONS(2821), - [anon_sym_SEMI] = ACTIONS(2819), - [anon_sym_macro_rules_BANG] = ACTIONS(2819), - [anon_sym_LPAREN] = ACTIONS(2819), - [anon_sym_LBRACK] = ACTIONS(2819), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_RBRACE] = ACTIONS(2819), - [anon_sym_STAR] = ACTIONS(2819), - [anon_sym_u8] = ACTIONS(2821), - [anon_sym_i8] = ACTIONS(2821), - [anon_sym_u16] = ACTIONS(2821), - [anon_sym_i16] = ACTIONS(2821), - [anon_sym_u32] = ACTIONS(2821), - [anon_sym_i32] = ACTIONS(2821), - [anon_sym_u64] = ACTIONS(2821), - [anon_sym_i64] = ACTIONS(2821), - [anon_sym_u128] = ACTIONS(2821), - [anon_sym_i128] = ACTIONS(2821), - [anon_sym_isize] = ACTIONS(2821), - [anon_sym_usize] = ACTIONS(2821), - [anon_sym_f32] = ACTIONS(2821), - [anon_sym_f64] = ACTIONS(2821), - [anon_sym_bool] = ACTIONS(2821), - [anon_sym_str] = ACTIONS(2821), - [anon_sym_char] = ACTIONS(2821), - [anon_sym_DASH] = ACTIONS(2819), - [anon_sym_BANG] = ACTIONS(2819), - [anon_sym_AMP] = ACTIONS(2819), - [anon_sym_PIPE] = ACTIONS(2819), - [anon_sym_LT] = ACTIONS(2819), - [anon_sym_DOT_DOT] = ACTIONS(2819), - [anon_sym_COLON_COLON] = ACTIONS(2819), - [anon_sym_POUND] = ACTIONS(2819), - [anon_sym_SQUOTE] = ACTIONS(2821), - [anon_sym_async] = ACTIONS(2821), - [anon_sym_break] = ACTIONS(2821), - [anon_sym_const] = ACTIONS(2821), - [anon_sym_continue] = ACTIONS(2821), - [anon_sym_default] = ACTIONS(2821), - [anon_sym_enum] = ACTIONS(2821), - [anon_sym_fn] = ACTIONS(2821), - [anon_sym_for] = ACTIONS(2821), - [anon_sym_gen] = ACTIONS(2821), - [anon_sym_if] = ACTIONS(2821), - [anon_sym_impl] = ACTIONS(2821), - [anon_sym_let] = ACTIONS(2821), - [anon_sym_loop] = ACTIONS(2821), - [anon_sym_match] = ACTIONS(2821), - [anon_sym_mod] = ACTIONS(2821), - [anon_sym_pub] = ACTIONS(2821), - [anon_sym_return] = ACTIONS(2821), - [anon_sym_static] = ACTIONS(2821), - [anon_sym_struct] = ACTIONS(2821), - [anon_sym_trait] = ACTIONS(2821), - [anon_sym_type] = ACTIONS(2821), - [anon_sym_union] = ACTIONS(2821), - [anon_sym_unsafe] = ACTIONS(2821), - [anon_sym_use] = ACTIONS(2821), - [anon_sym_while] = ACTIONS(2821), - [anon_sym_extern] = ACTIONS(2821), - [anon_sym_raw] = ACTIONS(2821), - [anon_sym_yield] = ACTIONS(2821), - [anon_sym_move] = ACTIONS(2821), - [anon_sym_try] = ACTIONS(2821), - [sym_integer_literal] = ACTIONS(2819), - [aux_sym_string_literal_token1] = ACTIONS(2819), - [sym_char_literal] = ACTIONS(2819), - [anon_sym_true] = ACTIONS(2821), - [anon_sym_false] = ACTIONS(2821), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2821), - [sym_super] = ACTIONS(2821), - [sym_crate] = ACTIONS(2821), - [sym_metavariable] = ACTIONS(2819), - [sym__raw_string_literal_start] = ACTIONS(2819), - [sym_float_literal] = ACTIONS(2819), - }, - [STATE(725)] = { - [sym_line_comment] = STATE(725), - [sym_block_comment] = STATE(725), - [ts_builtin_sym_end] = ACTIONS(2823), - [sym_identifier] = ACTIONS(2825), - [anon_sym_SEMI] = ACTIONS(2823), - [anon_sym_macro_rules_BANG] = ACTIONS(2823), - [anon_sym_LPAREN] = ACTIONS(2823), - [anon_sym_LBRACK] = ACTIONS(2823), - [anon_sym_LBRACE] = ACTIONS(2823), - [anon_sym_RBRACE] = ACTIONS(2823), - [anon_sym_STAR] = ACTIONS(2823), - [anon_sym_u8] = ACTIONS(2825), - [anon_sym_i8] = ACTIONS(2825), - [anon_sym_u16] = ACTIONS(2825), - [anon_sym_i16] = ACTIONS(2825), - [anon_sym_u32] = ACTIONS(2825), - [anon_sym_i32] = ACTIONS(2825), - [anon_sym_u64] = ACTIONS(2825), - [anon_sym_i64] = ACTIONS(2825), - [anon_sym_u128] = ACTIONS(2825), - [anon_sym_i128] = ACTIONS(2825), - [anon_sym_isize] = ACTIONS(2825), - [anon_sym_usize] = ACTIONS(2825), - [anon_sym_f32] = ACTIONS(2825), - [anon_sym_f64] = ACTIONS(2825), - [anon_sym_bool] = ACTIONS(2825), - [anon_sym_str] = ACTIONS(2825), - [anon_sym_char] = ACTIONS(2825), - [anon_sym_DASH] = ACTIONS(2823), - [anon_sym_BANG] = ACTIONS(2823), - [anon_sym_AMP] = ACTIONS(2823), - [anon_sym_PIPE] = ACTIONS(2823), - [anon_sym_LT] = ACTIONS(2823), - [anon_sym_DOT_DOT] = ACTIONS(2823), - [anon_sym_COLON_COLON] = ACTIONS(2823), - [anon_sym_POUND] = ACTIONS(2823), - [anon_sym_SQUOTE] = ACTIONS(2825), - [anon_sym_async] = ACTIONS(2825), - [anon_sym_break] = ACTIONS(2825), - [anon_sym_const] = ACTIONS(2825), - [anon_sym_continue] = ACTIONS(2825), - [anon_sym_default] = ACTIONS(2825), - [anon_sym_enum] = ACTIONS(2825), - [anon_sym_fn] = ACTIONS(2825), - [anon_sym_for] = ACTIONS(2825), - [anon_sym_gen] = ACTIONS(2825), - [anon_sym_if] = ACTIONS(2825), - [anon_sym_impl] = ACTIONS(2825), - [anon_sym_let] = ACTIONS(2825), - [anon_sym_loop] = ACTIONS(2825), - [anon_sym_match] = ACTIONS(2825), - [anon_sym_mod] = ACTIONS(2825), - [anon_sym_pub] = ACTIONS(2825), - [anon_sym_return] = ACTIONS(2825), - [anon_sym_static] = ACTIONS(2825), - [anon_sym_struct] = ACTIONS(2825), - [anon_sym_trait] = ACTIONS(2825), - [anon_sym_type] = ACTIONS(2825), - [anon_sym_union] = ACTIONS(2825), - [anon_sym_unsafe] = ACTIONS(2825), - [anon_sym_use] = ACTIONS(2825), - [anon_sym_while] = ACTIONS(2825), - [anon_sym_extern] = ACTIONS(2825), - [anon_sym_raw] = ACTIONS(2825), - [anon_sym_yield] = ACTIONS(2825), - [anon_sym_move] = ACTIONS(2825), - [anon_sym_try] = ACTIONS(2825), - [sym_integer_literal] = ACTIONS(2823), - [aux_sym_string_literal_token1] = ACTIONS(2823), - [sym_char_literal] = ACTIONS(2823), - [anon_sym_true] = ACTIONS(2825), - [anon_sym_false] = ACTIONS(2825), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2825), - [sym_super] = ACTIONS(2825), - [sym_crate] = ACTIONS(2825), - [sym_metavariable] = ACTIONS(2823), - [sym__raw_string_literal_start] = ACTIONS(2823), - [sym_float_literal] = ACTIONS(2823), - }, - [STATE(726)] = { - [sym_line_comment] = STATE(726), - [sym_block_comment] = STATE(726), - [ts_builtin_sym_end] = ACTIONS(2827), - [sym_identifier] = ACTIONS(2829), - [anon_sym_SEMI] = ACTIONS(2827), - [anon_sym_macro_rules_BANG] = ACTIONS(2827), - [anon_sym_LPAREN] = ACTIONS(2827), - [anon_sym_LBRACK] = ACTIONS(2827), - [anon_sym_LBRACE] = ACTIONS(2827), - [anon_sym_RBRACE] = ACTIONS(2827), - [anon_sym_STAR] = ACTIONS(2827), - [anon_sym_u8] = ACTIONS(2829), - [anon_sym_i8] = ACTIONS(2829), - [anon_sym_u16] = ACTIONS(2829), - [anon_sym_i16] = ACTIONS(2829), - [anon_sym_u32] = ACTIONS(2829), - [anon_sym_i32] = ACTIONS(2829), - [anon_sym_u64] = ACTIONS(2829), - [anon_sym_i64] = ACTIONS(2829), - [anon_sym_u128] = ACTIONS(2829), - [anon_sym_i128] = ACTIONS(2829), - [anon_sym_isize] = ACTIONS(2829), - [anon_sym_usize] = ACTIONS(2829), - [anon_sym_f32] = ACTIONS(2829), - [anon_sym_f64] = ACTIONS(2829), - [anon_sym_bool] = ACTIONS(2829), - [anon_sym_str] = ACTIONS(2829), - [anon_sym_char] = ACTIONS(2829), - [anon_sym_DASH] = ACTIONS(2827), - [anon_sym_BANG] = ACTIONS(2827), - [anon_sym_AMP] = ACTIONS(2827), - [anon_sym_PIPE] = ACTIONS(2827), - [anon_sym_LT] = ACTIONS(2827), - [anon_sym_DOT_DOT] = ACTIONS(2827), - [anon_sym_COLON_COLON] = ACTIONS(2827), - [anon_sym_POUND] = ACTIONS(2827), - [anon_sym_SQUOTE] = ACTIONS(2829), - [anon_sym_async] = ACTIONS(2829), - [anon_sym_break] = ACTIONS(2829), - [anon_sym_const] = ACTIONS(2829), - [anon_sym_continue] = ACTIONS(2829), - [anon_sym_default] = ACTIONS(2829), - [anon_sym_enum] = ACTIONS(2829), - [anon_sym_fn] = ACTIONS(2829), - [anon_sym_for] = ACTIONS(2829), - [anon_sym_gen] = ACTIONS(2829), - [anon_sym_if] = ACTIONS(2829), - [anon_sym_impl] = ACTIONS(2829), - [anon_sym_let] = ACTIONS(2829), - [anon_sym_loop] = ACTIONS(2829), - [anon_sym_match] = ACTIONS(2829), - [anon_sym_mod] = ACTIONS(2829), - [anon_sym_pub] = ACTIONS(2829), - [anon_sym_return] = ACTIONS(2829), - [anon_sym_static] = ACTIONS(2829), - [anon_sym_struct] = ACTIONS(2829), - [anon_sym_trait] = ACTIONS(2829), - [anon_sym_type] = ACTIONS(2829), - [anon_sym_union] = ACTIONS(2829), - [anon_sym_unsafe] = ACTIONS(2829), - [anon_sym_use] = ACTIONS(2829), - [anon_sym_while] = ACTIONS(2829), - [anon_sym_extern] = ACTIONS(2829), - [anon_sym_raw] = ACTIONS(2829), - [anon_sym_yield] = ACTIONS(2829), - [anon_sym_move] = ACTIONS(2829), - [anon_sym_try] = ACTIONS(2829), - [sym_integer_literal] = ACTIONS(2827), - [aux_sym_string_literal_token1] = ACTIONS(2827), - [sym_char_literal] = ACTIONS(2827), - [anon_sym_true] = ACTIONS(2829), - [anon_sym_false] = ACTIONS(2829), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(2829), - [sym_super] = ACTIONS(2829), - [sym_crate] = ACTIONS(2829), - [sym_metavariable] = ACTIONS(2827), - [sym__raw_string_literal_start] = ACTIONS(2827), - [sym_float_literal] = ACTIONS(2827), - }, - [STATE(727)] = { - [sym_line_comment] = STATE(727), - [sym_block_comment] = STATE(727), + [720] = { + [sym_line_comment] = STATE(720), + [sym_block_comment] = STATE(720), [ts_builtin_sym_end] = ACTIONS(2831), [sym_identifier] = ACTIONS(2833), [anon_sym_SEMI] = ACTIONS(2831), @@ -91411,9 +90313,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2831), [sym_float_literal] = ACTIONS(2831), }, - [STATE(728)] = { - [sym_line_comment] = STATE(728), - [sym_block_comment] = STATE(728), + [721] = { + [sym_line_comment] = STATE(721), + [sym_block_comment] = STATE(721), [ts_builtin_sym_end] = ACTIONS(2835), [sym_identifier] = ACTIONS(2837), [anon_sym_SEMI] = ACTIONS(2835), @@ -91493,9 +90395,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2835), [sym_float_literal] = ACTIONS(2835), }, - [STATE(729)] = { - [sym_line_comment] = STATE(729), - [sym_block_comment] = STATE(729), + [722] = { + [sym_bracketed_type] = STATE(3787), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_macro_invocation] = STATE(2198), + [sym_scoped_identifier] = STATE(2034), + [sym_scoped_type_identifier] = STATE(2991), + [sym_const_block] = STATE(2198), + [sym_closure_expression] = STATE(3220), + [sym_closure_parameters] = STATE(227), + [sym__pattern] = STATE(3020), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), + [sym_line_comment] = STATE(722), + [sym_block_comment] = STATE(722), + [sym_identifier] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_u8] = ACTIONS(1730), + [anon_sym_i8] = ACTIONS(1730), + [anon_sym_u16] = ACTIONS(1730), + [anon_sym_i16] = ACTIONS(1730), + [anon_sym_u32] = ACTIONS(1730), + [anon_sym_i32] = ACTIONS(1730), + [anon_sym_u64] = ACTIONS(1730), + [anon_sym_i64] = ACTIONS(1730), + [anon_sym_u128] = ACTIONS(1730), + [anon_sym_i128] = ACTIONS(1730), + [anon_sym_isize] = ACTIONS(1730), + [anon_sym_usize] = ACTIONS(1730), + [anon_sym_f32] = ACTIONS(1730), + [anon_sym_f64] = ACTIONS(1730), + [anon_sym_bool] = ACTIONS(1730), + [anon_sym_str] = ACTIONS(1730), + [anon_sym_char] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1412), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_async] = ACTIONS(1736), + [anon_sym_const] = ACTIONS(1738), + [anon_sym_default] = ACTIONS(1740), + [anon_sym_gen] = ACTIONS(1740), + [anon_sym_static] = ACTIONS(1420), + [anon_sym_union] = ACTIONS(1740), + [anon_sym_ref] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1422), + [anon_sym_raw] = ACTIONS(1740), + [anon_sym_move] = ACTIONS(1424), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1742), + [sym_super] = ACTIONS(1742), + [sym_crate] = ACTIONS(1742), + [sym_metavariable] = ACTIONS(1744), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [723] = { + [sym_line_comment] = STATE(723), + [sym_block_comment] = STATE(723), [ts_builtin_sym_end] = ACTIONS(2839), [sym_identifier] = ACTIONS(2841), [anon_sym_SEMI] = ACTIONS(2839), @@ -91575,9 +90559,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2839), [sym_float_literal] = ACTIONS(2839), }, - [STATE(730)] = { - [sym_line_comment] = STATE(730), - [sym_block_comment] = STATE(730), + [724] = { + [sym_line_comment] = STATE(724), + [sym_block_comment] = STATE(724), [ts_builtin_sym_end] = ACTIONS(2843), [sym_identifier] = ACTIONS(2845), [anon_sym_SEMI] = ACTIONS(2843), @@ -91657,9 +90641,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2843), [sym_float_literal] = ACTIONS(2843), }, - [STATE(731)] = { - [sym_line_comment] = STATE(731), - [sym_block_comment] = STATE(731), + [725] = { + [sym_line_comment] = STATE(725), + [sym_block_comment] = STATE(725), [ts_builtin_sym_end] = ACTIONS(2847), [sym_identifier] = ACTIONS(2849), [anon_sym_SEMI] = ACTIONS(2847), @@ -91739,9 +90723,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2847), [sym_float_literal] = ACTIONS(2847), }, - [STATE(732)] = { - [sym_line_comment] = STATE(732), - [sym_block_comment] = STATE(732), + [726] = { + [sym_line_comment] = STATE(726), + [sym_block_comment] = STATE(726), [ts_builtin_sym_end] = ACTIONS(2851), [sym_identifier] = ACTIONS(2853), [anon_sym_SEMI] = ACTIONS(2851), @@ -91821,9 +90805,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2851), [sym_float_literal] = ACTIONS(2851), }, - [STATE(733)] = { - [sym_line_comment] = STATE(733), - [sym_block_comment] = STATE(733), + [727] = { + [sym_line_comment] = STATE(727), + [sym_block_comment] = STATE(727), [ts_builtin_sym_end] = ACTIONS(2855), [sym_identifier] = ACTIONS(2857), [anon_sym_SEMI] = ACTIONS(2855), @@ -91903,9 +90887,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2855), [sym_float_literal] = ACTIONS(2855), }, - [STATE(734)] = { - [sym_line_comment] = STATE(734), - [sym_block_comment] = STATE(734), + [728] = { + [sym_line_comment] = STATE(728), + [sym_block_comment] = STATE(728), [ts_builtin_sym_end] = ACTIONS(2859), [sym_identifier] = ACTIONS(2861), [anon_sym_SEMI] = ACTIONS(2859), @@ -91985,9 +90969,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2859), [sym_float_literal] = ACTIONS(2859), }, - [STATE(735)] = { - [sym_line_comment] = STATE(735), - [sym_block_comment] = STATE(735), + [729] = { + [sym_line_comment] = STATE(729), + [sym_block_comment] = STATE(729), [ts_builtin_sym_end] = ACTIONS(2863), [sym_identifier] = ACTIONS(2865), [anon_sym_SEMI] = ACTIONS(2863), @@ -92067,9 +91051,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2863), [sym_float_literal] = ACTIONS(2863), }, - [STATE(736)] = { - [sym_line_comment] = STATE(736), - [sym_block_comment] = STATE(736), + [730] = { + [sym_line_comment] = STATE(730), + [sym_block_comment] = STATE(730), [ts_builtin_sym_end] = ACTIONS(2867), [sym_identifier] = ACTIONS(2869), [anon_sym_SEMI] = ACTIONS(2867), @@ -92149,9 +91133,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2867), [sym_float_literal] = ACTIONS(2867), }, - [STATE(737)] = { - [sym_line_comment] = STATE(737), - [sym_block_comment] = STATE(737), + [731] = { + [sym_line_comment] = STATE(731), + [sym_block_comment] = STATE(731), [ts_builtin_sym_end] = ACTIONS(2871), [sym_identifier] = ACTIONS(2873), [anon_sym_SEMI] = ACTIONS(2871), @@ -92231,9 +91215,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2871), [sym_float_literal] = ACTIONS(2871), }, - [STATE(738)] = { - [sym_line_comment] = STATE(738), - [sym_block_comment] = STATE(738), + [732] = { + [sym_line_comment] = STATE(732), + [sym_block_comment] = STATE(732), [ts_builtin_sym_end] = ACTIONS(2875), [sym_identifier] = ACTIONS(2877), [anon_sym_SEMI] = ACTIONS(2875), @@ -92313,9 +91297,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2875), [sym_float_literal] = ACTIONS(2875), }, - [STATE(739)] = { - [sym_line_comment] = STATE(739), - [sym_block_comment] = STATE(739), + [733] = { + [sym_line_comment] = STATE(733), + [sym_block_comment] = STATE(733), [ts_builtin_sym_end] = ACTIONS(2879), [sym_identifier] = ACTIONS(2881), [anon_sym_SEMI] = ACTIONS(2879), @@ -92395,9 +91379,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2879), [sym_float_literal] = ACTIONS(2879), }, - [STATE(740)] = { - [sym_line_comment] = STATE(740), - [sym_block_comment] = STATE(740), + [734] = { + [sym_line_comment] = STATE(734), + [sym_block_comment] = STATE(734), [ts_builtin_sym_end] = ACTIONS(2883), [sym_identifier] = ACTIONS(2885), [anon_sym_SEMI] = ACTIONS(2883), @@ -92477,9 +91461,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2883), [sym_float_literal] = ACTIONS(2883), }, - [STATE(741)] = { - [sym_line_comment] = STATE(741), - [sym_block_comment] = STATE(741), + [735] = { + [sym_line_comment] = STATE(735), + [sym_block_comment] = STATE(735), [ts_builtin_sym_end] = ACTIONS(2887), [sym_identifier] = ACTIONS(2889), [anon_sym_SEMI] = ACTIONS(2887), @@ -92559,9 +91543,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2887), [sym_float_literal] = ACTIONS(2887), }, - [STATE(742)] = { - [sym_line_comment] = STATE(742), - [sym_block_comment] = STATE(742), + [736] = { + [sym_line_comment] = STATE(736), + [sym_block_comment] = STATE(736), [ts_builtin_sym_end] = ACTIONS(2891), [sym_identifier] = ACTIONS(2893), [anon_sym_SEMI] = ACTIONS(2891), @@ -92641,9 +91625,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2891), [sym_float_literal] = ACTIONS(2891), }, - [STATE(743)] = { - [sym_line_comment] = STATE(743), - [sym_block_comment] = STATE(743), + [737] = { + [sym_line_comment] = STATE(737), + [sym_block_comment] = STATE(737), [ts_builtin_sym_end] = ACTIONS(2895), [sym_identifier] = ACTIONS(2897), [anon_sym_SEMI] = ACTIONS(2895), @@ -92723,9 +91707,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2895), [sym_float_literal] = ACTIONS(2895), }, - [STATE(744)] = { - [sym_line_comment] = STATE(744), - [sym_block_comment] = STATE(744), + [738] = { + [sym_line_comment] = STATE(738), + [sym_block_comment] = STATE(738), [ts_builtin_sym_end] = ACTIONS(2899), [sym_identifier] = ACTIONS(2901), [anon_sym_SEMI] = ACTIONS(2899), @@ -92805,9 +91789,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2899), [sym_float_literal] = ACTIONS(2899), }, - [STATE(745)] = { - [sym_line_comment] = STATE(745), - [sym_block_comment] = STATE(745), + [739] = { + [sym_line_comment] = STATE(739), + [sym_block_comment] = STATE(739), [ts_builtin_sym_end] = ACTIONS(2903), [sym_identifier] = ACTIONS(2905), [anon_sym_SEMI] = ACTIONS(2903), @@ -92887,91 +91871,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2903), [sym_float_literal] = ACTIONS(2903), }, - [STATE(746)] = { - [sym_attribute_item] = STATE(1369), - [sym_inner_attribute_item] = STATE(1369), - [sym_bracketed_type] = STATE(3698), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3419), - [sym_macro_invocation] = STATE(2942), - [sym_scoped_identifier] = STATE(2248), - [sym_scoped_type_identifier] = STATE(3103), - [sym_match_pattern] = STATE(3545), - [sym_const_block] = STATE(2942), - [sym__pattern] = STATE(3188), - [sym_generic_pattern] = STATE(2942), - [sym_tuple_pattern] = STATE(2942), - [sym_slice_pattern] = STATE(2942), - [sym_tuple_struct_pattern] = STATE(2942), - [sym_struct_pattern] = STATE(2942), - [sym_remaining_field_pattern] = STATE(2942), - [sym_mut_pattern] = STATE(2942), - [sym_range_pattern] = STATE(2942), - [sym_ref_pattern] = STATE(2942), - [sym_captured_pattern] = STATE(2942), - [sym_reference_pattern] = STATE(2942), - [sym_or_pattern] = STATE(2942), - [sym__literal_pattern] = STATE(2447), - [sym_negative_literal] = STATE(2441), - [sym_string_literal] = STATE(2441), - [sym_raw_string_literal] = STATE(2441), - [sym_boolean_literal] = STATE(2441), - [sym_line_comment] = STATE(746), - [sym_block_comment] = STATE(746), - [aux_sym_match_arm_repeat1] = STATE(1077), - [sym_identifier] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_LBRACK] = ACTIONS(1680), - [anon_sym_u8] = ACTIONS(1684), - [anon_sym_i8] = ACTIONS(1684), - [anon_sym_u16] = ACTIONS(1684), - [anon_sym_i16] = ACTIONS(1684), - [anon_sym_u32] = ACTIONS(1684), - [anon_sym_i32] = ACTIONS(1684), - [anon_sym_u64] = ACTIONS(1684), - [anon_sym_i64] = ACTIONS(1684), - [anon_sym_u128] = ACTIONS(1684), - [anon_sym_i128] = ACTIONS(1684), - [anon_sym_isize] = ACTIONS(1684), - [anon_sym_usize] = ACTIONS(1684), - [anon_sym_f32] = ACTIONS(1684), - [anon_sym_f64] = ACTIONS(1684), - [anon_sym_bool] = ACTIONS(1684), - [anon_sym_str] = ACTIONS(1684), - [anon_sym_char] = ACTIONS(1684), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_AMP] = ACTIONS(1688), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1692), - [anon_sym_DOT_DOT] = ACTIONS(1694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_POUND] = ACTIONS(1700), - [anon_sym_const] = ACTIONS(1702), - [anon_sym_default] = ACTIONS(1704), - [anon_sym_gen] = ACTIONS(1704), - [anon_sym_union] = ACTIONS(1704), - [anon_sym_ref] = ACTIONS(1706), - [sym_mutable_specifier] = ACTIONS(1708), - [anon_sym_raw] = ACTIONS(1704), - [sym_integer_literal] = ACTIONS(1710), - [aux_sym_string_literal_token1] = ACTIONS(1712), - [sym_char_literal] = ACTIONS(1710), - [anon_sym_true] = ACTIONS(1714), - [anon_sym_false] = ACTIONS(1714), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1716), - [sym_super] = ACTIONS(1716), - [sym_crate] = ACTIONS(1716), - [sym_metavariable] = ACTIONS(1718), - [sym__raw_string_literal_start] = ACTIONS(1720), - [sym_float_literal] = ACTIONS(1710), - }, - [STATE(747)] = { - [sym_line_comment] = STATE(747), - [sym_block_comment] = STATE(747), + [740] = { + [sym_line_comment] = STATE(740), + [sym_block_comment] = STATE(740), [ts_builtin_sym_end] = ACTIONS(2907), [sym_identifier] = ACTIONS(2909), [anon_sym_SEMI] = ACTIONS(2907), @@ -93051,9 +91953,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2907), [sym_float_literal] = ACTIONS(2907), }, - [STATE(748)] = { - [sym_line_comment] = STATE(748), - [sym_block_comment] = STATE(748), + [741] = { + [sym_line_comment] = STATE(741), + [sym_block_comment] = STATE(741), [ts_builtin_sym_end] = ACTIONS(2911), [sym_identifier] = ACTIONS(2913), [anon_sym_SEMI] = ACTIONS(2911), @@ -93133,9 +92035,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2911), [sym_float_literal] = ACTIONS(2911), }, - [STATE(749)] = { - [sym_line_comment] = STATE(749), - [sym_block_comment] = STATE(749), + [742] = { + [sym_line_comment] = STATE(742), + [sym_block_comment] = STATE(742), [ts_builtin_sym_end] = ACTIONS(2915), [sym_identifier] = ACTIONS(2917), [anon_sym_SEMI] = ACTIONS(2915), @@ -93215,9 +92117,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2915), [sym_float_literal] = ACTIONS(2915), }, - [STATE(750)] = { - [sym_line_comment] = STATE(750), - [sym_block_comment] = STATE(750), + [743] = { + [sym_line_comment] = STATE(743), + [sym_block_comment] = STATE(743), [ts_builtin_sym_end] = ACTIONS(2919), [sym_identifier] = ACTIONS(2921), [anon_sym_SEMI] = ACTIONS(2919), @@ -93297,9 +92199,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2919), [sym_float_literal] = ACTIONS(2919), }, - [STATE(751)] = { - [sym_line_comment] = STATE(751), - [sym_block_comment] = STATE(751), + [744] = { + [sym_line_comment] = STATE(744), + [sym_block_comment] = STATE(744), [ts_builtin_sym_end] = ACTIONS(2923), [sym_identifier] = ACTIONS(2925), [anon_sym_SEMI] = ACTIONS(2923), @@ -93379,9 +92281,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2923), [sym_float_literal] = ACTIONS(2923), }, - [STATE(752)] = { - [sym_line_comment] = STATE(752), - [sym_block_comment] = STATE(752), + [745] = { + [sym_attribute_item] = STATE(1361), + [sym_inner_attribute_item] = STATE(1361), + [sym_bracketed_type] = STATE(3688), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3407), + [sym_macro_invocation] = STATE(3125), + [sym_scoped_identifier] = STATE(2279), + [sym_scoped_type_identifier] = STATE(3095), + [sym_match_pattern] = STATE(3544), + [sym_const_block] = STATE(3125), + [sym__pattern] = STATE(3046), + [sym_generic_pattern] = STATE(3125), + [sym_tuple_pattern] = STATE(3125), + [sym_slice_pattern] = STATE(3125), + [sym_tuple_struct_pattern] = STATE(3125), + [sym_struct_pattern] = STATE(3125), + [sym_remaining_field_pattern] = STATE(3125), + [sym_mut_pattern] = STATE(3125), + [sym_range_pattern] = STATE(3125), + [sym_ref_pattern] = STATE(3125), + [sym_captured_pattern] = STATE(3125), + [sym_reference_pattern] = STATE(3125), + [sym_or_pattern] = STATE(3125), + [sym__literal_pattern] = STATE(2478), + [sym_negative_literal] = STATE(2502), + [sym_string_literal] = STATE(2502), + [sym_raw_string_literal] = STATE(2502), + [sym_boolean_literal] = STATE(2502), + [sym_line_comment] = STATE(745), + [sym_block_comment] = STATE(745), + [aux_sym_match_arm_repeat1] = STATE(1071), + [sym_identifier] = ACTIONS(1668), + [anon_sym_LPAREN] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_u8] = ACTIONS(1676), + [anon_sym_i8] = ACTIONS(1676), + [anon_sym_u16] = ACTIONS(1676), + [anon_sym_i16] = ACTIONS(1676), + [anon_sym_u32] = ACTIONS(1676), + [anon_sym_i32] = ACTIONS(1676), + [anon_sym_u64] = ACTIONS(1676), + [anon_sym_i64] = ACTIONS(1676), + [anon_sym_u128] = ACTIONS(1676), + [anon_sym_i128] = ACTIONS(1676), + [anon_sym_isize] = ACTIONS(1676), + [anon_sym_usize] = ACTIONS(1676), + [anon_sym_f32] = ACTIONS(1676), + [anon_sym_f64] = ACTIONS(1676), + [anon_sym_bool] = ACTIONS(1676), + [anon_sym_str] = ACTIONS(1676), + [anon_sym_char] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1680), + [anon_sym_PIPE] = ACTIONS(1682), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1684), + [anon_sym_DOT_DOT] = ACTIONS(1686), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1688), + [anon_sym_COLON_COLON] = ACTIONS(1690), + [anon_sym_POUND] = ACTIONS(1692), + [anon_sym_const] = ACTIONS(1694), + [anon_sym_default] = ACTIONS(1696), + [anon_sym_gen] = ACTIONS(1696), + [anon_sym_union] = ACTIONS(1696), + [anon_sym_ref] = ACTIONS(1698), + [sym_mutable_specifier] = ACTIONS(1700), + [anon_sym_raw] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1702), + [aux_sym_string_literal_token1] = ACTIONS(1704), + [sym_char_literal] = ACTIONS(1702), + [anon_sym_true] = ACTIONS(1706), + [anon_sym_false] = ACTIONS(1706), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1708), + [sym_super] = ACTIONS(1708), + [sym_crate] = ACTIONS(1708), + [sym_metavariable] = ACTIONS(1710), + [sym__raw_string_literal_start] = ACTIONS(1712), + [sym_float_literal] = ACTIONS(1702), + }, + [746] = { + [sym_line_comment] = STATE(746), + [sym_block_comment] = STATE(746), [ts_builtin_sym_end] = ACTIONS(2927), [sym_identifier] = ACTIONS(2929), [anon_sym_SEMI] = ACTIONS(2927), @@ -93461,9 +92445,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2927), [sym_float_literal] = ACTIONS(2927), }, - [STATE(753)] = { - [sym_line_comment] = STATE(753), - [sym_block_comment] = STATE(753), + [747] = { + [sym_line_comment] = STATE(747), + [sym_block_comment] = STATE(747), [ts_builtin_sym_end] = ACTIONS(2931), [sym_identifier] = ACTIONS(2933), [anon_sym_SEMI] = ACTIONS(2931), @@ -93543,9 +92527,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2931), [sym_float_literal] = ACTIONS(2931), }, - [STATE(754)] = { - [sym_line_comment] = STATE(754), - [sym_block_comment] = STATE(754), + [748] = { + [sym_line_comment] = STATE(748), + [sym_block_comment] = STATE(748), [ts_builtin_sym_end] = ACTIONS(2935), [sym_identifier] = ACTIONS(2937), [anon_sym_SEMI] = ACTIONS(2935), @@ -93625,9 +92609,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2935), [sym_float_literal] = ACTIONS(2935), }, - [STATE(755)] = { - [sym_line_comment] = STATE(755), - [sym_block_comment] = STATE(755), + [749] = { + [sym_line_comment] = STATE(749), + [sym_block_comment] = STATE(749), [ts_builtin_sym_end] = ACTIONS(2939), [sym_identifier] = ACTIONS(2941), [anon_sym_SEMI] = ACTIONS(2939), @@ -93707,9 +92691,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2939), [sym_float_literal] = ACTIONS(2939), }, - [STATE(756)] = { - [sym_line_comment] = STATE(756), - [sym_block_comment] = STATE(756), + [750] = { + [sym_line_comment] = STATE(750), + [sym_block_comment] = STATE(750), [ts_builtin_sym_end] = ACTIONS(2943), [sym_identifier] = ACTIONS(2945), [anon_sym_SEMI] = ACTIONS(2943), @@ -93789,9 +92773,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2943), [sym_float_literal] = ACTIONS(2943), }, - [STATE(757)] = { - [sym_line_comment] = STATE(757), - [sym_block_comment] = STATE(757), + [751] = { + [sym_line_comment] = STATE(751), + [sym_block_comment] = STATE(751), [ts_builtin_sym_end] = ACTIONS(2947), [sym_identifier] = ACTIONS(2949), [anon_sym_SEMI] = ACTIONS(2947), @@ -93871,9 +92855,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2947), [sym_float_literal] = ACTIONS(2947), }, - [STATE(758)] = { - [sym_line_comment] = STATE(758), - [sym_block_comment] = STATE(758), + [752] = { + [sym_line_comment] = STATE(752), + [sym_block_comment] = STATE(752), [ts_builtin_sym_end] = ACTIONS(2951), [sym_identifier] = ACTIONS(2953), [anon_sym_SEMI] = ACTIONS(2951), @@ -93953,9 +92937,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2951), [sym_float_literal] = ACTIONS(2951), }, - [STATE(759)] = { - [sym_line_comment] = STATE(759), - [sym_block_comment] = STATE(759), + [753] = { + [sym_line_comment] = STATE(753), + [sym_block_comment] = STATE(753), [ts_builtin_sym_end] = ACTIONS(2955), [sym_identifier] = ACTIONS(2957), [anon_sym_SEMI] = ACTIONS(2955), @@ -94035,9 +93019,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2955), [sym_float_literal] = ACTIONS(2955), }, - [STATE(760)] = { - [sym_line_comment] = STATE(760), - [sym_block_comment] = STATE(760), + [754] = { + [sym_line_comment] = STATE(754), + [sym_block_comment] = STATE(754), [ts_builtin_sym_end] = ACTIONS(2959), [sym_identifier] = ACTIONS(2961), [anon_sym_SEMI] = ACTIONS(2959), @@ -94117,9 +93101,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2959), [sym_float_literal] = ACTIONS(2959), }, - [STATE(761)] = { - [sym_line_comment] = STATE(761), - [sym_block_comment] = STATE(761), + [755] = { + [sym_line_comment] = STATE(755), + [sym_block_comment] = STATE(755), [ts_builtin_sym_end] = ACTIONS(2963), [sym_identifier] = ACTIONS(2965), [anon_sym_SEMI] = ACTIONS(2963), @@ -94199,9 +93183,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2963), [sym_float_literal] = ACTIONS(2963), }, - [STATE(762)] = { - [sym_line_comment] = STATE(762), - [sym_block_comment] = STATE(762), + [756] = { + [sym_line_comment] = STATE(756), + [sym_block_comment] = STATE(756), [ts_builtin_sym_end] = ACTIONS(2967), [sym_identifier] = ACTIONS(2969), [anon_sym_SEMI] = ACTIONS(2967), @@ -94281,9 +93265,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2967), [sym_float_literal] = ACTIONS(2967), }, - [STATE(763)] = { - [sym_line_comment] = STATE(763), - [sym_block_comment] = STATE(763), + [757] = { + [sym_line_comment] = STATE(757), + [sym_block_comment] = STATE(757), [ts_builtin_sym_end] = ACTIONS(2971), [sym_identifier] = ACTIONS(2973), [anon_sym_SEMI] = ACTIONS(2971), @@ -94363,9 +93347,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2971), [sym_float_literal] = ACTIONS(2971), }, - [STATE(764)] = { - [sym_line_comment] = STATE(764), - [sym_block_comment] = STATE(764), + [758] = { + [sym_line_comment] = STATE(758), + [sym_block_comment] = STATE(758), [ts_builtin_sym_end] = ACTIONS(2975), [sym_identifier] = ACTIONS(2977), [anon_sym_SEMI] = ACTIONS(2975), @@ -94445,9 +93429,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2975), [sym_float_literal] = ACTIONS(2975), }, - [STATE(765)] = { - [sym_line_comment] = STATE(765), - [sym_block_comment] = STATE(765), + [759] = { + [sym_line_comment] = STATE(759), + [sym_block_comment] = STATE(759), [ts_builtin_sym_end] = ACTIONS(2979), [sym_identifier] = ACTIONS(2981), [anon_sym_SEMI] = ACTIONS(2979), @@ -94527,9 +93511,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2979), [sym_float_literal] = ACTIONS(2979), }, - [STATE(766)] = { - [sym_line_comment] = STATE(766), - [sym_block_comment] = STATE(766), + [760] = { + [sym_line_comment] = STATE(760), + [sym_block_comment] = STATE(760), [ts_builtin_sym_end] = ACTIONS(2983), [sym_identifier] = ACTIONS(2985), [anon_sym_SEMI] = ACTIONS(2983), @@ -94609,9 +93593,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2983), [sym_float_literal] = ACTIONS(2983), }, - [STATE(767)] = { - [sym_line_comment] = STATE(767), - [sym_block_comment] = STATE(767), + [761] = { + [sym_line_comment] = STATE(761), + [sym_block_comment] = STATE(761), [ts_builtin_sym_end] = ACTIONS(2987), [sym_identifier] = ACTIONS(2989), [anon_sym_SEMI] = ACTIONS(2987), @@ -94691,9 +93675,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2987), [sym_float_literal] = ACTIONS(2987), }, - [STATE(768)] = { - [sym_line_comment] = STATE(768), - [sym_block_comment] = STATE(768), + [762] = { + [sym_line_comment] = STATE(762), + [sym_block_comment] = STATE(762), [ts_builtin_sym_end] = ACTIONS(2991), [sym_identifier] = ACTIONS(2993), [anon_sym_SEMI] = ACTIONS(2991), @@ -94773,9 +93757,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2991), [sym_float_literal] = ACTIONS(2991), }, - [STATE(769)] = { - [sym_line_comment] = STATE(769), - [sym_block_comment] = STATE(769), + [763] = { + [sym_line_comment] = STATE(763), + [sym_block_comment] = STATE(763), [ts_builtin_sym_end] = ACTIONS(2995), [sym_identifier] = ACTIONS(2997), [anon_sym_SEMI] = ACTIONS(2995), @@ -94855,9 +93839,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2995), [sym_float_literal] = ACTIONS(2995), }, - [STATE(770)] = { - [sym_line_comment] = STATE(770), - [sym_block_comment] = STATE(770), + [764] = { + [sym_line_comment] = STATE(764), + [sym_block_comment] = STATE(764), [ts_builtin_sym_end] = ACTIONS(2999), [sym_identifier] = ACTIONS(3001), [anon_sym_SEMI] = ACTIONS(2999), @@ -94937,9 +93921,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2999), [sym_float_literal] = ACTIONS(2999), }, - [STATE(771)] = { - [sym_line_comment] = STATE(771), - [sym_block_comment] = STATE(771), + [765] = { + [sym_line_comment] = STATE(765), + [sym_block_comment] = STATE(765), [ts_builtin_sym_end] = ACTIONS(3003), [sym_identifier] = ACTIONS(3005), [anon_sym_SEMI] = ACTIONS(3003), @@ -95019,9 +94003,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(3003), [sym_float_literal] = ACTIONS(3003), }, - [STATE(772)] = { - [sym_line_comment] = STATE(772), - [sym_block_comment] = STATE(772), + [766] = { + [sym_line_comment] = STATE(766), + [sym_block_comment] = STATE(766), [ts_builtin_sym_end] = ACTIONS(3007), [sym_identifier] = ACTIONS(3009), [anon_sym_SEMI] = ACTIONS(3007), @@ -95101,9 +94085,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(3007), [sym_float_literal] = ACTIONS(3007), }, - [STATE(773)] = { - [sym_line_comment] = STATE(773), - [sym_block_comment] = STATE(773), + [767] = { + [sym_line_comment] = STATE(767), + [sym_block_comment] = STATE(767), [ts_builtin_sym_end] = ACTIONS(3011), [sym_identifier] = ACTIONS(3013), [anon_sym_SEMI] = ACTIONS(3011), @@ -95183,9 +94167,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(3011), [sym_float_literal] = ACTIONS(3011), }, - [STATE(774)] = { - [sym_line_comment] = STATE(774), - [sym_block_comment] = STATE(774), + [768] = { + [sym_line_comment] = STATE(768), + [sym_block_comment] = STATE(768), [ts_builtin_sym_end] = ACTIONS(3015), [sym_identifier] = ACTIONS(3017), [anon_sym_SEMI] = ACTIONS(3015), @@ -95265,9 +94249,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(3015), [sym_float_literal] = ACTIONS(3015), }, - [STATE(775)] = { - [sym_line_comment] = STATE(775), - [sym_block_comment] = STATE(775), + [769] = { + [sym_line_comment] = STATE(769), + [sym_block_comment] = STATE(769), [ts_builtin_sym_end] = ACTIONS(3019), [sym_identifier] = ACTIONS(3021), [anon_sym_SEMI] = ACTIONS(3019), @@ -95347,9 +94331,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(3019), [sym_float_literal] = ACTIONS(3019), }, - [STATE(776)] = { - [sym_line_comment] = STATE(776), - [sym_block_comment] = STATE(776), + [770] = { + [sym_line_comment] = STATE(770), + [sym_block_comment] = STATE(770), [ts_builtin_sym_end] = ACTIONS(3023), [sym_identifier] = ACTIONS(3025), [anon_sym_SEMI] = ACTIONS(3023), @@ -95429,9 +94413,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(3023), [sym_float_literal] = ACTIONS(3023), }, - [STATE(777)] = { - [sym_line_comment] = STATE(777), - [sym_block_comment] = STATE(777), + [771] = { + [sym_line_comment] = STATE(771), + [sym_block_comment] = STATE(771), [ts_builtin_sym_end] = ACTIONS(3027), [sym_identifier] = ACTIONS(3029), [anon_sym_SEMI] = ACTIONS(3027), @@ -95511,9 +94495,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(3027), [sym_float_literal] = ACTIONS(3027), }, - [STATE(778)] = { - [sym_line_comment] = STATE(778), - [sym_block_comment] = STATE(778), + [772] = { + [sym_line_comment] = STATE(772), + [sym_block_comment] = STATE(772), [ts_builtin_sym_end] = ACTIONS(3031), [sym_identifier] = ACTIONS(3033), [anon_sym_SEMI] = ACTIONS(3031), @@ -95593,9 +94577,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(3031), [sym_float_literal] = ACTIONS(3031), }, - [STATE(779)] = { - [sym_line_comment] = STATE(779), - [sym_block_comment] = STATE(779), + [773] = { + [sym_line_comment] = STATE(773), + [sym_block_comment] = STATE(773), [ts_builtin_sym_end] = ACTIONS(3035), [sym_identifier] = ACTIONS(3037), [anon_sym_SEMI] = ACTIONS(3035), @@ -95675,9 +94659,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(3035), [sym_float_literal] = ACTIONS(3035), }, - [STATE(780)] = { - [sym_line_comment] = STATE(780), - [sym_block_comment] = STATE(780), + [774] = { + [sym_line_comment] = STATE(774), + [sym_block_comment] = STATE(774), [ts_builtin_sym_end] = ACTIONS(3039), [sym_identifier] = ACTIONS(3041), [anon_sym_SEMI] = ACTIONS(3039), @@ -95757,9 +94741,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(3039), [sym_float_literal] = ACTIONS(3039), }, - [STATE(781)] = { - [sym_line_comment] = STATE(781), - [sym_block_comment] = STATE(781), + [775] = { + [sym_line_comment] = STATE(775), + [sym_block_comment] = STATE(775), [ts_builtin_sym_end] = ACTIONS(3043), [sym_identifier] = ACTIONS(3045), [anon_sym_SEMI] = ACTIONS(3043), @@ -95839,9 +94823,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(3043), [sym_float_literal] = ACTIONS(3043), }, - [STATE(782)] = { - [sym_line_comment] = STATE(782), - [sym_block_comment] = STATE(782), + [776] = { + [sym_line_comment] = STATE(776), + [sym_block_comment] = STATE(776), [ts_builtin_sym_end] = ACTIONS(3047), [sym_identifier] = ACTIONS(3049), [anon_sym_SEMI] = ACTIONS(3047), @@ -95921,9 +94905,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(3047), [sym_float_literal] = ACTIONS(3047), }, - [STATE(783)] = { - [sym_line_comment] = STATE(783), - [sym_block_comment] = STATE(783), + [777] = { + [sym_line_comment] = STATE(777), + [sym_block_comment] = STATE(777), [ts_builtin_sym_end] = ACTIONS(3051), [sym_identifier] = ACTIONS(3053), [anon_sym_SEMI] = ACTIONS(3051), @@ -96003,9 +94987,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(3051), [sym_float_literal] = ACTIONS(3051), }, - [STATE(784)] = { - [sym_line_comment] = STATE(784), - [sym_block_comment] = STATE(784), + [778] = { + [sym_line_comment] = STATE(778), + [sym_block_comment] = STATE(778), [ts_builtin_sym_end] = ACTIONS(3055), [sym_identifier] = ACTIONS(3057), [anon_sym_SEMI] = ACTIONS(3055), @@ -96085,9 +95069,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(3055), [sym_float_literal] = ACTIONS(3055), }, - [STATE(785)] = { - [sym_line_comment] = STATE(785), - [sym_block_comment] = STATE(785), + [779] = { + [sym_line_comment] = STATE(779), + [sym_block_comment] = STATE(779), [ts_builtin_sym_end] = ACTIONS(3059), [sym_identifier] = ACTIONS(3061), [anon_sym_SEMI] = ACTIONS(3059), @@ -96167,20595 +95151,20636 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(3059), [sym_float_literal] = ACTIONS(3059), }, - [STATE(786)] = { + [780] = { + [sym_attribute_item] = STATE(1378), + [sym_function_modifiers] = STATE(3686), + [sym_removed_trait_bound] = STATE(2068), + [sym_const_parameter] = STATE(2944), + [sym_type_parameter] = STATE(2944), + [sym_lifetime_parameter] = STATE(2944), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(3072), + [sym_bracketed_type] = STATE(3736), + [sym_qualified_type] = STATE(3755), + [sym_lifetime] = STATE(2530), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3651), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2258), + [sym_line_comment] = STATE(780), + [sym_block_comment] = STATE(780), + [aux_sym_enum_variant_list_repeat1] = STATE(2148), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3063), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1616), + [anon_sym_QMARK] = ACTIONS(1618), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1622), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), + [anon_sym_POUND] = ACTIONS(3065), + [anon_sym_SQUOTE] = ACTIONS(3067), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(3069), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1632), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1636), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1638), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(3071), + }, + [781] = { + [sym_attribute_item] = STATE(1378), + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym_visibility_modifier] = STATE(891), + [sym__type] = STATE(2848), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), + [sym_line_comment] = STATE(781), + [sym_block_comment] = STATE(781), + [aux_sym_enum_variant_list_repeat1] = STATE(794), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_RPAREN] = ACTIONS(3075), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COMMA] = ACTIONS(3079), + [anon_sym_COLON_COLON] = ACTIONS(1626), + [anon_sym_POUND] = ACTIONS(3065), + [anon_sym_SQUOTE] = ACTIONS(3081), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_pub] = ACTIONS(3083), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(3085), + [sym_metavariable] = ACTIONS(1644), + }, + [782] = { + [sym_attribute_item] = STATE(1378), + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym_visibility_modifier] = STATE(936), + [sym__type] = STATE(3132), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), + [sym_line_comment] = STATE(782), + [sym_block_comment] = STATE(782), + [aux_sym_enum_variant_list_repeat1] = STATE(793), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_RPAREN] = ACTIONS(3087), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), + [anon_sym_POUND] = ACTIONS(3065), + [anon_sym_SQUOTE] = ACTIONS(3081), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_pub] = ACTIONS(3083), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(3085), + [sym_metavariable] = ACTIONS(1644), + }, + [783] = { + [sym_attribute_item] = STATE(1378), + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym_visibility_modifier] = STATE(936), + [sym__type] = STATE(3132), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), + [sym_line_comment] = STATE(783), + [sym_block_comment] = STATE(783), + [aux_sym_enum_variant_list_repeat1] = STATE(793), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_RPAREN] = ACTIONS(3089), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), + [anon_sym_POUND] = ACTIONS(3065), + [anon_sym_SQUOTE] = ACTIONS(3081), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_pub] = ACTIONS(3083), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(3085), + [sym_metavariable] = ACTIONS(1644), + }, + [784] = { + [sym_attribute_item] = STATE(1378), + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym_visibility_modifier] = STATE(936), + [sym__type] = STATE(3132), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), + [sym_line_comment] = STATE(784), + [sym_block_comment] = STATE(784), + [aux_sym_enum_variant_list_repeat1] = STATE(793), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_RPAREN] = ACTIONS(3091), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), + [anon_sym_POUND] = ACTIONS(3065), + [anon_sym_SQUOTE] = ACTIONS(3081), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_pub] = ACTIONS(3083), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(3085), + [sym_metavariable] = ACTIONS(1644), + }, + [785] = { + [sym_attribute_item] = STATE(1378), + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym_visibility_modifier] = STATE(936), + [sym__type] = STATE(3132), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), + [sym_line_comment] = STATE(785), + [sym_block_comment] = STATE(785), + [aux_sym_enum_variant_list_repeat1] = STATE(793), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_RPAREN] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), + [anon_sym_POUND] = ACTIONS(3065), + [anon_sym_SQUOTE] = ACTIONS(3081), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_pub] = ACTIONS(3083), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(3085), + [sym_metavariable] = ACTIONS(1644), + }, + [786] = { + [sym_attribute_item] = STATE(1378), + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym_visibility_modifier] = STATE(936), + [sym__type] = STATE(3132), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(786), [sym_block_comment] = STATE(786), - [ts_builtin_sym_end] = ACTIONS(3063), - [sym_identifier] = ACTIONS(3065), - [anon_sym_SEMI] = ACTIONS(3063), - [anon_sym_macro_rules_BANG] = ACTIONS(3063), - [anon_sym_LPAREN] = ACTIONS(3063), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_LBRACE] = ACTIONS(3063), - [anon_sym_RBRACE] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3063), - [anon_sym_u8] = ACTIONS(3065), - [anon_sym_i8] = ACTIONS(3065), - [anon_sym_u16] = ACTIONS(3065), - [anon_sym_i16] = ACTIONS(3065), - [anon_sym_u32] = ACTIONS(3065), - [anon_sym_i32] = ACTIONS(3065), - [anon_sym_u64] = ACTIONS(3065), - [anon_sym_i64] = ACTIONS(3065), - [anon_sym_u128] = ACTIONS(3065), - [anon_sym_i128] = ACTIONS(3065), - [anon_sym_isize] = ACTIONS(3065), - [anon_sym_usize] = ACTIONS(3065), - [anon_sym_f32] = ACTIONS(3065), - [anon_sym_f64] = ACTIONS(3065), - [anon_sym_bool] = ACTIONS(3065), - [anon_sym_str] = ACTIONS(3065), - [anon_sym_char] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_BANG] = ACTIONS(3063), - [anon_sym_AMP] = ACTIONS(3063), - [anon_sym_PIPE] = ACTIONS(3063), - [anon_sym_LT] = ACTIONS(3063), - [anon_sym_DOT_DOT] = ACTIONS(3063), - [anon_sym_COLON_COLON] = ACTIONS(3063), - [anon_sym_POUND] = ACTIONS(3063), - [anon_sym_SQUOTE] = ACTIONS(3065), - [anon_sym_async] = ACTIONS(3065), - [anon_sym_break] = ACTIONS(3065), - [anon_sym_const] = ACTIONS(3065), - [anon_sym_continue] = ACTIONS(3065), - [anon_sym_default] = ACTIONS(3065), - [anon_sym_enum] = ACTIONS(3065), - [anon_sym_fn] = ACTIONS(3065), - [anon_sym_for] = ACTIONS(3065), - [anon_sym_gen] = ACTIONS(3065), - [anon_sym_if] = ACTIONS(3065), - [anon_sym_impl] = ACTIONS(3065), - [anon_sym_let] = ACTIONS(3065), - [anon_sym_loop] = ACTIONS(3065), - [anon_sym_match] = ACTIONS(3065), - [anon_sym_mod] = ACTIONS(3065), - [anon_sym_pub] = ACTIONS(3065), - [anon_sym_return] = ACTIONS(3065), - [anon_sym_static] = ACTIONS(3065), - [anon_sym_struct] = ACTIONS(3065), - [anon_sym_trait] = ACTIONS(3065), - [anon_sym_type] = ACTIONS(3065), - [anon_sym_union] = ACTIONS(3065), - [anon_sym_unsafe] = ACTIONS(3065), - [anon_sym_use] = ACTIONS(3065), - [anon_sym_while] = ACTIONS(3065), - [anon_sym_extern] = ACTIONS(3065), - [anon_sym_raw] = ACTIONS(3065), - [anon_sym_yield] = ACTIONS(3065), - [anon_sym_move] = ACTIONS(3065), - [anon_sym_try] = ACTIONS(3065), - [sym_integer_literal] = ACTIONS(3063), - [aux_sym_string_literal_token1] = ACTIONS(3063), - [sym_char_literal] = ACTIONS(3063), - [anon_sym_true] = ACTIONS(3065), - [anon_sym_false] = ACTIONS(3065), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3065), - [sym_super] = ACTIONS(3065), - [sym_crate] = ACTIONS(3065), - [sym_metavariable] = ACTIONS(3063), - [sym__raw_string_literal_start] = ACTIONS(3063), - [sym_float_literal] = ACTIONS(3063), - }, - [STATE(787)] = { + [aux_sym_enum_variant_list_repeat1] = STATE(793), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_RPAREN] = ACTIONS(3095), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), + [anon_sym_POUND] = ACTIONS(3065), + [anon_sym_SQUOTE] = ACTIONS(3081), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_pub] = ACTIONS(3083), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(3085), + [sym_metavariable] = ACTIONS(1644), + }, + [787] = { + [sym_attribute_item] = STATE(1378), + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym_visibility_modifier] = STATE(936), + [sym__type] = STATE(3132), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(787), [sym_block_comment] = STATE(787), - [ts_builtin_sym_end] = ACTIONS(3067), - [sym_identifier] = ACTIONS(3069), - [anon_sym_SEMI] = ACTIONS(3067), - [anon_sym_macro_rules_BANG] = ACTIONS(3067), - [anon_sym_LPAREN] = ACTIONS(3067), - [anon_sym_LBRACK] = ACTIONS(3067), - [anon_sym_LBRACE] = ACTIONS(3067), - [anon_sym_RBRACE] = ACTIONS(3067), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_u8] = ACTIONS(3069), - [anon_sym_i8] = ACTIONS(3069), - [anon_sym_u16] = ACTIONS(3069), - [anon_sym_i16] = ACTIONS(3069), - [anon_sym_u32] = ACTIONS(3069), - [anon_sym_i32] = ACTIONS(3069), - [anon_sym_u64] = ACTIONS(3069), - [anon_sym_i64] = ACTIONS(3069), - [anon_sym_u128] = ACTIONS(3069), - [anon_sym_i128] = ACTIONS(3069), - [anon_sym_isize] = ACTIONS(3069), - [anon_sym_usize] = ACTIONS(3069), - [anon_sym_f32] = ACTIONS(3069), - [anon_sym_f64] = ACTIONS(3069), - [anon_sym_bool] = ACTIONS(3069), - [anon_sym_str] = ACTIONS(3069), - [anon_sym_char] = ACTIONS(3069), - [anon_sym_DASH] = ACTIONS(3067), - [anon_sym_BANG] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_PIPE] = ACTIONS(3067), - [anon_sym_LT] = ACTIONS(3067), - [anon_sym_DOT_DOT] = ACTIONS(3067), - [anon_sym_COLON_COLON] = ACTIONS(3067), - [anon_sym_POUND] = ACTIONS(3067), - [anon_sym_SQUOTE] = ACTIONS(3069), - [anon_sym_async] = ACTIONS(3069), - [anon_sym_break] = ACTIONS(3069), - [anon_sym_const] = ACTIONS(3069), - [anon_sym_continue] = ACTIONS(3069), - [anon_sym_default] = ACTIONS(3069), - [anon_sym_enum] = ACTIONS(3069), - [anon_sym_fn] = ACTIONS(3069), - [anon_sym_for] = ACTIONS(3069), - [anon_sym_gen] = ACTIONS(3069), - [anon_sym_if] = ACTIONS(3069), - [anon_sym_impl] = ACTIONS(3069), - [anon_sym_let] = ACTIONS(3069), - [anon_sym_loop] = ACTIONS(3069), - [anon_sym_match] = ACTIONS(3069), - [anon_sym_mod] = ACTIONS(3069), - [anon_sym_pub] = ACTIONS(3069), - [anon_sym_return] = ACTIONS(3069), - [anon_sym_static] = ACTIONS(3069), - [anon_sym_struct] = ACTIONS(3069), - [anon_sym_trait] = ACTIONS(3069), - [anon_sym_type] = ACTIONS(3069), - [anon_sym_union] = ACTIONS(3069), - [anon_sym_unsafe] = ACTIONS(3069), - [anon_sym_use] = ACTIONS(3069), - [anon_sym_while] = ACTIONS(3069), - [anon_sym_extern] = ACTIONS(3069), - [anon_sym_raw] = ACTIONS(3069), - [anon_sym_yield] = ACTIONS(3069), - [anon_sym_move] = ACTIONS(3069), - [anon_sym_try] = ACTIONS(3069), - [sym_integer_literal] = ACTIONS(3067), - [aux_sym_string_literal_token1] = ACTIONS(3067), - [sym_char_literal] = ACTIONS(3067), - [anon_sym_true] = ACTIONS(3069), - [anon_sym_false] = ACTIONS(3069), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3069), - [sym_super] = ACTIONS(3069), - [sym_crate] = ACTIONS(3069), - [sym_metavariable] = ACTIONS(3067), - [sym__raw_string_literal_start] = ACTIONS(3067), - [sym_float_literal] = ACTIONS(3067), - }, - [STATE(788)] = { - [sym_attribute_item] = STATE(1386), - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym_visibility_modifier] = STATE(1048), - [sym__type] = STATE(2831), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), - [sym_line_comment] = STATE(788), - [sym_block_comment] = STATE(788), - [aux_sym_enum_variant_list_repeat1] = STATE(796), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_RPAREN] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COMMA] = ACTIONS(3077), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_POUND] = ACTIONS(3079), + [aux_sym_enum_variant_list_repeat1] = STATE(793), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_RPAREN] = ACTIONS(3097), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), + [anon_sym_POUND] = ACTIONS(3065), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), [anon_sym_pub] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), [sym_crate] = ACTIONS(3085), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(789)] = { - [sym_attribute_item] = STATE(1386), - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_const_parameter] = STATE(2962), - [sym_type_parameter] = STATE(2962), - [sym_lifetime_parameter] = STATE(2962), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3194), - [sym_bracketed_type] = STATE(3750), - [sym_qualified_type] = STATE(3676), - [sym_lifetime] = STATE(2554), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), + [sym_metavariable] = ACTIONS(1644), + }, + [788] = { + [sym_bracketed_type] = STATE(3787), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_macro_invocation] = STATE(2198), + [sym_scoped_identifier] = STATE(2034), + [sym_scoped_type_identifier] = STATE(2991), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(2674), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), + [sym_line_comment] = STATE(788), + [sym_block_comment] = STATE(788), + [sym_identifier] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_RPAREN] = ACTIONS(3099), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_u8] = ACTIONS(1730), + [anon_sym_i8] = ACTIONS(1730), + [anon_sym_u16] = ACTIONS(1730), + [anon_sym_i16] = ACTIONS(1730), + [anon_sym_u32] = ACTIONS(1730), + [anon_sym_i32] = ACTIONS(1730), + [anon_sym_u64] = ACTIONS(1730), + [anon_sym_i64] = ACTIONS(1730), + [anon_sym_u128] = ACTIONS(1730), + [anon_sym_i128] = ACTIONS(1730), + [anon_sym_isize] = ACTIONS(1730), + [anon_sym_usize] = ACTIONS(1730), + [anon_sym_f32] = ACTIONS(1730), + [anon_sym_f64] = ACTIONS(1730), + [anon_sym_bool] = ACTIONS(1730), + [anon_sym_str] = ACTIONS(1730), + [anon_sym_char] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COMMA] = ACTIONS(3101), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_const] = ACTIONS(1738), + [anon_sym_default] = ACTIONS(1740), + [anon_sym_gen] = ACTIONS(1740), + [anon_sym_union] = ACTIONS(1740), + [anon_sym_ref] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1422), + [anon_sym_raw] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1742), + [sym_super] = ACTIONS(1742), + [sym_crate] = ACTIONS(1742), + [sym_metavariable] = ACTIONS(1744), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [789] = { + [sym_bracketed_type] = STATE(3787), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_macro_invocation] = STATE(2198), + [sym_scoped_identifier] = STATE(2034), + [sym_scoped_type_identifier] = STATE(2991), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(2673), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), [sym_line_comment] = STATE(789), [sym_block_comment] = STATE(789), - [aux_sym_enum_variant_list_repeat1] = STATE(2140), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3087), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_POUND] = ACTIONS(3079), - [anon_sym_SQUOTE] = ACTIONS(3089), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(3091), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(3093), - }, - [STATE(790)] = { - [sym_attribute_item] = STATE(1386), - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym_visibility_modifier] = STATE(939), - [sym__type] = STATE(3133), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_identifier] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_RPAREN] = ACTIONS(3103), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_u8] = ACTIONS(1730), + [anon_sym_i8] = ACTIONS(1730), + [anon_sym_u16] = ACTIONS(1730), + [anon_sym_i16] = ACTIONS(1730), + [anon_sym_u32] = ACTIONS(1730), + [anon_sym_i32] = ACTIONS(1730), + [anon_sym_u64] = ACTIONS(1730), + [anon_sym_i64] = ACTIONS(1730), + [anon_sym_u128] = ACTIONS(1730), + [anon_sym_i128] = ACTIONS(1730), + [anon_sym_isize] = ACTIONS(1730), + [anon_sym_usize] = ACTIONS(1730), + [anon_sym_f32] = ACTIONS(1730), + [anon_sym_f64] = ACTIONS(1730), + [anon_sym_bool] = ACTIONS(1730), + [anon_sym_str] = ACTIONS(1730), + [anon_sym_char] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COMMA] = ACTIONS(3105), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_const] = ACTIONS(1738), + [anon_sym_default] = ACTIONS(1740), + [anon_sym_gen] = ACTIONS(1740), + [anon_sym_union] = ACTIONS(1740), + [anon_sym_ref] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1422), + [anon_sym_raw] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1742), + [sym_super] = ACTIONS(1742), + [sym_crate] = ACTIONS(1742), + [sym_metavariable] = ACTIONS(1744), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [790] = { + [sym_bracketed_type] = STATE(3787), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_macro_invocation] = STATE(2198), + [sym_scoped_identifier] = STATE(2034), + [sym_scoped_type_identifier] = STATE(2991), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(2647), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), [sym_line_comment] = STATE(790), [sym_block_comment] = STATE(790), - [aux_sym_enum_variant_list_repeat1] = STATE(803), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_RPAREN] = ACTIONS(3095), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_POUND] = ACTIONS(3079), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_pub] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(3085), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(791)] = { - [sym_attribute_item] = STATE(1386), - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym_visibility_modifier] = STATE(939), - [sym__type] = STATE(3133), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_identifier] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_RBRACK] = ACTIONS(3107), + [anon_sym_u8] = ACTIONS(1730), + [anon_sym_i8] = ACTIONS(1730), + [anon_sym_u16] = ACTIONS(1730), + [anon_sym_i16] = ACTIONS(1730), + [anon_sym_u32] = ACTIONS(1730), + [anon_sym_i32] = ACTIONS(1730), + [anon_sym_u64] = ACTIONS(1730), + [anon_sym_i64] = ACTIONS(1730), + [anon_sym_u128] = ACTIONS(1730), + [anon_sym_i128] = ACTIONS(1730), + [anon_sym_isize] = ACTIONS(1730), + [anon_sym_usize] = ACTIONS(1730), + [anon_sym_f32] = ACTIONS(1730), + [anon_sym_f64] = ACTIONS(1730), + [anon_sym_bool] = ACTIONS(1730), + [anon_sym_str] = ACTIONS(1730), + [anon_sym_char] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COMMA] = ACTIONS(3109), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_const] = ACTIONS(1738), + [anon_sym_default] = ACTIONS(1740), + [anon_sym_gen] = ACTIONS(1740), + [anon_sym_union] = ACTIONS(1740), + [anon_sym_ref] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1422), + [anon_sym_raw] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1742), + [sym_super] = ACTIONS(1742), + [sym_crate] = ACTIONS(1742), + [sym_metavariable] = ACTIONS(1744), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [791] = { + [sym_bracketed_type] = STATE(3787), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_macro_invocation] = STATE(2198), + [sym_scoped_identifier] = STATE(2034), + [sym_scoped_type_identifier] = STATE(2991), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(2733), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), [sym_line_comment] = STATE(791), [sym_block_comment] = STATE(791), - [aux_sym_enum_variant_list_repeat1] = STATE(803), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_RPAREN] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_POUND] = ACTIONS(3079), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_pub] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(3085), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(792)] = { - [sym_attribute_item] = STATE(1386), - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym_visibility_modifier] = STATE(939), - [sym__type] = STATE(3133), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_identifier] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_RPAREN] = ACTIONS(3111), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_u8] = ACTIONS(1730), + [anon_sym_i8] = ACTIONS(1730), + [anon_sym_u16] = ACTIONS(1730), + [anon_sym_i16] = ACTIONS(1730), + [anon_sym_u32] = ACTIONS(1730), + [anon_sym_i32] = ACTIONS(1730), + [anon_sym_u64] = ACTIONS(1730), + [anon_sym_i64] = ACTIONS(1730), + [anon_sym_u128] = ACTIONS(1730), + [anon_sym_i128] = ACTIONS(1730), + [anon_sym_isize] = ACTIONS(1730), + [anon_sym_usize] = ACTIONS(1730), + [anon_sym_f32] = ACTIONS(1730), + [anon_sym_f64] = ACTIONS(1730), + [anon_sym_bool] = ACTIONS(1730), + [anon_sym_str] = ACTIONS(1730), + [anon_sym_char] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COMMA] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_const] = ACTIONS(1738), + [anon_sym_default] = ACTIONS(1740), + [anon_sym_gen] = ACTIONS(1740), + [anon_sym_union] = ACTIONS(1740), + [anon_sym_ref] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1422), + [anon_sym_raw] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1742), + [sym_super] = ACTIONS(1742), + [sym_crate] = ACTIONS(1742), + [sym_metavariable] = ACTIONS(1744), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [792] = { + [sym_attribute_item] = STATE(1378), + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym_visibility_modifier] = STATE(936), + [sym__type] = STATE(3132), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(792), [sym_block_comment] = STATE(792), - [aux_sym_enum_variant_list_repeat1] = STATE(803), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_RPAREN] = ACTIONS(3099), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_POUND] = ACTIONS(3079), + [aux_sym_enum_variant_list_repeat1] = STATE(793), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), + [anon_sym_POUND] = ACTIONS(3065), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), [anon_sym_pub] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), [sym_crate] = ACTIONS(3085), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(793)] = { - [sym_attribute_item] = STATE(1386), - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym_visibility_modifier] = STATE(939), - [sym__type] = STATE(3133), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_metavariable] = ACTIONS(1644), + }, + [793] = { + [sym_attribute_item] = STATE(1378), + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym_visibility_modifier] = STATE(1047), + [sym__type] = STATE(3164), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(793), [sym_block_comment] = STATE(793), - [aux_sym_enum_variant_list_repeat1] = STATE(803), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_RPAREN] = ACTIONS(3101), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_POUND] = ACTIONS(3079), + [aux_sym_enum_variant_list_repeat1] = STATE(1083), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), + [anon_sym_POUND] = ACTIONS(3065), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), [anon_sym_pub] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), [sym_crate] = ACTIONS(3085), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(794)] = { - [sym_attribute_item] = STATE(1386), - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym_visibility_modifier] = STATE(939), - [sym__type] = STATE(3133), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_metavariable] = ACTIONS(1644), + }, + [794] = { + [sym_attribute_item] = STATE(1378), + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym_visibility_modifier] = STATE(918), + [sym__type] = STATE(2638), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(794), [sym_block_comment] = STATE(794), - [aux_sym_enum_variant_list_repeat1] = STATE(803), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_RPAREN] = ACTIONS(3103), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_POUND] = ACTIONS(3079), + [aux_sym_enum_variant_list_repeat1] = STATE(1083), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), + [anon_sym_POUND] = ACTIONS(3065), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), [anon_sym_pub] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), [anon_sym_SLASH_SLASH] = ACTIONS(105), [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), [sym_crate] = ACTIONS(3085), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(795)] = { - [sym_attribute_item] = STATE(1386), - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym_visibility_modifier] = STATE(939), - [sym__type] = STATE(3133), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_metavariable] = ACTIONS(1644), + }, + [795] = { + [sym_bracketed_type] = STATE(3787), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_macro_invocation] = STATE(2198), + [sym_scoped_identifier] = STATE(2034), + [sym_scoped_type_identifier] = STATE(2991), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(2631), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), [sym_line_comment] = STATE(795), [sym_block_comment] = STATE(795), - [aux_sym_enum_variant_list_repeat1] = STATE(803), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_RPAREN] = ACTIONS(3105), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_POUND] = ACTIONS(3079), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_pub] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(3085), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(796)] = { - [sym_attribute_item] = STATE(1386), - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym_visibility_modifier] = STATE(909), - [sym__type] = STATE(2751), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_identifier] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_RBRACK] = ACTIONS(1558), + [anon_sym_u8] = ACTIONS(1730), + [anon_sym_i8] = ACTIONS(1730), + [anon_sym_u16] = ACTIONS(1730), + [anon_sym_i16] = ACTIONS(1730), + [anon_sym_u32] = ACTIONS(1730), + [anon_sym_i32] = ACTIONS(1730), + [anon_sym_u64] = ACTIONS(1730), + [anon_sym_i64] = ACTIONS(1730), + [anon_sym_u128] = ACTIONS(1730), + [anon_sym_i128] = ACTIONS(1730), + [anon_sym_isize] = ACTIONS(1730), + [anon_sym_usize] = ACTIONS(1730), + [anon_sym_f32] = ACTIONS(1730), + [anon_sym_f64] = ACTIONS(1730), + [anon_sym_bool] = ACTIONS(1730), + [anon_sym_str] = ACTIONS(1730), + [anon_sym_char] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COMMA] = ACTIONS(1564), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_const] = ACTIONS(1738), + [anon_sym_default] = ACTIONS(1740), + [anon_sym_gen] = ACTIONS(1740), + [anon_sym_union] = ACTIONS(1740), + [anon_sym_ref] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1422), + [anon_sym_raw] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1742), + [sym_super] = ACTIONS(1742), + [sym_crate] = ACTIONS(1742), + [sym_metavariable] = ACTIONS(1744), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [796] = { + [sym_bracketed_type] = STATE(3787), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_macro_invocation] = STATE(2198), + [sym_scoped_identifier] = STATE(2034), + [sym_scoped_type_identifier] = STATE(2991), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(2707), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), [sym_line_comment] = STATE(796), [sym_block_comment] = STATE(796), - [aux_sym_enum_variant_list_repeat1] = STATE(1086), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_POUND] = ACTIONS(3079), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_pub] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(3085), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(797)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2645), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_identifier] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_RPAREN] = ACTIONS(3115), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_u8] = ACTIONS(1730), + [anon_sym_i8] = ACTIONS(1730), + [anon_sym_u16] = ACTIONS(1730), + [anon_sym_i16] = ACTIONS(1730), + [anon_sym_u32] = ACTIONS(1730), + [anon_sym_i32] = ACTIONS(1730), + [anon_sym_u64] = ACTIONS(1730), + [anon_sym_i64] = ACTIONS(1730), + [anon_sym_u128] = ACTIONS(1730), + [anon_sym_i128] = ACTIONS(1730), + [anon_sym_isize] = ACTIONS(1730), + [anon_sym_usize] = ACTIONS(1730), + [anon_sym_f32] = ACTIONS(1730), + [anon_sym_f64] = ACTIONS(1730), + [anon_sym_bool] = ACTIONS(1730), + [anon_sym_str] = ACTIONS(1730), + [anon_sym_char] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COMMA] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_const] = ACTIONS(1738), + [anon_sym_default] = ACTIONS(1740), + [anon_sym_gen] = ACTIONS(1740), + [anon_sym_union] = ACTIONS(1740), + [anon_sym_ref] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1422), + [anon_sym_raw] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1742), + [sym_super] = ACTIONS(1742), + [sym_crate] = ACTIONS(1742), + [sym_metavariable] = ACTIONS(1744), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [797] = { + [sym_bracketed_type] = STATE(3787), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_macro_invocation] = STATE(2198), + [sym_scoped_identifier] = STATE(2034), + [sym_scoped_type_identifier] = STATE(2991), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(2761), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), [sym_line_comment] = STATE(797), [sym_block_comment] = STATE(797), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_RPAREN] = ACTIONS(3107), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COMMA] = ACTIONS(3109), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(798)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2810), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_identifier] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_RPAREN] = ACTIONS(3119), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_u8] = ACTIONS(1730), + [anon_sym_i8] = ACTIONS(1730), + [anon_sym_u16] = ACTIONS(1730), + [anon_sym_i16] = ACTIONS(1730), + [anon_sym_u32] = ACTIONS(1730), + [anon_sym_i32] = ACTIONS(1730), + [anon_sym_u64] = ACTIONS(1730), + [anon_sym_i64] = ACTIONS(1730), + [anon_sym_u128] = ACTIONS(1730), + [anon_sym_i128] = ACTIONS(1730), + [anon_sym_isize] = ACTIONS(1730), + [anon_sym_usize] = ACTIONS(1730), + [anon_sym_f32] = ACTIONS(1730), + [anon_sym_f64] = ACTIONS(1730), + [anon_sym_bool] = ACTIONS(1730), + [anon_sym_str] = ACTIONS(1730), + [anon_sym_char] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_const] = ACTIONS(1738), + [anon_sym_default] = ACTIONS(1740), + [anon_sym_gen] = ACTIONS(1740), + [anon_sym_union] = ACTIONS(1740), + [anon_sym_ref] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1422), + [anon_sym_raw] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1742), + [sym_super] = ACTIONS(1742), + [sym_crate] = ACTIONS(1742), + [sym_metavariable] = ACTIONS(1744), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [798] = { + [sym_bracketed_type] = STATE(3787), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_macro_invocation] = STATE(2198), + [sym_scoped_identifier] = STATE(2034), + [sym_scoped_type_identifier] = STATE(2991), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(2761), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), [sym_line_comment] = STATE(798), [sym_block_comment] = STATE(798), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_RBRACK] = ACTIONS(3111), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COMMA] = ACTIONS(3113), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(799)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2664), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_identifier] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_RPAREN] = ACTIONS(3121), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_u8] = ACTIONS(1730), + [anon_sym_i8] = ACTIONS(1730), + [anon_sym_u16] = ACTIONS(1730), + [anon_sym_i16] = ACTIONS(1730), + [anon_sym_u32] = ACTIONS(1730), + [anon_sym_i32] = ACTIONS(1730), + [anon_sym_u64] = ACTIONS(1730), + [anon_sym_i64] = ACTIONS(1730), + [anon_sym_u128] = ACTIONS(1730), + [anon_sym_i128] = ACTIONS(1730), + [anon_sym_isize] = ACTIONS(1730), + [anon_sym_usize] = ACTIONS(1730), + [anon_sym_f32] = ACTIONS(1730), + [anon_sym_f64] = ACTIONS(1730), + [anon_sym_bool] = ACTIONS(1730), + [anon_sym_str] = ACTIONS(1730), + [anon_sym_char] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_const] = ACTIONS(1738), + [anon_sym_default] = ACTIONS(1740), + [anon_sym_gen] = ACTIONS(1740), + [anon_sym_union] = ACTIONS(1740), + [anon_sym_ref] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1422), + [anon_sym_raw] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1742), + [sym_super] = ACTIONS(1742), + [sym_crate] = ACTIONS(1742), + [sym_metavariable] = ACTIONS(1744), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [799] = { + [sym_bracketed_type] = STATE(3787), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_macro_invocation] = STATE(2198), + [sym_scoped_identifier] = STATE(2034), + [sym_scoped_type_identifier] = STATE(2991), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(2761), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), [sym_line_comment] = STATE(799), [sym_block_comment] = STATE(799), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_RPAREN] = ACTIONS(3115), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COMMA] = ACTIONS(3117), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(800)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2670), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_identifier] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_RBRACK] = ACTIONS(3123), + [anon_sym_u8] = ACTIONS(1730), + [anon_sym_i8] = ACTIONS(1730), + [anon_sym_u16] = ACTIONS(1730), + [anon_sym_i16] = ACTIONS(1730), + [anon_sym_u32] = ACTIONS(1730), + [anon_sym_i32] = ACTIONS(1730), + [anon_sym_u64] = ACTIONS(1730), + [anon_sym_i64] = ACTIONS(1730), + [anon_sym_u128] = ACTIONS(1730), + [anon_sym_i128] = ACTIONS(1730), + [anon_sym_isize] = ACTIONS(1730), + [anon_sym_usize] = ACTIONS(1730), + [anon_sym_f32] = ACTIONS(1730), + [anon_sym_f64] = ACTIONS(1730), + [anon_sym_bool] = ACTIONS(1730), + [anon_sym_str] = ACTIONS(1730), + [anon_sym_char] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_const] = ACTIONS(1738), + [anon_sym_default] = ACTIONS(1740), + [anon_sym_gen] = ACTIONS(1740), + [anon_sym_union] = ACTIONS(1740), + [anon_sym_ref] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1422), + [anon_sym_raw] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1742), + [sym_super] = ACTIONS(1742), + [sym_crate] = ACTIONS(1742), + [sym_metavariable] = ACTIONS(1744), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [800] = { + [sym_parameter] = STATE(3173), + [sym_bracketed_type] = STATE(3787), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_macro_invocation] = STATE(2198), + [sym_scoped_identifier] = STATE(2034), + [sym_scoped_type_identifier] = STATE(2991), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(2824), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), [sym_line_comment] = STATE(800), [sym_block_comment] = STATE(800), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_RPAREN] = ACTIONS(3119), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COMMA] = ACTIONS(3121), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(801)] = { - [sym_attribute_item] = STATE(1386), - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym_visibility_modifier] = STATE(939), - [sym__type] = STATE(3133), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_identifier] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_u8] = ACTIONS(1730), + [anon_sym_i8] = ACTIONS(1730), + [anon_sym_u16] = ACTIONS(1730), + [anon_sym_i16] = ACTIONS(1730), + [anon_sym_u32] = ACTIONS(1730), + [anon_sym_i32] = ACTIONS(1730), + [anon_sym_u64] = ACTIONS(1730), + [anon_sym_i64] = ACTIONS(1730), + [anon_sym_u128] = ACTIONS(1730), + [anon_sym_i128] = ACTIONS(1730), + [anon_sym_isize] = ACTIONS(1730), + [anon_sym_usize] = ACTIONS(1730), + [anon_sym_f32] = ACTIONS(1730), + [anon_sym_f64] = ACTIONS(1730), + [anon_sym_bool] = ACTIONS(1730), + [anon_sym_str] = ACTIONS(1730), + [anon_sym_char] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(3125), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_const] = ACTIONS(1738), + [anon_sym_default] = ACTIONS(1740), + [anon_sym_gen] = ACTIONS(1740), + [anon_sym_union] = ACTIONS(1740), + [anon_sym_ref] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(3127), + [anon_sym_raw] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3129), + [sym_super] = ACTIONS(1742), + [sym_crate] = ACTIONS(1742), + [sym_metavariable] = ACTIONS(1744), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [801] = { + [sym_bracketed_type] = STATE(3787), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_macro_invocation] = STATE(2198), + [sym_scoped_identifier] = STATE(2034), + [sym_scoped_type_identifier] = STATE(2991), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(2761), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), [sym_line_comment] = STATE(801), [sym_block_comment] = STATE(801), - [aux_sym_enum_variant_list_repeat1] = STATE(803), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_POUND] = ACTIONS(3079), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_pub] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(3085), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(802)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2722), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_identifier] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_RBRACK] = ACTIONS(3131), + [anon_sym_u8] = ACTIONS(1730), + [anon_sym_i8] = ACTIONS(1730), + [anon_sym_u16] = ACTIONS(1730), + [anon_sym_i16] = ACTIONS(1730), + [anon_sym_u32] = ACTIONS(1730), + [anon_sym_i32] = ACTIONS(1730), + [anon_sym_u64] = ACTIONS(1730), + [anon_sym_i64] = ACTIONS(1730), + [anon_sym_u128] = ACTIONS(1730), + [anon_sym_i128] = ACTIONS(1730), + [anon_sym_isize] = ACTIONS(1730), + [anon_sym_usize] = ACTIONS(1730), + [anon_sym_f32] = ACTIONS(1730), + [anon_sym_f64] = ACTIONS(1730), + [anon_sym_bool] = ACTIONS(1730), + [anon_sym_str] = ACTIONS(1730), + [anon_sym_char] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_const] = ACTIONS(1738), + [anon_sym_default] = ACTIONS(1740), + [anon_sym_gen] = ACTIONS(1740), + [anon_sym_union] = ACTIONS(1740), + [anon_sym_ref] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1422), + [anon_sym_raw] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1742), + [sym_super] = ACTIONS(1742), + [sym_crate] = ACTIONS(1742), + [sym_metavariable] = ACTIONS(1744), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [802] = { + [sym_parameter] = STATE(3173), + [sym_bracketed_type] = STATE(3787), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_macro_invocation] = STATE(2198), + [sym_scoped_identifier] = STATE(2034), + [sym_scoped_type_identifier] = STATE(2991), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(2580), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), [sym_line_comment] = STATE(802), [sym_block_comment] = STATE(802), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_RBRACK] = ACTIONS(1566), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COMMA] = ACTIONS(1572), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(803)] = { - [sym_attribute_item] = STATE(1386), - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym_visibility_modifier] = STATE(1034), - [sym__type] = STATE(3143), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [sym_identifier] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_u8] = ACTIONS(1730), + [anon_sym_i8] = ACTIONS(1730), + [anon_sym_u16] = ACTIONS(1730), + [anon_sym_i16] = ACTIONS(1730), + [anon_sym_u32] = ACTIONS(1730), + [anon_sym_i32] = ACTIONS(1730), + [anon_sym_u64] = ACTIONS(1730), + [anon_sym_i64] = ACTIONS(1730), + [anon_sym_u128] = ACTIONS(1730), + [anon_sym_i128] = ACTIONS(1730), + [anon_sym_isize] = ACTIONS(1730), + [anon_sym_usize] = ACTIONS(1730), + [anon_sym_f32] = ACTIONS(1730), + [anon_sym_f64] = ACTIONS(1730), + [anon_sym_bool] = ACTIONS(1730), + [anon_sym_str] = ACTIONS(1730), + [anon_sym_char] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(3125), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_const] = ACTIONS(1738), + [anon_sym_default] = ACTIONS(1740), + [anon_sym_gen] = ACTIONS(1740), + [anon_sym_union] = ACTIONS(1740), + [anon_sym_ref] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(3127), + [anon_sym_raw] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3129), + [sym_super] = ACTIONS(1742), + [sym_crate] = ACTIONS(1742), + [sym_metavariable] = ACTIONS(1744), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [803] = { + [sym_parameter] = STATE(3414), + [sym_bracketed_type] = STATE(3787), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_macro_invocation] = STATE(2198), + [sym_scoped_identifier] = STATE(2034), + [sym_scoped_type_identifier] = STATE(2991), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(2986), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), [sym_line_comment] = STATE(803), [sym_block_comment] = STATE(803), - [aux_sym_enum_variant_list_repeat1] = STATE(1086), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_POUND] = ACTIONS(3079), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_pub] = ACTIONS(3083), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(3085), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(804)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2636), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_identifier] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_u8] = ACTIONS(1730), + [anon_sym_i8] = ACTIONS(1730), + [anon_sym_u16] = ACTIONS(1730), + [anon_sym_i16] = ACTIONS(1730), + [anon_sym_u32] = ACTIONS(1730), + [anon_sym_i32] = ACTIONS(1730), + [anon_sym_u64] = ACTIONS(1730), + [anon_sym_i64] = ACTIONS(1730), + [anon_sym_u128] = ACTIONS(1730), + [anon_sym_i128] = ACTIONS(1730), + [anon_sym_isize] = ACTIONS(1730), + [anon_sym_usize] = ACTIONS(1730), + [anon_sym_f32] = ACTIONS(1730), + [anon_sym_f64] = ACTIONS(1730), + [anon_sym_bool] = ACTIONS(1730), + [anon_sym_str] = ACTIONS(1730), + [anon_sym_char] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_const] = ACTIONS(1738), + [anon_sym_default] = ACTIONS(1740), + [anon_sym_gen] = ACTIONS(1740), + [anon_sym_union] = ACTIONS(1740), + [anon_sym_ref] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(3127), + [anon_sym_raw] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3129), + [sym_super] = ACTIONS(1742), + [sym_crate] = ACTIONS(1742), + [sym_metavariable] = ACTIONS(1744), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [804] = { + [sym_bracketed_type] = STATE(3787), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_macro_invocation] = STATE(2198), + [sym_scoped_identifier] = STATE(2034), + [sym_scoped_type_identifier] = STATE(2991), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(2761), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), [sym_line_comment] = STATE(804), [sym_block_comment] = STATE(804), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_RPAREN] = ACTIONS(3123), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COMMA] = ACTIONS(3125), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(805)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2754), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_identifier] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_RBRACK] = ACTIONS(3133), + [anon_sym_u8] = ACTIONS(1730), + [anon_sym_i8] = ACTIONS(1730), + [anon_sym_u16] = ACTIONS(1730), + [anon_sym_i16] = ACTIONS(1730), + [anon_sym_u32] = ACTIONS(1730), + [anon_sym_i32] = ACTIONS(1730), + [anon_sym_u64] = ACTIONS(1730), + [anon_sym_i64] = ACTIONS(1730), + [anon_sym_u128] = ACTIONS(1730), + [anon_sym_i128] = ACTIONS(1730), + [anon_sym_isize] = ACTIONS(1730), + [anon_sym_usize] = ACTIONS(1730), + [anon_sym_f32] = ACTIONS(1730), + [anon_sym_f64] = ACTIONS(1730), + [anon_sym_bool] = ACTIONS(1730), + [anon_sym_str] = ACTIONS(1730), + [anon_sym_char] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_const] = ACTIONS(1738), + [anon_sym_default] = ACTIONS(1740), + [anon_sym_gen] = ACTIONS(1740), + [anon_sym_union] = ACTIONS(1740), + [anon_sym_ref] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1422), + [anon_sym_raw] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1742), + [sym_super] = ACTIONS(1742), + [sym_crate] = ACTIONS(1742), + [sym_metavariable] = ACTIONS(1744), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [805] = { + [sym_bracketed_type] = STATE(3787), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_macro_invocation] = STATE(2198), + [sym_scoped_identifier] = STATE(2034), + [sym_scoped_type_identifier] = STATE(2991), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(2761), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), [sym_line_comment] = STATE(805), [sym_block_comment] = STATE(805), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_RBRACK] = ACTIONS(3127), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(806)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2754), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_identifier] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_RPAREN] = ACTIONS(3135), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_u8] = ACTIONS(1730), + [anon_sym_i8] = ACTIONS(1730), + [anon_sym_u16] = ACTIONS(1730), + [anon_sym_i16] = ACTIONS(1730), + [anon_sym_u32] = ACTIONS(1730), + [anon_sym_i32] = ACTIONS(1730), + [anon_sym_u64] = ACTIONS(1730), + [anon_sym_i64] = ACTIONS(1730), + [anon_sym_u128] = ACTIONS(1730), + [anon_sym_i128] = ACTIONS(1730), + [anon_sym_isize] = ACTIONS(1730), + [anon_sym_usize] = ACTIONS(1730), + [anon_sym_f32] = ACTIONS(1730), + [anon_sym_f64] = ACTIONS(1730), + [anon_sym_bool] = ACTIONS(1730), + [anon_sym_str] = ACTIONS(1730), + [anon_sym_char] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_const] = ACTIONS(1738), + [anon_sym_default] = ACTIONS(1740), + [anon_sym_gen] = ACTIONS(1740), + [anon_sym_union] = ACTIONS(1740), + [anon_sym_ref] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1422), + [anon_sym_raw] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1742), + [sym_super] = ACTIONS(1742), + [sym_crate] = ACTIONS(1742), + [sym_metavariable] = ACTIONS(1744), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [806] = { + [sym_bracketed_type] = STATE(3787), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_macro_invocation] = STATE(2198), + [sym_scoped_identifier] = STATE(2034), + [sym_scoped_type_identifier] = STATE(2991), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(2761), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), [sym_line_comment] = STATE(806), [sym_block_comment] = STATE(806), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_RBRACK] = ACTIONS(3129), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(807)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2754), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_identifier] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_RPAREN] = ACTIONS(3137), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_u8] = ACTIONS(1730), + [anon_sym_i8] = ACTIONS(1730), + [anon_sym_u16] = ACTIONS(1730), + [anon_sym_i16] = ACTIONS(1730), + [anon_sym_u32] = ACTIONS(1730), + [anon_sym_i32] = ACTIONS(1730), + [anon_sym_u64] = ACTIONS(1730), + [anon_sym_i64] = ACTIONS(1730), + [anon_sym_u128] = ACTIONS(1730), + [anon_sym_i128] = ACTIONS(1730), + [anon_sym_isize] = ACTIONS(1730), + [anon_sym_usize] = ACTIONS(1730), + [anon_sym_f32] = ACTIONS(1730), + [anon_sym_f64] = ACTIONS(1730), + [anon_sym_bool] = ACTIONS(1730), + [anon_sym_str] = ACTIONS(1730), + [anon_sym_char] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_const] = ACTIONS(1738), + [anon_sym_default] = ACTIONS(1740), + [anon_sym_gen] = ACTIONS(1740), + [anon_sym_union] = ACTIONS(1740), + [anon_sym_ref] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1422), + [anon_sym_raw] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1742), + [sym_super] = ACTIONS(1742), + [sym_crate] = ACTIONS(1742), + [sym_metavariable] = ACTIONS(1744), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [807] = { + [sym_bracketed_type] = STATE(3787), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_macro_invocation] = STATE(2198), + [sym_scoped_identifier] = STATE(2034), + [sym_scoped_type_identifier] = STATE(2991), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(2761), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), [sym_line_comment] = STATE(807), [sym_block_comment] = STATE(807), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_RPAREN] = ACTIONS(3131), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(808)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2754), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_identifier] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_RPAREN] = ACTIONS(3139), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_u8] = ACTIONS(1730), + [anon_sym_i8] = ACTIONS(1730), + [anon_sym_u16] = ACTIONS(1730), + [anon_sym_i16] = ACTIONS(1730), + [anon_sym_u32] = ACTIONS(1730), + [anon_sym_i32] = ACTIONS(1730), + [anon_sym_u64] = ACTIONS(1730), + [anon_sym_i64] = ACTIONS(1730), + [anon_sym_u128] = ACTIONS(1730), + [anon_sym_i128] = ACTIONS(1730), + [anon_sym_isize] = ACTIONS(1730), + [anon_sym_usize] = ACTIONS(1730), + [anon_sym_f32] = ACTIONS(1730), + [anon_sym_f64] = ACTIONS(1730), + [anon_sym_bool] = ACTIONS(1730), + [anon_sym_str] = ACTIONS(1730), + [anon_sym_char] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_const] = ACTIONS(1738), + [anon_sym_default] = ACTIONS(1740), + [anon_sym_gen] = ACTIONS(1740), + [anon_sym_union] = ACTIONS(1740), + [anon_sym_ref] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1422), + [anon_sym_raw] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1742), + [sym_super] = ACTIONS(1742), + [sym_crate] = ACTIONS(1742), + [sym_metavariable] = ACTIONS(1744), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [808] = { + [sym_bracketed_type] = STATE(3787), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_macro_invocation] = STATE(2198), + [sym_scoped_identifier] = STATE(2034), + [sym_scoped_type_identifier] = STATE(2991), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(2761), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), [sym_line_comment] = STATE(808), [sym_block_comment] = STATE(808), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_RPAREN] = ACTIONS(3133), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(809)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2754), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_identifier] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_RPAREN] = ACTIONS(3141), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_u8] = ACTIONS(1730), + [anon_sym_i8] = ACTIONS(1730), + [anon_sym_u16] = ACTIONS(1730), + [anon_sym_i16] = ACTIONS(1730), + [anon_sym_u32] = ACTIONS(1730), + [anon_sym_i32] = ACTIONS(1730), + [anon_sym_u64] = ACTIONS(1730), + [anon_sym_i64] = ACTIONS(1730), + [anon_sym_u128] = ACTIONS(1730), + [anon_sym_i128] = ACTIONS(1730), + [anon_sym_isize] = ACTIONS(1730), + [anon_sym_usize] = ACTIONS(1730), + [anon_sym_f32] = ACTIONS(1730), + [anon_sym_f64] = ACTIONS(1730), + [anon_sym_bool] = ACTIONS(1730), + [anon_sym_str] = ACTIONS(1730), + [anon_sym_char] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_const] = ACTIONS(1738), + [anon_sym_default] = ACTIONS(1740), + [anon_sym_gen] = ACTIONS(1740), + [anon_sym_union] = ACTIONS(1740), + [anon_sym_ref] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1422), + [anon_sym_raw] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1742), + [sym_super] = ACTIONS(1742), + [sym_crate] = ACTIONS(1742), + [sym_metavariable] = ACTIONS(1744), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [809] = { + [sym_bracketed_type] = STATE(3787), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_macro_invocation] = STATE(2198), + [sym_scoped_identifier] = STATE(2034), + [sym_scoped_type_identifier] = STATE(2991), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(2761), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), [sym_line_comment] = STATE(809), [sym_block_comment] = STATE(809), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_RPAREN] = ACTIONS(3135), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(810)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2754), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_identifier] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_RBRACK] = ACTIONS(3143), + [anon_sym_u8] = ACTIONS(1730), + [anon_sym_i8] = ACTIONS(1730), + [anon_sym_u16] = ACTIONS(1730), + [anon_sym_i16] = ACTIONS(1730), + [anon_sym_u32] = ACTIONS(1730), + [anon_sym_i32] = ACTIONS(1730), + [anon_sym_u64] = ACTIONS(1730), + [anon_sym_i64] = ACTIONS(1730), + [anon_sym_u128] = ACTIONS(1730), + [anon_sym_i128] = ACTIONS(1730), + [anon_sym_isize] = ACTIONS(1730), + [anon_sym_usize] = ACTIONS(1730), + [anon_sym_f32] = ACTIONS(1730), + [anon_sym_f64] = ACTIONS(1730), + [anon_sym_bool] = ACTIONS(1730), + [anon_sym_str] = ACTIONS(1730), + [anon_sym_char] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_const] = ACTIONS(1738), + [anon_sym_default] = ACTIONS(1740), + [anon_sym_gen] = ACTIONS(1740), + [anon_sym_union] = ACTIONS(1740), + [anon_sym_ref] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1422), + [anon_sym_raw] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1742), + [sym_super] = ACTIONS(1742), + [sym_crate] = ACTIONS(1742), + [sym_metavariable] = ACTIONS(1744), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [810] = { + [sym_bracketed_type] = STATE(3787), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_macro_invocation] = STATE(2198), + [sym_scoped_identifier] = STATE(2034), + [sym_scoped_type_identifier] = STATE(2991), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(2761), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), [sym_line_comment] = STATE(810), [sym_block_comment] = STATE(810), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_RPAREN] = ACTIONS(3137), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(811)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2754), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_identifier] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_RPAREN] = ACTIONS(3145), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_u8] = ACTIONS(1730), + [anon_sym_i8] = ACTIONS(1730), + [anon_sym_u16] = ACTIONS(1730), + [anon_sym_i16] = ACTIONS(1730), + [anon_sym_u32] = ACTIONS(1730), + [anon_sym_i32] = ACTIONS(1730), + [anon_sym_u64] = ACTIONS(1730), + [anon_sym_i64] = ACTIONS(1730), + [anon_sym_u128] = ACTIONS(1730), + [anon_sym_i128] = ACTIONS(1730), + [anon_sym_isize] = ACTIONS(1730), + [anon_sym_usize] = ACTIONS(1730), + [anon_sym_f32] = ACTIONS(1730), + [anon_sym_f64] = ACTIONS(1730), + [anon_sym_bool] = ACTIONS(1730), + [anon_sym_str] = ACTIONS(1730), + [anon_sym_char] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_const] = ACTIONS(1738), + [anon_sym_default] = ACTIONS(1740), + [anon_sym_gen] = ACTIONS(1740), + [anon_sym_union] = ACTIONS(1740), + [anon_sym_ref] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1422), + [anon_sym_raw] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1742), + [sym_super] = ACTIONS(1742), + [sym_crate] = ACTIONS(1742), + [sym_metavariable] = ACTIONS(1744), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [811] = { + [sym_bracketed_type] = STATE(3787), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_macro_invocation] = STATE(2198), + [sym_scoped_identifier] = STATE(2034), + [sym_scoped_type_identifier] = STATE(2991), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(2761), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), [sym_line_comment] = STATE(811), [sym_block_comment] = STATE(811), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_RPAREN] = ACTIONS(3139), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(812)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2754), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_identifier] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_RPAREN] = ACTIONS(3147), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_u8] = ACTIONS(1730), + [anon_sym_i8] = ACTIONS(1730), + [anon_sym_u16] = ACTIONS(1730), + [anon_sym_i16] = ACTIONS(1730), + [anon_sym_u32] = ACTIONS(1730), + [anon_sym_i32] = ACTIONS(1730), + [anon_sym_u64] = ACTIONS(1730), + [anon_sym_i64] = ACTIONS(1730), + [anon_sym_u128] = ACTIONS(1730), + [anon_sym_i128] = ACTIONS(1730), + [anon_sym_isize] = ACTIONS(1730), + [anon_sym_usize] = ACTIONS(1730), + [anon_sym_f32] = ACTIONS(1730), + [anon_sym_f64] = ACTIONS(1730), + [anon_sym_bool] = ACTIONS(1730), + [anon_sym_str] = ACTIONS(1730), + [anon_sym_char] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_const] = ACTIONS(1738), + [anon_sym_default] = ACTIONS(1740), + [anon_sym_gen] = ACTIONS(1740), + [anon_sym_union] = ACTIONS(1740), + [anon_sym_ref] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1422), + [anon_sym_raw] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1742), + [sym_super] = ACTIONS(1742), + [sym_crate] = ACTIONS(1742), + [sym_metavariable] = ACTIONS(1744), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [812] = { + [sym_bracketed_type] = STATE(3787), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_macro_invocation] = STATE(2198), + [sym_scoped_identifier] = STATE(2034), + [sym_scoped_type_identifier] = STATE(2991), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(2822), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), [sym_line_comment] = STATE(812), [sym_block_comment] = STATE(812), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_RPAREN] = ACTIONS(3141), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(813)] = { - [sym_parameter] = STATE(3172), - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2870), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_identifier] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_u8] = ACTIONS(1730), + [anon_sym_i8] = ACTIONS(1730), + [anon_sym_u16] = ACTIONS(1730), + [anon_sym_i16] = ACTIONS(1730), + [anon_sym_u32] = ACTIONS(1730), + [anon_sym_i32] = ACTIONS(1730), + [anon_sym_u64] = ACTIONS(1730), + [anon_sym_i64] = ACTIONS(1730), + [anon_sym_u128] = ACTIONS(1730), + [anon_sym_i128] = ACTIONS(1730), + [anon_sym_isize] = ACTIONS(1730), + [anon_sym_usize] = ACTIONS(1730), + [anon_sym_f32] = ACTIONS(1730), + [anon_sym_f64] = ACTIONS(1730), + [anon_sym_bool] = ACTIONS(1730), + [anon_sym_str] = ACTIONS(1730), + [anon_sym_char] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3149), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_const] = ACTIONS(1738), + [anon_sym_default] = ACTIONS(1740), + [anon_sym_gen] = ACTIONS(1740), + [anon_sym_union] = ACTIONS(1740), + [anon_sym_ref] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1422), + [anon_sym_raw] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3151), + [sym_super] = ACTIONS(1742), + [sym_crate] = ACTIONS(1742), + [sym_metavariable] = ACTIONS(1744), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [813] = { + [sym_bracketed_type] = STATE(3688), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3407), + [sym_macro_invocation] = STATE(3125), + [sym_scoped_identifier] = STATE(2279), + [sym_scoped_type_identifier] = STATE(3095), + [sym_const_block] = STATE(3125), + [sym__pattern] = STATE(2921), + [sym_generic_pattern] = STATE(3125), + [sym_tuple_pattern] = STATE(3125), + [sym_slice_pattern] = STATE(3125), + [sym_tuple_struct_pattern] = STATE(3125), + [sym_struct_pattern] = STATE(3125), + [sym_remaining_field_pattern] = STATE(3125), + [sym_mut_pattern] = STATE(3125), + [sym_range_pattern] = STATE(3125), + [sym_ref_pattern] = STATE(3125), + [sym_captured_pattern] = STATE(3125), + [sym_reference_pattern] = STATE(3125), + [sym_or_pattern] = STATE(3125), + [sym__literal_pattern] = STATE(2478), + [sym_negative_literal] = STATE(2502), + [sym_string_literal] = STATE(2502), + [sym_raw_string_literal] = STATE(2502), + [sym_boolean_literal] = STATE(2502), [sym_line_comment] = STATE(813), [sym_block_comment] = STATE(813), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(3143), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(3145), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3147), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(814)] = { - [sym_parameter] = STATE(3172), - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2598), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_identifier] = ACTIONS(1668), + [anon_sym_LPAREN] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_u8] = ACTIONS(1676), + [anon_sym_i8] = ACTIONS(1676), + [anon_sym_u16] = ACTIONS(1676), + [anon_sym_i16] = ACTIONS(1676), + [anon_sym_u32] = ACTIONS(1676), + [anon_sym_i32] = ACTIONS(1676), + [anon_sym_u64] = ACTIONS(1676), + [anon_sym_i64] = ACTIONS(1676), + [anon_sym_u128] = ACTIONS(1676), + [anon_sym_i128] = ACTIONS(1676), + [anon_sym_isize] = ACTIONS(1676), + [anon_sym_usize] = ACTIONS(1676), + [anon_sym_f32] = ACTIONS(1676), + [anon_sym_f64] = ACTIONS(1676), + [anon_sym_bool] = ACTIONS(1676), + [anon_sym_str] = ACTIONS(1676), + [anon_sym_char] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1680), + [anon_sym_PIPE] = ACTIONS(1682), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1684), + [anon_sym_DOT_DOT] = ACTIONS(1686), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1688), + [anon_sym_COLON_COLON] = ACTIONS(1690), + [anon_sym_const] = ACTIONS(1694), + [anon_sym_default] = ACTIONS(1696), + [anon_sym_gen] = ACTIONS(1696), + [anon_sym_union] = ACTIONS(1696), + [anon_sym_ref] = ACTIONS(1698), + [sym_mutable_specifier] = ACTIONS(1700), + [anon_sym_raw] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1702), + [aux_sym_string_literal_token1] = ACTIONS(1704), + [sym_char_literal] = ACTIONS(1702), + [anon_sym_true] = ACTIONS(1706), + [anon_sym_false] = ACTIONS(1706), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1708), + [sym_super] = ACTIONS(1708), + [sym_crate] = ACTIONS(1708), + [sym_metavariable] = ACTIONS(1710), + [sym__raw_string_literal_start] = ACTIONS(1712), + [sym_float_literal] = ACTIONS(1702), + }, + [814] = { + [sym_bracketed_type] = STATE(3787), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_macro_invocation] = STATE(2198), + [sym_scoped_identifier] = STATE(2034), + [sym_scoped_type_identifier] = STATE(2991), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(3474), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), [sym_line_comment] = STATE(814), [sym_block_comment] = STATE(814), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(3143), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(3145), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3147), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(815)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2754), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_identifier] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_u8] = ACTIONS(1730), + [anon_sym_i8] = ACTIONS(1730), + [anon_sym_u16] = ACTIONS(1730), + [anon_sym_i16] = ACTIONS(1730), + [anon_sym_u32] = ACTIONS(1730), + [anon_sym_i32] = ACTIONS(1730), + [anon_sym_u64] = ACTIONS(1730), + [anon_sym_i64] = ACTIONS(1730), + [anon_sym_u128] = ACTIONS(1730), + [anon_sym_i128] = ACTIONS(1730), + [anon_sym_isize] = ACTIONS(1730), + [anon_sym_usize] = ACTIONS(1730), + [anon_sym_f32] = ACTIONS(1730), + [anon_sym_f64] = ACTIONS(1730), + [anon_sym_bool] = ACTIONS(1730), + [anon_sym_str] = ACTIONS(1730), + [anon_sym_char] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_const] = ACTIONS(1738), + [anon_sym_default] = ACTIONS(1740), + [anon_sym_gen] = ACTIONS(1740), + [anon_sym_union] = ACTIONS(1740), + [anon_sym_ref] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1422), + [anon_sym_raw] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1742), + [sym_super] = ACTIONS(1742), + [sym_crate] = ACTIONS(1742), + [sym_metavariable] = ACTIONS(1744), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [815] = { + [sym_bracketed_type] = STATE(3787), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_macro_invocation] = STATE(2198), + [sym_scoped_identifier] = STATE(2034), + [sym_scoped_type_identifier] = STATE(2991), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(2179), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), [sym_line_comment] = STATE(815), [sym_block_comment] = STATE(815), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_RPAREN] = ACTIONS(3149), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(816)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2754), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_identifier] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_u8] = ACTIONS(1730), + [anon_sym_i8] = ACTIONS(1730), + [anon_sym_u16] = ACTIONS(1730), + [anon_sym_i16] = ACTIONS(1730), + [anon_sym_u32] = ACTIONS(1730), + [anon_sym_i32] = ACTIONS(1730), + [anon_sym_u64] = ACTIONS(1730), + [anon_sym_i64] = ACTIONS(1730), + [anon_sym_u128] = ACTIONS(1730), + [anon_sym_i128] = ACTIONS(1730), + [anon_sym_isize] = ACTIONS(1730), + [anon_sym_usize] = ACTIONS(1730), + [anon_sym_f32] = ACTIONS(1730), + [anon_sym_f64] = ACTIONS(1730), + [anon_sym_bool] = ACTIONS(1730), + [anon_sym_str] = ACTIONS(1730), + [anon_sym_char] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_const] = ACTIONS(1738), + [anon_sym_default] = ACTIONS(1740), + [anon_sym_gen] = ACTIONS(1740), + [anon_sym_union] = ACTIONS(1740), + [anon_sym_ref] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1422), + [anon_sym_raw] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1742), + [sym_super] = ACTIONS(1742), + [sym_crate] = ACTIONS(1742), + [sym_metavariable] = ACTIONS(1744), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [816] = { + [sym_bracketed_type] = STATE(3787), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_macro_invocation] = STATE(2198), + [sym_scoped_identifier] = STATE(2034), + [sym_scoped_type_identifier] = STATE(2991), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(3200), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), [sym_line_comment] = STATE(816), [sym_block_comment] = STATE(816), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_RPAREN] = ACTIONS(3151), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(817)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2754), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_identifier] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_u8] = ACTIONS(1730), + [anon_sym_i8] = ACTIONS(1730), + [anon_sym_u16] = ACTIONS(1730), + [anon_sym_i16] = ACTIONS(1730), + [anon_sym_u32] = ACTIONS(1730), + [anon_sym_i32] = ACTIONS(1730), + [anon_sym_u64] = ACTIONS(1730), + [anon_sym_i64] = ACTIONS(1730), + [anon_sym_u128] = ACTIONS(1730), + [anon_sym_i128] = ACTIONS(1730), + [anon_sym_isize] = ACTIONS(1730), + [anon_sym_usize] = ACTIONS(1730), + [anon_sym_f32] = ACTIONS(1730), + [anon_sym_f64] = ACTIONS(1730), + [anon_sym_bool] = ACTIONS(1730), + [anon_sym_str] = ACTIONS(1730), + [anon_sym_char] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_const] = ACTIONS(1738), + [anon_sym_default] = ACTIONS(1740), + [anon_sym_gen] = ACTIONS(1740), + [anon_sym_union] = ACTIONS(1740), + [anon_sym_ref] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1422), + [anon_sym_raw] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1742), + [sym_super] = ACTIONS(1742), + [sym_crate] = ACTIONS(1742), + [sym_metavariable] = ACTIONS(1744), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [817] = { + [sym_bracketed_type] = STATE(3787), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_macro_invocation] = STATE(2198), + [sym_scoped_identifier] = STATE(2034), + [sym_scoped_type_identifier] = STATE(2991), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(2761), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), [sym_line_comment] = STATE(817), [sym_block_comment] = STATE(817), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_RBRACK] = ACTIONS(3153), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(818)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2754), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_identifier] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_u8] = ACTIONS(1730), + [anon_sym_i8] = ACTIONS(1730), + [anon_sym_u16] = ACTIONS(1730), + [anon_sym_i16] = ACTIONS(1730), + [anon_sym_u32] = ACTIONS(1730), + [anon_sym_i32] = ACTIONS(1730), + [anon_sym_u64] = ACTIONS(1730), + [anon_sym_i64] = ACTIONS(1730), + [anon_sym_u128] = ACTIONS(1730), + [anon_sym_i128] = ACTIONS(1730), + [anon_sym_isize] = ACTIONS(1730), + [anon_sym_usize] = ACTIONS(1730), + [anon_sym_f32] = ACTIONS(1730), + [anon_sym_f64] = ACTIONS(1730), + [anon_sym_bool] = ACTIONS(1730), + [anon_sym_str] = ACTIONS(1730), + [anon_sym_char] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_const] = ACTIONS(1738), + [anon_sym_default] = ACTIONS(1740), + [anon_sym_gen] = ACTIONS(1740), + [anon_sym_union] = ACTIONS(1740), + [anon_sym_ref] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1422), + [anon_sym_raw] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1742), + [sym_super] = ACTIONS(1742), + [sym_crate] = ACTIONS(1742), + [sym_metavariable] = ACTIONS(1744), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [818] = { + [sym_bracketed_type] = STATE(3787), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_macro_invocation] = STATE(2198), + [sym_scoped_identifier] = STATE(2034), + [sym_scoped_type_identifier] = STATE(2991), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(3478), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), [sym_line_comment] = STATE(818), [sym_block_comment] = STATE(818), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_RBRACK] = ACTIONS(3155), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(819)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2765), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_identifier] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_u8] = ACTIONS(1730), + [anon_sym_i8] = ACTIONS(1730), + [anon_sym_u16] = ACTIONS(1730), + [anon_sym_i16] = ACTIONS(1730), + [anon_sym_u32] = ACTIONS(1730), + [anon_sym_i32] = ACTIONS(1730), + [anon_sym_u64] = ACTIONS(1730), + [anon_sym_i64] = ACTIONS(1730), + [anon_sym_u128] = ACTIONS(1730), + [anon_sym_i128] = ACTIONS(1730), + [anon_sym_isize] = ACTIONS(1730), + [anon_sym_usize] = ACTIONS(1730), + [anon_sym_f32] = ACTIONS(1730), + [anon_sym_f64] = ACTIONS(1730), + [anon_sym_bool] = ACTIONS(1730), + [anon_sym_str] = ACTIONS(1730), + [anon_sym_char] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_const] = ACTIONS(1738), + [anon_sym_default] = ACTIONS(1740), + [anon_sym_gen] = ACTIONS(1740), + [anon_sym_union] = ACTIONS(1740), + [anon_sym_ref] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1422), + [anon_sym_raw] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1742), + [sym_super] = ACTIONS(1742), + [sym_crate] = ACTIONS(1742), + [sym_metavariable] = ACTIONS(1744), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [819] = { + [sym_bracketed_type] = STATE(3688), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3407), + [sym_macro_invocation] = STATE(3125), + [sym_scoped_identifier] = STATE(2279), + [sym_scoped_type_identifier] = STATE(3095), + [sym_const_block] = STATE(3125), + [sym__pattern] = STATE(2907), + [sym_generic_pattern] = STATE(3125), + [sym_tuple_pattern] = STATE(3125), + [sym_slice_pattern] = STATE(3125), + [sym_tuple_struct_pattern] = STATE(3125), + [sym_struct_pattern] = STATE(3125), + [sym_remaining_field_pattern] = STATE(3125), + [sym_mut_pattern] = STATE(3125), + [sym_range_pattern] = STATE(3125), + [sym_ref_pattern] = STATE(3125), + [sym_captured_pattern] = STATE(3125), + [sym_reference_pattern] = STATE(3125), + [sym_or_pattern] = STATE(3125), + [sym__literal_pattern] = STATE(2478), + [sym_negative_literal] = STATE(2502), + [sym_string_literal] = STATE(2502), + [sym_raw_string_literal] = STATE(2502), + [sym_boolean_literal] = STATE(2502), [sym_line_comment] = STATE(819), [sym_block_comment] = STATE(819), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3157), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3159), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(820)] = { - [sym_parameter] = STATE(3371), - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2993), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_identifier] = ACTIONS(1668), + [anon_sym_LPAREN] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_u8] = ACTIONS(1676), + [anon_sym_i8] = ACTIONS(1676), + [anon_sym_u16] = ACTIONS(1676), + [anon_sym_i16] = ACTIONS(1676), + [anon_sym_u32] = ACTIONS(1676), + [anon_sym_i32] = ACTIONS(1676), + [anon_sym_u64] = ACTIONS(1676), + [anon_sym_i64] = ACTIONS(1676), + [anon_sym_u128] = ACTIONS(1676), + [anon_sym_i128] = ACTIONS(1676), + [anon_sym_isize] = ACTIONS(1676), + [anon_sym_usize] = ACTIONS(1676), + [anon_sym_f32] = ACTIONS(1676), + [anon_sym_f64] = ACTIONS(1676), + [anon_sym_bool] = ACTIONS(1676), + [anon_sym_str] = ACTIONS(1676), + [anon_sym_char] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1680), + [anon_sym_PIPE] = ACTIONS(1682), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1684), + [anon_sym_DOT_DOT] = ACTIONS(1686), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1688), + [anon_sym_COLON_COLON] = ACTIONS(1690), + [anon_sym_const] = ACTIONS(1694), + [anon_sym_default] = ACTIONS(1696), + [anon_sym_gen] = ACTIONS(1696), + [anon_sym_union] = ACTIONS(1696), + [anon_sym_ref] = ACTIONS(1698), + [sym_mutable_specifier] = ACTIONS(1700), + [anon_sym_raw] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1702), + [aux_sym_string_literal_token1] = ACTIONS(1704), + [sym_char_literal] = ACTIONS(1702), + [anon_sym_true] = ACTIONS(1706), + [anon_sym_false] = ACTIONS(1706), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1708), + [sym_super] = ACTIONS(1708), + [sym_crate] = ACTIONS(1708), + [sym_metavariable] = ACTIONS(1710), + [sym__raw_string_literal_start] = ACTIONS(1712), + [sym_float_literal] = ACTIONS(1702), + }, + [820] = { + [sym_bracketed_type] = STATE(3787), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_macro_invocation] = STATE(2198), + [sym_scoped_identifier] = STATE(2034), + [sym_scoped_type_identifier] = STATE(2991), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(3162), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), [sym_line_comment] = STATE(820), [sym_block_comment] = STATE(820), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(3145), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3147), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(821)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(3450), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_identifier] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_u8] = ACTIONS(1730), + [anon_sym_i8] = ACTIONS(1730), + [anon_sym_u16] = ACTIONS(1730), + [anon_sym_i16] = ACTIONS(1730), + [anon_sym_u32] = ACTIONS(1730), + [anon_sym_i32] = ACTIONS(1730), + [anon_sym_u64] = ACTIONS(1730), + [anon_sym_i64] = ACTIONS(1730), + [anon_sym_u128] = ACTIONS(1730), + [anon_sym_i128] = ACTIONS(1730), + [anon_sym_isize] = ACTIONS(1730), + [anon_sym_usize] = ACTIONS(1730), + [anon_sym_f32] = ACTIONS(1730), + [anon_sym_f64] = ACTIONS(1730), + [anon_sym_bool] = ACTIONS(1730), + [anon_sym_str] = ACTIONS(1730), + [anon_sym_char] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_const] = ACTIONS(1738), + [anon_sym_default] = ACTIONS(1740), + [anon_sym_gen] = ACTIONS(1740), + [anon_sym_union] = ACTIONS(1740), + [anon_sym_ref] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1422), + [anon_sym_raw] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1742), + [sym_super] = ACTIONS(1742), + [sym_crate] = ACTIONS(1742), + [sym_metavariable] = ACTIONS(1744), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [821] = { + [sym_bracketed_type] = STATE(3787), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_macro_invocation] = STATE(2198), + [sym_scoped_identifier] = STATE(2034), + [sym_scoped_type_identifier] = STATE(2991), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(2202), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), [sym_line_comment] = STATE(821), [sym_block_comment] = STATE(821), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(822)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(3479), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_identifier] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_u8] = ACTIONS(1730), + [anon_sym_i8] = ACTIONS(1730), + [anon_sym_u16] = ACTIONS(1730), + [anon_sym_i16] = ACTIONS(1730), + [anon_sym_u32] = ACTIONS(1730), + [anon_sym_i32] = ACTIONS(1730), + [anon_sym_u64] = ACTIONS(1730), + [anon_sym_i64] = ACTIONS(1730), + [anon_sym_u128] = ACTIONS(1730), + [anon_sym_i128] = ACTIONS(1730), + [anon_sym_isize] = ACTIONS(1730), + [anon_sym_usize] = ACTIONS(1730), + [anon_sym_f32] = ACTIONS(1730), + [anon_sym_f64] = ACTIONS(1730), + [anon_sym_bool] = ACTIONS(1730), + [anon_sym_str] = ACTIONS(1730), + [anon_sym_char] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_const] = ACTIONS(1738), + [anon_sym_default] = ACTIONS(1740), + [anon_sym_gen] = ACTIONS(1740), + [anon_sym_union] = ACTIONS(1740), + [anon_sym_ref] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1422), + [anon_sym_raw] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1742), + [sym_super] = ACTIONS(1742), + [sym_crate] = ACTIONS(1742), + [sym_metavariable] = ACTIONS(1744), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [822] = { + [sym_bracketed_type] = STATE(3787), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_macro_invocation] = STATE(2198), + [sym_scoped_identifier] = STATE(2034), + [sym_scoped_type_identifier] = STATE(2991), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(2195), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), [sym_line_comment] = STATE(822), [sym_block_comment] = STATE(822), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(823)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2754), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_identifier] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_u8] = ACTIONS(1730), + [anon_sym_i8] = ACTIONS(1730), + [anon_sym_u16] = ACTIONS(1730), + [anon_sym_i16] = ACTIONS(1730), + [anon_sym_u32] = ACTIONS(1730), + [anon_sym_i32] = ACTIONS(1730), + [anon_sym_u64] = ACTIONS(1730), + [anon_sym_i64] = ACTIONS(1730), + [anon_sym_u128] = ACTIONS(1730), + [anon_sym_i128] = ACTIONS(1730), + [anon_sym_isize] = ACTIONS(1730), + [anon_sym_usize] = ACTIONS(1730), + [anon_sym_f32] = ACTIONS(1730), + [anon_sym_f64] = ACTIONS(1730), + [anon_sym_bool] = ACTIONS(1730), + [anon_sym_str] = ACTIONS(1730), + [anon_sym_char] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_const] = ACTIONS(1738), + [anon_sym_default] = ACTIONS(1740), + [anon_sym_gen] = ACTIONS(1740), + [anon_sym_union] = ACTIONS(1740), + [anon_sym_ref] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1422), + [anon_sym_raw] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1742), + [sym_super] = ACTIONS(1742), + [sym_crate] = ACTIONS(1742), + [sym_metavariable] = ACTIONS(1744), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [823] = { + [sym_bracketed_type] = STATE(3787), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_macro_invocation] = STATE(2198), + [sym_scoped_identifier] = STATE(2034), + [sym_scoped_type_identifier] = STATE(2991), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(2664), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), [sym_line_comment] = STATE(823), [sym_block_comment] = STATE(823), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(824)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(3471), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_identifier] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_u8] = ACTIONS(1730), + [anon_sym_i8] = ACTIONS(1730), + [anon_sym_u16] = ACTIONS(1730), + [anon_sym_i16] = ACTIONS(1730), + [anon_sym_u32] = ACTIONS(1730), + [anon_sym_i32] = ACTIONS(1730), + [anon_sym_u64] = ACTIONS(1730), + [anon_sym_i64] = ACTIONS(1730), + [anon_sym_u128] = ACTIONS(1730), + [anon_sym_i128] = ACTIONS(1730), + [anon_sym_isize] = ACTIONS(1730), + [anon_sym_usize] = ACTIONS(1730), + [anon_sym_f32] = ACTIONS(1730), + [anon_sym_f64] = ACTIONS(1730), + [anon_sym_bool] = ACTIONS(1730), + [anon_sym_str] = ACTIONS(1730), + [anon_sym_char] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_const] = ACTIONS(1738), + [anon_sym_default] = ACTIONS(1740), + [anon_sym_gen] = ACTIONS(1740), + [anon_sym_union] = ACTIONS(1740), + [anon_sym_ref] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1422), + [anon_sym_raw] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3153), + [sym_super] = ACTIONS(1742), + [sym_crate] = ACTIONS(1742), + [sym_metavariable] = ACTIONS(1744), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [824] = { + [sym_bracketed_type] = STATE(3688), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3407), + [sym_macro_invocation] = STATE(3125), + [sym_scoped_identifier] = STATE(2279), + [sym_scoped_type_identifier] = STATE(3095), + [sym_const_block] = STATE(3125), + [sym__pattern] = STATE(3048), + [sym_generic_pattern] = STATE(3125), + [sym_tuple_pattern] = STATE(3125), + [sym_slice_pattern] = STATE(3125), + [sym_tuple_struct_pattern] = STATE(3125), + [sym_struct_pattern] = STATE(3125), + [sym_remaining_field_pattern] = STATE(3125), + [sym_mut_pattern] = STATE(3125), + [sym_range_pattern] = STATE(3125), + [sym_ref_pattern] = STATE(3125), + [sym_captured_pattern] = STATE(3125), + [sym_reference_pattern] = STATE(3125), + [sym_or_pattern] = STATE(3125), + [sym__literal_pattern] = STATE(2478), + [sym_negative_literal] = STATE(2502), + [sym_string_literal] = STATE(2502), + [sym_raw_string_literal] = STATE(2502), + [sym_boolean_literal] = STATE(2502), [sym_line_comment] = STATE(824), [sym_block_comment] = STATE(824), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(825)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(3104), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_identifier] = ACTIONS(1668), + [anon_sym_LPAREN] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_u8] = ACTIONS(1676), + [anon_sym_i8] = ACTIONS(1676), + [anon_sym_u16] = ACTIONS(1676), + [anon_sym_i16] = ACTIONS(1676), + [anon_sym_u32] = ACTIONS(1676), + [anon_sym_i32] = ACTIONS(1676), + [anon_sym_u64] = ACTIONS(1676), + [anon_sym_i64] = ACTIONS(1676), + [anon_sym_u128] = ACTIONS(1676), + [anon_sym_i128] = ACTIONS(1676), + [anon_sym_isize] = ACTIONS(1676), + [anon_sym_usize] = ACTIONS(1676), + [anon_sym_f32] = ACTIONS(1676), + [anon_sym_f64] = ACTIONS(1676), + [anon_sym_bool] = ACTIONS(1676), + [anon_sym_str] = ACTIONS(1676), + [anon_sym_char] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1680), + [anon_sym_PIPE] = ACTIONS(1682), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1684), + [anon_sym_DOT_DOT] = ACTIONS(1686), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1688), + [anon_sym_COLON_COLON] = ACTIONS(1690), + [anon_sym_const] = ACTIONS(1694), + [anon_sym_default] = ACTIONS(1696), + [anon_sym_gen] = ACTIONS(1696), + [anon_sym_union] = ACTIONS(1696), + [anon_sym_ref] = ACTIONS(1698), + [sym_mutable_specifier] = ACTIONS(1700), + [anon_sym_raw] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1702), + [aux_sym_string_literal_token1] = ACTIONS(1704), + [sym_char_literal] = ACTIONS(1702), + [anon_sym_true] = ACTIONS(1706), + [anon_sym_false] = ACTIONS(1706), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1708), + [sym_super] = ACTIONS(1708), + [sym_crate] = ACTIONS(1708), + [sym_metavariable] = ACTIONS(1710), + [sym__raw_string_literal_start] = ACTIONS(1712), + [sym_float_literal] = ACTIONS(1702), + }, + [825] = { + [sym_bracketed_type] = STATE(3688), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3407), + [sym_macro_invocation] = STATE(3125), + [sym_scoped_identifier] = STATE(2279), + [sym_scoped_type_identifier] = STATE(3095), + [sym_const_block] = STATE(3125), + [sym__pattern] = STATE(2964), + [sym_generic_pattern] = STATE(3125), + [sym_tuple_pattern] = STATE(3125), + [sym_slice_pattern] = STATE(3125), + [sym_tuple_struct_pattern] = STATE(3125), + [sym_struct_pattern] = STATE(3125), + [sym_remaining_field_pattern] = STATE(3125), + [sym_mut_pattern] = STATE(3125), + [sym_range_pattern] = STATE(3125), + [sym_ref_pattern] = STATE(3125), + [sym_captured_pattern] = STATE(3125), + [sym_reference_pattern] = STATE(3125), + [sym_or_pattern] = STATE(3125), + [sym__literal_pattern] = STATE(2478), + [sym_negative_literal] = STATE(2502), + [sym_string_literal] = STATE(2502), + [sym_raw_string_literal] = STATE(2502), + [sym_boolean_literal] = STATE(2502), [sym_line_comment] = STATE(825), [sym_block_comment] = STATE(825), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(826)] = { - [sym_bracketed_type] = STATE(3698), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3419), - [sym_macro_invocation] = STATE(2942), - [sym_scoped_identifier] = STATE(2248), - [sym_scoped_type_identifier] = STATE(3103), - [sym_const_block] = STATE(2942), - [sym__pattern] = STATE(2931), - [sym_generic_pattern] = STATE(2942), - [sym_tuple_pattern] = STATE(2942), - [sym_slice_pattern] = STATE(2942), - [sym_tuple_struct_pattern] = STATE(2942), - [sym_struct_pattern] = STATE(2942), - [sym_remaining_field_pattern] = STATE(2942), - [sym_mut_pattern] = STATE(2942), - [sym_range_pattern] = STATE(2942), - [sym_ref_pattern] = STATE(2942), - [sym_captured_pattern] = STATE(2942), - [sym_reference_pattern] = STATE(2942), - [sym_or_pattern] = STATE(2942), - [sym__literal_pattern] = STATE(2447), - [sym_negative_literal] = STATE(2441), - [sym_string_literal] = STATE(2441), - [sym_raw_string_literal] = STATE(2441), - [sym_boolean_literal] = STATE(2441), + [sym_identifier] = ACTIONS(1668), + [anon_sym_LPAREN] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_u8] = ACTIONS(1676), + [anon_sym_i8] = ACTIONS(1676), + [anon_sym_u16] = ACTIONS(1676), + [anon_sym_i16] = ACTIONS(1676), + [anon_sym_u32] = ACTIONS(1676), + [anon_sym_i32] = ACTIONS(1676), + [anon_sym_u64] = ACTIONS(1676), + [anon_sym_i64] = ACTIONS(1676), + [anon_sym_u128] = ACTIONS(1676), + [anon_sym_i128] = ACTIONS(1676), + [anon_sym_isize] = ACTIONS(1676), + [anon_sym_usize] = ACTIONS(1676), + [anon_sym_f32] = ACTIONS(1676), + [anon_sym_f64] = ACTIONS(1676), + [anon_sym_bool] = ACTIONS(1676), + [anon_sym_str] = ACTIONS(1676), + [anon_sym_char] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1680), + [anon_sym_PIPE] = ACTIONS(1682), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1684), + [anon_sym_DOT_DOT] = ACTIONS(1686), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1688), + [anon_sym_COLON_COLON] = ACTIONS(1690), + [anon_sym_const] = ACTIONS(1694), + [anon_sym_default] = ACTIONS(1696), + [anon_sym_gen] = ACTIONS(1696), + [anon_sym_union] = ACTIONS(1696), + [anon_sym_ref] = ACTIONS(1698), + [sym_mutable_specifier] = ACTIONS(1700), + [anon_sym_raw] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1702), + [aux_sym_string_literal_token1] = ACTIONS(1704), + [sym_char_literal] = ACTIONS(1702), + [anon_sym_true] = ACTIONS(1706), + [anon_sym_false] = ACTIONS(1706), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1708), + [sym_super] = ACTIONS(1708), + [sym_crate] = ACTIONS(1708), + [sym_metavariable] = ACTIONS(1710), + [sym__raw_string_literal_start] = ACTIONS(1712), + [sym_float_literal] = ACTIONS(1702), + }, + [826] = { + [sym_bracketed_type] = STATE(3787), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_macro_invocation] = STATE(2198), + [sym_scoped_identifier] = STATE(2034), + [sym_scoped_type_identifier] = STATE(2991), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(2519), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), [sym_line_comment] = STATE(826), [sym_block_comment] = STATE(826), - [sym_identifier] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_LBRACK] = ACTIONS(1680), - [anon_sym_u8] = ACTIONS(1684), - [anon_sym_i8] = ACTIONS(1684), - [anon_sym_u16] = ACTIONS(1684), - [anon_sym_i16] = ACTIONS(1684), - [anon_sym_u32] = ACTIONS(1684), - [anon_sym_i32] = ACTIONS(1684), - [anon_sym_u64] = ACTIONS(1684), - [anon_sym_i64] = ACTIONS(1684), - [anon_sym_u128] = ACTIONS(1684), - [anon_sym_i128] = ACTIONS(1684), - [anon_sym_isize] = ACTIONS(1684), - [anon_sym_usize] = ACTIONS(1684), - [anon_sym_f32] = ACTIONS(1684), - [anon_sym_f64] = ACTIONS(1684), - [anon_sym_bool] = ACTIONS(1684), - [anon_sym_str] = ACTIONS(1684), - [anon_sym_char] = ACTIONS(1684), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_AMP] = ACTIONS(1688), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1692), - [anon_sym_DOT_DOT] = ACTIONS(1694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_const] = ACTIONS(1702), - [anon_sym_default] = ACTIONS(1704), - [anon_sym_gen] = ACTIONS(1704), - [anon_sym_union] = ACTIONS(1704), - [anon_sym_ref] = ACTIONS(1706), - [sym_mutable_specifier] = ACTIONS(1708), - [anon_sym_raw] = ACTIONS(1704), - [sym_integer_literal] = ACTIONS(1710), - [aux_sym_string_literal_token1] = ACTIONS(1712), - [sym_char_literal] = ACTIONS(1710), - [anon_sym_true] = ACTIONS(1714), - [anon_sym_false] = ACTIONS(1714), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1716), - [sym_super] = ACTIONS(1716), - [sym_crate] = ACTIONS(1716), - [sym_metavariable] = ACTIONS(1718), - [sym__raw_string_literal_start] = ACTIONS(1720), - [sym_float_literal] = ACTIONS(1710), - }, - [STATE(827)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2206), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_identifier] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_u8] = ACTIONS(1730), + [anon_sym_i8] = ACTIONS(1730), + [anon_sym_u16] = ACTIONS(1730), + [anon_sym_i16] = ACTIONS(1730), + [anon_sym_u32] = ACTIONS(1730), + [anon_sym_i32] = ACTIONS(1730), + [anon_sym_u64] = ACTIONS(1730), + [anon_sym_i64] = ACTIONS(1730), + [anon_sym_u128] = ACTIONS(1730), + [anon_sym_i128] = ACTIONS(1730), + [anon_sym_isize] = ACTIONS(1730), + [anon_sym_usize] = ACTIONS(1730), + [anon_sym_f32] = ACTIONS(1730), + [anon_sym_f64] = ACTIONS(1730), + [anon_sym_bool] = ACTIONS(1730), + [anon_sym_str] = ACTIONS(1730), + [anon_sym_char] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_const] = ACTIONS(1738), + [anon_sym_default] = ACTIONS(1740), + [anon_sym_gen] = ACTIONS(1740), + [anon_sym_union] = ACTIONS(1740), + [anon_sym_ref] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1422), + [anon_sym_raw] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1742), + [sym_super] = ACTIONS(1742), + [sym_crate] = ACTIONS(1742), + [sym_metavariable] = ACTIONS(1744), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [827] = { + [sym_bracketed_type] = STATE(3787), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_macro_invocation] = STATE(2198), + [sym_scoped_identifier] = STATE(2034), + [sym_scoped_type_identifier] = STATE(2991), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(3475), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), [sym_line_comment] = STATE(827), [sym_block_comment] = STATE(827), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(3161), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(828)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2228), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_identifier] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_u8] = ACTIONS(1730), + [anon_sym_i8] = ACTIONS(1730), + [anon_sym_u16] = ACTIONS(1730), + [anon_sym_i16] = ACTIONS(1730), + [anon_sym_u32] = ACTIONS(1730), + [anon_sym_i32] = ACTIONS(1730), + [anon_sym_u64] = ACTIONS(1730), + [anon_sym_i64] = ACTIONS(1730), + [anon_sym_u128] = ACTIONS(1730), + [anon_sym_i128] = ACTIONS(1730), + [anon_sym_isize] = ACTIONS(1730), + [anon_sym_usize] = ACTIONS(1730), + [anon_sym_f32] = ACTIONS(1730), + [anon_sym_f64] = ACTIONS(1730), + [anon_sym_bool] = ACTIONS(1730), + [anon_sym_str] = ACTIONS(1730), + [anon_sym_char] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_const] = ACTIONS(1738), + [anon_sym_default] = ACTIONS(1740), + [anon_sym_gen] = ACTIONS(1740), + [anon_sym_union] = ACTIONS(1740), + [anon_sym_ref] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1422), + [anon_sym_raw] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1742), + [sym_super] = ACTIONS(1742), + [sym_crate] = ACTIONS(1742), + [sym_metavariable] = ACTIONS(1744), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [828] = { + [sym_bracketed_type] = STATE(3787), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_macro_invocation] = STATE(2198), + [sym_scoped_identifier] = STATE(2034), + [sym_scoped_type_identifier] = STATE(2991), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(3269), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), [sym_line_comment] = STATE(828), [sym_block_comment] = STATE(828), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(829)] = { - [sym_bracketed_type] = STATE(3698), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3419), - [sym_macro_invocation] = STATE(2942), - [sym_scoped_identifier] = STATE(2248), - [sym_scoped_type_identifier] = STATE(3103), - [sym_const_block] = STATE(2942), - [sym__pattern] = STATE(3012), - [sym_generic_pattern] = STATE(2942), - [sym_tuple_pattern] = STATE(2942), - [sym_slice_pattern] = STATE(2942), - [sym_tuple_struct_pattern] = STATE(2942), - [sym_struct_pattern] = STATE(2942), - [sym_remaining_field_pattern] = STATE(2942), - [sym_mut_pattern] = STATE(2942), - [sym_range_pattern] = STATE(2942), - [sym_ref_pattern] = STATE(2942), - [sym_captured_pattern] = STATE(2942), - [sym_reference_pattern] = STATE(2942), - [sym_or_pattern] = STATE(2942), - [sym__literal_pattern] = STATE(2447), - [sym_negative_literal] = STATE(2441), - [sym_string_literal] = STATE(2441), - [sym_raw_string_literal] = STATE(2441), - [sym_boolean_literal] = STATE(2441), + [sym_identifier] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_u8] = ACTIONS(1730), + [anon_sym_i8] = ACTIONS(1730), + [anon_sym_u16] = ACTIONS(1730), + [anon_sym_i16] = ACTIONS(1730), + [anon_sym_u32] = ACTIONS(1730), + [anon_sym_i32] = ACTIONS(1730), + [anon_sym_u64] = ACTIONS(1730), + [anon_sym_i64] = ACTIONS(1730), + [anon_sym_u128] = ACTIONS(1730), + [anon_sym_i128] = ACTIONS(1730), + [anon_sym_isize] = ACTIONS(1730), + [anon_sym_usize] = ACTIONS(1730), + [anon_sym_f32] = ACTIONS(1730), + [anon_sym_f64] = ACTIONS(1730), + [anon_sym_bool] = ACTIONS(1730), + [anon_sym_str] = ACTIONS(1730), + [anon_sym_char] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_const] = ACTIONS(1738), + [anon_sym_default] = ACTIONS(1740), + [anon_sym_gen] = ACTIONS(1740), + [anon_sym_union] = ACTIONS(1740), + [anon_sym_ref] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1422), + [anon_sym_raw] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1742), + [sym_super] = ACTIONS(1742), + [sym_crate] = ACTIONS(1742), + [sym_metavariable] = ACTIONS(1744), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [829] = { + [sym_bracketed_type] = STATE(3688), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3407), + [sym_macro_invocation] = STATE(3125), + [sym_scoped_identifier] = STATE(2279), + [sym_scoped_type_identifier] = STATE(3095), + [sym_const_block] = STATE(3125), + [sym__pattern] = STATE(2903), + [sym_generic_pattern] = STATE(3125), + [sym_tuple_pattern] = STATE(3125), + [sym_slice_pattern] = STATE(3125), + [sym_tuple_struct_pattern] = STATE(3125), + [sym_struct_pattern] = STATE(3125), + [sym_remaining_field_pattern] = STATE(3125), + [sym_mut_pattern] = STATE(3125), + [sym_range_pattern] = STATE(3125), + [sym_ref_pattern] = STATE(3125), + [sym_captured_pattern] = STATE(3125), + [sym_reference_pattern] = STATE(3125), + [sym_or_pattern] = STATE(3125), + [sym__literal_pattern] = STATE(2478), + [sym_negative_literal] = STATE(2502), + [sym_string_literal] = STATE(2502), + [sym_raw_string_literal] = STATE(2502), + [sym_boolean_literal] = STATE(2502), [sym_line_comment] = STATE(829), [sym_block_comment] = STATE(829), - [sym_identifier] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_LBRACK] = ACTIONS(1680), - [anon_sym_u8] = ACTIONS(1684), - [anon_sym_i8] = ACTIONS(1684), - [anon_sym_u16] = ACTIONS(1684), - [anon_sym_i16] = ACTIONS(1684), - [anon_sym_u32] = ACTIONS(1684), - [anon_sym_i32] = ACTIONS(1684), - [anon_sym_u64] = ACTIONS(1684), - [anon_sym_i64] = ACTIONS(1684), - [anon_sym_u128] = ACTIONS(1684), - [anon_sym_i128] = ACTIONS(1684), - [anon_sym_isize] = ACTIONS(1684), - [anon_sym_usize] = ACTIONS(1684), - [anon_sym_f32] = ACTIONS(1684), - [anon_sym_f64] = ACTIONS(1684), - [anon_sym_bool] = ACTIONS(1684), - [anon_sym_str] = ACTIONS(1684), - [anon_sym_char] = ACTIONS(1684), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_AMP] = ACTIONS(1688), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1692), - [anon_sym_DOT_DOT] = ACTIONS(1694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_const] = ACTIONS(1702), - [anon_sym_default] = ACTIONS(1704), - [anon_sym_gen] = ACTIONS(1704), - [anon_sym_union] = ACTIONS(1704), - [anon_sym_ref] = ACTIONS(1706), - [sym_mutable_specifier] = ACTIONS(1708), - [anon_sym_raw] = ACTIONS(1704), - [sym_integer_literal] = ACTIONS(1710), - [aux_sym_string_literal_token1] = ACTIONS(1712), - [sym_char_literal] = ACTIONS(1710), - [anon_sym_true] = ACTIONS(1714), - [anon_sym_false] = ACTIONS(1714), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1716), - [sym_super] = ACTIONS(1716), - [sym_crate] = ACTIONS(1716), - [sym_metavariable] = ACTIONS(1718), - [sym__raw_string_literal_start] = ACTIONS(1720), - [sym_float_literal] = ACTIONS(1710), - }, - [STATE(830)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2191), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_identifier] = ACTIONS(1668), + [anon_sym_LPAREN] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_u8] = ACTIONS(1676), + [anon_sym_i8] = ACTIONS(1676), + [anon_sym_u16] = ACTIONS(1676), + [anon_sym_i16] = ACTIONS(1676), + [anon_sym_u32] = ACTIONS(1676), + [anon_sym_i32] = ACTIONS(1676), + [anon_sym_u64] = ACTIONS(1676), + [anon_sym_i64] = ACTIONS(1676), + [anon_sym_u128] = ACTIONS(1676), + [anon_sym_i128] = ACTIONS(1676), + [anon_sym_isize] = ACTIONS(1676), + [anon_sym_usize] = ACTIONS(1676), + [anon_sym_f32] = ACTIONS(1676), + [anon_sym_f64] = ACTIONS(1676), + [anon_sym_bool] = ACTIONS(1676), + [anon_sym_str] = ACTIONS(1676), + [anon_sym_char] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1680), + [anon_sym_PIPE] = ACTIONS(1682), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1684), + [anon_sym_DOT_DOT] = ACTIONS(1686), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1688), + [anon_sym_COLON_COLON] = ACTIONS(1690), + [anon_sym_const] = ACTIONS(1694), + [anon_sym_default] = ACTIONS(1696), + [anon_sym_gen] = ACTIONS(1696), + [anon_sym_union] = ACTIONS(1696), + [anon_sym_ref] = ACTIONS(1698), + [sym_mutable_specifier] = ACTIONS(1700), + [anon_sym_raw] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1702), + [aux_sym_string_literal_token1] = ACTIONS(1704), + [sym_char_literal] = ACTIONS(1702), + [anon_sym_true] = ACTIONS(1706), + [anon_sym_false] = ACTIONS(1706), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1708), + [sym_super] = ACTIONS(1708), + [sym_crate] = ACTIONS(1708), + [sym_metavariable] = ACTIONS(1710), + [sym__raw_string_literal_start] = ACTIONS(1712), + [sym_float_literal] = ACTIONS(1702), + }, + [830] = { + [sym_bracketed_type] = STATE(3787), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_macro_invocation] = STATE(2198), + [sym_scoped_identifier] = STATE(2034), + [sym_scoped_type_identifier] = STATE(2991), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(3339), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), [sym_line_comment] = STATE(830), [sym_block_comment] = STATE(830), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(831)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2843), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_identifier] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_u8] = ACTIONS(1730), + [anon_sym_i8] = ACTIONS(1730), + [anon_sym_u16] = ACTIONS(1730), + [anon_sym_i16] = ACTIONS(1730), + [anon_sym_u32] = ACTIONS(1730), + [anon_sym_i32] = ACTIONS(1730), + [anon_sym_u64] = ACTIONS(1730), + [anon_sym_i64] = ACTIONS(1730), + [anon_sym_u128] = ACTIONS(1730), + [anon_sym_i128] = ACTIONS(1730), + [anon_sym_isize] = ACTIONS(1730), + [anon_sym_usize] = ACTIONS(1730), + [anon_sym_f32] = ACTIONS(1730), + [anon_sym_f64] = ACTIONS(1730), + [anon_sym_bool] = ACTIONS(1730), + [anon_sym_str] = ACTIONS(1730), + [anon_sym_char] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_const] = ACTIONS(1738), + [anon_sym_default] = ACTIONS(1740), + [anon_sym_gen] = ACTIONS(1740), + [anon_sym_union] = ACTIONS(1740), + [anon_sym_ref] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1422), + [anon_sym_raw] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1742), + [sym_super] = ACTIONS(1742), + [sym_crate] = ACTIONS(1742), + [sym_metavariable] = ACTIONS(1744), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [831] = { + [sym_bracketed_type] = STATE(3787), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_macro_invocation] = STATE(2198), + [sym_scoped_identifier] = STATE(2034), + [sym_scoped_type_identifier] = STATE(2991), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(2529), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), [sym_line_comment] = STATE(831), [sym_block_comment] = STATE(831), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3163), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(832)] = { - [sym_bracketed_type] = STATE(3698), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3419), - [sym_macro_invocation] = STATE(2942), - [sym_scoped_identifier] = STATE(2248), - [sym_scoped_type_identifier] = STATE(3103), - [sym_const_block] = STATE(2942), - [sym__pattern] = STATE(3061), - [sym_generic_pattern] = STATE(2942), - [sym_tuple_pattern] = STATE(2942), - [sym_slice_pattern] = STATE(2942), - [sym_tuple_struct_pattern] = STATE(2942), - [sym_struct_pattern] = STATE(2942), - [sym_remaining_field_pattern] = STATE(2942), - [sym_mut_pattern] = STATE(2942), - [sym_range_pattern] = STATE(2942), - [sym_ref_pattern] = STATE(2942), - [sym_captured_pattern] = STATE(2942), - [sym_reference_pattern] = STATE(2942), - [sym_or_pattern] = STATE(2942), - [sym__literal_pattern] = STATE(2447), - [sym_negative_literal] = STATE(2441), - [sym_string_literal] = STATE(2441), - [sym_raw_string_literal] = STATE(2441), - [sym_boolean_literal] = STATE(2441), + [sym_identifier] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_u8] = ACTIONS(1730), + [anon_sym_i8] = ACTIONS(1730), + [anon_sym_u16] = ACTIONS(1730), + [anon_sym_i16] = ACTIONS(1730), + [anon_sym_u32] = ACTIONS(1730), + [anon_sym_i32] = ACTIONS(1730), + [anon_sym_u64] = ACTIONS(1730), + [anon_sym_i64] = ACTIONS(1730), + [anon_sym_u128] = ACTIONS(1730), + [anon_sym_i128] = ACTIONS(1730), + [anon_sym_isize] = ACTIONS(1730), + [anon_sym_usize] = ACTIONS(1730), + [anon_sym_f32] = ACTIONS(1730), + [anon_sym_f64] = ACTIONS(1730), + [anon_sym_bool] = ACTIONS(1730), + [anon_sym_str] = ACTIONS(1730), + [anon_sym_char] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_const] = ACTIONS(1738), + [anon_sym_default] = ACTIONS(1740), + [anon_sym_gen] = ACTIONS(1740), + [anon_sym_union] = ACTIONS(1740), + [anon_sym_ref] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1422), + [anon_sym_raw] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1742), + [sym_super] = ACTIONS(1742), + [sym_crate] = ACTIONS(1742), + [sym_metavariable] = ACTIONS(1744), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [832] = { + [sym_bracketed_type] = STATE(3787), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_macro_invocation] = STATE(2198), + [sym_scoped_identifier] = STATE(2034), + [sym_scoped_type_identifier] = STATE(2991), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(3049), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), [sym_line_comment] = STATE(832), [sym_block_comment] = STATE(832), - [sym_identifier] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_LBRACK] = ACTIONS(1680), - [anon_sym_u8] = ACTIONS(1684), - [anon_sym_i8] = ACTIONS(1684), - [anon_sym_u16] = ACTIONS(1684), - [anon_sym_i16] = ACTIONS(1684), - [anon_sym_u32] = ACTIONS(1684), - [anon_sym_i32] = ACTIONS(1684), - [anon_sym_u64] = ACTIONS(1684), - [anon_sym_i64] = ACTIONS(1684), - [anon_sym_u128] = ACTIONS(1684), - [anon_sym_i128] = ACTIONS(1684), - [anon_sym_isize] = ACTIONS(1684), - [anon_sym_usize] = ACTIONS(1684), - [anon_sym_f32] = ACTIONS(1684), - [anon_sym_f64] = ACTIONS(1684), - [anon_sym_bool] = ACTIONS(1684), - [anon_sym_str] = ACTIONS(1684), - [anon_sym_char] = ACTIONS(1684), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_AMP] = ACTIONS(1688), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1692), - [anon_sym_DOT_DOT] = ACTIONS(1694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_const] = ACTIONS(1702), - [anon_sym_default] = ACTIONS(1704), - [anon_sym_gen] = ACTIONS(1704), - [anon_sym_union] = ACTIONS(1704), - [anon_sym_ref] = ACTIONS(1706), - [sym_mutable_specifier] = ACTIONS(1708), - [anon_sym_raw] = ACTIONS(1704), - [sym_integer_literal] = ACTIONS(1710), - [aux_sym_string_literal_token1] = ACTIONS(1712), - [sym_char_literal] = ACTIONS(1710), - [anon_sym_true] = ACTIONS(1714), - [anon_sym_false] = ACTIONS(1714), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1716), - [sym_super] = ACTIONS(1716), - [sym_crate] = ACTIONS(1716), - [sym_metavariable] = ACTIONS(1718), - [sym__raw_string_literal_start] = ACTIONS(1720), - [sym_float_literal] = ACTIONS(1710), - }, - [STATE(833)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2578), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_identifier] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_u8] = ACTIONS(1730), + [anon_sym_i8] = ACTIONS(1730), + [anon_sym_u16] = ACTIONS(1730), + [anon_sym_i16] = ACTIONS(1730), + [anon_sym_u32] = ACTIONS(1730), + [anon_sym_i32] = ACTIONS(1730), + [anon_sym_u64] = ACTIONS(1730), + [anon_sym_i64] = ACTIONS(1730), + [anon_sym_u128] = ACTIONS(1730), + [anon_sym_i128] = ACTIONS(1730), + [anon_sym_isize] = ACTIONS(1730), + [anon_sym_usize] = ACTIONS(1730), + [anon_sym_f32] = ACTIONS(1730), + [anon_sym_f64] = ACTIONS(1730), + [anon_sym_bool] = ACTIONS(1730), + [anon_sym_str] = ACTIONS(1730), + [anon_sym_char] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_const] = ACTIONS(1738), + [anon_sym_default] = ACTIONS(1740), + [anon_sym_gen] = ACTIONS(1740), + [anon_sym_union] = ACTIONS(1740), + [anon_sym_ref] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1422), + [anon_sym_raw] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1742), + [sym_super] = ACTIONS(1742), + [sym_crate] = ACTIONS(1742), + [sym_metavariable] = ACTIONS(1744), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [833] = { + [sym_bracketed_type] = STATE(3688), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3407), + [sym_macro_invocation] = STATE(3125), + [sym_scoped_identifier] = STATE(2279), + [sym_scoped_type_identifier] = STATE(3095), + [sym_const_block] = STATE(3125), + [sym__pattern] = STATE(3045), + [sym_generic_pattern] = STATE(3125), + [sym_tuple_pattern] = STATE(3125), + [sym_slice_pattern] = STATE(3125), + [sym_tuple_struct_pattern] = STATE(3125), + [sym_struct_pattern] = STATE(3125), + [sym_remaining_field_pattern] = STATE(3125), + [sym_mut_pattern] = STATE(3125), + [sym_range_pattern] = STATE(3125), + [sym_ref_pattern] = STATE(3125), + [sym_captured_pattern] = STATE(3125), + [sym_reference_pattern] = STATE(3125), + [sym_or_pattern] = STATE(3125), + [sym__literal_pattern] = STATE(2478), + [sym_negative_literal] = STATE(2502), + [sym_string_literal] = STATE(2502), + [sym_raw_string_literal] = STATE(2502), + [sym_boolean_literal] = STATE(2502), [sym_line_comment] = STATE(833), [sym_block_comment] = STATE(833), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(834)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(3348), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_identifier] = ACTIONS(1668), + [anon_sym_LPAREN] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_u8] = ACTIONS(1676), + [anon_sym_i8] = ACTIONS(1676), + [anon_sym_u16] = ACTIONS(1676), + [anon_sym_i16] = ACTIONS(1676), + [anon_sym_u32] = ACTIONS(1676), + [anon_sym_i32] = ACTIONS(1676), + [anon_sym_u64] = ACTIONS(1676), + [anon_sym_i64] = ACTIONS(1676), + [anon_sym_u128] = ACTIONS(1676), + [anon_sym_i128] = ACTIONS(1676), + [anon_sym_isize] = ACTIONS(1676), + [anon_sym_usize] = ACTIONS(1676), + [anon_sym_f32] = ACTIONS(1676), + [anon_sym_f64] = ACTIONS(1676), + [anon_sym_bool] = ACTIONS(1676), + [anon_sym_str] = ACTIONS(1676), + [anon_sym_char] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1680), + [anon_sym_PIPE] = ACTIONS(1682), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1684), + [anon_sym_DOT_DOT] = ACTIONS(1686), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1688), + [anon_sym_COLON_COLON] = ACTIONS(1690), + [anon_sym_const] = ACTIONS(1694), + [anon_sym_default] = ACTIONS(1696), + [anon_sym_gen] = ACTIONS(1696), + [anon_sym_union] = ACTIONS(1696), + [anon_sym_ref] = ACTIONS(1698), + [sym_mutable_specifier] = ACTIONS(3155), + [anon_sym_raw] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1702), + [aux_sym_string_literal_token1] = ACTIONS(1704), + [sym_char_literal] = ACTIONS(1702), + [anon_sym_true] = ACTIONS(1706), + [anon_sym_false] = ACTIONS(1706), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1708), + [sym_super] = ACTIONS(1708), + [sym_crate] = ACTIONS(1708), + [sym_metavariable] = ACTIONS(1710), + [sym__raw_string_literal_start] = ACTIONS(1712), + [sym_float_literal] = ACTIONS(1702), + }, + [834] = { + [sym_bracketed_type] = STATE(3787), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_macro_invocation] = STATE(2198), + [sym_scoped_identifier] = STATE(2034), + [sym_scoped_type_identifier] = STATE(2991), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(2569), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), [sym_line_comment] = STATE(834), [sym_block_comment] = STATE(834), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(835)] = { - [sym_bracketed_type] = STATE(3698), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3419), - [sym_macro_invocation] = STATE(2942), - [sym_scoped_identifier] = STATE(2248), - [sym_scoped_type_identifier] = STATE(3103), - [sym_const_block] = STATE(2942), - [sym__pattern] = STATE(3010), - [sym_generic_pattern] = STATE(2942), - [sym_tuple_pattern] = STATE(2942), - [sym_slice_pattern] = STATE(2942), - [sym_tuple_struct_pattern] = STATE(2942), - [sym_struct_pattern] = STATE(2942), - [sym_remaining_field_pattern] = STATE(2942), - [sym_mut_pattern] = STATE(2942), - [sym_range_pattern] = STATE(2942), - [sym_ref_pattern] = STATE(2942), - [sym_captured_pattern] = STATE(2942), - [sym_reference_pattern] = STATE(2942), - [sym_or_pattern] = STATE(2942), - [sym__literal_pattern] = STATE(2447), - [sym_negative_literal] = STATE(2441), - [sym_string_literal] = STATE(2441), - [sym_raw_string_literal] = STATE(2441), - [sym_boolean_literal] = STATE(2441), + [sym_identifier] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_u8] = ACTIONS(1730), + [anon_sym_i8] = ACTIONS(1730), + [anon_sym_u16] = ACTIONS(1730), + [anon_sym_i16] = ACTIONS(1730), + [anon_sym_u32] = ACTIONS(1730), + [anon_sym_i32] = ACTIONS(1730), + [anon_sym_u64] = ACTIONS(1730), + [anon_sym_i64] = ACTIONS(1730), + [anon_sym_u128] = ACTIONS(1730), + [anon_sym_i128] = ACTIONS(1730), + [anon_sym_isize] = ACTIONS(1730), + [anon_sym_usize] = ACTIONS(1730), + [anon_sym_f32] = ACTIONS(1730), + [anon_sym_f64] = ACTIONS(1730), + [anon_sym_bool] = ACTIONS(1730), + [anon_sym_str] = ACTIONS(1730), + [anon_sym_char] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_const] = ACTIONS(1738), + [anon_sym_default] = ACTIONS(1740), + [anon_sym_gen] = ACTIONS(1740), + [anon_sym_union] = ACTIONS(1740), + [anon_sym_ref] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(3157), + [anon_sym_raw] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1742), + [sym_super] = ACTIONS(1742), + [sym_crate] = ACTIONS(1742), + [sym_metavariable] = ACTIONS(1744), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [835] = { + [sym_bracketed_type] = STATE(3787), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_macro_invocation] = STATE(2198), + [sym_scoped_identifier] = STATE(2034), + [sym_scoped_type_identifier] = STATE(2991), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(2184), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), [sym_line_comment] = STATE(835), [sym_block_comment] = STATE(835), - [sym_identifier] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_LBRACK] = ACTIONS(1680), - [anon_sym_u8] = ACTIONS(1684), - [anon_sym_i8] = ACTIONS(1684), - [anon_sym_u16] = ACTIONS(1684), - [anon_sym_i16] = ACTIONS(1684), - [anon_sym_u32] = ACTIONS(1684), - [anon_sym_i32] = ACTIONS(1684), - [anon_sym_u64] = ACTIONS(1684), - [anon_sym_i64] = ACTIONS(1684), - [anon_sym_u128] = ACTIONS(1684), - [anon_sym_i128] = ACTIONS(1684), - [anon_sym_isize] = ACTIONS(1684), - [anon_sym_usize] = ACTIONS(1684), - [anon_sym_f32] = ACTIONS(1684), - [anon_sym_f64] = ACTIONS(1684), - [anon_sym_bool] = ACTIONS(1684), - [anon_sym_str] = ACTIONS(1684), - [anon_sym_char] = ACTIONS(1684), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_AMP] = ACTIONS(1688), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1692), - [anon_sym_DOT_DOT] = ACTIONS(1694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_const] = ACTIONS(1702), - [anon_sym_default] = ACTIONS(1704), - [anon_sym_gen] = ACTIONS(1704), - [anon_sym_union] = ACTIONS(1704), - [anon_sym_ref] = ACTIONS(1706), - [sym_mutable_specifier] = ACTIONS(3165), - [anon_sym_raw] = ACTIONS(1704), - [sym_integer_literal] = ACTIONS(1710), - [aux_sym_string_literal_token1] = ACTIONS(1712), - [sym_char_literal] = ACTIONS(1710), - [anon_sym_true] = ACTIONS(1714), - [anon_sym_false] = ACTIONS(1714), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1716), - [sym_super] = ACTIONS(1716), - [sym_crate] = ACTIONS(1716), - [sym_metavariable] = ACTIONS(1718), - [sym__raw_string_literal_start] = ACTIONS(1720), - [sym_float_literal] = ACTIONS(1710), - }, - [STATE(836)] = { - [sym_bracketed_type] = STATE(3698), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3419), - [sym_macro_invocation] = STATE(2942), - [sym_scoped_identifier] = STATE(2248), - [sym_scoped_type_identifier] = STATE(3103), - [sym_const_block] = STATE(2942), - [sym__pattern] = STATE(3023), - [sym_generic_pattern] = STATE(2942), - [sym_tuple_pattern] = STATE(2942), - [sym_slice_pattern] = STATE(2942), - [sym_tuple_struct_pattern] = STATE(2942), - [sym_struct_pattern] = STATE(2942), - [sym_remaining_field_pattern] = STATE(2942), - [sym_mut_pattern] = STATE(2942), - [sym_range_pattern] = STATE(2942), - [sym_ref_pattern] = STATE(2942), - [sym_captured_pattern] = STATE(2942), - [sym_reference_pattern] = STATE(2942), - [sym_or_pattern] = STATE(2942), - [sym__literal_pattern] = STATE(2447), - [sym_negative_literal] = STATE(2441), - [sym_string_literal] = STATE(2441), - [sym_raw_string_literal] = STATE(2441), - [sym_boolean_literal] = STATE(2441), + [sym_identifier] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_u8] = ACTIONS(1730), + [anon_sym_i8] = ACTIONS(1730), + [anon_sym_u16] = ACTIONS(1730), + [anon_sym_i16] = ACTIONS(1730), + [anon_sym_u32] = ACTIONS(1730), + [anon_sym_i32] = ACTIONS(1730), + [anon_sym_u64] = ACTIONS(1730), + [anon_sym_i64] = ACTIONS(1730), + [anon_sym_u128] = ACTIONS(1730), + [anon_sym_i128] = ACTIONS(1730), + [anon_sym_isize] = ACTIONS(1730), + [anon_sym_usize] = ACTIONS(1730), + [anon_sym_f32] = ACTIONS(1730), + [anon_sym_f64] = ACTIONS(1730), + [anon_sym_bool] = ACTIONS(1730), + [anon_sym_str] = ACTIONS(1730), + [anon_sym_char] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_const] = ACTIONS(1738), + [anon_sym_default] = ACTIONS(1740), + [anon_sym_gen] = ACTIONS(1740), + [anon_sym_union] = ACTIONS(1740), + [anon_sym_ref] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(3159), + [anon_sym_raw] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1742), + [sym_super] = ACTIONS(1742), + [sym_crate] = ACTIONS(1742), + [sym_metavariable] = ACTIONS(1744), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [836] = { + [sym_bracketed_type] = STATE(3787), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_macro_invocation] = STATE(2198), + [sym_scoped_identifier] = STATE(2034), + [sym_scoped_type_identifier] = STATE(2991), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(2192), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), [sym_line_comment] = STATE(836), [sym_block_comment] = STATE(836), - [sym_identifier] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_LBRACK] = ACTIONS(1680), - [anon_sym_u8] = ACTIONS(1684), - [anon_sym_i8] = ACTIONS(1684), - [anon_sym_u16] = ACTIONS(1684), - [anon_sym_i16] = ACTIONS(1684), - [anon_sym_u32] = ACTIONS(1684), - [anon_sym_i32] = ACTIONS(1684), - [anon_sym_u64] = ACTIONS(1684), - [anon_sym_i64] = ACTIONS(1684), - [anon_sym_u128] = ACTIONS(1684), - [anon_sym_i128] = ACTIONS(1684), - [anon_sym_isize] = ACTIONS(1684), - [anon_sym_usize] = ACTIONS(1684), - [anon_sym_f32] = ACTIONS(1684), - [anon_sym_f64] = ACTIONS(1684), - [anon_sym_bool] = ACTIONS(1684), - [anon_sym_str] = ACTIONS(1684), - [anon_sym_char] = ACTIONS(1684), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_AMP] = ACTIONS(1688), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1692), - [anon_sym_DOT_DOT] = ACTIONS(1694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_const] = ACTIONS(1702), - [anon_sym_default] = ACTIONS(1704), - [anon_sym_gen] = ACTIONS(1704), - [anon_sym_union] = ACTIONS(1704), - [anon_sym_ref] = ACTIONS(1706), - [sym_mutable_specifier] = ACTIONS(1708), - [anon_sym_raw] = ACTIONS(1704), - [sym_integer_literal] = ACTIONS(1710), - [aux_sym_string_literal_token1] = ACTIONS(1712), - [sym_char_literal] = ACTIONS(1710), - [anon_sym_true] = ACTIONS(1714), - [anon_sym_false] = ACTIONS(1714), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1716), - [sym_super] = ACTIONS(1716), - [sym_crate] = ACTIONS(1716), - [sym_metavariable] = ACTIONS(1718), - [sym__raw_string_literal_start] = ACTIONS(1720), - [sym_float_literal] = ACTIONS(1710), - }, - [STATE(837)] = { - [sym_bracketed_type] = STATE(3698), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3419), - [sym_macro_invocation] = STATE(2942), - [sym_scoped_identifier] = STATE(2248), - [sym_scoped_type_identifier] = STATE(3103), - [sym_const_block] = STATE(2942), - [sym__pattern] = STATE(2903), - [sym_generic_pattern] = STATE(2942), - [sym_tuple_pattern] = STATE(2942), - [sym_slice_pattern] = STATE(2942), - [sym_tuple_struct_pattern] = STATE(2942), - [sym_struct_pattern] = STATE(2942), - [sym_remaining_field_pattern] = STATE(2942), - [sym_mut_pattern] = STATE(2942), - [sym_range_pattern] = STATE(2942), - [sym_ref_pattern] = STATE(2942), - [sym_captured_pattern] = STATE(2942), - [sym_reference_pattern] = STATE(2942), - [sym_or_pattern] = STATE(2942), - [sym__literal_pattern] = STATE(2447), - [sym_negative_literal] = STATE(2441), - [sym_string_literal] = STATE(2441), - [sym_raw_string_literal] = STATE(2441), - [sym_boolean_literal] = STATE(2441), + [sym_identifier] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_u8] = ACTIONS(1730), + [anon_sym_i8] = ACTIONS(1730), + [anon_sym_u16] = ACTIONS(1730), + [anon_sym_i16] = ACTIONS(1730), + [anon_sym_u32] = ACTIONS(1730), + [anon_sym_i32] = ACTIONS(1730), + [anon_sym_u64] = ACTIONS(1730), + [anon_sym_i64] = ACTIONS(1730), + [anon_sym_u128] = ACTIONS(1730), + [anon_sym_i128] = ACTIONS(1730), + [anon_sym_isize] = ACTIONS(1730), + [anon_sym_usize] = ACTIONS(1730), + [anon_sym_f32] = ACTIONS(1730), + [anon_sym_f64] = ACTIONS(1730), + [anon_sym_bool] = ACTIONS(1730), + [anon_sym_str] = ACTIONS(1730), + [anon_sym_char] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_const] = ACTIONS(1738), + [anon_sym_default] = ACTIONS(1740), + [anon_sym_gen] = ACTIONS(1740), + [anon_sym_union] = ACTIONS(1740), + [anon_sym_ref] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1422), + [anon_sym_raw] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1742), + [sym_super] = ACTIONS(1742), + [sym_crate] = ACTIONS(1742), + [sym_metavariable] = ACTIONS(1744), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [837] = { + [sym_bracketed_type] = STATE(3688), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3407), + [sym_macro_invocation] = STATE(3125), + [sym_scoped_identifier] = STATE(2279), + [sym_scoped_type_identifier] = STATE(3095), + [sym_const_block] = STATE(3125), + [sym__pattern] = STATE(3122), + [sym_generic_pattern] = STATE(3125), + [sym_tuple_pattern] = STATE(3125), + [sym_slice_pattern] = STATE(3125), + [sym_tuple_struct_pattern] = STATE(3125), + [sym_struct_pattern] = STATE(3125), + [sym_remaining_field_pattern] = STATE(3125), + [sym_mut_pattern] = STATE(3125), + [sym_range_pattern] = STATE(3125), + [sym_ref_pattern] = STATE(3125), + [sym_captured_pattern] = STATE(3125), + [sym_reference_pattern] = STATE(3125), + [sym_or_pattern] = STATE(3125), + [sym__literal_pattern] = STATE(2478), + [sym_negative_literal] = STATE(2502), + [sym_string_literal] = STATE(2502), + [sym_raw_string_literal] = STATE(2502), + [sym_boolean_literal] = STATE(2502), [sym_line_comment] = STATE(837), [sym_block_comment] = STATE(837), - [sym_identifier] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_LBRACK] = ACTIONS(1680), - [anon_sym_u8] = ACTIONS(1684), - [anon_sym_i8] = ACTIONS(1684), - [anon_sym_u16] = ACTIONS(1684), - [anon_sym_i16] = ACTIONS(1684), - [anon_sym_u32] = ACTIONS(1684), - [anon_sym_i32] = ACTIONS(1684), - [anon_sym_u64] = ACTIONS(1684), - [anon_sym_i64] = ACTIONS(1684), - [anon_sym_u128] = ACTIONS(1684), - [anon_sym_i128] = ACTIONS(1684), - [anon_sym_isize] = ACTIONS(1684), - [anon_sym_usize] = ACTIONS(1684), - [anon_sym_f32] = ACTIONS(1684), - [anon_sym_f64] = ACTIONS(1684), - [anon_sym_bool] = ACTIONS(1684), - [anon_sym_str] = ACTIONS(1684), - [anon_sym_char] = ACTIONS(1684), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_AMP] = ACTIONS(1688), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1692), - [anon_sym_DOT_DOT] = ACTIONS(1694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_const] = ACTIONS(1702), - [anon_sym_default] = ACTIONS(1704), - [anon_sym_gen] = ACTIONS(1704), - [anon_sym_union] = ACTIONS(1704), - [anon_sym_ref] = ACTIONS(1706), - [sym_mutable_specifier] = ACTIONS(1708), - [anon_sym_raw] = ACTIONS(1704), - [sym_integer_literal] = ACTIONS(1710), - [aux_sym_string_literal_token1] = ACTIONS(1712), - [sym_char_literal] = ACTIONS(1710), - [anon_sym_true] = ACTIONS(1714), - [anon_sym_false] = ACTIONS(1714), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1716), - [sym_super] = ACTIONS(1716), - [sym_crate] = ACTIONS(1716), - [sym_metavariable] = ACTIONS(1718), - [sym__raw_string_literal_start] = ACTIONS(1720), - [sym_float_literal] = ACTIONS(1710), - }, - [STATE(838)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(3056), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_identifier] = ACTIONS(1668), + [anon_sym_LPAREN] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_u8] = ACTIONS(1676), + [anon_sym_i8] = ACTIONS(1676), + [anon_sym_u16] = ACTIONS(1676), + [anon_sym_i16] = ACTIONS(1676), + [anon_sym_u32] = ACTIONS(1676), + [anon_sym_i32] = ACTIONS(1676), + [anon_sym_u64] = ACTIONS(1676), + [anon_sym_i64] = ACTIONS(1676), + [anon_sym_u128] = ACTIONS(1676), + [anon_sym_i128] = ACTIONS(1676), + [anon_sym_isize] = ACTIONS(1676), + [anon_sym_usize] = ACTIONS(1676), + [anon_sym_f32] = ACTIONS(1676), + [anon_sym_f64] = ACTIONS(1676), + [anon_sym_bool] = ACTIONS(1676), + [anon_sym_str] = ACTIONS(1676), + [anon_sym_char] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1680), + [anon_sym_PIPE] = ACTIONS(1682), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1684), + [anon_sym_DOT_DOT] = ACTIONS(1686), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1688), + [anon_sym_COLON_COLON] = ACTIONS(1690), + [anon_sym_const] = ACTIONS(1694), + [anon_sym_default] = ACTIONS(1696), + [anon_sym_gen] = ACTIONS(1696), + [anon_sym_union] = ACTIONS(1696), + [anon_sym_ref] = ACTIONS(1698), + [sym_mutable_specifier] = ACTIONS(1700), + [anon_sym_raw] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1702), + [aux_sym_string_literal_token1] = ACTIONS(1704), + [sym_char_literal] = ACTIONS(1702), + [anon_sym_true] = ACTIONS(1706), + [anon_sym_false] = ACTIONS(1706), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1708), + [sym_super] = ACTIONS(1708), + [sym_crate] = ACTIONS(1708), + [sym_metavariable] = ACTIONS(1710), + [sym__raw_string_literal_start] = ACTIONS(1712), + [sym_float_literal] = ACTIONS(1702), + }, + [838] = { + [sym_bracketed_type] = STATE(3787), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_macro_invocation] = STATE(2198), + [sym_scoped_identifier] = STATE(2034), + [sym_scoped_type_identifier] = STATE(2991), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(2190), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), [sym_line_comment] = STATE(838), [sym_block_comment] = STATE(838), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(839)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2231), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_identifier] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_u8] = ACTIONS(1730), + [anon_sym_i8] = ACTIONS(1730), + [anon_sym_u16] = ACTIONS(1730), + [anon_sym_i16] = ACTIONS(1730), + [anon_sym_u32] = ACTIONS(1730), + [anon_sym_i32] = ACTIONS(1730), + [anon_sym_u64] = ACTIONS(1730), + [anon_sym_i64] = ACTIONS(1730), + [anon_sym_u128] = ACTIONS(1730), + [anon_sym_i128] = ACTIONS(1730), + [anon_sym_isize] = ACTIONS(1730), + [anon_sym_usize] = ACTIONS(1730), + [anon_sym_f32] = ACTIONS(1730), + [anon_sym_f64] = ACTIONS(1730), + [anon_sym_bool] = ACTIONS(1730), + [anon_sym_str] = ACTIONS(1730), + [anon_sym_char] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_const] = ACTIONS(1738), + [anon_sym_default] = ACTIONS(1740), + [anon_sym_gen] = ACTIONS(1740), + [anon_sym_union] = ACTIONS(1740), + [anon_sym_ref] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1422), + [anon_sym_raw] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1742), + [sym_super] = ACTIONS(1742), + [sym_crate] = ACTIONS(1742), + [sym_metavariable] = ACTIONS(1744), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [839] = { + [sym_bracketed_type] = STATE(3787), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_macro_invocation] = STATE(2198), + [sym_scoped_identifier] = STATE(2034), + [sym_scoped_type_identifier] = STATE(2991), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(2214), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), [sym_line_comment] = STATE(839), [sym_block_comment] = STATE(839), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(840)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2594), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_identifier] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_u8] = ACTIONS(1730), + [anon_sym_i8] = ACTIONS(1730), + [anon_sym_u16] = ACTIONS(1730), + [anon_sym_i16] = ACTIONS(1730), + [anon_sym_u32] = ACTIONS(1730), + [anon_sym_i32] = ACTIONS(1730), + [anon_sym_u64] = ACTIONS(1730), + [anon_sym_i64] = ACTIONS(1730), + [anon_sym_u128] = ACTIONS(1730), + [anon_sym_i128] = ACTIONS(1730), + [anon_sym_isize] = ACTIONS(1730), + [anon_sym_usize] = ACTIONS(1730), + [anon_sym_f32] = ACTIONS(1730), + [anon_sym_f64] = ACTIONS(1730), + [anon_sym_bool] = ACTIONS(1730), + [anon_sym_str] = ACTIONS(1730), + [anon_sym_char] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_const] = ACTIONS(1738), + [anon_sym_default] = ACTIONS(1740), + [anon_sym_gen] = ACTIONS(1740), + [anon_sym_union] = ACTIONS(1740), + [anon_sym_ref] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1422), + [anon_sym_raw] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1742), + [sym_super] = ACTIONS(1742), + [sym_crate] = ACTIONS(1742), + [sym_metavariable] = ACTIONS(1744), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [840] = { + [sym_bracketed_type] = STATE(3787), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_macro_invocation] = STATE(2198), + [sym_scoped_identifier] = STATE(2034), + [sym_scoped_type_identifier] = STATE(2991), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(3185), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), [sym_line_comment] = STATE(840), [sym_block_comment] = STATE(840), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(3167), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(841)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(3407), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_identifier] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_u8] = ACTIONS(1730), + [anon_sym_i8] = ACTIONS(1730), + [anon_sym_u16] = ACTIONS(1730), + [anon_sym_i16] = ACTIONS(1730), + [anon_sym_u32] = ACTIONS(1730), + [anon_sym_i32] = ACTIONS(1730), + [anon_sym_u64] = ACTIONS(1730), + [anon_sym_i64] = ACTIONS(1730), + [anon_sym_u128] = ACTIONS(1730), + [anon_sym_i128] = ACTIONS(1730), + [anon_sym_isize] = ACTIONS(1730), + [anon_sym_usize] = ACTIONS(1730), + [anon_sym_f32] = ACTIONS(1730), + [anon_sym_f64] = ACTIONS(1730), + [anon_sym_bool] = ACTIONS(1730), + [anon_sym_str] = ACTIONS(1730), + [anon_sym_char] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_const] = ACTIONS(1738), + [anon_sym_default] = ACTIONS(1740), + [anon_sym_gen] = ACTIONS(1740), + [anon_sym_union] = ACTIONS(1740), + [anon_sym_ref] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1422), + [anon_sym_raw] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1742), + [sym_super] = ACTIONS(1742), + [sym_crate] = ACTIONS(1742), + [sym_metavariable] = ACTIONS(1744), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [841] = { + [sym_bracketed_type] = STATE(3787), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_macro_invocation] = STATE(2198), + [sym_scoped_identifier] = STATE(2034), + [sym_scoped_type_identifier] = STATE(2991), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(3441), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), [sym_line_comment] = STATE(841), [sym_block_comment] = STATE(841), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(842)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2615), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_identifier] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_u8] = ACTIONS(1730), + [anon_sym_i8] = ACTIONS(1730), + [anon_sym_u16] = ACTIONS(1730), + [anon_sym_i16] = ACTIONS(1730), + [anon_sym_u32] = ACTIONS(1730), + [anon_sym_i32] = ACTIONS(1730), + [anon_sym_u64] = ACTIONS(1730), + [anon_sym_i64] = ACTIONS(1730), + [anon_sym_u128] = ACTIONS(1730), + [anon_sym_i128] = ACTIONS(1730), + [anon_sym_isize] = ACTIONS(1730), + [anon_sym_usize] = ACTIONS(1730), + [anon_sym_f32] = ACTIONS(1730), + [anon_sym_f64] = ACTIONS(1730), + [anon_sym_bool] = ACTIONS(1730), + [anon_sym_str] = ACTIONS(1730), + [anon_sym_char] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_const] = ACTIONS(1738), + [anon_sym_default] = ACTIONS(1740), + [anon_sym_gen] = ACTIONS(1740), + [anon_sym_union] = ACTIONS(1740), + [anon_sym_ref] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1422), + [anon_sym_raw] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1742), + [sym_super] = ACTIONS(1742), + [sym_crate] = ACTIONS(1742), + [sym_metavariable] = ACTIONS(1744), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [842] = { + [sym_bracketed_type] = STATE(3787), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_macro_invocation] = STATE(2198), + [sym_scoped_identifier] = STATE(2034), + [sym_scoped_type_identifier] = STATE(2991), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(3464), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), [sym_line_comment] = STATE(842), [sym_block_comment] = STATE(842), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(843)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2550), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_identifier] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_u8] = ACTIONS(1730), + [anon_sym_i8] = ACTIONS(1730), + [anon_sym_u16] = ACTIONS(1730), + [anon_sym_i16] = ACTIONS(1730), + [anon_sym_u32] = ACTIONS(1730), + [anon_sym_i32] = ACTIONS(1730), + [anon_sym_u64] = ACTIONS(1730), + [anon_sym_i64] = ACTIONS(1730), + [anon_sym_u128] = ACTIONS(1730), + [anon_sym_i128] = ACTIONS(1730), + [anon_sym_isize] = ACTIONS(1730), + [anon_sym_usize] = ACTIONS(1730), + [anon_sym_f32] = ACTIONS(1730), + [anon_sym_f64] = ACTIONS(1730), + [anon_sym_bool] = ACTIONS(1730), + [anon_sym_str] = ACTIONS(1730), + [anon_sym_char] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_const] = ACTIONS(1738), + [anon_sym_default] = ACTIONS(1740), + [anon_sym_gen] = ACTIONS(1740), + [anon_sym_union] = ACTIONS(1740), + [anon_sym_ref] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1422), + [anon_sym_raw] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1742), + [sym_super] = ACTIONS(1742), + [sym_crate] = ACTIONS(1742), + [sym_metavariable] = ACTIONS(1744), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [843] = { + [sym_bracketed_type] = STATE(3787), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_macro_invocation] = STATE(2198), + [sym_scoped_identifier] = STATE(2034), + [sym_scoped_type_identifier] = STATE(2991), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(3472), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), [sym_line_comment] = STATE(843), [sym_block_comment] = STATE(843), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(3169), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(844)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2212), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_identifier] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_u8] = ACTIONS(1730), + [anon_sym_i8] = ACTIONS(1730), + [anon_sym_u16] = ACTIONS(1730), + [anon_sym_i16] = ACTIONS(1730), + [anon_sym_u32] = ACTIONS(1730), + [anon_sym_i32] = ACTIONS(1730), + [anon_sym_u64] = ACTIONS(1730), + [anon_sym_i64] = ACTIONS(1730), + [anon_sym_u128] = ACTIONS(1730), + [anon_sym_i128] = ACTIONS(1730), + [anon_sym_isize] = ACTIONS(1730), + [anon_sym_usize] = ACTIONS(1730), + [anon_sym_f32] = ACTIONS(1730), + [anon_sym_f64] = ACTIONS(1730), + [anon_sym_bool] = ACTIONS(1730), + [anon_sym_str] = ACTIONS(1730), + [anon_sym_char] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_const] = ACTIONS(1738), + [anon_sym_default] = ACTIONS(1740), + [anon_sym_gen] = ACTIONS(1740), + [anon_sym_union] = ACTIONS(1740), + [anon_sym_ref] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1422), + [anon_sym_raw] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1742), + [sym_super] = ACTIONS(1742), + [sym_crate] = ACTIONS(1742), + [sym_metavariable] = ACTIONS(1744), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [844] = { + [sym_bracketed_type] = STATE(3787), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_macro_invocation] = STATE(2198), + [sym_scoped_identifier] = STATE(2034), + [sym_scoped_type_identifier] = STATE(2991), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(3473), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), [sym_line_comment] = STATE(844), [sym_block_comment] = STATE(844), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(845)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2215), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_identifier] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_u8] = ACTIONS(1730), + [anon_sym_i8] = ACTIONS(1730), + [anon_sym_u16] = ACTIONS(1730), + [anon_sym_i16] = ACTIONS(1730), + [anon_sym_u32] = ACTIONS(1730), + [anon_sym_i32] = ACTIONS(1730), + [anon_sym_u64] = ACTIONS(1730), + [anon_sym_i64] = ACTIONS(1730), + [anon_sym_u128] = ACTIONS(1730), + [anon_sym_i128] = ACTIONS(1730), + [anon_sym_isize] = ACTIONS(1730), + [anon_sym_usize] = ACTIONS(1730), + [anon_sym_f32] = ACTIONS(1730), + [anon_sym_f64] = ACTIONS(1730), + [anon_sym_bool] = ACTIONS(1730), + [anon_sym_str] = ACTIONS(1730), + [anon_sym_char] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_const] = ACTIONS(1738), + [anon_sym_default] = ACTIONS(1740), + [anon_sym_gen] = ACTIONS(1740), + [anon_sym_union] = ACTIONS(1740), + [anon_sym_ref] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(1422), + [anon_sym_raw] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1742), + [sym_super] = ACTIONS(1742), + [sym_crate] = ACTIONS(1742), + [sym_metavariable] = ACTIONS(1744), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [845] = { + [sym_bracketed_type] = STATE(3787), + [sym_generic_type] = STATE(3789), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_macro_invocation] = STATE(2198), + [sym_scoped_identifier] = STATE(2034), + [sym_scoped_type_identifier] = STATE(2991), + [sym_const_block] = STATE(2198), + [sym__pattern] = STATE(2611), + [sym_generic_pattern] = STATE(2198), + [sym_tuple_pattern] = STATE(2198), + [sym_slice_pattern] = STATE(2198), + [sym_tuple_struct_pattern] = STATE(2198), + [sym_struct_pattern] = STATE(2198), + [sym_remaining_field_pattern] = STATE(2198), + [sym_mut_pattern] = STATE(2198), + [sym_range_pattern] = STATE(2198), + [sym_ref_pattern] = STATE(2198), + [sym_captured_pattern] = STATE(2198), + [sym_reference_pattern] = STATE(2198), + [sym_or_pattern] = STATE(2198), + [sym__literal_pattern] = STATE(2102), + [sym_negative_literal] = STATE(2100), + [sym_string_literal] = STATE(2100), + [sym_raw_string_literal] = STATE(2100), + [sym_boolean_literal] = STATE(2100), [sym_line_comment] = STATE(845), [sym_block_comment] = STATE(845), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(846)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(2209), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [sym_identifier] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1724), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_u8] = ACTIONS(1730), + [anon_sym_i8] = ACTIONS(1730), + [anon_sym_u16] = ACTIONS(1730), + [anon_sym_i16] = ACTIONS(1730), + [anon_sym_u32] = ACTIONS(1730), + [anon_sym_i32] = ACTIONS(1730), + [anon_sym_u64] = ACTIONS(1730), + [anon_sym_i64] = ACTIONS(1730), + [anon_sym_u128] = ACTIONS(1730), + [anon_sym_i128] = ACTIONS(1730), + [anon_sym_isize] = ACTIONS(1730), + [anon_sym_usize] = ACTIONS(1730), + [anon_sym_f32] = ACTIONS(1730), + [anon_sym_f64] = ACTIONS(1730), + [anon_sym_bool] = ACTIONS(1730), + [anon_sym_str] = ACTIONS(1730), + [anon_sym_char] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_AMP] = ACTIONS(1732), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1414), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1080), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_const] = ACTIONS(1738), + [anon_sym_default] = ACTIONS(1740), + [anon_sym_gen] = ACTIONS(1740), + [anon_sym_union] = ACTIONS(1740), + [anon_sym_ref] = ACTIONS(1108), + [sym_mutable_specifier] = ACTIONS(3161), + [anon_sym_raw] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1114), + [aux_sym_string_literal_token1] = ACTIONS(1116), + [sym_char_literal] = ACTIONS(1114), + [anon_sym_true] = ACTIONS(1118), + [anon_sym_false] = ACTIONS(1118), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1742), + [sym_super] = ACTIONS(1742), + [sym_crate] = ACTIONS(1742), + [sym_metavariable] = ACTIONS(1744), + [sym__raw_string_literal_start] = ACTIONS(1126), + [sym_float_literal] = ACTIONS(1114), + }, + [846] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2083), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(846), [sym_block_comment] = STATE(846), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(847)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(3017), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_PLUS] = ACTIONS(3163), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(3081), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [sym_mutable_specifier] = ACTIONS(3165), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [847] = { + [sym_function_modifiers] = STATE(3686), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(3191), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3651), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3651), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2258), [sym_line_comment] = STATE(847), [sym_block_comment] = STATE(847), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(848)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(3252), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_PLUS] = ACTIONS(3169), + [anon_sym_STAR] = ACTIONS(1616), + [anon_sym_QMARK] = ACTIONS(1618), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1622), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(3081), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1632), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1636), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1638), + [sym_mutable_specifier] = ACTIONS(3171), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [848] = { + [sym_function_modifiers] = STATE(3753), + [sym_removed_trait_bound] = STATE(1529), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(1519), + [sym_bracketed_type] = STATE(3677), + [sym_lifetime] = STATE(3495), + [sym_array_type] = STATE(1529), + [sym_for_lifetimes] = STATE(1604), + [sym_function_type] = STATE(1529), + [sym_tuple_type] = STATE(1529), + [sym_unit_type] = STATE(1529), + [sym_generic_type] = STATE(1416), + [sym_generic_type_with_turbofish] = STATE(3809), + [sym_bounded_type] = STATE(1529), + [sym_use_bounds] = STATE(3495), + [sym_reference_type] = STATE(1529), + [sym_pointer_type] = STATE(1529), + [sym_never_type] = STATE(1529), + [sym_abstract_type] = STATE(1529), + [sym_dynamic_type] = STATE(1529), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(3347), + [sym_scoped_type_identifier] = STATE(1097), [sym_line_comment] = STATE(848), [sym_block_comment] = STATE(848), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(849)] = { - [sym_bracketed_type] = STATE(3698), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3419), - [sym_macro_invocation] = STATE(2942), - [sym_scoped_identifier] = STATE(2248), - [sym_scoped_type_identifier] = STATE(3103), - [sym_const_block] = STATE(2942), - [sym__pattern] = STATE(2892), - [sym_generic_pattern] = STATE(2942), - [sym_tuple_pattern] = STATE(2942), - [sym_slice_pattern] = STATE(2942), - [sym_tuple_struct_pattern] = STATE(2942), - [sym_struct_pattern] = STATE(2942), - [sym_remaining_field_pattern] = STATE(2942), - [sym_mut_pattern] = STATE(2942), - [sym_range_pattern] = STATE(2942), - [sym_ref_pattern] = STATE(2942), - [sym_captured_pattern] = STATE(2942), - [sym_reference_pattern] = STATE(2942), - [sym_or_pattern] = STATE(2942), - [sym__literal_pattern] = STATE(2447), - [sym_negative_literal] = STATE(2441), - [sym_string_literal] = STATE(2441), - [sym_raw_string_literal] = STATE(2441), - [sym_boolean_literal] = STATE(2441), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3175), + [anon_sym_LBRACK] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(3179), + [anon_sym_STAR] = ACTIONS(3181), + [anon_sym_QMARK] = ACTIONS(3183), + [anon_sym_u8] = ACTIONS(3185), + [anon_sym_i8] = ACTIONS(3185), + [anon_sym_u16] = ACTIONS(3185), + [anon_sym_i16] = ACTIONS(3185), + [anon_sym_u32] = ACTIONS(3185), + [anon_sym_i32] = ACTIONS(3185), + [anon_sym_u64] = ACTIONS(3185), + [anon_sym_i64] = ACTIONS(3185), + [anon_sym_u128] = ACTIONS(3185), + [anon_sym_i128] = ACTIONS(3185), + [anon_sym_isize] = ACTIONS(3185), + [anon_sym_usize] = ACTIONS(3185), + [anon_sym_f32] = ACTIONS(3185), + [anon_sym_f64] = ACTIONS(3185), + [anon_sym_bool] = ACTIONS(3185), + [anon_sym_str] = ACTIONS(3185), + [anon_sym_char] = ACTIONS(3185), + [anon_sym_BANG] = ACTIONS(3187), + [anon_sym_AMP] = ACTIONS(3189), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3191), + [anon_sym_SQUOTE] = ACTIONS(3081), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(3193), + [anon_sym_fn] = ACTIONS(3195), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(3197), + [anon_sym_impl] = ACTIONS(3199), + [anon_sym_union] = ACTIONS(3197), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(3201), + [sym_mutable_specifier] = ACTIONS(3203), + [anon_sym_raw] = ACTIONS(3197), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3205), + [sym_super] = ACTIONS(3205), + [sym_crate] = ACTIONS(3205), + [sym_metavariable] = ACTIONS(3207), + }, + [849] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2083), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(849), [sym_block_comment] = STATE(849), - [sym_identifier] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_LBRACK] = ACTIONS(1680), - [anon_sym_u8] = ACTIONS(1684), - [anon_sym_i8] = ACTIONS(1684), - [anon_sym_u16] = ACTIONS(1684), - [anon_sym_i16] = ACTIONS(1684), - [anon_sym_u32] = ACTIONS(1684), - [anon_sym_i32] = ACTIONS(1684), - [anon_sym_u64] = ACTIONS(1684), - [anon_sym_i64] = ACTIONS(1684), - [anon_sym_u128] = ACTIONS(1684), - [anon_sym_i128] = ACTIONS(1684), - [anon_sym_isize] = ACTIONS(1684), - [anon_sym_usize] = ACTIONS(1684), - [anon_sym_f32] = ACTIONS(1684), - [anon_sym_f64] = ACTIONS(1684), - [anon_sym_bool] = ACTIONS(1684), - [anon_sym_str] = ACTIONS(1684), - [anon_sym_char] = ACTIONS(1684), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_AMP] = ACTIONS(1688), - [anon_sym_PIPE] = ACTIONS(1690), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1692), - [anon_sym_DOT_DOT] = ACTIONS(1694), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1696), - [anon_sym_COLON_COLON] = ACTIONS(1698), - [anon_sym_const] = ACTIONS(1702), - [anon_sym_default] = ACTIONS(1704), - [anon_sym_gen] = ACTIONS(1704), - [anon_sym_union] = ACTIONS(1704), - [anon_sym_ref] = ACTIONS(1706), - [sym_mutable_specifier] = ACTIONS(1708), - [anon_sym_raw] = ACTIONS(1704), - [sym_integer_literal] = ACTIONS(1710), - [aux_sym_string_literal_token1] = ACTIONS(1712), - [sym_char_literal] = ACTIONS(1710), - [anon_sym_true] = ACTIONS(1714), - [anon_sym_false] = ACTIONS(1714), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1716), - [sym_super] = ACTIONS(1716), - [sym_crate] = ACTIONS(1716), - [sym_metavariable] = ACTIONS(1718), - [sym__raw_string_literal_start] = ACTIONS(1720), - [sym_float_literal] = ACTIONS(1710), - }, - [STATE(850)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(3474), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_PLUS] = ACTIONS(3163), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(3081), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [sym_mutable_specifier] = ACTIONS(3209), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3211), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [850] = { + [sym_function_modifiers] = STATE(3686), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2083), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3651), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3651), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2258), [sym_line_comment] = STATE(850), [sym_block_comment] = STATE(850), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(851)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(3477), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), - [sym_line_comment] = STATE(851), - [sym_block_comment] = STATE(851), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(852)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(3478), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), - [sym_line_comment] = STATE(852), - [sym_block_comment] = STATE(852), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(853)] = { - [sym_bracketed_type] = STATE(3762), - [sym_generic_type] = STATE(3764), - [sym_generic_type_with_turbofish] = STATE(3481), - [sym_macro_invocation] = STATE(2182), - [sym_scoped_identifier] = STATE(2047), - [sym_scoped_type_identifier] = STATE(3014), - [sym_const_block] = STATE(2182), - [sym__pattern] = STATE(3480), - [sym_generic_pattern] = STATE(2182), - [sym_tuple_pattern] = STATE(2182), - [sym_slice_pattern] = STATE(2182), - [sym_tuple_struct_pattern] = STATE(2182), - [sym_struct_pattern] = STATE(2182), - [sym_remaining_field_pattern] = STATE(2182), - [sym_mut_pattern] = STATE(2182), - [sym_range_pattern] = STATE(2182), - [sym_ref_pattern] = STATE(2182), - [sym_captured_pattern] = STATE(2182), - [sym_reference_pattern] = STATE(2182), - [sym_or_pattern] = STATE(2182), - [sym__literal_pattern] = STATE(2110), - [sym_negative_literal] = STATE(2116), - [sym_string_literal] = STATE(2116), - [sym_raw_string_literal] = STATE(2116), - [sym_boolean_literal] = STATE(2116), - [sym_line_comment] = STATE(853), - [sym_block_comment] = STATE(853), - [sym_identifier] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1736), - [anon_sym_u8] = ACTIONS(1738), - [anon_sym_i8] = ACTIONS(1738), - [anon_sym_u16] = ACTIONS(1738), - [anon_sym_i16] = ACTIONS(1738), - [anon_sym_u32] = ACTIONS(1738), - [anon_sym_i32] = ACTIONS(1738), - [anon_sym_u64] = ACTIONS(1738), - [anon_sym_i64] = ACTIONS(1738), - [anon_sym_u128] = ACTIONS(1738), - [anon_sym_i128] = ACTIONS(1738), - [anon_sym_isize] = ACTIONS(1738), - [anon_sym_usize] = ACTIONS(1738), - [anon_sym_f32] = ACTIONS(1738), - [anon_sym_f64] = ACTIONS(1738), - [anon_sym_bool] = ACTIONS(1738), - [anon_sym_str] = ACTIONS(1738), - [anon_sym_char] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1072), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1082), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1086), - [anon_sym_COLON_COLON] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1750), - [anon_sym_gen] = ACTIONS(1750), - [anon_sym_union] = ACTIONS(1750), - [anon_sym_ref] = ACTIONS(1114), - [sym_mutable_specifier] = ACTIONS(1430), - [anon_sym_raw] = ACTIONS(1750), - [sym_integer_literal] = ACTIONS(1120), - [aux_sym_string_literal_token1] = ACTIONS(1122), - [sym_char_literal] = ACTIONS(1120), - [anon_sym_true] = ACTIONS(1124), - [anon_sym_false] = ACTIONS(1124), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1752), - [sym_super] = ACTIONS(1752), - [sym_crate] = ACTIONS(1752), - [sym_metavariable] = ACTIONS(1754), - [sym__raw_string_literal_start] = ACTIONS(1132), - [sym_float_literal] = ACTIONS(1120), - }, - [STATE(854)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3256), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3584), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), - [sym_line_comment] = STATE(854), - [sym_block_comment] = STATE(854), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_PLUS] = ACTIONS(3173), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_PLUS] = ACTIONS(3169), + [anon_sym_STAR] = ACTIONS(1616), + [anon_sym_QMARK] = ACTIONS(1618), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1622), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [sym_mutable_specifier] = ACTIONS(3175), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(855)] = { - [sym_function_modifiers] = STATE(3644), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1632), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1636), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1638), + [sym_mutable_specifier] = ACTIONS(3213), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [851] = { + [sym_function_modifiers] = STATE(3634), [sym_removed_trait_bound] = STATE(1782), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(1753), - [sym_bracketed_type] = STATE(3704), - [sym_lifetime] = STATE(3802), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(1750), + [sym_bracketed_type] = STATE(3694), + [sym_lifetime] = STATE(3777), [sym_array_type] = STATE(1782), - [sym_for_lifetimes] = STATE(1603), + [sym_for_lifetimes] = STATE(1607), [sym_function_type] = STATE(1782), [sym_tuple_type] = STATE(1782), [sym_unit_type] = STATE(1782), - [sym_generic_type] = STATE(1716), - [sym_generic_type_with_turbofish] = STATE(3695), + [sym_generic_type] = STATE(1688), + [sym_generic_type_with_turbofish] = STATE(3685), [sym_bounded_type] = STATE(1782), - [sym_use_bounds] = STATE(3802), + [sym_use_bounds] = STATE(3777), [sym_reference_type] = STATE(1782), [sym_pointer_type] = STATE(1782), [sym_never_type] = STATE(1782), [sym_abstract_type] = STATE(1782), [sym_dynamic_type] = STATE(1782), [sym_macro_invocation] = STATE(1782), - [sym_scoped_identifier] = STATE(3436), - [sym_scoped_type_identifier] = STATE(1625), + [sym_scoped_identifier] = STATE(3425), + [sym_scoped_type_identifier] = STATE(1603), + [sym_line_comment] = STATE(851), + [sym_block_comment] = STATE(851), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3215), + [anon_sym_LPAREN] = ACTIONS(3217), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_STAR] = ACTIONS(3223), + [anon_sym_QMARK] = ACTIONS(3225), + [anon_sym_u8] = ACTIONS(3227), + [anon_sym_i8] = ACTIONS(3227), + [anon_sym_u16] = ACTIONS(3227), + [anon_sym_i16] = ACTIONS(3227), + [anon_sym_u32] = ACTIONS(3227), + [anon_sym_i32] = ACTIONS(3227), + [anon_sym_u64] = ACTIONS(3227), + [anon_sym_i64] = ACTIONS(3227), + [anon_sym_u128] = ACTIONS(3227), + [anon_sym_i128] = ACTIONS(3227), + [anon_sym_isize] = ACTIONS(3227), + [anon_sym_usize] = ACTIONS(3227), + [anon_sym_f32] = ACTIONS(3227), + [anon_sym_f64] = ACTIONS(3227), + [anon_sym_bool] = ACTIONS(3227), + [anon_sym_str] = ACTIONS(3227), + [anon_sym_char] = ACTIONS(3227), + [anon_sym_BANG] = ACTIONS(3229), + [anon_sym_AMP] = ACTIONS(3231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3233), + [anon_sym_SQUOTE] = ACTIONS(3081), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(3235), + [anon_sym_fn] = ACTIONS(3237), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(3239), + [anon_sym_impl] = ACTIONS(3241), + [anon_sym_union] = ACTIONS(3239), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(3243), + [sym_mutable_specifier] = ACTIONS(3245), + [anon_sym_raw] = ACTIONS(3239), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3247), + [sym_super] = ACTIONS(3247), + [sym_crate] = ACTIONS(3247), + [sym_metavariable] = ACTIONS(3249), + }, + [852] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_type_parameters] = STATE(953), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2498), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2495), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2244), + [sym_line_comment] = STATE(852), + [sym_block_comment] = STATE(852), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3251), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(3253), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(3255), + [anon_sym_COLON_COLON] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(3081), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [853] = { + [sym_function_modifiers] = STATE(3806), + [sym_higher_ranked_trait_bound] = STATE(2229), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2277), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(2277), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), + [sym_line_comment] = STATE(853), + [sym_block_comment] = STATE(853), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(3081), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(3257), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [854] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2651), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), + [sym_line_comment] = STATE(854), + [sym_block_comment] = STATE(854), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_RPAREN] = ACTIONS(3259), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(3081), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [855] = { + [sym_function_modifiers] = STATE(3806), + [sym_higher_ranked_trait_bound] = STATE(2325), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2326), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(2326), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(855), [sym_block_comment] = STATE(855), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_LBRACK] = ACTIONS(3181), - [anon_sym_PLUS] = ACTIONS(3183), - [anon_sym_STAR] = ACTIONS(3185), - [anon_sym_QMARK] = ACTIONS(3187), - [anon_sym_u8] = ACTIONS(3189), - [anon_sym_i8] = ACTIONS(3189), - [anon_sym_u16] = ACTIONS(3189), - [anon_sym_i16] = ACTIONS(3189), - [anon_sym_u32] = ACTIONS(3189), - [anon_sym_i32] = ACTIONS(3189), - [anon_sym_u64] = ACTIONS(3189), - [anon_sym_i64] = ACTIONS(3189), - [anon_sym_u128] = ACTIONS(3189), - [anon_sym_i128] = ACTIONS(3189), - [anon_sym_isize] = ACTIONS(3189), - [anon_sym_usize] = ACTIONS(3189), - [anon_sym_f32] = ACTIONS(3189), - [anon_sym_f64] = ACTIONS(3189), - [anon_sym_bool] = ACTIONS(3189), - [anon_sym_str] = ACTIONS(3189), - [anon_sym_char] = ACTIONS(3189), - [anon_sym_BANG] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3193), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3195), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3197), - [anon_sym_fn] = ACTIONS(3199), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3201), - [anon_sym_impl] = ACTIONS(3203), - [anon_sym_union] = ACTIONS(3201), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(3205), - [sym_mutable_specifier] = ACTIONS(3207), - [anon_sym_raw] = ACTIONS(3201), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3209), - [sym_super] = ACTIONS(3209), - [sym_crate] = ACTIONS(3209), - [sym_metavariable] = ACTIONS(3211), - }, - [STATE(856)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2086), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(3257), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [856] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2737), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(856), [sym_block_comment] = STATE(856), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_PLUS] = ACTIONS(3213), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_RPAREN] = ACTIONS(3259), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(3215), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3217), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(857)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2086), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [857] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_type_parameters] = STATE(972), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2407), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2499), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2252), [sym_line_comment] = STATE(857), [sym_block_comment] = STATE(857), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_PLUS] = ACTIONS(3213), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3261), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(3263), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(3255), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(3219), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(858)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2086), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3584), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [858] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(3103), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(858), [sym_block_comment] = STATE(858), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_PLUS] = ACTIONS(3173), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_RPAREN] = ACTIONS(3265), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [sym_mutable_specifier] = ACTIONS(3221), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(859)] = { - [sym_function_modifiers] = STATE(3775), - [sym_removed_trait_bound] = STATE(1530), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(1496), - [sym_bracketed_type] = STATE(3687), - [sym_lifetime] = STATE(3537), - [sym_array_type] = STATE(1530), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1530), - [sym_tuple_type] = STATE(1530), - [sym_unit_type] = STATE(1530), - [sym_generic_type] = STATE(1422), - [sym_generic_type_with_turbofish] = STATE(3817), - [sym_bounded_type] = STATE(1530), - [sym_use_bounds] = STATE(3537), - [sym_reference_type] = STATE(1530), - [sym_pointer_type] = STATE(1530), - [sym_never_type] = STATE(1530), - [sym_abstract_type] = STATE(1530), - [sym_dynamic_type] = STATE(1530), - [sym_macro_invocation] = STATE(1530), - [sym_scoped_identifier] = STATE(3346), - [sym_scoped_type_identifier] = STATE(1093), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [859] = { + [sym_function_modifiers] = STATE(3634), + [sym_removed_trait_bound] = STATE(1782), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(1730), + [sym_bracketed_type] = STATE(3694), + [sym_lifetime] = STATE(851), + [sym_array_type] = STATE(1782), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(1782), + [sym_tuple_type] = STATE(1782), + [sym_unit_type] = STATE(1782), + [sym_generic_type] = STATE(1688), + [sym_generic_type_with_turbofish] = STATE(3685), + [sym_bounded_type] = STATE(1782), + [sym_use_bounds] = STATE(3777), + [sym_reference_type] = STATE(1782), + [sym_pointer_type] = STATE(1782), + [sym_never_type] = STATE(1782), + [sym_abstract_type] = STATE(1782), + [sym_dynamic_type] = STATE(1782), + [sym_macro_invocation] = STATE(1782), + [sym_scoped_identifier] = STATE(3425), + [sym_scoped_type_identifier] = STATE(1603), [sym_line_comment] = STATE(859), [sym_block_comment] = STATE(859), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3225), - [anon_sym_LBRACK] = ACTIONS(3227), - [anon_sym_PLUS] = ACTIONS(3229), - [anon_sym_STAR] = ACTIONS(3231), - [anon_sym_QMARK] = ACTIONS(3233), - [anon_sym_u8] = ACTIONS(3235), - [anon_sym_i8] = ACTIONS(3235), - [anon_sym_u16] = ACTIONS(3235), - [anon_sym_i16] = ACTIONS(3235), - [anon_sym_u32] = ACTIONS(3235), - [anon_sym_i32] = ACTIONS(3235), - [anon_sym_u64] = ACTIONS(3235), - [anon_sym_i64] = ACTIONS(3235), - [anon_sym_u128] = ACTIONS(3235), - [anon_sym_i128] = ACTIONS(3235), - [anon_sym_isize] = ACTIONS(3235), - [anon_sym_usize] = ACTIONS(3235), - [anon_sym_f32] = ACTIONS(3235), - [anon_sym_f64] = ACTIONS(3235), - [anon_sym_bool] = ACTIONS(3235), - [anon_sym_str] = ACTIONS(3235), - [anon_sym_char] = ACTIONS(3235), - [anon_sym_BANG] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3241), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3215), + [anon_sym_LPAREN] = ACTIONS(3217), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_STAR] = ACTIONS(3223), + [anon_sym_QMARK] = ACTIONS(3225), + [anon_sym_u8] = ACTIONS(3227), + [anon_sym_i8] = ACTIONS(3227), + [anon_sym_u16] = ACTIONS(3227), + [anon_sym_i16] = ACTIONS(3227), + [anon_sym_u32] = ACTIONS(3227), + [anon_sym_i32] = ACTIONS(3227), + [anon_sym_u64] = ACTIONS(3227), + [anon_sym_i64] = ACTIONS(3227), + [anon_sym_u128] = ACTIONS(3227), + [anon_sym_i128] = ACTIONS(3227), + [anon_sym_isize] = ACTIONS(3227), + [anon_sym_usize] = ACTIONS(3227), + [anon_sym_f32] = ACTIONS(3227), + [anon_sym_f64] = ACTIONS(3227), + [anon_sym_bool] = ACTIONS(3227), + [anon_sym_str] = ACTIONS(3227), + [anon_sym_char] = ACTIONS(3227), + [anon_sym_BANG] = ACTIONS(3229), + [anon_sym_AMP] = ACTIONS(3231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3233), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3243), - [anon_sym_fn] = ACTIONS(3245), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3247), - [anon_sym_impl] = ACTIONS(3249), - [anon_sym_union] = ACTIONS(3247), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(3251), - [sym_mutable_specifier] = ACTIONS(3253), - [anon_sym_raw] = ACTIONS(3247), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3255), - [sym_super] = ACTIONS(3255), - [sym_crate] = ACTIONS(3255), - [sym_metavariable] = ACTIONS(3257), - }, - [STATE(860)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_type_parameters] = STATE(962), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2440), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2500), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2252), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(3235), + [anon_sym_fn] = ACTIONS(3237), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(3239), + [anon_sym_impl] = ACTIONS(3241), + [anon_sym_union] = ACTIONS(3239), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(3243), + [sym_mutable_specifier] = ACTIONS(3267), + [anon_sym_raw] = ACTIONS(3239), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3247), + [sym_super] = ACTIONS(3247), + [sym_crate] = ACTIONS(3247), + [sym_metavariable] = ACTIONS(3249), + }, + [860] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(3103), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(860), [sym_block_comment] = STATE(860), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3259), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(3261), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(3263), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_RPAREN] = ACTIONS(3269), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(861)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2661), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [861] = { + [sym_function_modifiers] = STATE(3753), + [sym_removed_trait_bound] = STATE(1529), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(1443), + [sym_bracketed_type] = STATE(3677), + [sym_lifetime] = STATE(848), + [sym_array_type] = STATE(1529), + [sym_for_lifetimes] = STATE(1604), + [sym_function_type] = STATE(1529), + [sym_tuple_type] = STATE(1529), + [sym_unit_type] = STATE(1529), + [sym_generic_type] = STATE(1416), + [sym_generic_type_with_turbofish] = STATE(3809), + [sym_bounded_type] = STATE(1529), + [sym_use_bounds] = STATE(3495), + [sym_reference_type] = STATE(1529), + [sym_pointer_type] = STATE(1529), + [sym_never_type] = STATE(1529), + [sym_abstract_type] = STATE(1529), + [sym_dynamic_type] = STATE(1529), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(3347), + [sym_scoped_type_identifier] = STATE(1097), [sym_line_comment] = STATE(861), [sym_block_comment] = STATE(861), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_RPAREN] = ACTIONS(3265), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3175), + [anon_sym_LBRACK] = ACTIONS(3177), + [anon_sym_STAR] = ACTIONS(3181), + [anon_sym_QMARK] = ACTIONS(3183), + [anon_sym_u8] = ACTIONS(3185), + [anon_sym_i8] = ACTIONS(3185), + [anon_sym_u16] = ACTIONS(3185), + [anon_sym_i16] = ACTIONS(3185), + [anon_sym_u32] = ACTIONS(3185), + [anon_sym_i32] = ACTIONS(3185), + [anon_sym_u64] = ACTIONS(3185), + [anon_sym_i64] = ACTIONS(3185), + [anon_sym_u128] = ACTIONS(3185), + [anon_sym_i128] = ACTIONS(3185), + [anon_sym_isize] = ACTIONS(3185), + [anon_sym_usize] = ACTIONS(3185), + [anon_sym_f32] = ACTIONS(3185), + [anon_sym_f64] = ACTIONS(3185), + [anon_sym_bool] = ACTIONS(3185), + [anon_sym_str] = ACTIONS(3185), + [anon_sym_char] = ACTIONS(3185), + [anon_sym_BANG] = ACTIONS(3187), + [anon_sym_AMP] = ACTIONS(3189), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3191), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(862)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2646), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(3193), + [anon_sym_fn] = ACTIONS(3195), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(3197), + [anon_sym_impl] = ACTIONS(3199), + [anon_sym_union] = ACTIONS(3197), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(3201), + [sym_mutable_specifier] = ACTIONS(3271), + [anon_sym_raw] = ACTIONS(3197), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3205), + [sym_super] = ACTIONS(3205), + [sym_crate] = ACTIONS(3205), + [sym_metavariable] = ACTIONS(3207), + }, + [862] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(3103), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(862), [sym_block_comment] = STATE(862), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_RPAREN] = ACTIONS(3267), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_RPAREN] = ACTIONS(3273), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(863)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2092), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(858), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [863] = { + [sym_function_modifiers] = STATE(3686), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2073), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(850), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3651), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2258), [sym_line_comment] = STATE(863), [sym_block_comment] = STATE(863), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1616), + [anon_sym_QMARK] = ACTIONS(1618), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1622), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [sym_mutable_specifier] = ACTIONS(3269), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(864)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2909), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1632), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1636), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1638), + [sym_mutable_specifier] = ACTIONS(3275), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [864] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2745), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(864), [sym_block_comment] = STATE(864), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_RPAREN] = ACTIONS(3271), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_RPAREN] = ACTIONS(3259), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(865)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_type_parameters] = STATE(980), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2469), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2505), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2260), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [865] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(3103), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(865), [sym_block_comment] = STATE(865), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3273), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(3263), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_RPAREN] = ACTIONS(3277), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(866)] = { - [sym_function_modifiers] = STATE(3815), - [sym_higher_ranked_trait_bound] = STATE(2332), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2334), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(2334), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(2091), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [866] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2788), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(866), [sym_block_comment] = STATE(866), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3279), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(3277), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(867)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2816), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [867] = { + [sym_function_modifiers] = STATE(3686), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(3072), + [sym_bracketed_type] = STATE(3736), + [sym_qualified_type] = STATE(3755), + [sym_lifetime] = STATE(3651), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3651), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2258), [sym_line_comment] = STATE(867), [sym_block_comment] = STATE(867), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_RPAREN] = ACTIONS(3267), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1616), + [anon_sym_QMARK] = ACTIONS(1618), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1622), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(868)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2909), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1632), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1636), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1638), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [868] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(3103), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(868), [sym_block_comment] = STATE(868), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_RPAREN] = ACTIONS(3279), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_RPAREN] = ACTIONS(3281), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(869)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2796), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [869] = { + [sym_function_modifiers] = STATE(3806), + [sym_higher_ranked_trait_bound] = STATE(2325), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2327), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(2327), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(2074), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(869), [sym_block_comment] = STATE(869), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3281), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(870)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2874), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(3257), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [870] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_type_parameters] = STATE(902), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2462), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2465), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2269), [sym_line_comment] = STATE(870), [sym_block_comment] = STATE(870), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3283), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3283), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(3285), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(3255), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(871)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2909), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [871] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_type_parameters] = STATE(916), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2428), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2430), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2266), [sym_line_comment] = STATE(871), [sym_block_comment] = STATE(871), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_RPAREN] = ACTIONS(3285), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(3289), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(3255), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(872)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2909), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [872] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2073), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(846), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(872), [sym_block_comment] = STATE(872), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_RPAREN] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(873)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_type_parameters] = STATE(898), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2443), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2459), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2273), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [sym_mutable_specifier] = ACTIONS(3291), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [873] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(3103), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(873), [sym_block_comment] = STATE(873), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3289), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(3291), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(3263), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_RPAREN] = ACTIONS(3293), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(874)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2909), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [874] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2723), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(874), [sym_block_comment] = STATE(874), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_RPAREN] = ACTIONS(3293), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3295), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(875)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2909), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [875] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2745), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(875), [sym_block_comment] = STATE(875), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_RPAREN] = ACTIONS(3295), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_RPAREN] = ACTIONS(3297), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(876)] = { - [sym_function_modifiers] = STATE(3815), - [sym_higher_ranked_trait_bound] = STATE(2332), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2333), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(2333), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [876] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2651), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(876), [sym_block_comment] = STATE(876), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_RPAREN] = ACTIONS(3299), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(3277), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(877)] = { - [sym_function_modifiers] = STATE(3644), - [sym_removed_trait_bound] = STATE(1782), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(1733), - [sym_bracketed_type] = STATE(3704), - [sym_lifetime] = STATE(855), - [sym_array_type] = STATE(1782), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1782), - [sym_tuple_type] = STATE(1782), - [sym_unit_type] = STATE(1782), - [sym_generic_type] = STATE(1716), - [sym_generic_type_with_turbofish] = STATE(3695), - [sym_bounded_type] = STATE(1782), - [sym_use_bounds] = STATE(3802), - [sym_reference_type] = STATE(1782), - [sym_pointer_type] = STATE(1782), - [sym_never_type] = STATE(1782), - [sym_abstract_type] = STATE(1782), - [sym_dynamic_type] = STATE(1782), - [sym_macro_invocation] = STATE(1782), - [sym_scoped_identifier] = STATE(3436), - [sym_scoped_type_identifier] = STATE(1625), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [877] = { + [sym_function_modifiers] = STATE(3686), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(3482), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(847), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3651), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2258), [sym_line_comment] = STATE(877), [sym_block_comment] = STATE(877), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_LBRACK] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3185), - [anon_sym_QMARK] = ACTIONS(3187), - [anon_sym_u8] = ACTIONS(3189), - [anon_sym_i8] = ACTIONS(3189), - [anon_sym_u16] = ACTIONS(3189), - [anon_sym_i16] = ACTIONS(3189), - [anon_sym_u32] = ACTIONS(3189), - [anon_sym_i32] = ACTIONS(3189), - [anon_sym_u64] = ACTIONS(3189), - [anon_sym_i64] = ACTIONS(3189), - [anon_sym_u128] = ACTIONS(3189), - [anon_sym_i128] = ACTIONS(3189), - [anon_sym_isize] = ACTIONS(3189), - [anon_sym_usize] = ACTIONS(3189), - [anon_sym_f32] = ACTIONS(3189), - [anon_sym_f64] = ACTIONS(3189), - [anon_sym_bool] = ACTIONS(3189), - [anon_sym_str] = ACTIONS(3189), - [anon_sym_char] = ACTIONS(3189), - [anon_sym_BANG] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3193), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3195), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1616), + [anon_sym_QMARK] = ACTIONS(1618), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1622), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3197), - [anon_sym_fn] = ACTIONS(3199), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3201), - [anon_sym_impl] = ACTIONS(3203), - [anon_sym_union] = ACTIONS(3201), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(3205), - [sym_mutable_specifier] = ACTIONS(3297), - [anon_sym_raw] = ACTIONS(3201), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3209), - [sym_super] = ACTIONS(3209), - [sym_crate] = ACTIONS(3209), - [sym_metavariable] = ACTIONS(3211), - }, - [STATE(878)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3194), - [sym_bracketed_type] = STATE(3750), - [sym_qualified_type] = STATE(3676), - [sym_lifetime] = STATE(3584), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1632), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1636), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1638), + [sym_mutable_specifier] = ACTIONS(3301), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [878] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2500), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(878), [sym_block_comment] = STATE(878), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(879)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_type_parameters] = STATE(921), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2496), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2502), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2257), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [879] = { + [sym_function_modifiers] = STATE(3686), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(3263), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3651), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3651), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2258), [sym_line_comment] = STATE(879), [sym_block_comment] = STATE(879), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3299), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(3301), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(3263), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1616), + [anon_sym_QMARK] = ACTIONS(1618), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1622), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(880)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2092), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(857), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1632), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1636), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1638), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [880] = { + [sym_function_modifiers] = STATE(3686), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2083), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3651), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3651), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2258), [sym_line_comment] = STATE(880), [sym_block_comment] = STATE(880), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1616), + [anon_sym_QMARK] = ACTIONS(1618), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1622), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [sym_mutable_specifier] = ACTIONS(3303), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(881)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2661), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1632), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1636), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1638), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [881] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2330), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(881), [sym_block_comment] = STATE(881), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_RPAREN] = ACTIONS(3267), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(882)] = { - [sym_function_modifiers] = STATE(3775), - [sym_removed_trait_bound] = STATE(1530), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(1551), - [sym_bracketed_type] = STATE(3687), - [sym_lifetime] = STATE(859), - [sym_array_type] = STATE(1530), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [882] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2293), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1530), - [sym_tuple_type] = STATE(1530), - [sym_unit_type] = STATE(1530), - [sym_generic_type] = STATE(1422), - [sym_generic_type_with_turbofish] = STATE(3817), - [sym_bounded_type] = STATE(1530), - [sym_use_bounds] = STATE(3537), - [sym_reference_type] = STATE(1530), - [sym_pointer_type] = STATE(1530), - [sym_never_type] = STATE(1530), - [sym_abstract_type] = STATE(1530), - [sym_dynamic_type] = STATE(1530), - [sym_macro_invocation] = STATE(1530), - [sym_scoped_identifier] = STATE(3346), - [sym_scoped_type_identifier] = STATE(1093), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(882), [sym_block_comment] = STATE(882), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3225), - [anon_sym_LBRACK] = ACTIONS(3227), - [anon_sym_STAR] = ACTIONS(3231), - [anon_sym_QMARK] = ACTIONS(3233), - [anon_sym_u8] = ACTIONS(3235), - [anon_sym_i8] = ACTIONS(3235), - [anon_sym_u16] = ACTIONS(3235), - [anon_sym_i16] = ACTIONS(3235), - [anon_sym_u32] = ACTIONS(3235), - [anon_sym_i32] = ACTIONS(3235), - [anon_sym_u64] = ACTIONS(3235), - [anon_sym_i64] = ACTIONS(3235), - [anon_sym_u128] = ACTIONS(3235), - [anon_sym_i128] = ACTIONS(3235), - [anon_sym_isize] = ACTIONS(3235), - [anon_sym_usize] = ACTIONS(3235), - [anon_sym_f32] = ACTIONS(3235), - [anon_sym_f64] = ACTIONS(3235), - [anon_sym_bool] = ACTIONS(3235), - [anon_sym_str] = ACTIONS(3235), - [anon_sym_char] = ACTIONS(3235), - [anon_sym_BANG] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3241), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3243), - [anon_sym_fn] = ACTIONS(3245), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3247), - [anon_sym_impl] = ACTIONS(3249), - [anon_sym_union] = ACTIONS(3247), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(3251), - [sym_mutable_specifier] = ACTIONS(3305), - [anon_sym_raw] = ACTIONS(3247), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3255), - [sym_super] = ACTIONS(3255), - [sym_crate] = ACTIONS(3255), - [sym_metavariable] = ACTIONS(3257), - }, - [STATE(883)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2816), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [883] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2737), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(883), [sym_block_comment] = STATE(883), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_RPAREN] = ACTIONS(3307), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(884)] = { - [sym_function_modifiers] = STATE(3815), - [sym_higher_ranked_trait_bound] = STATE(2282), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2284), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(2284), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [884] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(3116), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(884), [sym_block_comment] = STATE(884), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(3277), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(885)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3285), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(854), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [885] = { + [sym_function_modifiers] = STATE(3686), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2074), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(2074), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(2074), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2258), [sym_line_comment] = STATE(885), [sym_block_comment] = STATE(885), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [sym_mutable_specifier] = ACTIONS(3309), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(886)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2090), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3584), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1616), + [anon_sym_QMARK] = ACTIONS(1618), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1622), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(3067), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1632), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1636), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1638), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [886] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2454), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(886), [sym_block_comment] = STATE(886), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(887)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3263), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3584), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [887] = { + [sym_function_modifiers] = STATE(3753), + [sym_removed_trait_bound] = STATE(1529), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(1528), + [sym_bracketed_type] = STATE(3677), + [sym_lifetime] = STATE(1528), + [sym_array_type] = STATE(1529), + [sym_for_lifetimes] = STATE(1604), + [sym_function_type] = STATE(1529), + [sym_tuple_type] = STATE(1529), + [sym_unit_type] = STATE(1529), + [sym_generic_type] = STATE(1416), + [sym_generic_type_with_turbofish] = STATE(3809), + [sym_bounded_type] = STATE(1529), + [sym_use_bounds] = STATE(1528), + [sym_reference_type] = STATE(1529), + [sym_pointer_type] = STATE(1529), + [sym_never_type] = STATE(1529), + [sym_abstract_type] = STATE(1529), + [sym_dynamic_type] = STATE(1529), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(3347), + [sym_scoped_type_identifier] = STATE(1097), [sym_line_comment] = STATE(887), [sym_block_comment] = STATE(887), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(888)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2499), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3175), + [anon_sym_LBRACK] = ACTIONS(3177), + [anon_sym_STAR] = ACTIONS(3181), + [anon_sym_QMARK] = ACTIONS(3183), + [anon_sym_u8] = ACTIONS(3185), + [anon_sym_i8] = ACTIONS(3185), + [anon_sym_u16] = ACTIONS(3185), + [anon_sym_i16] = ACTIONS(3185), + [anon_sym_u32] = ACTIONS(3185), + [anon_sym_i32] = ACTIONS(3185), + [anon_sym_u64] = ACTIONS(3185), + [anon_sym_i64] = ACTIONS(3185), + [anon_sym_u128] = ACTIONS(3185), + [anon_sym_i128] = ACTIONS(3185), + [anon_sym_isize] = ACTIONS(3185), + [anon_sym_usize] = ACTIONS(3185), + [anon_sym_f32] = ACTIONS(3185), + [anon_sym_f64] = ACTIONS(3185), + [anon_sym_bool] = ACTIONS(3185), + [anon_sym_str] = ACTIONS(3185), + [anon_sym_char] = ACTIONS(3185), + [anon_sym_BANG] = ACTIONS(3187), + [anon_sym_AMP] = ACTIONS(3189), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3191), + [anon_sym_SQUOTE] = ACTIONS(3303), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(3193), + [anon_sym_fn] = ACTIONS(3195), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(3197), + [anon_sym_impl] = ACTIONS(3199), + [anon_sym_union] = ACTIONS(3197), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(3305), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(3201), + [anon_sym_raw] = ACTIONS(3197), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3205), + [sym_super] = ACTIONS(3205), + [sym_crate] = ACTIONS(3205), + [sym_metavariable] = ACTIONS(3207), + }, + [888] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2858), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(888), [sym_block_comment] = STATE(888), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(889)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2504), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [889] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2859), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(889), [sym_block_comment] = STATE(889), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(890)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3003), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [890] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2455), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(890), [sym_block_comment] = STATE(890), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(891)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2852), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [891] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2638), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(891), [sym_block_comment] = STATE(891), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(892)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2853), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [892] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2951), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(892), [sym_block_comment] = STATE(892), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(893)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2969), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [893] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2978), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(893), [sym_block_comment] = STATE(893), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(894)] = { - [sym_function_modifiers] = STATE(3775), - [sym_removed_trait_bound] = STATE(1530), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(1527), - [sym_bracketed_type] = STATE(3687), - [sym_lifetime] = STATE(3537), - [sym_array_type] = STATE(1530), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1530), - [sym_tuple_type] = STATE(1530), - [sym_unit_type] = STATE(1530), - [sym_generic_type] = STATE(1422), - [sym_generic_type_with_turbofish] = STATE(3817), - [sym_bounded_type] = STATE(1530), - [sym_use_bounds] = STATE(3537), - [sym_reference_type] = STATE(1530), - [sym_pointer_type] = STATE(1530), - [sym_never_type] = STATE(1530), - [sym_abstract_type] = STATE(1530), - [sym_dynamic_type] = STATE(1530), - [sym_macro_invocation] = STATE(1530), - [sym_scoped_identifier] = STATE(3346), - [sym_scoped_type_identifier] = STATE(1093), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [894] = { + [sym_function_modifiers] = STATE(3686), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2081), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3651), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3651), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2258), [sym_line_comment] = STATE(894), [sym_block_comment] = STATE(894), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3225), - [anon_sym_LBRACK] = ACTIONS(3227), - [anon_sym_STAR] = ACTIONS(3231), - [anon_sym_QMARK] = ACTIONS(3233), - [anon_sym_u8] = ACTIONS(3235), - [anon_sym_i8] = ACTIONS(3235), - [anon_sym_u16] = ACTIONS(3235), - [anon_sym_i16] = ACTIONS(3235), - [anon_sym_u32] = ACTIONS(3235), - [anon_sym_i32] = ACTIONS(3235), - [anon_sym_u64] = ACTIONS(3235), - [anon_sym_i64] = ACTIONS(3235), - [anon_sym_u128] = ACTIONS(3235), - [anon_sym_i128] = ACTIONS(3235), - [anon_sym_isize] = ACTIONS(3235), - [anon_sym_usize] = ACTIONS(3235), - [anon_sym_f32] = ACTIONS(3235), - [anon_sym_f64] = ACTIONS(3235), - [anon_sym_bool] = ACTIONS(3235), - [anon_sym_str] = ACTIONS(3235), - [anon_sym_char] = ACTIONS(3235), - [anon_sym_BANG] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3241), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1616), + [anon_sym_QMARK] = ACTIONS(1618), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1622), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3243), - [anon_sym_fn] = ACTIONS(3245), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3247), - [anon_sym_impl] = ACTIONS(3249), - [anon_sym_union] = ACTIONS(3247), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(3251), - [anon_sym_raw] = ACTIONS(3247), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3255), - [sym_super] = ACTIONS(3255), - [sym_crate] = ACTIONS(3255), - [sym_metavariable] = ACTIONS(3257), - }, - [STATE(895)] = { - [sym_function_modifiers] = STATE(3775), - [sym_removed_trait_bound] = STATE(1530), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(1531), - [sym_bracketed_type] = STATE(3687), - [sym_lifetime] = STATE(3537), - [sym_array_type] = STATE(1530), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1530), - [sym_tuple_type] = STATE(1530), - [sym_unit_type] = STATE(1530), - [sym_generic_type] = STATE(1422), - [sym_generic_type_with_turbofish] = STATE(3817), - [sym_bounded_type] = STATE(1530), - [sym_use_bounds] = STATE(3537), - [sym_reference_type] = STATE(1530), - [sym_pointer_type] = STATE(1530), - [sym_never_type] = STATE(1530), - [sym_abstract_type] = STATE(1530), - [sym_dynamic_type] = STATE(1530), - [sym_macro_invocation] = STATE(1530), - [sym_scoped_identifier] = STATE(3346), - [sym_scoped_type_identifier] = STATE(1093), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1632), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1636), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1638), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [895] = { + [sym_function_modifiers] = STATE(3753), + [sym_removed_trait_bound] = STATE(1529), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(1547), + [sym_bracketed_type] = STATE(3677), + [sym_lifetime] = STATE(3495), + [sym_array_type] = STATE(1529), + [sym_for_lifetimes] = STATE(1604), + [sym_function_type] = STATE(1529), + [sym_tuple_type] = STATE(1529), + [sym_unit_type] = STATE(1529), + [sym_generic_type] = STATE(1416), + [sym_generic_type_with_turbofish] = STATE(3809), + [sym_bounded_type] = STATE(1529), + [sym_use_bounds] = STATE(3495), + [sym_reference_type] = STATE(1529), + [sym_pointer_type] = STATE(1529), + [sym_never_type] = STATE(1529), + [sym_abstract_type] = STATE(1529), + [sym_dynamic_type] = STATE(1529), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(3347), + [sym_scoped_type_identifier] = STATE(1097), [sym_line_comment] = STATE(895), [sym_block_comment] = STATE(895), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3225), - [anon_sym_LBRACK] = ACTIONS(3227), - [anon_sym_STAR] = ACTIONS(3231), - [anon_sym_QMARK] = ACTIONS(3233), - [anon_sym_u8] = ACTIONS(3235), - [anon_sym_i8] = ACTIONS(3235), - [anon_sym_u16] = ACTIONS(3235), - [anon_sym_i16] = ACTIONS(3235), - [anon_sym_u32] = ACTIONS(3235), - [anon_sym_i32] = ACTIONS(3235), - [anon_sym_u64] = ACTIONS(3235), - [anon_sym_i64] = ACTIONS(3235), - [anon_sym_u128] = ACTIONS(3235), - [anon_sym_i128] = ACTIONS(3235), - [anon_sym_isize] = ACTIONS(3235), - [anon_sym_usize] = ACTIONS(3235), - [anon_sym_f32] = ACTIONS(3235), - [anon_sym_f64] = ACTIONS(3235), - [anon_sym_bool] = ACTIONS(3235), - [anon_sym_str] = ACTIONS(3235), - [anon_sym_char] = ACTIONS(3235), - [anon_sym_BANG] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3241), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3175), + [anon_sym_LBRACK] = ACTIONS(3177), + [anon_sym_STAR] = ACTIONS(3181), + [anon_sym_QMARK] = ACTIONS(3183), + [anon_sym_u8] = ACTIONS(3185), + [anon_sym_i8] = ACTIONS(3185), + [anon_sym_u16] = ACTIONS(3185), + [anon_sym_i16] = ACTIONS(3185), + [anon_sym_u32] = ACTIONS(3185), + [anon_sym_i32] = ACTIONS(3185), + [anon_sym_u64] = ACTIONS(3185), + [anon_sym_i64] = ACTIONS(3185), + [anon_sym_u128] = ACTIONS(3185), + [anon_sym_i128] = ACTIONS(3185), + [anon_sym_isize] = ACTIONS(3185), + [anon_sym_usize] = ACTIONS(3185), + [anon_sym_f32] = ACTIONS(3185), + [anon_sym_f64] = ACTIONS(3185), + [anon_sym_bool] = ACTIONS(3185), + [anon_sym_str] = ACTIONS(3185), + [anon_sym_char] = ACTIONS(3185), + [anon_sym_BANG] = ACTIONS(3187), + [anon_sym_AMP] = ACTIONS(3189), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3191), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3243), - [anon_sym_fn] = ACTIONS(3245), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3247), - [anon_sym_impl] = ACTIONS(3249), - [anon_sym_union] = ACTIONS(3247), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(3251), - [anon_sym_raw] = ACTIONS(3247), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3255), - [sym_super] = ACTIONS(3255), - [sym_crate] = ACTIONS(3255), - [sym_metavariable] = ACTIONS(3257), - }, - [STATE(896)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2667), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(3193), + [anon_sym_fn] = ACTIONS(3195), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(3197), + [anon_sym_impl] = ACTIONS(3199), + [anon_sym_union] = ACTIONS(3197), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(3201), + [anon_sym_raw] = ACTIONS(3197), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3205), + [sym_super] = ACTIONS(3205), + [sym_crate] = ACTIONS(3205), + [sym_metavariable] = ACTIONS(3207), + }, + [896] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2520), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(896), [sym_block_comment] = STATE(896), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(897)] = { - [sym_function_modifiers] = STATE(3775), - [sym_removed_trait_bound] = STATE(1530), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(1456), - [sym_bracketed_type] = STATE(3687), - [sym_lifetime] = STATE(3537), - [sym_array_type] = STATE(1530), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [897] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2719), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1530), - [sym_tuple_type] = STATE(1530), - [sym_unit_type] = STATE(1530), - [sym_generic_type] = STATE(1422), - [sym_generic_type_with_turbofish] = STATE(3817), - [sym_bounded_type] = STATE(1530), - [sym_use_bounds] = STATE(3537), - [sym_reference_type] = STATE(1530), - [sym_pointer_type] = STATE(1530), - [sym_never_type] = STATE(1530), - [sym_abstract_type] = STATE(1530), - [sym_dynamic_type] = STATE(1530), - [sym_macro_invocation] = STATE(1530), - [sym_scoped_identifier] = STATE(3346), - [sym_scoped_type_identifier] = STATE(1093), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(897), [sym_block_comment] = STATE(897), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3225), - [anon_sym_LBRACK] = ACTIONS(3227), - [anon_sym_STAR] = ACTIONS(3231), - [anon_sym_QMARK] = ACTIONS(3233), - [anon_sym_u8] = ACTIONS(3235), - [anon_sym_i8] = ACTIONS(3235), - [anon_sym_u16] = ACTIONS(3235), - [anon_sym_i16] = ACTIONS(3235), - [anon_sym_u32] = ACTIONS(3235), - [anon_sym_i32] = ACTIONS(3235), - [anon_sym_u64] = ACTIONS(3235), - [anon_sym_i64] = ACTIONS(3235), - [anon_sym_u128] = ACTIONS(3235), - [anon_sym_i128] = ACTIONS(3235), - [anon_sym_isize] = ACTIONS(3235), - [anon_sym_usize] = ACTIONS(3235), - [anon_sym_f32] = ACTIONS(3235), - [anon_sym_f64] = ACTIONS(3235), - [anon_sym_bool] = ACTIONS(3235), - [anon_sym_str] = ACTIONS(3235), - [anon_sym_char] = ACTIONS(3235), - [anon_sym_BANG] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3241), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3243), - [anon_sym_fn] = ACTIONS(3245), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3247), - [anon_sym_impl] = ACTIONS(3249), - [anon_sym_union] = ACTIONS(3247), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(3251), - [anon_sym_raw] = ACTIONS(3247), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3255), - [sym_super] = ACTIONS(3255), - [sym_crate] = ACTIONS(3255), - [sym_metavariable] = ACTIONS(3257), - }, - [STATE(898)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2475), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2425), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2242), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [898] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2720), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(898), [sym_block_comment] = STATE(898), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3311), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(3313), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(899)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2599), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [899] = { + [sym_function_modifiers] = STATE(3753), + [sym_removed_trait_bound] = STATE(1529), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(1429), + [sym_bracketed_type] = STATE(3677), + [sym_lifetime] = STATE(3495), + [sym_array_type] = STATE(1529), + [sym_for_lifetimes] = STATE(1604), + [sym_function_type] = STATE(1529), + [sym_tuple_type] = STATE(1529), + [sym_unit_type] = STATE(1529), + [sym_generic_type] = STATE(1416), + [sym_generic_type_with_turbofish] = STATE(3809), + [sym_bounded_type] = STATE(1529), + [sym_use_bounds] = STATE(3495), + [sym_reference_type] = STATE(1529), + [sym_pointer_type] = STATE(1529), + [sym_never_type] = STATE(1529), + [sym_abstract_type] = STATE(1529), + [sym_dynamic_type] = STATE(1529), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(3347), + [sym_scoped_type_identifier] = STATE(1097), [sym_line_comment] = STATE(899), [sym_block_comment] = STATE(899), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3175), + [anon_sym_LBRACK] = ACTIONS(3177), + [anon_sym_STAR] = ACTIONS(3181), + [anon_sym_QMARK] = ACTIONS(3183), + [anon_sym_u8] = ACTIONS(3185), + [anon_sym_i8] = ACTIONS(3185), + [anon_sym_u16] = ACTIONS(3185), + [anon_sym_i16] = ACTIONS(3185), + [anon_sym_u32] = ACTIONS(3185), + [anon_sym_i32] = ACTIONS(3185), + [anon_sym_u64] = ACTIONS(3185), + [anon_sym_i64] = ACTIONS(3185), + [anon_sym_u128] = ACTIONS(3185), + [anon_sym_i128] = ACTIONS(3185), + [anon_sym_isize] = ACTIONS(3185), + [anon_sym_usize] = ACTIONS(3185), + [anon_sym_f32] = ACTIONS(3185), + [anon_sym_f64] = ACTIONS(3185), + [anon_sym_bool] = ACTIONS(3185), + [anon_sym_str] = ACTIONS(3185), + [anon_sym_char] = ACTIONS(3185), + [anon_sym_BANG] = ACTIONS(3187), + [anon_sym_AMP] = ACTIONS(3189), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3191), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(900)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3127), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(3193), + [anon_sym_fn] = ACTIONS(3195), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(3197), + [anon_sym_impl] = ACTIONS(3199), + [anon_sym_union] = ACTIONS(3197), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(3201), + [anon_sym_raw] = ACTIONS(3197), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3205), + [sym_super] = ACTIONS(3205), + [sym_crate] = ACTIONS(3205), + [sym_metavariable] = ACTIONS(3207), + }, + [900] = { + [sym_function_modifiers] = STATE(3753), + [sym_removed_trait_bound] = STATE(1529), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(1501), + [sym_bracketed_type] = STATE(3677), + [sym_lifetime] = STATE(3495), + [sym_array_type] = STATE(1529), + [sym_for_lifetimes] = STATE(1604), + [sym_function_type] = STATE(1529), + [sym_tuple_type] = STATE(1529), + [sym_unit_type] = STATE(1529), + [sym_generic_type] = STATE(1416), + [sym_generic_type_with_turbofish] = STATE(3809), + [sym_bounded_type] = STATE(1529), + [sym_use_bounds] = STATE(3495), + [sym_reference_type] = STATE(1529), + [sym_pointer_type] = STATE(1529), + [sym_never_type] = STATE(1529), + [sym_abstract_type] = STATE(1529), + [sym_dynamic_type] = STATE(1529), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(3347), + [sym_scoped_type_identifier] = STATE(1097), [sym_line_comment] = STATE(900), [sym_block_comment] = STATE(900), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3175), + [anon_sym_LBRACK] = ACTIONS(3177), + [anon_sym_STAR] = ACTIONS(3181), + [anon_sym_QMARK] = ACTIONS(3183), + [anon_sym_u8] = ACTIONS(3185), + [anon_sym_i8] = ACTIONS(3185), + [anon_sym_u16] = ACTIONS(3185), + [anon_sym_i16] = ACTIONS(3185), + [anon_sym_u32] = ACTIONS(3185), + [anon_sym_i32] = ACTIONS(3185), + [anon_sym_u64] = ACTIONS(3185), + [anon_sym_i64] = ACTIONS(3185), + [anon_sym_u128] = ACTIONS(3185), + [anon_sym_i128] = ACTIONS(3185), + [anon_sym_isize] = ACTIONS(3185), + [anon_sym_usize] = ACTIONS(3185), + [anon_sym_f32] = ACTIONS(3185), + [anon_sym_f64] = ACTIONS(3185), + [anon_sym_bool] = ACTIONS(3185), + [anon_sym_str] = ACTIONS(3185), + [anon_sym_char] = ACTIONS(3185), + [anon_sym_BANG] = ACTIONS(3187), + [anon_sym_AMP] = ACTIONS(3189), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3191), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(901)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2800), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(3193), + [anon_sym_fn] = ACTIONS(3195), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(3197), + [anon_sym_impl] = ACTIONS(3199), + [anon_sym_union] = ACTIONS(3197), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(3201), + [anon_sym_raw] = ACTIONS(3197), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3205), + [sym_super] = ACTIONS(3205), + [sym_crate] = ACTIONS(3205), + [sym_metavariable] = ACTIONS(3207), + }, + [901] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2543), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(901), [sym_block_comment] = STATE(901), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(902)] = { - [sym_function_modifiers] = STATE(3775), - [sym_removed_trait_bound] = STATE(1530), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(1552), - [sym_bracketed_type] = STATE(3687), - [sym_lifetime] = STATE(3537), - [sym_array_type] = STATE(1530), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [902] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2398), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1530), - [sym_tuple_type] = STATE(1530), - [sym_unit_type] = STATE(1530), - [sym_generic_type] = STATE(1422), - [sym_generic_type_with_turbofish] = STATE(3817), - [sym_bounded_type] = STATE(1530), - [sym_use_bounds] = STATE(3537), - [sym_reference_type] = STATE(1530), - [sym_pointer_type] = STATE(1530), - [sym_never_type] = STATE(1530), - [sym_abstract_type] = STATE(1530), - [sym_dynamic_type] = STATE(1530), - [sym_macro_invocation] = STATE(1530), - [sym_scoped_identifier] = STATE(3346), - [sym_scoped_type_identifier] = STATE(1093), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2399), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2237), [sym_line_comment] = STATE(902), [sym_block_comment] = STATE(902), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3225), - [anon_sym_LBRACK] = ACTIONS(3227), - [anon_sym_STAR] = ACTIONS(3231), - [anon_sym_QMARK] = ACTIONS(3233), - [anon_sym_u8] = ACTIONS(3235), - [anon_sym_i8] = ACTIONS(3235), - [anon_sym_u16] = ACTIONS(3235), - [anon_sym_i16] = ACTIONS(3235), - [anon_sym_u32] = ACTIONS(3235), - [anon_sym_i32] = ACTIONS(3235), - [anon_sym_u64] = ACTIONS(3235), - [anon_sym_i64] = ACTIONS(3235), - [anon_sym_u128] = ACTIONS(3235), - [anon_sym_i128] = ACTIONS(3235), - [anon_sym_isize] = ACTIONS(3235), - [anon_sym_usize] = ACTIONS(3235), - [anon_sym_f32] = ACTIONS(3235), - [anon_sym_f64] = ACTIONS(3235), - [anon_sym_bool] = ACTIONS(3235), - [anon_sym_str] = ACTIONS(3235), - [anon_sym_char] = ACTIONS(3235), - [anon_sym_BANG] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3241), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3307), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(3309), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3243), - [anon_sym_fn] = ACTIONS(3245), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3247), - [anon_sym_impl] = ACTIONS(3249), - [anon_sym_union] = ACTIONS(3247), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(3251), - [anon_sym_raw] = ACTIONS(3247), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3255), - [sym_super] = ACTIONS(3255), - [sym_crate] = ACTIONS(3255), - [sym_metavariable] = ACTIONS(3257), - }, - [STATE(903)] = { - [sym_function_modifiers] = STATE(3775), - [sym_removed_trait_bound] = STATE(1530), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(1504), - [sym_bracketed_type] = STATE(3687), - [sym_lifetime] = STATE(3537), - [sym_array_type] = STATE(1530), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1530), - [sym_tuple_type] = STATE(1530), - [sym_unit_type] = STATE(1530), - [sym_generic_type] = STATE(1422), - [sym_generic_type_with_turbofish] = STATE(3817), - [sym_bounded_type] = STATE(1530), - [sym_use_bounds] = STATE(3537), - [sym_reference_type] = STATE(1530), - [sym_pointer_type] = STATE(1530), - [sym_never_type] = STATE(1530), - [sym_abstract_type] = STATE(1530), - [sym_dynamic_type] = STATE(1530), - [sym_macro_invocation] = STATE(1530), - [sym_scoped_identifier] = STATE(3346), - [sym_scoped_type_identifier] = STATE(1093), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [903] = { + [sym_function_modifiers] = STATE(3686), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2853), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3651), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3651), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2258), [sym_line_comment] = STATE(903), [sym_block_comment] = STATE(903), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3225), - [anon_sym_LBRACK] = ACTIONS(3227), - [anon_sym_STAR] = ACTIONS(3231), - [anon_sym_QMARK] = ACTIONS(3233), - [anon_sym_u8] = ACTIONS(3235), - [anon_sym_i8] = ACTIONS(3235), - [anon_sym_u16] = ACTIONS(3235), - [anon_sym_i16] = ACTIONS(3235), - [anon_sym_u32] = ACTIONS(3235), - [anon_sym_i32] = ACTIONS(3235), - [anon_sym_u64] = ACTIONS(3235), - [anon_sym_i64] = ACTIONS(3235), - [anon_sym_u128] = ACTIONS(3235), - [anon_sym_i128] = ACTIONS(3235), - [anon_sym_isize] = ACTIONS(3235), - [anon_sym_usize] = ACTIONS(3235), - [anon_sym_f32] = ACTIONS(3235), - [anon_sym_f64] = ACTIONS(3235), - [anon_sym_bool] = ACTIONS(3235), - [anon_sym_str] = ACTIONS(3235), - [anon_sym_char] = ACTIONS(3235), - [anon_sym_BANG] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3241), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1616), + [anon_sym_QMARK] = ACTIONS(1618), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1622), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3243), - [anon_sym_fn] = ACTIONS(3245), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3247), - [anon_sym_impl] = ACTIONS(3249), - [anon_sym_union] = ACTIONS(3247), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(3251), - [anon_sym_raw] = ACTIONS(3247), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3255), - [sym_super] = ACTIONS(3255), - [sym_crate] = ACTIONS(3255), - [sym_metavariable] = ACTIONS(3257), - }, - [STATE(904)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2413), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1632), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1636), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1638), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [904] = { + [sym_function_modifiers] = STATE(3634), + [sym_removed_trait_bound] = STATE(1782), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(1809), + [sym_bracketed_type] = STATE(3694), + [sym_lifetime] = STATE(3777), + [sym_array_type] = STATE(1782), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(1782), + [sym_tuple_type] = STATE(1782), + [sym_unit_type] = STATE(1782), + [sym_generic_type] = STATE(1688), + [sym_generic_type_with_turbofish] = STATE(3685), + [sym_bounded_type] = STATE(1782), + [sym_use_bounds] = STATE(3777), + [sym_reference_type] = STATE(1782), + [sym_pointer_type] = STATE(1782), + [sym_never_type] = STATE(1782), + [sym_abstract_type] = STATE(1782), + [sym_dynamic_type] = STATE(1782), + [sym_macro_invocation] = STATE(1782), + [sym_scoped_identifier] = STATE(3425), + [sym_scoped_type_identifier] = STATE(1603), [sym_line_comment] = STATE(904), [sym_block_comment] = STATE(904), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3215), + [anon_sym_LPAREN] = ACTIONS(3217), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_STAR] = ACTIONS(3223), + [anon_sym_QMARK] = ACTIONS(3225), + [anon_sym_u8] = ACTIONS(3227), + [anon_sym_i8] = ACTIONS(3227), + [anon_sym_u16] = ACTIONS(3227), + [anon_sym_i16] = ACTIONS(3227), + [anon_sym_u32] = ACTIONS(3227), + [anon_sym_i32] = ACTIONS(3227), + [anon_sym_u64] = ACTIONS(3227), + [anon_sym_i64] = ACTIONS(3227), + [anon_sym_u128] = ACTIONS(3227), + [anon_sym_i128] = ACTIONS(3227), + [anon_sym_isize] = ACTIONS(3227), + [anon_sym_usize] = ACTIONS(3227), + [anon_sym_f32] = ACTIONS(3227), + [anon_sym_f64] = ACTIONS(3227), + [anon_sym_bool] = ACTIONS(3227), + [anon_sym_str] = ACTIONS(3227), + [anon_sym_char] = ACTIONS(3227), + [anon_sym_BANG] = ACTIONS(3229), + [anon_sym_AMP] = ACTIONS(3231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3233), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(905)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2555), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(3235), + [anon_sym_fn] = ACTIONS(3237), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(3239), + [anon_sym_impl] = ACTIONS(3241), + [anon_sym_union] = ACTIONS(3239), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(3243), + [anon_sym_raw] = ACTIONS(3239), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3247), + [sym_super] = ACTIONS(3247), + [sym_crate] = ACTIONS(3247), + [sym_metavariable] = ACTIONS(3249), + }, + [905] = { + [sym_function_modifiers] = STATE(3634), + [sym_removed_trait_bound] = STATE(1813), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(3777), + [sym_bracketed_type] = STATE(3694), + [sym_lifetime] = STATE(3777), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(1813), + [sym_tuple_type] = STATE(1813), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(1693), + [sym_generic_type_with_turbofish] = STATE(3685), + [sym_bounded_type] = STATE(1813), + [sym_use_bounds] = STATE(3777), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3431), + [sym_scoped_type_identifier] = STATE(1598), [sym_line_comment] = STATE(905), [sym_block_comment] = STATE(905), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3311), + [anon_sym_LPAREN] = ACTIONS(3313), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(3225), + [anon_sym_u8] = ACTIONS(3315), + [anon_sym_i8] = ACTIONS(3315), + [anon_sym_u16] = ACTIONS(3315), + [anon_sym_i16] = ACTIONS(3315), + [anon_sym_u32] = ACTIONS(3315), + [anon_sym_i32] = ACTIONS(3315), + [anon_sym_u64] = ACTIONS(3315), + [anon_sym_i64] = ACTIONS(3315), + [anon_sym_u128] = ACTIONS(3315), + [anon_sym_i128] = ACTIONS(3315), + [anon_sym_isize] = ACTIONS(3315), + [anon_sym_usize] = ACTIONS(3315), + [anon_sym_f32] = ACTIONS(3315), + [anon_sym_f64] = ACTIONS(3315), + [anon_sym_bool] = ACTIONS(3315), + [anon_sym_str] = ACTIONS(3315), + [anon_sym_char] = ACTIONS(3315), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3233), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(906)] = { - [sym_function_modifiers] = STATE(3775), - [sym_removed_trait_bound] = STATE(1530), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(1441), - [sym_bracketed_type] = STATE(3687), - [sym_lifetime] = STATE(3537), - [sym_array_type] = STATE(1530), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(3317), + [anon_sym_fn] = ACTIONS(3237), + [anon_sym_for] = ACTIONS(3319), + [anon_sym_gen] = ACTIONS(3321), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(3321), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(3321), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3247), + [sym_super] = ACTIONS(3247), + [sym_crate] = ACTIONS(3247), + [sym_metavariable] = ACTIONS(3323), + }, + [906] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2745), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1530), - [sym_tuple_type] = STATE(1530), - [sym_unit_type] = STATE(1530), - [sym_generic_type] = STATE(1422), - [sym_generic_type_with_turbofish] = STATE(3817), - [sym_bounded_type] = STATE(1530), - [sym_use_bounds] = STATE(3537), - [sym_reference_type] = STATE(1530), - [sym_pointer_type] = STATE(1530), - [sym_never_type] = STATE(1530), - [sym_abstract_type] = STATE(1530), - [sym_dynamic_type] = STATE(1530), - [sym_macro_invocation] = STATE(1530), - [sym_scoped_identifier] = STATE(3346), - [sym_scoped_type_identifier] = STATE(1093), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(906), [sym_block_comment] = STATE(906), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3225), - [anon_sym_LBRACK] = ACTIONS(3227), - [anon_sym_STAR] = ACTIONS(3231), - [anon_sym_QMARK] = ACTIONS(3233), - [anon_sym_u8] = ACTIONS(3235), - [anon_sym_i8] = ACTIONS(3235), - [anon_sym_u16] = ACTIONS(3235), - [anon_sym_i16] = ACTIONS(3235), - [anon_sym_u32] = ACTIONS(3235), - [anon_sym_i32] = ACTIONS(3235), - [anon_sym_u64] = ACTIONS(3235), - [anon_sym_i64] = ACTIONS(3235), - [anon_sym_u128] = ACTIONS(3235), - [anon_sym_i128] = ACTIONS(3235), - [anon_sym_isize] = ACTIONS(3235), - [anon_sym_usize] = ACTIONS(3235), - [anon_sym_f32] = ACTIONS(3235), - [anon_sym_f64] = ACTIONS(3235), - [anon_sym_bool] = ACTIONS(3235), - [anon_sym_str] = ACTIONS(3235), - [anon_sym_char] = ACTIONS(3235), - [anon_sym_BANG] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3241), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3243), - [anon_sym_fn] = ACTIONS(3245), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3247), - [anon_sym_impl] = ACTIONS(3249), - [anon_sym_union] = ACTIONS(3247), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(3251), - [anon_sym_raw] = ACTIONS(3247), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3255), - [sym_super] = ACTIONS(3255), - [sym_crate] = ACTIONS(3255), - [sym_metavariable] = ACTIONS(3257), - }, - [STATE(907)] = { - [sym_function_modifiers] = STATE(3775), - [sym_removed_trait_bound] = STATE(1530), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(1496), - [sym_bracketed_type] = STATE(3687), - [sym_lifetime] = STATE(3537), - [sym_array_type] = STATE(1530), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [907] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(3103), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1530), - [sym_tuple_type] = STATE(1530), - [sym_unit_type] = STATE(1530), - [sym_generic_type] = STATE(1422), - [sym_generic_type_with_turbofish] = STATE(3817), - [sym_bounded_type] = STATE(1530), - [sym_use_bounds] = STATE(3537), - [sym_reference_type] = STATE(1530), - [sym_pointer_type] = STATE(1530), - [sym_never_type] = STATE(1530), - [sym_abstract_type] = STATE(1530), - [sym_dynamic_type] = STATE(1530), - [sym_macro_invocation] = STATE(1530), - [sym_scoped_identifier] = STATE(3346), - [sym_scoped_type_identifier] = STATE(1093), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(907), [sym_block_comment] = STATE(907), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3225), - [anon_sym_LBRACK] = ACTIONS(3227), - [anon_sym_STAR] = ACTIONS(3231), - [anon_sym_QMARK] = ACTIONS(3233), - [anon_sym_u8] = ACTIONS(3235), - [anon_sym_i8] = ACTIONS(3235), - [anon_sym_u16] = ACTIONS(3235), - [anon_sym_i16] = ACTIONS(3235), - [anon_sym_u32] = ACTIONS(3235), - [anon_sym_i32] = ACTIONS(3235), - [anon_sym_u64] = ACTIONS(3235), - [anon_sym_i64] = ACTIONS(3235), - [anon_sym_u128] = ACTIONS(3235), - [anon_sym_i128] = ACTIONS(3235), - [anon_sym_isize] = ACTIONS(3235), - [anon_sym_usize] = ACTIONS(3235), - [anon_sym_f32] = ACTIONS(3235), - [anon_sym_f64] = ACTIONS(3235), - [anon_sym_bool] = ACTIONS(3235), - [anon_sym_str] = ACTIONS(3235), - [anon_sym_char] = ACTIONS(3235), - [anon_sym_BANG] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3241), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3243), - [anon_sym_fn] = ACTIONS(3245), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3247), - [anon_sym_impl] = ACTIONS(3249), - [anon_sym_union] = ACTIONS(3247), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(3251), - [anon_sym_raw] = ACTIONS(3247), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3255), - [sym_super] = ACTIONS(3255), - [sym_crate] = ACTIONS(3255), - [sym_metavariable] = ACTIONS(3257), - }, - [STATE(908)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2878), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3584), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [908] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2065), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(908), [sym_block_comment] = STATE(908), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(909)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2807), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3325), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [909] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2570), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(909), [sym_block_comment] = STATE(909), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(910)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3136), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [910] = { + [sym_function_modifiers] = STATE(3634), + [sym_removed_trait_bound] = STATE(1887), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(3777), + [sym_bracketed_type] = STATE(3694), + [sym_lifetime] = STATE(3777), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(1887), + [sym_tuple_type] = STATE(1887), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(1711), + [sym_generic_type_with_turbofish] = STATE(3685), + [sym_bounded_type] = STATE(1887), + [sym_use_bounds] = STATE(3777), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3431), + [sym_scoped_type_identifier] = STATE(1600), [sym_line_comment] = STATE(910), [sym_block_comment] = STATE(910), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3327), + [anon_sym_LPAREN] = ACTIONS(3313), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(3225), + [anon_sym_u8] = ACTIONS(3315), + [anon_sym_i8] = ACTIONS(3315), + [anon_sym_u16] = ACTIONS(3315), + [anon_sym_i16] = ACTIONS(3315), + [anon_sym_u32] = ACTIONS(3315), + [anon_sym_i32] = ACTIONS(3315), + [anon_sym_u64] = ACTIONS(3315), + [anon_sym_i64] = ACTIONS(3315), + [anon_sym_u128] = ACTIONS(3315), + [anon_sym_i128] = ACTIONS(3315), + [anon_sym_isize] = ACTIONS(3315), + [anon_sym_usize] = ACTIONS(3315), + [anon_sym_f32] = ACTIONS(3315), + [anon_sym_f64] = ACTIONS(3315), + [anon_sym_bool] = ACTIONS(3315), + [anon_sym_str] = ACTIONS(3315), + [anon_sym_char] = ACTIONS(3315), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3233), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(911)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2463), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(3317), + [anon_sym_fn] = ACTIONS(3237), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(3321), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(3321), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(3321), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3247), + [sym_super] = ACTIONS(3247), + [sym_crate] = ACTIONS(3247), + [sym_metavariable] = ACTIONS(3323), + }, + [911] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2474), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(911), [sym_block_comment] = STATE(911), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(912)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2909), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [912] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(3127), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(912), [sym_block_comment] = STATE(912), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(913)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2464), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [913] = { + [sym_function_modifiers] = STATE(3686), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2057), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3651), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3651), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2258), [sym_line_comment] = STATE(913), [sym_block_comment] = STATE(913), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1616), + [anon_sym_QMARK] = ACTIONS(1618), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1622), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(914)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2077), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1632), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1636), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1638), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [914] = { + [sym_function_modifiers] = STATE(3753), + [sym_removed_trait_bound] = STATE(1529), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(1460), + [sym_bracketed_type] = STATE(3677), + [sym_lifetime] = STATE(3495), + [sym_array_type] = STATE(1529), + [sym_for_lifetimes] = STATE(1604), + [sym_function_type] = STATE(1529), + [sym_tuple_type] = STATE(1529), + [sym_unit_type] = STATE(1529), + [sym_generic_type] = STATE(1416), + [sym_generic_type_with_turbofish] = STATE(3809), + [sym_bounded_type] = STATE(1529), + [sym_use_bounds] = STATE(3495), + [sym_reference_type] = STATE(1529), + [sym_pointer_type] = STATE(1529), + [sym_never_type] = STATE(1529), + [sym_abstract_type] = STATE(1529), + [sym_dynamic_type] = STATE(1529), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(3347), + [sym_scoped_type_identifier] = STATE(1097), [sym_line_comment] = STATE(914), [sym_block_comment] = STATE(914), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3175), + [anon_sym_LBRACK] = ACTIONS(3177), + [anon_sym_STAR] = ACTIONS(3181), + [anon_sym_QMARK] = ACTIONS(3183), + [anon_sym_u8] = ACTIONS(3185), + [anon_sym_i8] = ACTIONS(3185), + [anon_sym_u16] = ACTIONS(3185), + [anon_sym_i16] = ACTIONS(3185), + [anon_sym_u32] = ACTIONS(3185), + [anon_sym_i32] = ACTIONS(3185), + [anon_sym_u64] = ACTIONS(3185), + [anon_sym_i64] = ACTIONS(3185), + [anon_sym_u128] = ACTIONS(3185), + [anon_sym_i128] = ACTIONS(3185), + [anon_sym_isize] = ACTIONS(3185), + [anon_sym_usize] = ACTIONS(3185), + [anon_sym_f32] = ACTIONS(3185), + [anon_sym_f64] = ACTIONS(3185), + [anon_sym_bool] = ACTIONS(3185), + [anon_sym_str] = ACTIONS(3185), + [anon_sym_char] = ACTIONS(3185), + [anon_sym_BANG] = ACTIONS(3187), + [anon_sym_AMP] = ACTIONS(3189), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3191), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3315), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(915)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2874), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(3193), + [anon_sym_fn] = ACTIONS(3195), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(3197), + [anon_sym_impl] = ACTIONS(3199), + [anon_sym_union] = ACTIONS(3197), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(3201), + [anon_sym_raw] = ACTIONS(3197), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3205), + [sym_super] = ACTIONS(3205), + [sym_crate] = ACTIONS(3205), + [sym_metavariable] = ACTIONS(3207), + }, + [915] = { + [sym_function_modifiers] = STATE(3753), + [sym_removed_trait_bound] = STATE(1529), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(1548), + [sym_bracketed_type] = STATE(3677), + [sym_lifetime] = STATE(3495), + [sym_array_type] = STATE(1529), + [sym_for_lifetimes] = STATE(1604), + [sym_function_type] = STATE(1529), + [sym_tuple_type] = STATE(1529), + [sym_unit_type] = STATE(1529), + [sym_generic_type] = STATE(1416), + [sym_generic_type_with_turbofish] = STATE(3809), + [sym_bounded_type] = STATE(1529), + [sym_use_bounds] = STATE(3495), + [sym_reference_type] = STATE(1529), + [sym_pointer_type] = STATE(1529), + [sym_never_type] = STATE(1529), + [sym_abstract_type] = STATE(1529), + [sym_dynamic_type] = STATE(1529), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(3347), + [sym_scoped_type_identifier] = STATE(1097), [sym_line_comment] = STATE(915), [sym_block_comment] = STATE(915), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3175), + [anon_sym_LBRACK] = ACTIONS(3177), + [anon_sym_STAR] = ACTIONS(3181), + [anon_sym_QMARK] = ACTIONS(3183), + [anon_sym_u8] = ACTIONS(3185), + [anon_sym_i8] = ACTIONS(3185), + [anon_sym_u16] = ACTIONS(3185), + [anon_sym_i16] = ACTIONS(3185), + [anon_sym_u32] = ACTIONS(3185), + [anon_sym_i32] = ACTIONS(3185), + [anon_sym_u64] = ACTIONS(3185), + [anon_sym_i64] = ACTIONS(3185), + [anon_sym_u128] = ACTIONS(3185), + [anon_sym_i128] = ACTIONS(3185), + [anon_sym_isize] = ACTIONS(3185), + [anon_sym_usize] = ACTIONS(3185), + [anon_sym_f32] = ACTIONS(3185), + [anon_sym_f64] = ACTIONS(3185), + [anon_sym_bool] = ACTIONS(3185), + [anon_sym_str] = ACTIONS(3185), + [anon_sym_char] = ACTIONS(3185), + [anon_sym_BANG] = ACTIONS(3187), + [anon_sym_AMP] = ACTIONS(3189), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3191), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(916)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2761), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(3193), + [anon_sym_fn] = ACTIONS(3195), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(3197), + [anon_sym_impl] = ACTIONS(3199), + [anon_sym_union] = ACTIONS(3197), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(3201), + [anon_sym_raw] = ACTIONS(3197), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3205), + [sym_super] = ACTIONS(3205), + [sym_crate] = ACTIONS(3205), + [sym_metavariable] = ACTIONS(3207), + }, + [916] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2481), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2402), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2254), [sym_line_comment] = STATE(916), [sym_block_comment] = STATE(916), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3329), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(3331), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(917)] = { - [sym_function_modifiers] = STATE(3644), - [sym_removed_trait_bound] = STATE(1782), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(1807), - [sym_bracketed_type] = STATE(3704), - [sym_lifetime] = STATE(3802), - [sym_array_type] = STATE(1782), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1782), - [sym_tuple_type] = STATE(1782), - [sym_unit_type] = STATE(1782), - [sym_generic_type] = STATE(1716), - [sym_generic_type_with_turbofish] = STATE(3695), - [sym_bounded_type] = STATE(1782), - [sym_use_bounds] = STATE(3802), - [sym_reference_type] = STATE(1782), - [sym_pointer_type] = STATE(1782), - [sym_never_type] = STATE(1782), - [sym_abstract_type] = STATE(1782), - [sym_dynamic_type] = STATE(1782), - [sym_macro_invocation] = STATE(1782), - [sym_scoped_identifier] = STATE(3436), - [sym_scoped_type_identifier] = STATE(1625), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [917] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2290), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(917), [sym_block_comment] = STATE(917), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_LBRACK] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3185), - [anon_sym_QMARK] = ACTIONS(3187), - [anon_sym_u8] = ACTIONS(3189), - [anon_sym_i8] = ACTIONS(3189), - [anon_sym_u16] = ACTIONS(3189), - [anon_sym_i16] = ACTIONS(3189), - [anon_sym_u32] = ACTIONS(3189), - [anon_sym_i32] = ACTIONS(3189), - [anon_sym_u64] = ACTIONS(3189), - [anon_sym_i64] = ACTIONS(3189), - [anon_sym_u128] = ACTIONS(3189), - [anon_sym_i128] = ACTIONS(3189), - [anon_sym_isize] = ACTIONS(3189), - [anon_sym_usize] = ACTIONS(3189), - [anon_sym_f32] = ACTIONS(3189), - [anon_sym_f64] = ACTIONS(3189), - [anon_sym_bool] = ACTIONS(3189), - [anon_sym_str] = ACTIONS(3189), - [anon_sym_char] = ACTIONS(3189), - [anon_sym_BANG] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3193), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3195), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3197), - [anon_sym_fn] = ACTIONS(3199), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3201), - [anon_sym_impl] = ACTIONS(3203), - [anon_sym_union] = ACTIONS(3201), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(3205), - [anon_sym_raw] = ACTIONS(3201), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3209), - [sym_super] = ACTIONS(3209), - [sym_crate] = ACTIONS(3209), - [sym_metavariable] = ACTIONS(3211), - }, - [STATE(918)] = { - [sym_function_modifiers] = STATE(3644), - [sym_removed_trait_bound] = STATE(1810), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3802), - [sym_bracketed_type] = STATE(3704), - [sym_lifetime] = STATE(3802), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1810), - [sym_tuple_type] = STATE(1810), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(1666), - [sym_generic_type_with_turbofish] = STATE(3695), - [sym_bounded_type] = STATE(1810), - [sym_use_bounds] = STATE(3802), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3443), - [sym_scoped_type_identifier] = STATE(1604), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [918] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2833), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(918), [sym_block_comment] = STATE(918), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3317), - [anon_sym_LPAREN] = ACTIONS(3319), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(3187), - [anon_sym_u8] = ACTIONS(3321), - [anon_sym_i8] = ACTIONS(3321), - [anon_sym_u16] = ACTIONS(3321), - [anon_sym_i16] = ACTIONS(3321), - [anon_sym_u32] = ACTIONS(3321), - [anon_sym_i32] = ACTIONS(3321), - [anon_sym_u64] = ACTIONS(3321), - [anon_sym_i64] = ACTIONS(3321), - [anon_sym_u128] = ACTIONS(3321), - [anon_sym_i128] = ACTIONS(3321), - [anon_sym_isize] = ACTIONS(3321), - [anon_sym_usize] = ACTIONS(3321), - [anon_sym_f32] = ACTIONS(3321), - [anon_sym_f64] = ACTIONS(3321), - [anon_sym_bool] = ACTIONS(3321), - [anon_sym_str] = ACTIONS(3321), - [anon_sym_char] = ACTIONS(3321), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3195), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3323), - [anon_sym_fn] = ACTIONS(3199), - [anon_sym_for] = ACTIONS(3325), - [anon_sym_gen] = ACTIONS(3327), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(3327), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(3327), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3209), - [sym_super] = ACTIONS(3209), - [sym_crate] = ACTIONS(3209), - [sym_metavariable] = ACTIONS(3329), - }, - [STATE(919)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2661), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [919] = { + [sym_function_modifiers] = STATE(3753), + [sym_removed_trait_bound] = STATE(1529), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(1444), + [sym_bracketed_type] = STATE(3677), + [sym_lifetime] = STATE(3495), + [sym_array_type] = STATE(1529), + [sym_for_lifetimes] = STATE(1604), + [sym_function_type] = STATE(1529), + [sym_tuple_type] = STATE(1529), + [sym_unit_type] = STATE(1529), + [sym_generic_type] = STATE(1416), + [sym_generic_type_with_turbofish] = STATE(3809), + [sym_bounded_type] = STATE(1529), + [sym_use_bounds] = STATE(3495), + [sym_reference_type] = STATE(1529), + [sym_pointer_type] = STATE(1529), + [sym_never_type] = STATE(1529), + [sym_abstract_type] = STATE(1529), + [sym_dynamic_type] = STATE(1529), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(3347), + [sym_scoped_type_identifier] = STATE(1097), [sym_line_comment] = STATE(919), [sym_block_comment] = STATE(919), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3175), + [anon_sym_LBRACK] = ACTIONS(3177), + [anon_sym_STAR] = ACTIONS(3181), + [anon_sym_QMARK] = ACTIONS(3183), + [anon_sym_u8] = ACTIONS(3185), + [anon_sym_i8] = ACTIONS(3185), + [anon_sym_u16] = ACTIONS(3185), + [anon_sym_i16] = ACTIONS(3185), + [anon_sym_u32] = ACTIONS(3185), + [anon_sym_i32] = ACTIONS(3185), + [anon_sym_u64] = ACTIONS(3185), + [anon_sym_i64] = ACTIONS(3185), + [anon_sym_u128] = ACTIONS(3185), + [anon_sym_i128] = ACTIONS(3185), + [anon_sym_isize] = ACTIONS(3185), + [anon_sym_usize] = ACTIONS(3185), + [anon_sym_f32] = ACTIONS(3185), + [anon_sym_f64] = ACTIONS(3185), + [anon_sym_bool] = ACTIONS(3185), + [anon_sym_str] = ACTIONS(3185), + [anon_sym_char] = ACTIONS(3185), + [anon_sym_BANG] = ACTIONS(3187), + [anon_sym_AMP] = ACTIONS(3189), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3191), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(920)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2085), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3584), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(3193), + [anon_sym_fn] = ACTIONS(3195), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(3197), + [anon_sym_impl] = ACTIONS(3199), + [anon_sym_union] = ACTIONS(3197), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(3201), + [anon_sym_raw] = ACTIONS(3197), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3205), + [sym_super] = ACTIONS(3205), + [sym_crate] = ACTIONS(3205), + [sym_metavariable] = ACTIONS(3207), + }, + [920] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(3000), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(920), [sym_block_comment] = STATE(920), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(921)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2428), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2472), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2281), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [921] = { + [sym_function_modifiers] = STATE(3686), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2054), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3651), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3651), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2258), [sym_line_comment] = STATE(921), [sym_block_comment] = STATE(921), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3331), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(3333), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1616), + [anon_sym_QMARK] = ACTIONS(1618), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1622), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(922)] = { - [sym_function_modifiers] = STATE(3644), - [sym_removed_trait_bound] = STATE(1893), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3802), - [sym_bracketed_type] = STATE(3704), - [sym_lifetime] = STATE(3802), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1893), - [sym_tuple_type] = STATE(1893), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(1702), - [sym_generic_type_with_turbofish] = STATE(3695), - [sym_bounded_type] = STATE(1893), - [sym_use_bounds] = STATE(3802), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3443), - [sym_scoped_type_identifier] = STATE(1610), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1632), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1636), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1638), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [922] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(3135), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(922), [sym_block_comment] = STATE(922), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3335), - [anon_sym_LPAREN] = ACTIONS(3319), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(3187), - [anon_sym_u8] = ACTIONS(3321), - [anon_sym_i8] = ACTIONS(3321), - [anon_sym_u16] = ACTIONS(3321), - [anon_sym_i16] = ACTIONS(3321), - [anon_sym_u32] = ACTIONS(3321), - [anon_sym_i32] = ACTIONS(3321), - [anon_sym_u64] = ACTIONS(3321), - [anon_sym_i64] = ACTIONS(3321), - [anon_sym_u128] = ACTIONS(3321), - [anon_sym_i128] = ACTIONS(3321), - [anon_sym_isize] = ACTIONS(3321), - [anon_sym_usize] = ACTIONS(3321), - [anon_sym_f32] = ACTIONS(3321), - [anon_sym_f64] = ACTIONS(3321), - [anon_sym_bool] = ACTIONS(3321), - [anon_sym_str] = ACTIONS(3321), - [anon_sym_char] = ACTIONS(3321), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3195), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3323), - [anon_sym_fn] = ACTIONS(3199), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3327), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(3327), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(3327), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3209), - [sym_super] = ACTIONS(3209), - [sym_crate] = ACTIONS(3209), - [sym_metavariable] = ACTIONS(3329), - }, - [STATE(923)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3013), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [923] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2494), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(923), [sym_block_comment] = STATE(923), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(924)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2298), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), - [sym_line_comment] = STATE(924), - [sym_block_comment] = STATE(924), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(925)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2073), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3584), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), - [sym_line_comment] = STATE(925), - [sym_block_comment] = STATE(925), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(926)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2819), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), - [sym_line_comment] = STATE(926), - [sym_block_comment] = STATE(926), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(927)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2405), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), - [sym_line_comment] = STATE(927), - [sym_block_comment] = STATE(927), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(928)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2420), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), - [sym_line_comment] = STATE(928), - [sym_block_comment] = STATE(928), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(929)] = { - [sym_function_modifiers] = STATE(3644), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [924] = { + [sym_function_modifiers] = STATE(3634), [sym_removed_trait_bound] = STATE(1782), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(1752), - [sym_bracketed_type] = STATE(3704), - [sym_lifetime] = STATE(3802), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(1749), + [sym_bracketed_type] = STATE(3694), + [sym_lifetime] = STATE(3777), [sym_array_type] = STATE(1782), - [sym_for_lifetimes] = STATE(1603), + [sym_for_lifetimes] = STATE(1607), [sym_function_type] = STATE(1782), [sym_tuple_type] = STATE(1782), [sym_unit_type] = STATE(1782), - [sym_generic_type] = STATE(1716), - [sym_generic_type_with_turbofish] = STATE(3695), + [sym_generic_type] = STATE(1688), + [sym_generic_type_with_turbofish] = STATE(3685), [sym_bounded_type] = STATE(1782), - [sym_use_bounds] = STATE(3802), + [sym_use_bounds] = STATE(3777), [sym_reference_type] = STATE(1782), [sym_pointer_type] = STATE(1782), [sym_never_type] = STATE(1782), [sym_abstract_type] = STATE(1782), [sym_dynamic_type] = STATE(1782), [sym_macro_invocation] = STATE(1782), - [sym_scoped_identifier] = STATE(3436), - [sym_scoped_type_identifier] = STATE(1625), - [sym_line_comment] = STATE(929), - [sym_block_comment] = STATE(929), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_LBRACK] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3185), - [anon_sym_QMARK] = ACTIONS(3187), - [anon_sym_u8] = ACTIONS(3189), - [anon_sym_i8] = ACTIONS(3189), - [anon_sym_u16] = ACTIONS(3189), - [anon_sym_i16] = ACTIONS(3189), - [anon_sym_u32] = ACTIONS(3189), - [anon_sym_i32] = ACTIONS(3189), - [anon_sym_u64] = ACTIONS(3189), - [anon_sym_i64] = ACTIONS(3189), - [anon_sym_u128] = ACTIONS(3189), - [anon_sym_i128] = ACTIONS(3189), - [anon_sym_isize] = ACTIONS(3189), - [anon_sym_usize] = ACTIONS(3189), - [anon_sym_f32] = ACTIONS(3189), - [anon_sym_f64] = ACTIONS(3189), - [anon_sym_bool] = ACTIONS(3189), - [anon_sym_str] = ACTIONS(3189), - [anon_sym_char] = ACTIONS(3189), - [anon_sym_BANG] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3193), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3195), + [sym_scoped_identifier] = STATE(3425), + [sym_scoped_type_identifier] = STATE(1603), + [sym_line_comment] = STATE(924), + [sym_block_comment] = STATE(924), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3215), + [anon_sym_LPAREN] = ACTIONS(3217), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_STAR] = ACTIONS(3223), + [anon_sym_QMARK] = ACTIONS(3225), + [anon_sym_u8] = ACTIONS(3227), + [anon_sym_i8] = ACTIONS(3227), + [anon_sym_u16] = ACTIONS(3227), + [anon_sym_i16] = ACTIONS(3227), + [anon_sym_u32] = ACTIONS(3227), + [anon_sym_i32] = ACTIONS(3227), + [anon_sym_u64] = ACTIONS(3227), + [anon_sym_i64] = ACTIONS(3227), + [anon_sym_u128] = ACTIONS(3227), + [anon_sym_i128] = ACTIONS(3227), + [anon_sym_isize] = ACTIONS(3227), + [anon_sym_usize] = ACTIONS(3227), + [anon_sym_f32] = ACTIONS(3227), + [anon_sym_f64] = ACTIONS(3227), + [anon_sym_bool] = ACTIONS(3227), + [anon_sym_str] = ACTIONS(3227), + [anon_sym_char] = ACTIONS(3227), + [anon_sym_BANG] = ACTIONS(3229), + [anon_sym_AMP] = ACTIONS(3231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3233), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3197), - [anon_sym_fn] = ACTIONS(3199), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3201), - [anon_sym_impl] = ACTIONS(3203), - [anon_sym_union] = ACTIONS(3201), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(3205), - [anon_sym_raw] = ACTIONS(3201), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3209), - [sym_super] = ACTIONS(3209), - [sym_crate] = ACTIONS(3209), - [sym_metavariable] = ACTIONS(3211), - }, - [STATE(930)] = { - [sym_function_modifiers] = STATE(3644), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(3235), + [anon_sym_fn] = ACTIONS(3237), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(3239), + [anon_sym_impl] = ACTIONS(3241), + [anon_sym_union] = ACTIONS(3239), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(3243), + [anon_sym_raw] = ACTIONS(3239), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3247), + [sym_super] = ACTIONS(3247), + [sym_crate] = ACTIONS(3247), + [sym_metavariable] = ACTIONS(3249), + }, + [925] = { + [sym_function_modifiers] = STATE(3634), [sym_removed_trait_bound] = STATE(1782), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(1753), - [sym_bracketed_type] = STATE(3704), - [sym_lifetime] = STATE(3802), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(1750), + [sym_bracketed_type] = STATE(3694), + [sym_lifetime] = STATE(3777), [sym_array_type] = STATE(1782), - [sym_for_lifetimes] = STATE(1603), + [sym_for_lifetimes] = STATE(1607), [sym_function_type] = STATE(1782), [sym_tuple_type] = STATE(1782), [sym_unit_type] = STATE(1782), - [sym_generic_type] = STATE(1716), - [sym_generic_type_with_turbofish] = STATE(3695), + [sym_generic_type] = STATE(1688), + [sym_generic_type_with_turbofish] = STATE(3685), [sym_bounded_type] = STATE(1782), - [sym_use_bounds] = STATE(3802), + [sym_use_bounds] = STATE(3777), [sym_reference_type] = STATE(1782), [sym_pointer_type] = STATE(1782), [sym_never_type] = STATE(1782), [sym_abstract_type] = STATE(1782), [sym_dynamic_type] = STATE(1782), [sym_macro_invocation] = STATE(1782), - [sym_scoped_identifier] = STATE(3436), - [sym_scoped_type_identifier] = STATE(1625), - [sym_line_comment] = STATE(930), - [sym_block_comment] = STATE(930), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_LBRACK] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3185), - [anon_sym_QMARK] = ACTIONS(3187), - [anon_sym_u8] = ACTIONS(3189), - [anon_sym_i8] = ACTIONS(3189), - [anon_sym_u16] = ACTIONS(3189), - [anon_sym_i16] = ACTIONS(3189), - [anon_sym_u32] = ACTIONS(3189), - [anon_sym_i32] = ACTIONS(3189), - [anon_sym_u64] = ACTIONS(3189), - [anon_sym_i64] = ACTIONS(3189), - [anon_sym_u128] = ACTIONS(3189), - [anon_sym_i128] = ACTIONS(3189), - [anon_sym_isize] = ACTIONS(3189), - [anon_sym_usize] = ACTIONS(3189), - [anon_sym_f32] = ACTIONS(3189), - [anon_sym_f64] = ACTIONS(3189), - [anon_sym_bool] = ACTIONS(3189), - [anon_sym_str] = ACTIONS(3189), - [anon_sym_char] = ACTIONS(3189), - [anon_sym_BANG] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3193), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3195), + [sym_scoped_identifier] = STATE(3425), + [sym_scoped_type_identifier] = STATE(1603), + [sym_line_comment] = STATE(925), + [sym_block_comment] = STATE(925), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3215), + [anon_sym_LPAREN] = ACTIONS(3217), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_STAR] = ACTIONS(3223), + [anon_sym_QMARK] = ACTIONS(3225), + [anon_sym_u8] = ACTIONS(3227), + [anon_sym_i8] = ACTIONS(3227), + [anon_sym_u16] = ACTIONS(3227), + [anon_sym_i16] = ACTIONS(3227), + [anon_sym_u32] = ACTIONS(3227), + [anon_sym_i32] = ACTIONS(3227), + [anon_sym_u64] = ACTIONS(3227), + [anon_sym_i64] = ACTIONS(3227), + [anon_sym_u128] = ACTIONS(3227), + [anon_sym_i128] = ACTIONS(3227), + [anon_sym_isize] = ACTIONS(3227), + [anon_sym_usize] = ACTIONS(3227), + [anon_sym_f32] = ACTIONS(3227), + [anon_sym_f64] = ACTIONS(3227), + [anon_sym_bool] = ACTIONS(3227), + [anon_sym_str] = ACTIONS(3227), + [anon_sym_char] = ACTIONS(3227), + [anon_sym_BANG] = ACTIONS(3229), + [anon_sym_AMP] = ACTIONS(3231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3233), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3197), - [anon_sym_fn] = ACTIONS(3199), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3201), - [anon_sym_impl] = ACTIONS(3203), - [anon_sym_union] = ACTIONS(3201), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(3205), - [anon_sym_raw] = ACTIONS(3201), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3209), - [sym_super] = ACTIONS(3209), - [sym_crate] = ACTIONS(3209), - [sym_metavariable] = ACTIONS(3211), - }, - [STATE(931)] = { - [sym_function_modifiers] = STATE(3644), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(3235), + [anon_sym_fn] = ACTIONS(3237), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(3239), + [anon_sym_impl] = ACTIONS(3241), + [anon_sym_union] = ACTIONS(3239), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(3243), + [anon_sym_raw] = ACTIONS(3239), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3247), + [sym_super] = ACTIONS(3247), + [sym_crate] = ACTIONS(3247), + [sym_metavariable] = ACTIONS(3249), + }, + [926] = { + [sym_function_modifiers] = STATE(3634), [sym_removed_trait_bound] = STATE(1782), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(1874), - [sym_bracketed_type] = STATE(3704), - [sym_lifetime] = STATE(1874), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(1878), + [sym_bracketed_type] = STATE(3694), + [sym_lifetime] = STATE(1878), [sym_array_type] = STATE(1782), - [sym_for_lifetimes] = STATE(1603), + [sym_for_lifetimes] = STATE(1607), [sym_function_type] = STATE(1782), [sym_tuple_type] = STATE(1782), [sym_unit_type] = STATE(1782), - [sym_generic_type] = STATE(1716), - [sym_generic_type_with_turbofish] = STATE(3695), + [sym_generic_type] = STATE(1688), + [sym_generic_type_with_turbofish] = STATE(3685), [sym_bounded_type] = STATE(1782), - [sym_use_bounds] = STATE(1874), + [sym_use_bounds] = STATE(1878), [sym_reference_type] = STATE(1782), [sym_pointer_type] = STATE(1782), [sym_never_type] = STATE(1782), [sym_abstract_type] = STATE(1782), [sym_dynamic_type] = STATE(1782), [sym_macro_invocation] = STATE(1782), - [sym_scoped_identifier] = STATE(3436), - [sym_scoped_type_identifier] = STATE(1625), + [sym_scoped_identifier] = STATE(3425), + [sym_scoped_type_identifier] = STATE(1603), + [sym_line_comment] = STATE(926), + [sym_block_comment] = STATE(926), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3215), + [anon_sym_LPAREN] = ACTIONS(3217), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_STAR] = ACTIONS(3223), + [anon_sym_QMARK] = ACTIONS(3225), + [anon_sym_u8] = ACTIONS(3227), + [anon_sym_i8] = ACTIONS(3227), + [anon_sym_u16] = ACTIONS(3227), + [anon_sym_i16] = ACTIONS(3227), + [anon_sym_u32] = ACTIONS(3227), + [anon_sym_i32] = ACTIONS(3227), + [anon_sym_u64] = ACTIONS(3227), + [anon_sym_i64] = ACTIONS(3227), + [anon_sym_u128] = ACTIONS(3227), + [anon_sym_i128] = ACTIONS(3227), + [anon_sym_isize] = ACTIONS(3227), + [anon_sym_usize] = ACTIONS(3227), + [anon_sym_f32] = ACTIONS(3227), + [anon_sym_f64] = ACTIONS(3227), + [anon_sym_bool] = ACTIONS(3227), + [anon_sym_str] = ACTIONS(3227), + [anon_sym_char] = ACTIONS(3227), + [anon_sym_BANG] = ACTIONS(3229), + [anon_sym_AMP] = ACTIONS(3231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3233), + [anon_sym_SQUOTE] = ACTIONS(3333), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(3235), + [anon_sym_fn] = ACTIONS(3237), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(3239), + [anon_sym_impl] = ACTIONS(3241), + [anon_sym_union] = ACTIONS(3239), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(3335), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(3243), + [anon_sym_raw] = ACTIONS(3239), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3247), + [sym_super] = ACTIONS(3247), + [sym_crate] = ACTIONS(3247), + [sym_metavariable] = ACTIONS(3249), + }, + [927] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2549), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), + [sym_line_comment] = STATE(927), + [sym_block_comment] = STATE(927), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(3081), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [928] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2815), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), + [sym_line_comment] = STATE(928), + [sym_block_comment] = STATE(928), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(3081), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [929] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2475), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), + [sym_line_comment] = STATE(929), + [sym_block_comment] = STATE(929), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(3081), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [930] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(3107), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), + [sym_line_comment] = STATE(930), + [sym_block_comment] = STATE(930), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(3081), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [931] = { + [sym_function_modifiers] = STATE(3753), + [sym_removed_trait_bound] = STATE(1529), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(1500), + [sym_bracketed_type] = STATE(3677), + [sym_lifetime] = STATE(3495), + [sym_array_type] = STATE(1529), + [sym_for_lifetimes] = STATE(1604), + [sym_function_type] = STATE(1529), + [sym_tuple_type] = STATE(1529), + [sym_unit_type] = STATE(1529), + [sym_generic_type] = STATE(1416), + [sym_generic_type_with_turbofish] = STATE(3809), + [sym_bounded_type] = STATE(1529), + [sym_use_bounds] = STATE(3495), + [sym_reference_type] = STATE(1529), + [sym_pointer_type] = STATE(1529), + [sym_never_type] = STATE(1529), + [sym_abstract_type] = STATE(1529), + [sym_dynamic_type] = STATE(1529), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(3347), + [sym_scoped_type_identifier] = STATE(1097), [sym_line_comment] = STATE(931), [sym_block_comment] = STATE(931), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_LBRACK] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3185), - [anon_sym_QMARK] = ACTIONS(3187), - [anon_sym_u8] = ACTIONS(3189), - [anon_sym_i8] = ACTIONS(3189), - [anon_sym_u16] = ACTIONS(3189), - [anon_sym_i16] = ACTIONS(3189), - [anon_sym_u32] = ACTIONS(3189), - [anon_sym_i32] = ACTIONS(3189), - [anon_sym_u64] = ACTIONS(3189), - [anon_sym_i64] = ACTIONS(3189), - [anon_sym_u128] = ACTIONS(3189), - [anon_sym_i128] = ACTIONS(3189), - [anon_sym_isize] = ACTIONS(3189), - [anon_sym_usize] = ACTIONS(3189), - [anon_sym_f32] = ACTIONS(3189), - [anon_sym_f64] = ACTIONS(3189), - [anon_sym_bool] = ACTIONS(3189), - [anon_sym_str] = ACTIONS(3189), - [anon_sym_char] = ACTIONS(3189), - [anon_sym_BANG] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3193), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3195), - [anon_sym_SQUOTE] = ACTIONS(3337), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3197), - [anon_sym_fn] = ACTIONS(3199), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3201), - [anon_sym_impl] = ACTIONS(3203), - [anon_sym_union] = ACTIONS(3201), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(3339), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(3205), - [anon_sym_raw] = ACTIONS(3201), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3209), - [sym_super] = ACTIONS(3209), - [sym_crate] = ACTIONS(3209), - [sym_metavariable] = ACTIONS(3211), - }, - [STATE(932)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2528), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3175), + [anon_sym_LBRACK] = ACTIONS(3177), + [anon_sym_STAR] = ACTIONS(3181), + [anon_sym_QMARK] = ACTIONS(3183), + [anon_sym_u8] = ACTIONS(3185), + [anon_sym_i8] = ACTIONS(3185), + [anon_sym_u16] = ACTIONS(3185), + [anon_sym_i16] = ACTIONS(3185), + [anon_sym_u32] = ACTIONS(3185), + [anon_sym_i32] = ACTIONS(3185), + [anon_sym_u64] = ACTIONS(3185), + [anon_sym_i64] = ACTIONS(3185), + [anon_sym_u128] = ACTIONS(3185), + [anon_sym_i128] = ACTIONS(3185), + [anon_sym_isize] = ACTIONS(3185), + [anon_sym_usize] = ACTIONS(3185), + [anon_sym_f32] = ACTIONS(3185), + [anon_sym_f64] = ACTIONS(3185), + [anon_sym_bool] = ACTIONS(3185), + [anon_sym_str] = ACTIONS(3185), + [anon_sym_char] = ACTIONS(3185), + [anon_sym_BANG] = ACTIONS(3187), + [anon_sym_AMP] = ACTIONS(3189), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3191), + [anon_sym_SQUOTE] = ACTIONS(3081), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(3193), + [anon_sym_fn] = ACTIONS(3195), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(3197), + [anon_sym_impl] = ACTIONS(3199), + [anon_sym_union] = ACTIONS(3197), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(3201), + [anon_sym_raw] = ACTIONS(3197), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3205), + [sym_super] = ACTIONS(3205), + [sym_crate] = ACTIONS(3205), + [sym_metavariable] = ACTIONS(3207), + }, + [932] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(3182), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(932), [sym_block_comment] = STATE(932), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(933)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2501), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [933] = { + [sym_function_modifiers] = STATE(3753), + [sym_removed_trait_bound] = STATE(1494), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(3495), + [sym_bracketed_type] = STATE(3677), + [sym_lifetime] = STATE(3495), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1604), + [sym_function_type] = STATE(1494), + [sym_tuple_type] = STATE(1494), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(1388), + [sym_generic_type_with_turbofish] = STATE(3809), + [sym_bounded_type] = STATE(1494), + [sym_use_bounds] = STATE(3495), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3411), + [sym_scoped_type_identifier] = STATE(1089), [sym_line_comment] = STATE(933), [sym_block_comment] = STATE(933), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3337), + [anon_sym_LPAREN] = ACTIONS(3339), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(3183), + [anon_sym_u8] = ACTIONS(3341), + [anon_sym_i8] = ACTIONS(3341), + [anon_sym_u16] = ACTIONS(3341), + [anon_sym_i16] = ACTIONS(3341), + [anon_sym_u32] = ACTIONS(3341), + [anon_sym_i32] = ACTIONS(3341), + [anon_sym_u64] = ACTIONS(3341), + [anon_sym_i64] = ACTIONS(3341), + [anon_sym_u128] = ACTIONS(3341), + [anon_sym_i128] = ACTIONS(3341), + [anon_sym_isize] = ACTIONS(3341), + [anon_sym_usize] = ACTIONS(3341), + [anon_sym_f32] = ACTIONS(3341), + [anon_sym_f64] = ACTIONS(3341), + [anon_sym_bool] = ACTIONS(3341), + [anon_sym_str] = ACTIONS(3341), + [anon_sym_char] = ACTIONS(3341), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3191), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(934)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2821), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(3343), + [anon_sym_fn] = ACTIONS(3195), + [anon_sym_for] = ACTIONS(3345), + [anon_sym_gen] = ACTIONS(3347), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(3347), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(3347), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3205), + [sym_super] = ACTIONS(3205), + [sym_crate] = ACTIONS(3205), + [sym_metavariable] = ACTIONS(3349), + }, + [934] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2975), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(934), [sym_block_comment] = STATE(934), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(935)] = { - [sym_function_modifiers] = STATE(3775), - [sym_removed_trait_bound] = STATE(1530), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(1438), - [sym_bracketed_type] = STATE(3687), - [sym_lifetime] = STATE(3537), - [sym_array_type] = STATE(1530), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [935] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2723), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1530), - [sym_tuple_type] = STATE(1530), - [sym_unit_type] = STATE(1530), - [sym_generic_type] = STATE(1422), - [sym_generic_type_with_turbofish] = STATE(3817), - [sym_bounded_type] = STATE(1530), - [sym_use_bounds] = STATE(3537), - [sym_reference_type] = STATE(1530), - [sym_pointer_type] = STATE(1530), - [sym_never_type] = STATE(1530), - [sym_abstract_type] = STATE(1530), - [sym_dynamic_type] = STATE(1530), - [sym_macro_invocation] = STATE(1530), - [sym_scoped_identifier] = STATE(3346), - [sym_scoped_type_identifier] = STATE(1093), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(935), [sym_block_comment] = STATE(935), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3225), - [anon_sym_LBRACK] = ACTIONS(3227), - [anon_sym_STAR] = ACTIONS(3231), - [anon_sym_QMARK] = ACTIONS(3233), - [anon_sym_u8] = ACTIONS(3235), - [anon_sym_i8] = ACTIONS(3235), - [anon_sym_u16] = ACTIONS(3235), - [anon_sym_i16] = ACTIONS(3235), - [anon_sym_u32] = ACTIONS(3235), - [anon_sym_i32] = ACTIONS(3235), - [anon_sym_u64] = ACTIONS(3235), - [anon_sym_i64] = ACTIONS(3235), - [anon_sym_u128] = ACTIONS(3235), - [anon_sym_i128] = ACTIONS(3235), - [anon_sym_isize] = ACTIONS(3235), - [anon_sym_usize] = ACTIONS(3235), - [anon_sym_f32] = ACTIONS(3235), - [anon_sym_f64] = ACTIONS(3235), - [anon_sym_bool] = ACTIONS(3235), - [anon_sym_str] = ACTIONS(3235), - [anon_sym_char] = ACTIONS(3235), - [anon_sym_BANG] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3241), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3243), - [anon_sym_fn] = ACTIONS(3245), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3247), - [anon_sym_impl] = ACTIONS(3249), - [anon_sym_union] = ACTIONS(3247), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(3251), - [anon_sym_raw] = ACTIONS(3247), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3255), - [sym_super] = ACTIONS(3255), - [sym_crate] = ACTIONS(3255), - [sym_metavariable] = ACTIONS(3257), - }, - [STATE(936)] = { - [sym_function_modifiers] = STATE(3775), - [sym_removed_trait_bound] = STATE(1530), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(1439), - [sym_bracketed_type] = STATE(3687), - [sym_lifetime] = STATE(3537), - [sym_array_type] = STATE(1530), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [936] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(3164), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1530), - [sym_tuple_type] = STATE(1530), - [sym_unit_type] = STATE(1530), - [sym_generic_type] = STATE(1422), - [sym_generic_type_with_turbofish] = STATE(3817), - [sym_bounded_type] = STATE(1530), - [sym_use_bounds] = STATE(3537), - [sym_reference_type] = STATE(1530), - [sym_pointer_type] = STATE(1530), - [sym_never_type] = STATE(1530), - [sym_abstract_type] = STATE(1530), - [sym_dynamic_type] = STATE(1530), - [sym_macro_invocation] = STATE(1530), - [sym_scoped_identifier] = STATE(3346), - [sym_scoped_type_identifier] = STATE(1093), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(936), [sym_block_comment] = STATE(936), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3225), - [anon_sym_LBRACK] = ACTIONS(3227), - [anon_sym_STAR] = ACTIONS(3231), - [anon_sym_QMARK] = ACTIONS(3233), - [anon_sym_u8] = ACTIONS(3235), - [anon_sym_i8] = ACTIONS(3235), - [anon_sym_u16] = ACTIONS(3235), - [anon_sym_i16] = ACTIONS(3235), - [anon_sym_u32] = ACTIONS(3235), - [anon_sym_i32] = ACTIONS(3235), - [anon_sym_u64] = ACTIONS(3235), - [anon_sym_i64] = ACTIONS(3235), - [anon_sym_u128] = ACTIONS(3235), - [anon_sym_i128] = ACTIONS(3235), - [anon_sym_isize] = ACTIONS(3235), - [anon_sym_usize] = ACTIONS(3235), - [anon_sym_f32] = ACTIONS(3235), - [anon_sym_f64] = ACTIONS(3235), - [anon_sym_bool] = ACTIONS(3235), - [anon_sym_str] = ACTIONS(3235), - [anon_sym_char] = ACTIONS(3235), - [anon_sym_BANG] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3241), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3243), - [anon_sym_fn] = ACTIONS(3245), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3247), - [anon_sym_impl] = ACTIONS(3249), - [anon_sym_union] = ACTIONS(3247), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(3251), - [anon_sym_raw] = ACTIONS(3247), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3255), - [sym_super] = ACTIONS(3255), - [sym_crate] = ACTIONS(3255), - [sym_metavariable] = ACTIONS(3257), - }, - [STATE(937)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2675), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3584), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [937] = { + [sym_function_modifiers] = STATE(3753), + [sym_removed_trait_bound] = STATE(1529), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(1517), + [sym_bracketed_type] = STATE(3677), + [sym_lifetime] = STATE(3495), + [sym_array_type] = STATE(1529), + [sym_for_lifetimes] = STATE(1604), + [sym_function_type] = STATE(1529), + [sym_tuple_type] = STATE(1529), + [sym_unit_type] = STATE(1529), + [sym_generic_type] = STATE(1416), + [sym_generic_type_with_turbofish] = STATE(3809), + [sym_bounded_type] = STATE(1529), + [sym_use_bounds] = STATE(3495), + [sym_reference_type] = STATE(1529), + [sym_pointer_type] = STATE(1529), + [sym_never_type] = STATE(1529), + [sym_abstract_type] = STATE(1529), + [sym_dynamic_type] = STATE(1529), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(3347), + [sym_scoped_type_identifier] = STATE(1097), [sym_line_comment] = STATE(937), [sym_block_comment] = STATE(937), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3175), + [anon_sym_LBRACK] = ACTIONS(3177), + [anon_sym_STAR] = ACTIONS(3181), + [anon_sym_QMARK] = ACTIONS(3183), + [anon_sym_u8] = ACTIONS(3185), + [anon_sym_i8] = ACTIONS(3185), + [anon_sym_u16] = ACTIONS(3185), + [anon_sym_i16] = ACTIONS(3185), + [anon_sym_u32] = ACTIONS(3185), + [anon_sym_i32] = ACTIONS(3185), + [anon_sym_u64] = ACTIONS(3185), + [anon_sym_i64] = ACTIONS(3185), + [anon_sym_u128] = ACTIONS(3185), + [anon_sym_i128] = ACTIONS(3185), + [anon_sym_isize] = ACTIONS(3185), + [anon_sym_usize] = ACTIONS(3185), + [anon_sym_f32] = ACTIONS(3185), + [anon_sym_f64] = ACTIONS(3185), + [anon_sym_bool] = ACTIONS(3185), + [anon_sym_str] = ACTIONS(3185), + [anon_sym_char] = ACTIONS(3185), + [anon_sym_BANG] = ACTIONS(3187), + [anon_sym_AMP] = ACTIONS(3189), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3191), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(938)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2489), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(3193), + [anon_sym_fn] = ACTIONS(3195), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(3197), + [anon_sym_impl] = ACTIONS(3199), + [anon_sym_union] = ACTIONS(3197), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(3201), + [anon_sym_raw] = ACTIONS(3197), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3205), + [sym_super] = ACTIONS(3205), + [sym_crate] = ACTIONS(3205), + [sym_metavariable] = ACTIONS(3207), + }, + [938] = { + [sym_function_modifiers] = STATE(3634), + [sym_removed_trait_bound] = STATE(1782), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(1937), + [sym_bracketed_type] = STATE(3694), + [sym_lifetime] = STATE(3777), + [sym_array_type] = STATE(1782), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(1782), + [sym_tuple_type] = STATE(1782), + [sym_unit_type] = STATE(1782), + [sym_generic_type] = STATE(1688), + [sym_generic_type_with_turbofish] = STATE(3685), + [sym_bounded_type] = STATE(1782), + [sym_use_bounds] = STATE(3777), + [sym_reference_type] = STATE(1782), + [sym_pointer_type] = STATE(1782), + [sym_never_type] = STATE(1782), + [sym_abstract_type] = STATE(1782), + [sym_dynamic_type] = STATE(1782), + [sym_macro_invocation] = STATE(1782), + [sym_scoped_identifier] = STATE(3425), + [sym_scoped_type_identifier] = STATE(1603), [sym_line_comment] = STATE(938), [sym_block_comment] = STATE(938), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3215), + [anon_sym_LPAREN] = ACTIONS(3217), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_STAR] = ACTIONS(3223), + [anon_sym_QMARK] = ACTIONS(3225), + [anon_sym_u8] = ACTIONS(3227), + [anon_sym_i8] = ACTIONS(3227), + [anon_sym_u16] = ACTIONS(3227), + [anon_sym_i16] = ACTIONS(3227), + [anon_sym_u32] = ACTIONS(3227), + [anon_sym_i32] = ACTIONS(3227), + [anon_sym_u64] = ACTIONS(3227), + [anon_sym_i64] = ACTIONS(3227), + [anon_sym_u128] = ACTIONS(3227), + [anon_sym_i128] = ACTIONS(3227), + [anon_sym_isize] = ACTIONS(3227), + [anon_sym_usize] = ACTIONS(3227), + [anon_sym_f32] = ACTIONS(3227), + [anon_sym_f64] = ACTIONS(3227), + [anon_sym_bool] = ACTIONS(3227), + [anon_sym_str] = ACTIONS(3227), + [anon_sym_char] = ACTIONS(3227), + [anon_sym_BANG] = ACTIONS(3229), + [anon_sym_AMP] = ACTIONS(3231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3233), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(939)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3143), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(3235), + [anon_sym_fn] = ACTIONS(3237), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(3239), + [anon_sym_impl] = ACTIONS(3241), + [anon_sym_union] = ACTIONS(3239), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(3243), + [anon_sym_raw] = ACTIONS(3239), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3247), + [sym_super] = ACTIONS(3247), + [sym_crate] = ACTIONS(3247), + [sym_metavariable] = ACTIONS(3249), + }, + [939] = { + [sym_function_modifiers] = STATE(3686), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2756), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3651), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3651), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2258), [sym_line_comment] = STATE(939), [sym_block_comment] = STATE(939), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1616), + [anon_sym_QMARK] = ACTIONS(1618), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1622), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(940)] = { - [sym_function_modifiers] = STATE(3775), - [sym_removed_trait_bound] = STATE(1530), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(1550), - [sym_bracketed_type] = STATE(3687), - [sym_lifetime] = STATE(3537), - [sym_array_type] = STATE(1530), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1632), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1636), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1638), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [940] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(3074), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1530), - [sym_tuple_type] = STATE(1530), - [sym_unit_type] = STATE(1530), - [sym_generic_type] = STATE(1422), - [sym_generic_type_with_turbofish] = STATE(3817), - [sym_bounded_type] = STATE(1530), - [sym_use_bounds] = STATE(3537), - [sym_reference_type] = STATE(1530), - [sym_pointer_type] = STATE(1530), - [sym_never_type] = STATE(1530), - [sym_abstract_type] = STATE(1530), - [sym_dynamic_type] = STATE(1530), - [sym_macro_invocation] = STATE(1530), - [sym_scoped_identifier] = STATE(3346), - [sym_scoped_type_identifier] = STATE(1093), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(940), [sym_block_comment] = STATE(940), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3225), - [anon_sym_LBRACK] = ACTIONS(3227), - [anon_sym_STAR] = ACTIONS(3231), - [anon_sym_QMARK] = ACTIONS(3233), - [anon_sym_u8] = ACTIONS(3235), - [anon_sym_i8] = ACTIONS(3235), - [anon_sym_u16] = ACTIONS(3235), - [anon_sym_i16] = ACTIONS(3235), - [anon_sym_u32] = ACTIONS(3235), - [anon_sym_i32] = ACTIONS(3235), - [anon_sym_u64] = ACTIONS(3235), - [anon_sym_i64] = ACTIONS(3235), - [anon_sym_u128] = ACTIONS(3235), - [anon_sym_i128] = ACTIONS(3235), - [anon_sym_isize] = ACTIONS(3235), - [anon_sym_usize] = ACTIONS(3235), - [anon_sym_f32] = ACTIONS(3235), - [anon_sym_f64] = ACTIONS(3235), - [anon_sym_bool] = ACTIONS(3235), - [anon_sym_str] = ACTIONS(3235), - [anon_sym_char] = ACTIONS(3235), - [anon_sym_BANG] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3241), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3243), - [anon_sym_fn] = ACTIONS(3245), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3247), - [anon_sym_impl] = ACTIONS(3249), - [anon_sym_union] = ACTIONS(3247), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(3251), - [anon_sym_raw] = ACTIONS(3247), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3255), - [sym_super] = ACTIONS(3255), - [sym_crate] = ACTIONS(3255), - [sym_metavariable] = ACTIONS(3257), - }, - [STATE(941)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3171), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [941] = { + [sym_function_modifiers] = STATE(3634), + [sym_removed_trait_bound] = STATE(1782), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(1757), + [sym_bracketed_type] = STATE(3694), + [sym_lifetime] = STATE(3777), + [sym_array_type] = STATE(1782), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(1782), + [sym_tuple_type] = STATE(1782), + [sym_unit_type] = STATE(1782), + [sym_generic_type] = STATE(1688), + [sym_generic_type_with_turbofish] = STATE(3685), + [sym_bounded_type] = STATE(1782), + [sym_use_bounds] = STATE(3777), + [sym_reference_type] = STATE(1782), + [sym_pointer_type] = STATE(1782), + [sym_never_type] = STATE(1782), + [sym_abstract_type] = STATE(1782), + [sym_dynamic_type] = STATE(1782), + [sym_macro_invocation] = STATE(1782), + [sym_scoped_identifier] = STATE(3425), + [sym_scoped_type_identifier] = STATE(1603), [sym_line_comment] = STATE(941), [sym_block_comment] = STATE(941), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3215), + [anon_sym_LPAREN] = ACTIONS(3217), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_STAR] = ACTIONS(3223), + [anon_sym_QMARK] = ACTIONS(3225), + [anon_sym_u8] = ACTIONS(3227), + [anon_sym_i8] = ACTIONS(3227), + [anon_sym_u16] = ACTIONS(3227), + [anon_sym_i16] = ACTIONS(3227), + [anon_sym_u32] = ACTIONS(3227), + [anon_sym_i32] = ACTIONS(3227), + [anon_sym_u64] = ACTIONS(3227), + [anon_sym_i64] = ACTIONS(3227), + [anon_sym_u128] = ACTIONS(3227), + [anon_sym_i128] = ACTIONS(3227), + [anon_sym_isize] = ACTIONS(3227), + [anon_sym_usize] = ACTIONS(3227), + [anon_sym_f32] = ACTIONS(3227), + [anon_sym_f64] = ACTIONS(3227), + [anon_sym_bool] = ACTIONS(3227), + [anon_sym_str] = ACTIONS(3227), + [anon_sym_char] = ACTIONS(3227), + [anon_sym_BANG] = ACTIONS(3229), + [anon_sym_AMP] = ACTIONS(3231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3233), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(942)] = { - [sym_function_modifiers] = STATE(3775), - [sym_removed_trait_bound] = STATE(1499), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3537), - [sym_bracketed_type] = STATE(3687), - [sym_lifetime] = STATE(3537), - [sym_array_type] = STATE(2079), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(3235), + [anon_sym_fn] = ACTIONS(3237), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(3239), + [anon_sym_impl] = ACTIONS(3241), + [anon_sym_union] = ACTIONS(3239), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(3243), + [anon_sym_raw] = ACTIONS(3239), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3247), + [sym_super] = ACTIONS(3247), + [sym_crate] = ACTIONS(3247), + [sym_metavariable] = ACTIONS(3249), + }, + [942] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2419), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1499), - [sym_tuple_type] = STATE(1499), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(1411), - [sym_generic_type_with_turbofish] = STATE(3817), - [sym_bounded_type] = STATE(1499), - [sym_use_bounds] = STATE(3537), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3425), - [sym_scoped_type_identifier] = STATE(1096), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(942), [sym_block_comment] = STATE(942), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3341), - [anon_sym_LPAREN] = ACTIONS(3343), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(3233), - [anon_sym_u8] = ACTIONS(3345), - [anon_sym_i8] = ACTIONS(3345), - [anon_sym_u16] = ACTIONS(3345), - [anon_sym_i16] = ACTIONS(3345), - [anon_sym_u32] = ACTIONS(3345), - [anon_sym_i32] = ACTIONS(3345), - [anon_sym_u64] = ACTIONS(3345), - [anon_sym_i64] = ACTIONS(3345), - [anon_sym_u128] = ACTIONS(3345), - [anon_sym_i128] = ACTIONS(3345), - [anon_sym_isize] = ACTIONS(3345), - [anon_sym_usize] = ACTIONS(3345), - [anon_sym_f32] = ACTIONS(3345), - [anon_sym_f64] = ACTIONS(3345), - [anon_sym_bool] = ACTIONS(3345), - [anon_sym_str] = ACTIONS(3345), - [anon_sym_char] = ACTIONS(3345), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3241), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3347), - [anon_sym_fn] = ACTIONS(3245), - [anon_sym_for] = ACTIONS(3349), - [anon_sym_gen] = ACTIONS(3351), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(3351), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(3351), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3255), - [sym_super] = ACTIONS(3255), - [sym_crate] = ACTIONS(3255), - [sym_metavariable] = ACTIONS(3353), - }, - [STATE(943)] = { - [sym_function_modifiers] = STATE(3775), - [sym_removed_trait_bound] = STATE(1530), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(1440), - [sym_bracketed_type] = STATE(3687), - [sym_lifetime] = STATE(3537), - [sym_array_type] = STATE(1530), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [943] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2421), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1530), - [sym_tuple_type] = STATE(1530), - [sym_unit_type] = STATE(1530), - [sym_generic_type] = STATE(1422), - [sym_generic_type_with_turbofish] = STATE(3817), - [sym_bounded_type] = STATE(1530), - [sym_use_bounds] = STATE(3537), - [sym_reference_type] = STATE(1530), - [sym_pointer_type] = STATE(1530), - [sym_never_type] = STATE(1530), - [sym_abstract_type] = STATE(1530), - [sym_dynamic_type] = STATE(1530), - [sym_macro_invocation] = STATE(1530), - [sym_scoped_identifier] = STATE(3346), - [sym_scoped_type_identifier] = STATE(1093), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(943), [sym_block_comment] = STATE(943), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3225), - [anon_sym_LBRACK] = ACTIONS(3227), - [anon_sym_STAR] = ACTIONS(3231), - [anon_sym_QMARK] = ACTIONS(3233), - [anon_sym_u8] = ACTIONS(3235), - [anon_sym_i8] = ACTIONS(3235), - [anon_sym_u16] = ACTIONS(3235), - [anon_sym_i16] = ACTIONS(3235), - [anon_sym_u32] = ACTIONS(3235), - [anon_sym_i32] = ACTIONS(3235), - [anon_sym_u64] = ACTIONS(3235), - [anon_sym_i64] = ACTIONS(3235), - [anon_sym_u128] = ACTIONS(3235), - [anon_sym_i128] = ACTIONS(3235), - [anon_sym_isize] = ACTIONS(3235), - [anon_sym_usize] = ACTIONS(3235), - [anon_sym_f32] = ACTIONS(3235), - [anon_sym_f64] = ACTIONS(3235), - [anon_sym_bool] = ACTIONS(3235), - [anon_sym_str] = ACTIONS(3235), - [anon_sym_char] = ACTIONS(3235), - [anon_sym_BANG] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3241), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3243), - [anon_sym_fn] = ACTIONS(3245), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3247), - [anon_sym_impl] = ACTIONS(3249), - [anon_sym_union] = ACTIONS(3247), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(3251), - [anon_sym_raw] = ACTIONS(3247), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3255), - [sym_super] = ACTIONS(3255), - [sym_crate] = ACTIONS(3255), - [sym_metavariable] = ACTIONS(3257), - }, - [STATE(944)] = { - [sym_function_modifiers] = STATE(3644), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [944] = { + [sym_function_modifiers] = STATE(3634), [sym_removed_trait_bound] = STATE(1782), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(1758), - [sym_bracketed_type] = STATE(3704), - [sym_lifetime] = STATE(3802), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(1885), + [sym_bracketed_type] = STATE(3694), + [sym_lifetime] = STATE(3777), [sym_array_type] = STATE(1782), - [sym_for_lifetimes] = STATE(1603), + [sym_for_lifetimes] = STATE(1607), [sym_function_type] = STATE(1782), [sym_tuple_type] = STATE(1782), [sym_unit_type] = STATE(1782), - [sym_generic_type] = STATE(1716), - [sym_generic_type_with_turbofish] = STATE(3695), + [sym_generic_type] = STATE(1688), + [sym_generic_type_with_turbofish] = STATE(3685), [sym_bounded_type] = STATE(1782), - [sym_use_bounds] = STATE(3802), + [sym_use_bounds] = STATE(3777), [sym_reference_type] = STATE(1782), [sym_pointer_type] = STATE(1782), [sym_never_type] = STATE(1782), [sym_abstract_type] = STATE(1782), [sym_dynamic_type] = STATE(1782), [sym_macro_invocation] = STATE(1782), - [sym_scoped_identifier] = STATE(3436), - [sym_scoped_type_identifier] = STATE(1625), + [sym_scoped_identifier] = STATE(3425), + [sym_scoped_type_identifier] = STATE(1603), [sym_line_comment] = STATE(944), [sym_block_comment] = STATE(944), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_LBRACK] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3185), - [anon_sym_QMARK] = ACTIONS(3187), - [anon_sym_u8] = ACTIONS(3189), - [anon_sym_i8] = ACTIONS(3189), - [anon_sym_u16] = ACTIONS(3189), - [anon_sym_i16] = ACTIONS(3189), - [anon_sym_u32] = ACTIONS(3189), - [anon_sym_i32] = ACTIONS(3189), - [anon_sym_u64] = ACTIONS(3189), - [anon_sym_i64] = ACTIONS(3189), - [anon_sym_u128] = ACTIONS(3189), - [anon_sym_i128] = ACTIONS(3189), - [anon_sym_isize] = ACTIONS(3189), - [anon_sym_usize] = ACTIONS(3189), - [anon_sym_f32] = ACTIONS(3189), - [anon_sym_f64] = ACTIONS(3189), - [anon_sym_bool] = ACTIONS(3189), - [anon_sym_str] = ACTIONS(3189), - [anon_sym_char] = ACTIONS(3189), - [anon_sym_BANG] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3193), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3195), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3197), - [anon_sym_fn] = ACTIONS(3199), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3201), - [anon_sym_impl] = ACTIONS(3203), - [anon_sym_union] = ACTIONS(3201), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(3205), - [anon_sym_raw] = ACTIONS(3201), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3209), - [sym_super] = ACTIONS(3209), - [sym_crate] = ACTIONS(3209), - [sym_metavariable] = ACTIONS(3211), - }, - [STATE(945)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2460), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), - [sym_line_comment] = STATE(945), - [sym_block_comment] = STATE(945), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3215), + [anon_sym_LPAREN] = ACTIONS(3217), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_STAR] = ACTIONS(3223), + [anon_sym_QMARK] = ACTIONS(3225), + [anon_sym_u8] = ACTIONS(3227), + [anon_sym_i8] = ACTIONS(3227), + [anon_sym_u16] = ACTIONS(3227), + [anon_sym_i16] = ACTIONS(3227), + [anon_sym_u32] = ACTIONS(3227), + [anon_sym_i32] = ACTIONS(3227), + [anon_sym_u64] = ACTIONS(3227), + [anon_sym_i64] = ACTIONS(3227), + [anon_sym_u128] = ACTIONS(3227), + [anon_sym_i128] = ACTIONS(3227), + [anon_sym_isize] = ACTIONS(3227), + [anon_sym_usize] = ACTIONS(3227), + [anon_sym_f32] = ACTIONS(3227), + [anon_sym_f64] = ACTIONS(3227), + [anon_sym_bool] = ACTIONS(3227), + [anon_sym_str] = ACTIONS(3227), + [anon_sym_char] = ACTIONS(3227), + [anon_sym_BANG] = ACTIONS(3229), + [anon_sym_AMP] = ACTIONS(3231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3233), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(946)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2462), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), - [sym_line_comment] = STATE(946), - [sym_block_comment] = STATE(946), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(947)] = { - [sym_function_modifiers] = STATE(3644), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(3235), + [anon_sym_fn] = ACTIONS(3237), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(3239), + [anon_sym_impl] = ACTIONS(3241), + [anon_sym_union] = ACTIONS(3239), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(3243), + [anon_sym_raw] = ACTIONS(3239), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3247), + [sym_super] = ACTIONS(3247), + [sym_crate] = ACTIONS(3247), + [sym_metavariable] = ACTIONS(3249), + }, + [945] = { + [sym_function_modifiers] = STATE(3634), [sym_removed_trait_bound] = STATE(1782), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(1890), - [sym_bracketed_type] = STATE(3704), - [sym_lifetime] = STATE(3802), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(1758), + [sym_bracketed_type] = STATE(3694), + [sym_lifetime] = STATE(3777), [sym_array_type] = STATE(1782), - [sym_for_lifetimes] = STATE(1603), + [sym_for_lifetimes] = STATE(1607), [sym_function_type] = STATE(1782), [sym_tuple_type] = STATE(1782), [sym_unit_type] = STATE(1782), - [sym_generic_type] = STATE(1716), - [sym_generic_type_with_turbofish] = STATE(3695), + [sym_generic_type] = STATE(1688), + [sym_generic_type_with_turbofish] = STATE(3685), [sym_bounded_type] = STATE(1782), - [sym_use_bounds] = STATE(3802), + [sym_use_bounds] = STATE(3777), [sym_reference_type] = STATE(1782), [sym_pointer_type] = STATE(1782), [sym_never_type] = STATE(1782), [sym_abstract_type] = STATE(1782), [sym_dynamic_type] = STATE(1782), [sym_macro_invocation] = STATE(1782), - [sym_scoped_identifier] = STATE(3436), - [sym_scoped_type_identifier] = STATE(1625), + [sym_scoped_identifier] = STATE(3425), + [sym_scoped_type_identifier] = STATE(1603), + [sym_line_comment] = STATE(945), + [sym_block_comment] = STATE(945), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3215), + [anon_sym_LPAREN] = ACTIONS(3217), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_STAR] = ACTIONS(3223), + [anon_sym_QMARK] = ACTIONS(3225), + [anon_sym_u8] = ACTIONS(3227), + [anon_sym_i8] = ACTIONS(3227), + [anon_sym_u16] = ACTIONS(3227), + [anon_sym_i16] = ACTIONS(3227), + [anon_sym_u32] = ACTIONS(3227), + [anon_sym_i32] = ACTIONS(3227), + [anon_sym_u64] = ACTIONS(3227), + [anon_sym_i64] = ACTIONS(3227), + [anon_sym_u128] = ACTIONS(3227), + [anon_sym_i128] = ACTIONS(3227), + [anon_sym_isize] = ACTIONS(3227), + [anon_sym_usize] = ACTIONS(3227), + [anon_sym_f32] = ACTIONS(3227), + [anon_sym_f64] = ACTIONS(3227), + [anon_sym_bool] = ACTIONS(3227), + [anon_sym_str] = ACTIONS(3227), + [anon_sym_char] = ACTIONS(3227), + [anon_sym_BANG] = ACTIONS(3229), + [anon_sym_AMP] = ACTIONS(3231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3233), + [anon_sym_SQUOTE] = ACTIONS(3081), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(3235), + [anon_sym_fn] = ACTIONS(3237), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(3239), + [anon_sym_impl] = ACTIONS(3241), + [anon_sym_union] = ACTIONS(3239), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(3243), + [anon_sym_raw] = ACTIONS(3239), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3247), + [sym_super] = ACTIONS(3247), + [sym_crate] = ACTIONS(3247), + [sym_metavariable] = ACTIONS(3249), + }, + [946] = { + [sym_function_modifiers] = STATE(3686), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2059), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3651), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3651), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2258), + [sym_line_comment] = STATE(946), + [sym_block_comment] = STATE(946), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1616), + [anon_sym_QMARK] = ACTIONS(1618), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1622), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(3081), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1632), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1636), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1638), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [947] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2470), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(947), [sym_block_comment] = STATE(947), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_LBRACK] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3185), - [anon_sym_QMARK] = ACTIONS(3187), - [anon_sym_u8] = ACTIONS(3189), - [anon_sym_i8] = ACTIONS(3189), - [anon_sym_u16] = ACTIONS(3189), - [anon_sym_i16] = ACTIONS(3189), - [anon_sym_u32] = ACTIONS(3189), - [anon_sym_i32] = ACTIONS(3189), - [anon_sym_u64] = ACTIONS(3189), - [anon_sym_i64] = ACTIONS(3189), - [anon_sym_u128] = ACTIONS(3189), - [anon_sym_i128] = ACTIONS(3189), - [anon_sym_isize] = ACTIONS(3189), - [anon_sym_usize] = ACTIONS(3189), - [anon_sym_f32] = ACTIONS(3189), - [anon_sym_f64] = ACTIONS(3189), - [anon_sym_bool] = ACTIONS(3189), - [anon_sym_str] = ACTIONS(3189), - [anon_sym_char] = ACTIONS(3189), - [anon_sym_BANG] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3193), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3195), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3197), - [anon_sym_fn] = ACTIONS(3199), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3201), - [anon_sym_impl] = ACTIONS(3203), - [anon_sym_union] = ACTIONS(3201), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(3205), - [anon_sym_raw] = ACTIONS(3201), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3209), - [sym_super] = ACTIONS(3209), - [sym_crate] = ACTIONS(3209), - [sym_metavariable] = ACTIONS(3211), - }, - [STATE(948)] = { - [sym_function_modifiers] = STATE(3644), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [948] = { + [sym_function_modifiers] = STATE(3634), [sym_removed_trait_bound] = STATE(1782), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(1759), - [sym_bracketed_type] = STATE(3704), - [sym_lifetime] = STATE(3802), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(1899), + [sym_bracketed_type] = STATE(3694), + [sym_lifetime] = STATE(3777), [sym_array_type] = STATE(1782), - [sym_for_lifetimes] = STATE(1603), + [sym_for_lifetimes] = STATE(1607), [sym_function_type] = STATE(1782), [sym_tuple_type] = STATE(1782), [sym_unit_type] = STATE(1782), - [sym_generic_type] = STATE(1716), - [sym_generic_type_with_turbofish] = STATE(3695), + [sym_generic_type] = STATE(1688), + [sym_generic_type_with_turbofish] = STATE(3685), [sym_bounded_type] = STATE(1782), - [sym_use_bounds] = STATE(3802), + [sym_use_bounds] = STATE(3777), [sym_reference_type] = STATE(1782), [sym_pointer_type] = STATE(1782), [sym_never_type] = STATE(1782), [sym_abstract_type] = STATE(1782), [sym_dynamic_type] = STATE(1782), [sym_macro_invocation] = STATE(1782), - [sym_scoped_identifier] = STATE(3436), - [sym_scoped_type_identifier] = STATE(1625), + [sym_scoped_identifier] = STATE(3425), + [sym_scoped_type_identifier] = STATE(1603), [sym_line_comment] = STATE(948), [sym_block_comment] = STATE(948), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_LBRACK] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3185), - [anon_sym_QMARK] = ACTIONS(3187), - [anon_sym_u8] = ACTIONS(3189), - [anon_sym_i8] = ACTIONS(3189), - [anon_sym_u16] = ACTIONS(3189), - [anon_sym_i16] = ACTIONS(3189), - [anon_sym_u32] = ACTIONS(3189), - [anon_sym_i32] = ACTIONS(3189), - [anon_sym_u64] = ACTIONS(3189), - [anon_sym_i64] = ACTIONS(3189), - [anon_sym_u128] = ACTIONS(3189), - [anon_sym_i128] = ACTIONS(3189), - [anon_sym_isize] = ACTIONS(3189), - [anon_sym_usize] = ACTIONS(3189), - [anon_sym_f32] = ACTIONS(3189), - [anon_sym_f64] = ACTIONS(3189), - [anon_sym_bool] = ACTIONS(3189), - [anon_sym_str] = ACTIONS(3189), - [anon_sym_char] = ACTIONS(3189), - [anon_sym_BANG] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3193), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3195), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3215), + [anon_sym_LPAREN] = ACTIONS(3217), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_STAR] = ACTIONS(3223), + [anon_sym_QMARK] = ACTIONS(3225), + [anon_sym_u8] = ACTIONS(3227), + [anon_sym_i8] = ACTIONS(3227), + [anon_sym_u16] = ACTIONS(3227), + [anon_sym_i16] = ACTIONS(3227), + [anon_sym_u32] = ACTIONS(3227), + [anon_sym_i32] = ACTIONS(3227), + [anon_sym_u64] = ACTIONS(3227), + [anon_sym_i64] = ACTIONS(3227), + [anon_sym_u128] = ACTIONS(3227), + [anon_sym_i128] = ACTIONS(3227), + [anon_sym_isize] = ACTIONS(3227), + [anon_sym_usize] = ACTIONS(3227), + [anon_sym_f32] = ACTIONS(3227), + [anon_sym_f64] = ACTIONS(3227), + [anon_sym_bool] = ACTIONS(3227), + [anon_sym_str] = ACTIONS(3227), + [anon_sym_char] = ACTIONS(3227), + [anon_sym_BANG] = ACTIONS(3229), + [anon_sym_AMP] = ACTIONS(3231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3233), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3197), - [anon_sym_fn] = ACTIONS(3199), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3201), - [anon_sym_impl] = ACTIONS(3203), - [anon_sym_union] = ACTIONS(3201), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(3205), - [anon_sym_raw] = ACTIONS(3201), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3209), - [sym_super] = ACTIONS(3209), - [sym_crate] = ACTIONS(3209), - [sym_metavariable] = ACTIONS(3211), - }, - [STATE(949)] = { - [sym_function_modifiers] = STATE(3644), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(3235), + [anon_sym_fn] = ACTIONS(3237), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(3239), + [anon_sym_impl] = ACTIONS(3241), + [anon_sym_union] = ACTIONS(3239), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(3243), + [anon_sym_raw] = ACTIONS(3239), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3247), + [sym_super] = ACTIONS(3247), + [sym_crate] = ACTIONS(3247), + [sym_metavariable] = ACTIONS(3249), + }, + [949] = { + [sym_function_modifiers] = STATE(3634), [sym_removed_trait_bound] = STATE(1782), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(1906), - [sym_bracketed_type] = STATE(3704), - [sym_lifetime] = STATE(3802), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(1901), + [sym_bracketed_type] = STATE(3694), + [sym_lifetime] = STATE(3777), [sym_array_type] = STATE(1782), - [sym_for_lifetimes] = STATE(1603), + [sym_for_lifetimes] = STATE(1607), [sym_function_type] = STATE(1782), [sym_tuple_type] = STATE(1782), [sym_unit_type] = STATE(1782), - [sym_generic_type] = STATE(1716), - [sym_generic_type_with_turbofish] = STATE(3695), + [sym_generic_type] = STATE(1688), + [sym_generic_type_with_turbofish] = STATE(3685), [sym_bounded_type] = STATE(1782), - [sym_use_bounds] = STATE(3802), + [sym_use_bounds] = STATE(3777), [sym_reference_type] = STATE(1782), [sym_pointer_type] = STATE(1782), [sym_never_type] = STATE(1782), [sym_abstract_type] = STATE(1782), [sym_dynamic_type] = STATE(1782), [sym_macro_invocation] = STATE(1782), - [sym_scoped_identifier] = STATE(3436), - [sym_scoped_type_identifier] = STATE(1625), + [sym_scoped_identifier] = STATE(3425), + [sym_scoped_type_identifier] = STATE(1603), [sym_line_comment] = STATE(949), [sym_block_comment] = STATE(949), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_LBRACK] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3185), - [anon_sym_QMARK] = ACTIONS(3187), - [anon_sym_u8] = ACTIONS(3189), - [anon_sym_i8] = ACTIONS(3189), - [anon_sym_u16] = ACTIONS(3189), - [anon_sym_i16] = ACTIONS(3189), - [anon_sym_u32] = ACTIONS(3189), - [anon_sym_i32] = ACTIONS(3189), - [anon_sym_u64] = ACTIONS(3189), - [anon_sym_i64] = ACTIONS(3189), - [anon_sym_u128] = ACTIONS(3189), - [anon_sym_i128] = ACTIONS(3189), - [anon_sym_isize] = ACTIONS(3189), - [anon_sym_usize] = ACTIONS(3189), - [anon_sym_f32] = ACTIONS(3189), - [anon_sym_f64] = ACTIONS(3189), - [anon_sym_bool] = ACTIONS(3189), - [anon_sym_str] = ACTIONS(3189), - [anon_sym_char] = ACTIONS(3189), - [anon_sym_BANG] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3193), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3195), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3215), + [anon_sym_LPAREN] = ACTIONS(3217), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_STAR] = ACTIONS(3223), + [anon_sym_QMARK] = ACTIONS(3225), + [anon_sym_u8] = ACTIONS(3227), + [anon_sym_i8] = ACTIONS(3227), + [anon_sym_u16] = ACTIONS(3227), + [anon_sym_i16] = ACTIONS(3227), + [anon_sym_u32] = ACTIONS(3227), + [anon_sym_i32] = ACTIONS(3227), + [anon_sym_u64] = ACTIONS(3227), + [anon_sym_i64] = ACTIONS(3227), + [anon_sym_u128] = ACTIONS(3227), + [anon_sym_i128] = ACTIONS(3227), + [anon_sym_isize] = ACTIONS(3227), + [anon_sym_usize] = ACTIONS(3227), + [anon_sym_f32] = ACTIONS(3227), + [anon_sym_f64] = ACTIONS(3227), + [anon_sym_bool] = ACTIONS(3227), + [anon_sym_str] = ACTIONS(3227), + [anon_sym_char] = ACTIONS(3227), + [anon_sym_BANG] = ACTIONS(3229), + [anon_sym_AMP] = ACTIONS(3231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3233), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3197), - [anon_sym_fn] = ACTIONS(3199), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3201), - [anon_sym_impl] = ACTIONS(3203), - [anon_sym_union] = ACTIONS(3201), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(3205), - [anon_sym_raw] = ACTIONS(3201), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3209), - [sym_super] = ACTIONS(3209), - [sym_crate] = ACTIONS(3209), - [sym_metavariable] = ACTIONS(3211), - }, - [STATE(950)] = { - [sym_function_modifiers] = STATE(3644), - [sym_removed_trait_bound] = STATE(1782), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(1909), - [sym_bracketed_type] = STATE(3704), - [sym_lifetime] = STATE(3802), - [sym_array_type] = STATE(1782), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1782), - [sym_tuple_type] = STATE(1782), - [sym_unit_type] = STATE(1782), - [sym_generic_type] = STATE(1716), - [sym_generic_type_with_turbofish] = STATE(3695), - [sym_bounded_type] = STATE(1782), - [sym_use_bounds] = STATE(3802), - [sym_reference_type] = STATE(1782), - [sym_pointer_type] = STATE(1782), - [sym_never_type] = STATE(1782), - [sym_abstract_type] = STATE(1782), - [sym_dynamic_type] = STATE(1782), - [sym_macro_invocation] = STATE(1782), - [sym_scoped_identifier] = STATE(3436), - [sym_scoped_type_identifier] = STATE(1625), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(3235), + [anon_sym_fn] = ACTIONS(3237), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(3239), + [anon_sym_impl] = ACTIONS(3241), + [anon_sym_union] = ACTIONS(3239), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(3243), + [anon_sym_raw] = ACTIONS(3239), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3247), + [sym_super] = ACTIONS(3247), + [sym_crate] = ACTIONS(3247), + [sym_metavariable] = ACTIONS(3249), + }, + [950] = { + [sym_function_modifiers] = STATE(3753), + [sym_removed_trait_bound] = STATE(1529), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(1519), + [sym_bracketed_type] = STATE(3677), + [sym_lifetime] = STATE(3495), + [sym_array_type] = STATE(1529), + [sym_for_lifetimes] = STATE(1604), + [sym_function_type] = STATE(1529), + [sym_tuple_type] = STATE(1529), + [sym_unit_type] = STATE(1529), + [sym_generic_type] = STATE(1416), + [sym_generic_type_with_turbofish] = STATE(3809), + [sym_bounded_type] = STATE(1529), + [sym_use_bounds] = STATE(3495), + [sym_reference_type] = STATE(1529), + [sym_pointer_type] = STATE(1529), + [sym_never_type] = STATE(1529), + [sym_abstract_type] = STATE(1529), + [sym_dynamic_type] = STATE(1529), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(3347), + [sym_scoped_type_identifier] = STATE(1097), [sym_line_comment] = STATE(950), [sym_block_comment] = STATE(950), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_LBRACK] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3185), - [anon_sym_QMARK] = ACTIONS(3187), - [anon_sym_u8] = ACTIONS(3189), - [anon_sym_i8] = ACTIONS(3189), - [anon_sym_u16] = ACTIONS(3189), - [anon_sym_i16] = ACTIONS(3189), - [anon_sym_u32] = ACTIONS(3189), - [anon_sym_i32] = ACTIONS(3189), - [anon_sym_u64] = ACTIONS(3189), - [anon_sym_i64] = ACTIONS(3189), - [anon_sym_u128] = ACTIONS(3189), - [anon_sym_i128] = ACTIONS(3189), - [anon_sym_isize] = ACTIONS(3189), - [anon_sym_usize] = ACTIONS(3189), - [anon_sym_f32] = ACTIONS(3189), - [anon_sym_f64] = ACTIONS(3189), - [anon_sym_bool] = ACTIONS(3189), - [anon_sym_str] = ACTIONS(3189), - [anon_sym_char] = ACTIONS(3189), - [anon_sym_BANG] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3193), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3195), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3175), + [anon_sym_LBRACK] = ACTIONS(3177), + [anon_sym_STAR] = ACTIONS(3181), + [anon_sym_QMARK] = ACTIONS(3183), + [anon_sym_u8] = ACTIONS(3185), + [anon_sym_i8] = ACTIONS(3185), + [anon_sym_u16] = ACTIONS(3185), + [anon_sym_i16] = ACTIONS(3185), + [anon_sym_u32] = ACTIONS(3185), + [anon_sym_i32] = ACTIONS(3185), + [anon_sym_u64] = ACTIONS(3185), + [anon_sym_i64] = ACTIONS(3185), + [anon_sym_u128] = ACTIONS(3185), + [anon_sym_i128] = ACTIONS(3185), + [anon_sym_isize] = ACTIONS(3185), + [anon_sym_usize] = ACTIONS(3185), + [anon_sym_f32] = ACTIONS(3185), + [anon_sym_f64] = ACTIONS(3185), + [anon_sym_bool] = ACTIONS(3185), + [anon_sym_str] = ACTIONS(3185), + [anon_sym_char] = ACTIONS(3185), + [anon_sym_BANG] = ACTIONS(3187), + [anon_sym_AMP] = ACTIONS(3189), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3191), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3197), - [anon_sym_fn] = ACTIONS(3199), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3201), - [anon_sym_impl] = ACTIONS(3203), - [anon_sym_union] = ACTIONS(3201), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(3205), - [anon_sym_raw] = ACTIONS(3201), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3209), - [sym_super] = ACTIONS(3209), - [sym_crate] = ACTIONS(3209), - [sym_metavariable] = ACTIONS(3211), - }, - [STATE(951)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2490), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(3193), + [anon_sym_fn] = ACTIONS(3195), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(3197), + [anon_sym_impl] = ACTIONS(3199), + [anon_sym_union] = ACTIONS(3197), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(3201), + [anon_sym_raw] = ACTIONS(3197), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3205), + [sym_super] = ACTIONS(3205), + [sym_crate] = ACTIONS(3205), + [sym_metavariable] = ACTIONS(3207), + }, + [951] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(3052), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(951), [sym_block_comment] = STATE(951), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(952)] = { - [sym_function_modifiers] = STATE(3644), - [sym_removed_trait_bound] = STATE(1782), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(1825), - [sym_bracketed_type] = STATE(3704), - [sym_lifetime] = STATE(3802), - [sym_array_type] = STATE(1782), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1782), - [sym_tuple_type] = STATE(1782), - [sym_unit_type] = STATE(1782), - [sym_generic_type] = STATE(1716), - [sym_generic_type_with_turbofish] = STATE(3695), - [sym_bounded_type] = STATE(1782), - [sym_use_bounds] = STATE(3802), - [sym_reference_type] = STATE(1782), - [sym_pointer_type] = STATE(1782), - [sym_never_type] = STATE(1782), - [sym_abstract_type] = STATE(1782), - [sym_dynamic_type] = STATE(1782), - [sym_macro_invocation] = STATE(1782), - [sym_scoped_identifier] = STATE(3436), - [sym_scoped_type_identifier] = STATE(1625), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [952] = { + [sym_function_modifiers] = STATE(3686), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(3470), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3651), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3651), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2258), [sym_line_comment] = STATE(952), [sym_block_comment] = STATE(952), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_LBRACK] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3185), - [anon_sym_QMARK] = ACTIONS(3187), - [anon_sym_u8] = ACTIONS(3189), - [anon_sym_i8] = ACTIONS(3189), - [anon_sym_u16] = ACTIONS(3189), - [anon_sym_i16] = ACTIONS(3189), - [anon_sym_u32] = ACTIONS(3189), - [anon_sym_i32] = ACTIONS(3189), - [anon_sym_u64] = ACTIONS(3189), - [anon_sym_i64] = ACTIONS(3189), - [anon_sym_u128] = ACTIONS(3189), - [anon_sym_i128] = ACTIONS(3189), - [anon_sym_isize] = ACTIONS(3189), - [anon_sym_usize] = ACTIONS(3189), - [anon_sym_f32] = ACTIONS(3189), - [anon_sym_f64] = ACTIONS(3189), - [anon_sym_bool] = ACTIONS(3189), - [anon_sym_str] = ACTIONS(3189), - [anon_sym_char] = ACTIONS(3189), - [anon_sym_BANG] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3193), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3195), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1616), + [anon_sym_QMARK] = ACTIONS(1618), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1622), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3197), - [anon_sym_fn] = ACTIONS(3199), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3201), - [anon_sym_impl] = ACTIONS(3203), - [anon_sym_union] = ACTIONS(3201), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(3205), - [anon_sym_raw] = ACTIONS(3201), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3209), - [sym_super] = ACTIONS(3209), - [sym_crate] = ACTIONS(3209), - [sym_metavariable] = ACTIONS(3211), - }, - [STATE(953)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2867), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1632), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1636), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1638), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [953] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2404), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2497), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2227), [sym_line_comment] = STATE(953), [sym_block_comment] = STATE(953), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3351), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(3353), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(954)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2292), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [954] = { + [sym_function_modifiers] = STATE(3686), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(3191), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3651), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3651), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2258), [sym_line_comment] = STATE(954), [sym_block_comment] = STATE(954), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1616), + [anon_sym_QMARK] = ACTIONS(1618), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1622), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(955)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2089), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3584), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3584), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2089), - [sym_tuple_type] = STATE(2089), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2056), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2089), - [sym_use_bounds] = STATE(3584), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2263), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1632), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1636), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1638), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [955] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2471), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(955), [sym_block_comment] = STATE(955), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3355), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(3357), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(956)] = { - [sym_function_modifiers] = STATE(3644), - [sym_removed_trait_bound] = STATE(1782), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(1929), - [sym_bracketed_type] = STATE(3704), - [sym_lifetime] = STATE(3802), - [sym_array_type] = STATE(1782), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1782), - [sym_tuple_type] = STATE(1782), - [sym_unit_type] = STATE(1782), - [sym_generic_type] = STATE(1716), - [sym_generic_type_with_turbofish] = STATE(3695), - [sym_bounded_type] = STATE(1782), - [sym_use_bounds] = STATE(3802), - [sym_reference_type] = STATE(1782), - [sym_pointer_type] = STATE(1782), - [sym_never_type] = STATE(1782), - [sym_abstract_type] = STATE(1782), - [sym_dynamic_type] = STATE(1782), - [sym_macro_invocation] = STATE(1782), - [sym_scoped_identifier] = STATE(3436), - [sym_scoped_type_identifier] = STATE(1625), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [956] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2656), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(956), [sym_block_comment] = STATE(956), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_LBRACK] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3185), - [anon_sym_QMARK] = ACTIONS(3187), - [anon_sym_u8] = ACTIONS(3189), - [anon_sym_i8] = ACTIONS(3189), - [anon_sym_u16] = ACTIONS(3189), - [anon_sym_i16] = ACTIONS(3189), - [anon_sym_u32] = ACTIONS(3189), - [anon_sym_i32] = ACTIONS(3189), - [anon_sym_u64] = ACTIONS(3189), - [anon_sym_i64] = ACTIONS(3189), - [anon_sym_u128] = ACTIONS(3189), - [anon_sym_i128] = ACTIONS(3189), - [anon_sym_isize] = ACTIONS(3189), - [anon_sym_usize] = ACTIONS(3189), - [anon_sym_f32] = ACTIONS(3189), - [anon_sym_f64] = ACTIONS(3189), - [anon_sym_bool] = ACTIONS(3189), - [anon_sym_str] = ACTIONS(3189), - [anon_sym_char] = ACTIONS(3189), - [anon_sym_BANG] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3193), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3195), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3197), - [anon_sym_fn] = ACTIONS(3199), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3201), - [anon_sym_impl] = ACTIONS(3203), - [anon_sym_union] = ACTIONS(3201), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(3205), - [anon_sym_raw] = ACTIONS(3201), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3209), - [sym_super] = ACTIONS(3209), - [sym_crate] = ACTIONS(3209), - [sym_metavariable] = ACTIONS(3211), - }, - [STATE(957)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2491), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [957] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2601), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(957), [sym_block_comment] = STATE(957), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(958)] = { - [sym_function_modifiers] = STATE(3644), - [sym_removed_trait_bound] = STATE(1782), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(1932), - [sym_bracketed_type] = STATE(3704), - [sym_lifetime] = STATE(3802), - [sym_array_type] = STATE(1782), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1782), - [sym_tuple_type] = STATE(1782), - [sym_unit_type] = STATE(1782), - [sym_generic_type] = STATE(1716), - [sym_generic_type_with_turbofish] = STATE(3695), - [sym_bounded_type] = STATE(1782), - [sym_use_bounds] = STATE(3802), - [sym_reference_type] = STATE(1782), - [sym_pointer_type] = STATE(1782), - [sym_never_type] = STATE(1782), - [sym_abstract_type] = STATE(1782), - [sym_dynamic_type] = STATE(1782), - [sym_macro_invocation] = STATE(1782), - [sym_scoped_identifier] = STATE(3436), - [sym_scoped_type_identifier] = STATE(1625), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [958] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2651), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(958), [sym_block_comment] = STATE(958), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_LBRACK] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3185), - [anon_sym_QMARK] = ACTIONS(3187), - [anon_sym_u8] = ACTIONS(3189), - [anon_sym_i8] = ACTIONS(3189), - [anon_sym_u16] = ACTIONS(3189), - [anon_sym_i16] = ACTIONS(3189), - [anon_sym_u32] = ACTIONS(3189), - [anon_sym_i32] = ACTIONS(3189), - [anon_sym_u64] = ACTIONS(3189), - [anon_sym_i64] = ACTIONS(3189), - [anon_sym_u128] = ACTIONS(3189), - [anon_sym_i128] = ACTIONS(3189), - [anon_sym_isize] = ACTIONS(3189), - [anon_sym_usize] = ACTIONS(3189), - [anon_sym_f32] = ACTIONS(3189), - [anon_sym_f64] = ACTIONS(3189), - [anon_sym_bool] = ACTIONS(3189), - [anon_sym_str] = ACTIONS(3189), - [anon_sym_char] = ACTIONS(3189), - [anon_sym_BANG] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3193), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3195), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3197), - [anon_sym_fn] = ACTIONS(3199), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3201), - [anon_sym_impl] = ACTIONS(3203), - [anon_sym_union] = ACTIONS(3201), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(3205), - [anon_sym_raw] = ACTIONS(3201), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3209), - [sym_super] = ACTIONS(3209), - [sym_crate] = ACTIONS(3209), - [sym_metavariable] = ACTIONS(3211), - }, - [STATE(959)] = { - [sym_function_modifiers] = STATE(3644), - [sym_removed_trait_bound] = STATE(1782), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(1933), - [sym_bracketed_type] = STATE(3704), - [sym_lifetime] = STATE(3802), - [sym_array_type] = STATE(1782), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1782), - [sym_tuple_type] = STATE(1782), - [sym_unit_type] = STATE(1782), - [sym_generic_type] = STATE(1716), - [sym_generic_type_with_turbofish] = STATE(3695), - [sym_bounded_type] = STATE(1782), - [sym_use_bounds] = STATE(3802), - [sym_reference_type] = STATE(1782), - [sym_pointer_type] = STATE(1782), - [sym_never_type] = STATE(1782), - [sym_abstract_type] = STATE(1782), - [sym_dynamic_type] = STATE(1782), - [sym_macro_invocation] = STATE(1782), - [sym_scoped_identifier] = STATE(3436), - [sym_scoped_type_identifier] = STATE(1625), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [959] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2074), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(2074), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(2074), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(959), [sym_block_comment] = STATE(959), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_LBRACK] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3185), - [anon_sym_QMARK] = ACTIONS(3187), - [anon_sym_u8] = ACTIONS(3189), - [anon_sym_i8] = ACTIONS(3189), - [anon_sym_u16] = ACTIONS(3189), - [anon_sym_i16] = ACTIONS(3189), - [anon_sym_u32] = ACTIONS(3189), - [anon_sym_i32] = ACTIONS(3189), - [anon_sym_u64] = ACTIONS(3189), - [anon_sym_i64] = ACTIONS(3189), - [anon_sym_u128] = ACTIONS(3189), - [anon_sym_i128] = ACTIONS(3189), - [anon_sym_isize] = ACTIONS(3189), - [anon_sym_usize] = ACTIONS(3189), - [anon_sym_f32] = ACTIONS(3189), - [anon_sym_f64] = ACTIONS(3189), - [anon_sym_bool] = ACTIONS(3189), - [anon_sym_str] = ACTIONS(3189), - [anon_sym_char] = ACTIONS(3189), - [anon_sym_BANG] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3193), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3195), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3197), - [anon_sym_fn] = ACTIONS(3199), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3201), - [anon_sym_impl] = ACTIONS(3203), - [anon_sym_union] = ACTIONS(3201), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(3205), - [anon_sym_raw] = ACTIONS(3201), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3209), - [sym_super] = ACTIONS(3209), - [sym_crate] = ACTIONS(3209), - [sym_metavariable] = ACTIONS(3211), - }, - [STATE(960)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2086), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3584), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [960] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2284), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(960), [sym_block_comment] = STATE(960), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(961)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3124), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [961] = { + [sym_function_modifiers] = STATE(3753), + [sym_removed_trait_bound] = STATE(1529), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(1546), + [sym_bracketed_type] = STATE(3677), + [sym_lifetime] = STATE(3495), + [sym_array_type] = STATE(1529), + [sym_for_lifetimes] = STATE(1604), + [sym_function_type] = STATE(1529), + [sym_tuple_type] = STATE(1529), + [sym_unit_type] = STATE(1529), + [sym_generic_type] = STATE(1416), + [sym_generic_type_with_turbofish] = STATE(3809), + [sym_bounded_type] = STATE(1529), + [sym_use_bounds] = STATE(3495), + [sym_reference_type] = STATE(1529), + [sym_pointer_type] = STATE(1529), + [sym_never_type] = STATE(1529), + [sym_abstract_type] = STATE(1529), + [sym_dynamic_type] = STATE(1529), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(3347), + [sym_scoped_type_identifier] = STATE(1097), [sym_line_comment] = STATE(961), [sym_block_comment] = STATE(961), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3175), + [anon_sym_LBRACK] = ACTIONS(3177), + [anon_sym_STAR] = ACTIONS(3181), + [anon_sym_QMARK] = ACTIONS(3183), + [anon_sym_u8] = ACTIONS(3185), + [anon_sym_i8] = ACTIONS(3185), + [anon_sym_u16] = ACTIONS(3185), + [anon_sym_i16] = ACTIONS(3185), + [anon_sym_u32] = ACTIONS(3185), + [anon_sym_i32] = ACTIONS(3185), + [anon_sym_u64] = ACTIONS(3185), + [anon_sym_i64] = ACTIONS(3185), + [anon_sym_u128] = ACTIONS(3185), + [anon_sym_i128] = ACTIONS(3185), + [anon_sym_isize] = ACTIONS(3185), + [anon_sym_usize] = ACTIONS(3185), + [anon_sym_f32] = ACTIONS(3185), + [anon_sym_f64] = ACTIONS(3185), + [anon_sym_bool] = ACTIONS(3185), + [anon_sym_str] = ACTIONS(3185), + [anon_sym_char] = ACTIONS(3185), + [anon_sym_BANG] = ACTIONS(3187), + [anon_sym_AMP] = ACTIONS(3189), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3191), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(962)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2510), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2503), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2258), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(3193), + [anon_sym_fn] = ACTIONS(3195), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(3197), + [anon_sym_impl] = ACTIONS(3199), + [anon_sym_union] = ACTIONS(3197), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(3201), + [anon_sym_raw] = ACTIONS(3197), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3205), + [sym_super] = ACTIONS(3205), + [sym_crate] = ACTIONS(3205), + [sym_metavariable] = ACTIONS(3207), + }, + [962] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2083), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(962), [sym_block_comment] = STATE(962), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3359), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(3361), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(963)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3255), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3584), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [963] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2546), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(963), [sym_block_comment] = STATE(963), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(964)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3256), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3584), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [964] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2884), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(964), [sym_block_comment] = STATE(964), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(965)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2514), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [965] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2869), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(965), [sym_block_comment] = STATE(965), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(966)] = { - [sym_function_modifiers] = STATE(3775), - [sym_removed_trait_bound] = STATE(1530), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(1503), - [sym_bracketed_type] = STATE(3687), - [sym_lifetime] = STATE(1503), - [sym_array_type] = STATE(1530), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [966] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2415), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1530), - [sym_tuple_type] = STATE(1530), - [sym_unit_type] = STATE(1530), - [sym_generic_type] = STATE(1422), - [sym_generic_type_with_turbofish] = STATE(3817), - [sym_bounded_type] = STATE(1530), - [sym_use_bounds] = STATE(1503), - [sym_reference_type] = STATE(1530), - [sym_pointer_type] = STATE(1530), - [sym_never_type] = STATE(1530), - [sym_abstract_type] = STATE(1530), - [sym_dynamic_type] = STATE(1530), - [sym_macro_invocation] = STATE(1530), - [sym_scoped_identifier] = STATE(3346), - [sym_scoped_type_identifier] = STATE(1093), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(966), [sym_block_comment] = STATE(966), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3225), - [anon_sym_LBRACK] = ACTIONS(3227), - [anon_sym_STAR] = ACTIONS(3231), - [anon_sym_QMARK] = ACTIONS(3233), - [anon_sym_u8] = ACTIONS(3235), - [anon_sym_i8] = ACTIONS(3235), - [anon_sym_u16] = ACTIONS(3235), - [anon_sym_i16] = ACTIONS(3235), - [anon_sym_u32] = ACTIONS(3235), - [anon_sym_i32] = ACTIONS(3235), - [anon_sym_u64] = ACTIONS(3235), - [anon_sym_i64] = ACTIONS(3235), - [anon_sym_u128] = ACTIONS(3235), - [anon_sym_i128] = ACTIONS(3235), - [anon_sym_isize] = ACTIONS(3235), - [anon_sym_usize] = ACTIONS(3235), - [anon_sym_f32] = ACTIONS(3235), - [anon_sym_f64] = ACTIONS(3235), - [anon_sym_bool] = ACTIONS(3235), - [anon_sym_str] = ACTIONS(3235), - [anon_sym_char] = ACTIONS(3235), - [anon_sym_BANG] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3241), - [anon_sym_SQUOTE] = ACTIONS(3363), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3243), - [anon_sym_fn] = ACTIONS(3245), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3247), - [anon_sym_impl] = ACTIONS(3249), - [anon_sym_union] = ACTIONS(3247), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(3365), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(3251), - [anon_sym_raw] = ACTIONS(3247), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3255), - [sym_super] = ACTIONS(3255), - [sym_crate] = ACTIONS(3255), - [sym_metavariable] = ACTIONS(3257), - }, - [STATE(967)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2972), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), + [anon_sym_SQUOTE] = ACTIONS(3081), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [967] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2416), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(967), [sym_block_comment] = STATE(967), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(968)] = { - [sym_function_modifiers] = STATE(3775), - [sym_removed_trait_bound] = STATE(1542), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3537), - [sym_bracketed_type] = STATE(3687), - [sym_lifetime] = STATE(3537), - [sym_array_type] = STATE(2079), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [968] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2681), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1542), - [sym_tuple_type] = STATE(1542), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(1406), - [sym_generic_type_with_turbofish] = STATE(3817), - [sym_bounded_type] = STATE(1542), - [sym_use_bounds] = STATE(3537), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3425), - [sym_scoped_type_identifier] = STATE(1094), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(968), [sym_block_comment] = STATE(968), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3367), - [anon_sym_LPAREN] = ACTIONS(3343), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(3233), - [anon_sym_u8] = ACTIONS(3345), - [anon_sym_i8] = ACTIONS(3345), - [anon_sym_u16] = ACTIONS(3345), - [anon_sym_i16] = ACTIONS(3345), - [anon_sym_u32] = ACTIONS(3345), - [anon_sym_i32] = ACTIONS(3345), - [anon_sym_u64] = ACTIONS(3345), - [anon_sym_i64] = ACTIONS(3345), - [anon_sym_u128] = ACTIONS(3345), - [anon_sym_i128] = ACTIONS(3345), - [anon_sym_isize] = ACTIONS(3345), - [anon_sym_usize] = ACTIONS(3345), - [anon_sym_f32] = ACTIONS(3345), - [anon_sym_f64] = ACTIONS(3345), - [anon_sym_bool] = ACTIONS(3345), - [anon_sym_str] = ACTIONS(3345), - [anon_sym_char] = ACTIONS(3345), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3241), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3347), - [anon_sym_fn] = ACTIONS(3245), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3351), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(3351), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(3351), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3255), - [sym_super] = ACTIONS(3255), - [sym_crate] = ACTIONS(3255), - [sym_metavariable] = ACTIONS(3353), - }, - [STATE(969)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2086), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [969] = { + [sym_function_modifiers] = STATE(3634), + [sym_removed_trait_bound] = STATE(1782), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(1921), + [sym_bracketed_type] = STATE(3694), + [sym_lifetime] = STATE(3777), + [sym_array_type] = STATE(1782), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(1782), + [sym_tuple_type] = STATE(1782), + [sym_unit_type] = STATE(1782), + [sym_generic_type] = STATE(1688), + [sym_generic_type_with_turbofish] = STATE(3685), + [sym_bounded_type] = STATE(1782), + [sym_use_bounds] = STATE(3777), + [sym_reference_type] = STATE(1782), + [sym_pointer_type] = STATE(1782), + [sym_never_type] = STATE(1782), + [sym_abstract_type] = STATE(1782), + [sym_dynamic_type] = STATE(1782), + [sym_macro_invocation] = STATE(1782), + [sym_scoped_identifier] = STATE(3425), + [sym_scoped_type_identifier] = STATE(1603), [sym_line_comment] = STATE(969), [sym_block_comment] = STATE(969), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3215), + [anon_sym_LPAREN] = ACTIONS(3217), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_STAR] = ACTIONS(3223), + [anon_sym_QMARK] = ACTIONS(3225), + [anon_sym_u8] = ACTIONS(3227), + [anon_sym_i8] = ACTIONS(3227), + [anon_sym_u16] = ACTIONS(3227), + [anon_sym_i16] = ACTIONS(3227), + [anon_sym_u32] = ACTIONS(3227), + [anon_sym_i32] = ACTIONS(3227), + [anon_sym_u64] = ACTIONS(3227), + [anon_sym_i64] = ACTIONS(3227), + [anon_sym_u128] = ACTIONS(3227), + [anon_sym_i128] = ACTIONS(3227), + [anon_sym_isize] = ACTIONS(3227), + [anon_sym_usize] = ACTIONS(3227), + [anon_sym_f32] = ACTIONS(3227), + [anon_sym_f64] = ACTIONS(3227), + [anon_sym_bool] = ACTIONS(3227), + [anon_sym_str] = ACTIONS(3227), + [anon_sym_char] = ACTIONS(3227), + [anon_sym_BANG] = ACTIONS(3229), + [anon_sym_AMP] = ACTIONS(3231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3233), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(970)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2492), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(3235), + [anon_sym_fn] = ACTIONS(3237), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(3239), + [anon_sym_impl] = ACTIONS(3241), + [anon_sym_union] = ACTIONS(3239), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(3243), + [anon_sym_raw] = ACTIONS(3239), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3247), + [sym_super] = ACTIONS(3247), + [sym_crate] = ACTIONS(3247), + [sym_metavariable] = ACTIONS(3249), + }, + [970] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2894), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(970), [sym_block_comment] = STATE(970), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(971)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2520), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [971] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2684), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(971), [sym_block_comment] = STATE(971), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(972)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2896), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [972] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2417), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2501), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2257), [sym_line_comment] = STATE(972), [sym_block_comment] = STATE(972), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3355), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(3357), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(973)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2816), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [973] = { + [sym_function_modifiers] = STATE(3634), + [sym_removed_trait_bound] = STATE(1782), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(1922), + [sym_bracketed_type] = STATE(3694), + [sym_lifetime] = STATE(3777), + [sym_array_type] = STATE(1782), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(1782), + [sym_tuple_type] = STATE(1782), + [sym_unit_type] = STATE(1782), + [sym_generic_type] = STATE(1688), + [sym_generic_type_with_turbofish] = STATE(3685), + [sym_bounded_type] = STATE(1782), + [sym_use_bounds] = STATE(3777), + [sym_reference_type] = STATE(1782), + [sym_pointer_type] = STATE(1782), + [sym_never_type] = STATE(1782), + [sym_abstract_type] = STATE(1782), + [sym_dynamic_type] = STATE(1782), + [sym_macro_invocation] = STATE(1782), + [sym_scoped_identifier] = STATE(3425), + [sym_scoped_type_identifier] = STATE(1603), [sym_line_comment] = STATE(973), [sym_block_comment] = STATE(973), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3215), + [anon_sym_LPAREN] = ACTIONS(3217), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_STAR] = ACTIONS(3223), + [anon_sym_QMARK] = ACTIONS(3225), + [anon_sym_u8] = ACTIONS(3227), + [anon_sym_i8] = ACTIONS(3227), + [anon_sym_u16] = ACTIONS(3227), + [anon_sym_i16] = ACTIONS(3227), + [anon_sym_u32] = ACTIONS(3227), + [anon_sym_i32] = ACTIONS(3227), + [anon_sym_u64] = ACTIONS(3227), + [anon_sym_i64] = ACTIONS(3227), + [anon_sym_u128] = ACTIONS(3227), + [anon_sym_i128] = ACTIONS(3227), + [anon_sym_isize] = ACTIONS(3227), + [anon_sym_usize] = ACTIONS(3227), + [anon_sym_f32] = ACTIONS(3227), + [anon_sym_f64] = ACTIONS(3227), + [anon_sym_bool] = ACTIONS(3227), + [anon_sym_str] = ACTIONS(3227), + [anon_sym_char] = ACTIONS(3227), + [anon_sym_BANG] = ACTIONS(3229), + [anon_sym_AMP] = ACTIONS(3231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3233), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(974)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2480), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(3235), + [anon_sym_fn] = ACTIONS(3237), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(3239), + [anon_sym_impl] = ACTIONS(3241), + [anon_sym_union] = ACTIONS(3239), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(3243), + [anon_sym_raw] = ACTIONS(3239), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3247), + [sym_super] = ACTIONS(3247), + [sym_crate] = ACTIONS(3247), + [sym_metavariable] = ACTIONS(3249), + }, + [974] = { + [sym_function_modifiers] = STATE(3634), + [sym_removed_trait_bound] = STATE(1782), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(1927), + [sym_bracketed_type] = STATE(3694), + [sym_lifetime] = STATE(3777), + [sym_array_type] = STATE(1782), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(1782), + [sym_tuple_type] = STATE(1782), + [sym_unit_type] = STATE(1782), + [sym_generic_type] = STATE(1688), + [sym_generic_type_with_turbofish] = STATE(3685), + [sym_bounded_type] = STATE(1782), + [sym_use_bounds] = STATE(3777), + [sym_reference_type] = STATE(1782), + [sym_pointer_type] = STATE(1782), + [sym_never_type] = STATE(1782), + [sym_abstract_type] = STATE(1782), + [sym_dynamic_type] = STATE(1782), + [sym_macro_invocation] = STATE(1782), + [sym_scoped_identifier] = STATE(3425), + [sym_scoped_type_identifier] = STATE(1603), [sym_line_comment] = STATE(974), [sym_block_comment] = STATE(974), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3215), + [anon_sym_LPAREN] = ACTIONS(3217), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_STAR] = ACTIONS(3223), + [anon_sym_QMARK] = ACTIONS(3225), + [anon_sym_u8] = ACTIONS(3227), + [anon_sym_i8] = ACTIONS(3227), + [anon_sym_u16] = ACTIONS(3227), + [anon_sym_i16] = ACTIONS(3227), + [anon_sym_u32] = ACTIONS(3227), + [anon_sym_i32] = ACTIONS(3227), + [anon_sym_u64] = ACTIONS(3227), + [anon_sym_i64] = ACTIONS(3227), + [anon_sym_u128] = ACTIONS(3227), + [anon_sym_i128] = ACTIONS(3227), + [anon_sym_isize] = ACTIONS(3227), + [anon_sym_usize] = ACTIONS(3227), + [anon_sym_f32] = ACTIONS(3227), + [anon_sym_f64] = ACTIONS(3227), + [anon_sym_bool] = ACTIONS(3227), + [anon_sym_str] = ACTIONS(3227), + [anon_sym_char] = ACTIONS(3227), + [anon_sym_BANG] = ACTIONS(3229), + [anon_sym_AMP] = ACTIONS(3231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3233), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(975)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2483), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(3235), + [anon_sym_fn] = ACTIONS(3237), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(3239), + [anon_sym_impl] = ACTIONS(3241), + [anon_sym_union] = ACTIONS(3239), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(3243), + [anon_sym_raw] = ACTIONS(3239), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3247), + [sym_super] = ACTIONS(3247), + [sym_crate] = ACTIONS(3247), + [sym_metavariable] = ACTIONS(3249), + }, + [975] = { + [sym_function_modifiers] = STATE(3686), + [sym_removed_trait_bound] = STATE(2053), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(3651), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3651), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2053), + [sym_tuple_type] = STATE(2053), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2042), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2053), + [sym_use_bounds] = STATE(3651), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2249), [sym_line_comment] = STATE(975), [sym_block_comment] = STATE(975), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3359), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1618), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(976)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2770), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1632), + [anon_sym_for] = ACTIONS(3361), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [976] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2065), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(976), [sym_block_comment] = STATE(976), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(977)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2091), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(2091), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(2091), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [977] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2995), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(977), [sym_block_comment] = STATE(977), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(978)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2910), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [978] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2075), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(978), [sym_block_comment] = STATE(978), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(979)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2787), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [979] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2076), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(3754), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2076), + [sym_tuple_type] = STATE(2076), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2038), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2076), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2018), [sym_line_comment] = STATE(979), [sym_block_comment] = STATE(979), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3363), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(980)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2484), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2506), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2265), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [980] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2086), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(980), [sym_block_comment] = STATE(980), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3369), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(3371), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(981)] = { - [sym_function_modifiers] = STATE(3644), - [sym_removed_trait_bound] = STATE(1782), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(1940), - [sym_bracketed_type] = STATE(3704), - [sym_lifetime] = STATE(3802), - [sym_array_type] = STATE(1782), - [sym_for_lifetimes] = STATE(1603), - [sym_function_type] = STATE(1782), - [sym_tuple_type] = STATE(1782), - [sym_unit_type] = STATE(1782), - [sym_generic_type] = STATE(1716), - [sym_generic_type_with_turbofish] = STATE(3695), - [sym_bounded_type] = STATE(1782), - [sym_use_bounds] = STATE(3802), - [sym_reference_type] = STATE(1782), - [sym_pointer_type] = STATE(1782), - [sym_never_type] = STATE(1782), - [sym_abstract_type] = STATE(1782), - [sym_dynamic_type] = STATE(1782), - [sym_macro_invocation] = STATE(1782), - [sym_scoped_identifier] = STATE(3436), - [sym_scoped_type_identifier] = STATE(1625), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [981] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2051), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(981), [sym_block_comment] = STATE(981), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_LBRACK] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3185), - [anon_sym_QMARK] = ACTIONS(3187), - [anon_sym_u8] = ACTIONS(3189), - [anon_sym_i8] = ACTIONS(3189), - [anon_sym_u16] = ACTIONS(3189), - [anon_sym_i16] = ACTIONS(3189), - [anon_sym_u32] = ACTIONS(3189), - [anon_sym_i32] = ACTIONS(3189), - [anon_sym_u64] = ACTIONS(3189), - [anon_sym_i64] = ACTIONS(3189), - [anon_sym_u128] = ACTIONS(3189), - [anon_sym_i128] = ACTIONS(3189), - [anon_sym_isize] = ACTIONS(3189), - [anon_sym_usize] = ACTIONS(3189), - [anon_sym_f32] = ACTIONS(3189), - [anon_sym_f64] = ACTIONS(3189), - [anon_sym_bool] = ACTIONS(3189), - [anon_sym_str] = ACTIONS(3189), - [anon_sym_char] = ACTIONS(3189), - [anon_sym_BANG] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3193), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3195), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3197), - [anon_sym_fn] = ACTIONS(3199), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3201), - [anon_sym_impl] = ACTIONS(3203), - [anon_sym_union] = ACTIONS(3201), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(3205), - [anon_sym_raw] = ACTIONS(3201), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3209), - [sym_super] = ACTIONS(3209), - [sym_crate] = ACTIONS(3209), - [sym_metavariable] = ACTIONS(3211), - }, - [STATE(982)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2781), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [982] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2059), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(982), [sym_block_comment] = STATE(982), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(983)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2088), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3584), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [983] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2513), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(983), [sym_block_comment] = STATE(983), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(984)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2071), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3584), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [984] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2332), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(984), [sym_block_comment] = STATE(984), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(985)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2077), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [985] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2424), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(985), [sym_block_comment] = STATE(985), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(986)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2076), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3584), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [986] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2425), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(986), [sym_block_comment] = STATE(986), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(987)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2070), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [987] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2426), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(987), [sym_block_comment] = STATE(987), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(988)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2096), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3776), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2096), - [sym_tuple_type] = STATE(2096), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2058), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2096), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2032), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [988] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2427), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(988), [sym_block_comment] = STATE(988), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3373), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(989)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2080), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [989] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2703), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(989), [sym_block_comment] = STATE(989), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(990)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2090), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [990] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2841), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(990), [sym_block_comment] = STATE(990), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(991)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2069), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [991] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2935), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(991), [sym_block_comment] = STATE(991), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(992)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2532), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [992] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2704), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(992), [sym_block_comment] = STATE(992), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(993)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2311), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [993] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2705), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(993), [sym_block_comment] = STATE(993), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(994)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2507), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [994] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2939), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(994), [sym_block_comment] = STATE(994), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(995)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2508), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [995] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2709), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(995), [sym_block_comment] = STATE(995), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(996)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2509), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [996] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2069), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(996), [sym_block_comment] = STATE(996), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(997)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2406), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [997] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2080), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(997), [sym_block_comment] = STATE(997), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(998)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2713), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [998] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2084), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(998), [sym_block_comment] = STATE(998), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(999)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2676), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [999] = { + [sym_function_modifiers] = STATE(3753), + [sym_removed_trait_bound] = STATE(1529), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(1440), + [sym_bracketed_type] = STATE(3677), + [sym_lifetime] = STATE(3495), + [sym_array_type] = STATE(1529), + [sym_for_lifetimes] = STATE(1604), + [sym_function_type] = STATE(1529), + [sym_tuple_type] = STATE(1529), + [sym_unit_type] = STATE(1529), + [sym_generic_type] = STATE(1416), + [sym_generic_type_with_turbofish] = STATE(3809), + [sym_bounded_type] = STATE(1529), + [sym_use_bounds] = STATE(3495), + [sym_reference_type] = STATE(1529), + [sym_pointer_type] = STATE(1529), + [sym_never_type] = STATE(1529), + [sym_abstract_type] = STATE(1529), + [sym_dynamic_type] = STATE(1529), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(3347), + [sym_scoped_type_identifier] = STATE(1097), [sym_line_comment] = STATE(999), [sym_block_comment] = STATE(999), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3175), + [anon_sym_LBRACK] = ACTIONS(3177), + [anon_sym_STAR] = ACTIONS(3181), + [anon_sym_QMARK] = ACTIONS(3183), + [anon_sym_u8] = ACTIONS(3185), + [anon_sym_i8] = ACTIONS(3185), + [anon_sym_u16] = ACTIONS(3185), + [anon_sym_i16] = ACTIONS(3185), + [anon_sym_u32] = ACTIONS(3185), + [anon_sym_i32] = ACTIONS(3185), + [anon_sym_u64] = ACTIONS(3185), + [anon_sym_i64] = ACTIONS(3185), + [anon_sym_u128] = ACTIONS(3185), + [anon_sym_i128] = ACTIONS(3185), + [anon_sym_isize] = ACTIONS(3185), + [anon_sym_usize] = ACTIONS(3185), + [anon_sym_f32] = ACTIONS(3185), + [anon_sym_f64] = ACTIONS(3185), + [anon_sym_bool] = ACTIONS(3185), + [anon_sym_str] = ACTIONS(3185), + [anon_sym_char] = ACTIONS(3185), + [anon_sym_BANG] = ACTIONS(3187), + [anon_sym_AMP] = ACTIONS(3189), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3191), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(1000)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2957), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(3193), + [anon_sym_fn] = ACTIONS(3195), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(3197), + [anon_sym_impl] = ACTIONS(3199), + [anon_sym_union] = ACTIONS(3197), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(3201), + [anon_sym_raw] = ACTIONS(3197), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3205), + [sym_super] = ACTIONS(3205), + [sym_crate] = ACTIONS(3205), + [sym_metavariable] = ACTIONS(3207), + }, + [1000] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2308), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1000), [sym_block_comment] = STATE(1000), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(1001)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2733), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [1001] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2432), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1001), [sym_block_comment] = STATE(1001), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(1002)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2735), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [1002] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2433), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1002), [sym_block_comment] = STATE(1002), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(1003)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2964), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [1003] = { + [sym_function_modifiers] = STATE(3634), + [sym_removed_trait_bound] = STATE(1782), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(1934), + [sym_bracketed_type] = STATE(3694), + [sym_lifetime] = STATE(3777), + [sym_array_type] = STATE(1782), + [sym_for_lifetimes] = STATE(1607), + [sym_function_type] = STATE(1782), + [sym_tuple_type] = STATE(1782), + [sym_unit_type] = STATE(1782), + [sym_generic_type] = STATE(1688), + [sym_generic_type_with_turbofish] = STATE(3685), + [sym_bounded_type] = STATE(1782), + [sym_use_bounds] = STATE(3777), + [sym_reference_type] = STATE(1782), + [sym_pointer_type] = STATE(1782), + [sym_never_type] = STATE(1782), + [sym_abstract_type] = STATE(1782), + [sym_dynamic_type] = STATE(1782), + [sym_macro_invocation] = STATE(1782), + [sym_scoped_identifier] = STATE(3425), + [sym_scoped_type_identifier] = STATE(1603), [sym_line_comment] = STATE(1003), [sym_block_comment] = STATE(1003), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3215), + [anon_sym_LPAREN] = ACTIONS(3217), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_STAR] = ACTIONS(3223), + [anon_sym_QMARK] = ACTIONS(3225), + [anon_sym_u8] = ACTIONS(3227), + [anon_sym_i8] = ACTIONS(3227), + [anon_sym_u16] = ACTIONS(3227), + [anon_sym_i16] = ACTIONS(3227), + [anon_sym_u32] = ACTIONS(3227), + [anon_sym_i32] = ACTIONS(3227), + [anon_sym_u64] = ACTIONS(3227), + [anon_sym_i64] = ACTIONS(3227), + [anon_sym_u128] = ACTIONS(3227), + [anon_sym_i128] = ACTIONS(3227), + [anon_sym_isize] = ACTIONS(3227), + [anon_sym_usize] = ACTIONS(3227), + [anon_sym_f32] = ACTIONS(3227), + [anon_sym_f64] = ACTIONS(3227), + [anon_sym_bool] = ACTIONS(3227), + [anon_sym_str] = ACTIONS(3227), + [anon_sym_char] = ACTIONS(3227), + [anon_sym_BANG] = ACTIONS(3229), + [anon_sym_AMP] = ACTIONS(3231), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3233), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(1004)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2755), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(3235), + [anon_sym_fn] = ACTIONS(3237), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(3239), + [anon_sym_impl] = ACTIONS(3241), + [anon_sym_union] = ACTIONS(3239), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(3243), + [anon_sym_raw] = ACTIONS(3239), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3247), + [sym_super] = ACTIONS(3247), + [sym_crate] = ACTIONS(3247), + [sym_metavariable] = ACTIONS(3249), + }, + [1004] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2551), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1004), [sym_block_comment] = STATE(1004), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(1005)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2088), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [1005] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2959), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1005), [sym_block_comment] = STATE(1005), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(1006)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2071), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [1006] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2648), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1006), [sym_block_comment] = STATE(1006), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(1007)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2076), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [1007] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2714), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1007), [sym_block_comment] = STATE(1007), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(1008)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2294), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [1008] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2434), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1008), [sym_block_comment] = STATE(1008), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(1009)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2315), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [1009] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2435), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1009), [sym_block_comment] = STATE(1009), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(1010)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2414), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [1010] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2436), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1010), [sym_block_comment] = STATE(1010), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(1011)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2415), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [1011] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2437), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1011), [sym_block_comment] = STATE(1011), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(1012)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3315), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [1012] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2309), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1012), [sym_block_comment] = STATE(1012), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(1013)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2549), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [1013] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2715), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1013), [sym_block_comment] = STATE(1013), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(1014)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2983), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [1014] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2716), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1014), [sym_block_comment] = STATE(1014), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(1015)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2796), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [1015] = { + [sym_function_modifiers] = STATE(3753), + [sym_removed_trait_bound] = STATE(1529), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(1441), + [sym_bracketed_type] = STATE(3677), + [sym_lifetime] = STATE(3495), + [sym_array_type] = STATE(1529), + [sym_for_lifetimes] = STATE(1604), + [sym_function_type] = STATE(1529), + [sym_tuple_type] = STATE(1529), + [sym_unit_type] = STATE(1529), + [sym_generic_type] = STATE(1416), + [sym_generic_type_with_turbofish] = STATE(3809), + [sym_bounded_type] = STATE(1529), + [sym_use_bounds] = STATE(3495), + [sym_reference_type] = STATE(1529), + [sym_pointer_type] = STATE(1529), + [sym_never_type] = STATE(1529), + [sym_abstract_type] = STATE(1529), + [sym_dynamic_type] = STATE(1529), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(3347), + [sym_scoped_type_identifier] = STATE(1097), [sym_line_comment] = STATE(1015), [sym_block_comment] = STATE(1015), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3175), + [anon_sym_LBRACK] = ACTIONS(3177), + [anon_sym_STAR] = ACTIONS(3181), + [anon_sym_QMARK] = ACTIONS(3183), + [anon_sym_u8] = ACTIONS(3185), + [anon_sym_i8] = ACTIONS(3185), + [anon_sym_u16] = ACTIONS(3185), + [anon_sym_i16] = ACTIONS(3185), + [anon_sym_u32] = ACTIONS(3185), + [anon_sym_i32] = ACTIONS(3185), + [anon_sym_u64] = ACTIONS(3185), + [anon_sym_i64] = ACTIONS(3185), + [anon_sym_u128] = ACTIONS(3185), + [anon_sym_i128] = ACTIONS(3185), + [anon_sym_isize] = ACTIONS(3185), + [anon_sym_usize] = ACTIONS(3185), + [anon_sym_f32] = ACTIONS(3185), + [anon_sym_f64] = ACTIONS(3185), + [anon_sym_bool] = ACTIONS(3185), + [anon_sym_str] = ACTIONS(3185), + [anon_sym_char] = ACTIONS(3185), + [anon_sym_BANG] = ACTIONS(3187), + [anon_sym_AMP] = ACTIONS(3189), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3191), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(1016)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2806), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(3193), + [anon_sym_fn] = ACTIONS(3195), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(3197), + [anon_sym_impl] = ACTIONS(3199), + [anon_sym_union] = ACTIONS(3197), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(3201), + [anon_sym_raw] = ACTIONS(3197), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3205), + [sym_super] = ACTIONS(3205), + [sym_crate] = ACTIONS(3205), + [sym_metavariable] = ACTIONS(3207), + }, + [1016] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2057), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1016), [sym_block_comment] = STATE(1016), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(1017)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2416), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [1017] = { + [sym_function_modifiers] = STATE(3686), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2069), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3651), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3651), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2258), [sym_line_comment] = STATE(1017), [sym_block_comment] = STATE(1017), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1616), + [anon_sym_QMARK] = ACTIONS(1618), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1622), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(1018)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2417), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1632), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1636), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1638), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [1018] = { + [sym_function_modifiers] = STATE(3686), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2080), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3651), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3651), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2258), [sym_line_comment] = STATE(1018), [sym_block_comment] = STATE(1018), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1616), + [anon_sym_QMARK] = ACTIONS(1618), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1622), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(1019)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2418), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1632), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1636), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1638), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [1019] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2397), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1019), [sym_block_comment] = STATE(1019), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(1020)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2419), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [1020] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2439), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1020), [sym_block_comment] = STATE(1020), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(1021)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2316), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [1021] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2311), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1021), [sym_block_comment] = STATE(1021), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(1022)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2842), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [1022] = { + [sym_function_modifiers] = STATE(3686), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2084), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3651), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3651), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2258), [sym_line_comment] = STATE(1022), [sym_block_comment] = STATE(1022), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1616), + [anon_sym_QMARK] = ACTIONS(1618), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1622), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(1023)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2844), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1632), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1636), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1638), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [1023] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2976), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1023), [sym_block_comment] = STATE(1023), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(1024)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2085), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [1024] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2722), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1024), [sym_block_comment] = STATE(1024), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(1025)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2423), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [1025] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2312), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1025), [sym_block_comment] = STATE(1025), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(1026)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2424), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [1026] = { + [sym_function_modifiers] = STATE(3753), + [sym_removed_trait_bound] = STATE(1529), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(1442), + [sym_bracketed_type] = STATE(3677), + [sym_lifetime] = STATE(3495), + [sym_array_type] = STATE(1529), + [sym_for_lifetimes] = STATE(1604), + [sym_function_type] = STATE(1529), + [sym_tuple_type] = STATE(1529), + [sym_unit_type] = STATE(1529), + [sym_generic_type] = STATE(1416), + [sym_generic_type_with_turbofish] = STATE(3809), + [sym_bounded_type] = STATE(1529), + [sym_use_bounds] = STATE(3495), + [sym_reference_type] = STATE(1529), + [sym_pointer_type] = STATE(1529), + [sym_never_type] = STATE(1529), + [sym_abstract_type] = STATE(1529), + [sym_dynamic_type] = STATE(1529), + [sym_macro_invocation] = STATE(1529), + [sym_scoped_identifier] = STATE(3347), + [sym_scoped_type_identifier] = STATE(1097), [sym_line_comment] = STATE(1026), [sym_block_comment] = STATE(1026), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3175), + [anon_sym_LBRACK] = ACTIONS(3177), + [anon_sym_STAR] = ACTIONS(3181), + [anon_sym_QMARK] = ACTIONS(3183), + [anon_sym_u8] = ACTIONS(3185), + [anon_sym_i8] = ACTIONS(3185), + [anon_sym_u16] = ACTIONS(3185), + [anon_sym_i16] = ACTIONS(3185), + [anon_sym_u32] = ACTIONS(3185), + [anon_sym_i32] = ACTIONS(3185), + [anon_sym_u64] = ACTIONS(3185), + [anon_sym_i64] = ACTIONS(3185), + [anon_sym_u128] = ACTIONS(3185), + [anon_sym_i128] = ACTIONS(3185), + [anon_sym_isize] = ACTIONS(3185), + [anon_sym_usize] = ACTIONS(3185), + [anon_sym_f32] = ACTIONS(3185), + [anon_sym_f64] = ACTIONS(3185), + [anon_sym_bool] = ACTIONS(3185), + [anon_sym_str] = ACTIONS(3185), + [anon_sym_char] = ACTIONS(3185), + [anon_sym_BANG] = ACTIONS(3187), + [anon_sym_AMP] = ACTIONS(3189), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3191), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(1027)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2318), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(3193), + [anon_sym_fn] = ACTIONS(3195), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(3197), + [anon_sym_impl] = ACTIONS(3199), + [anon_sym_union] = ACTIONS(3197), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(3201), + [anon_sym_raw] = ACTIONS(3197), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3205), + [sym_super] = ACTIONS(3205), + [sym_crate] = ACTIONS(3205), + [sym_metavariable] = ACTIONS(3207), + }, + [1027] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2313), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1027), [sym_block_comment] = STATE(1027), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(1028)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2077), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3584), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [1028] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2286), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1028), [sym_block_comment] = STATE(1028), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(1029)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2998), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [1029] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2788), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1029), [sym_block_comment] = STATE(1029), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(1030)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2628), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [1030] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2487), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1030), [sym_block_comment] = STATE(1030), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(1031)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2319), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [1031] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(3003), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1031), [sym_block_comment] = STATE(1031), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(1032)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2823), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [1032] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2488), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1032), [sym_block_comment] = STATE(1032), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(1033)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2321), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [1033] = { + [sym_function_modifiers] = STATE(3686), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2065), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3651), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3651), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2258), [sym_line_comment] = STATE(1033), [sym_block_comment] = STATE(1033), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1616), + [anon_sym_QMARK] = ACTIONS(1618), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1622), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(1034)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3059), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1632), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1636), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1638), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [1034] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2489), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1034), [sym_block_comment] = STATE(1034), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(1035)] = { - [sym_function_modifiers] = STATE(3775), - [sym_removed_trait_bound] = STATE(1530), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(1541), - [sym_bracketed_type] = STATE(3687), - [sym_lifetime] = STATE(3537), - [sym_array_type] = STATE(1530), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [1035] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2320), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1530), - [sym_tuple_type] = STATE(1530), - [sym_unit_type] = STATE(1530), - [sym_generic_type] = STATE(1422), - [sym_generic_type_with_turbofish] = STATE(3817), - [sym_bounded_type] = STATE(1530), - [sym_use_bounds] = STATE(3537), - [sym_reference_type] = STATE(1530), - [sym_pointer_type] = STATE(1530), - [sym_never_type] = STATE(1530), - [sym_abstract_type] = STATE(1530), - [sym_dynamic_type] = STATE(1530), - [sym_macro_invocation] = STATE(1530), - [sym_scoped_identifier] = STATE(3346), - [sym_scoped_type_identifier] = STATE(1093), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1035), [sym_block_comment] = STATE(1035), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3225), - [anon_sym_LBRACK] = ACTIONS(3227), - [anon_sym_STAR] = ACTIONS(3231), - [anon_sym_QMARK] = ACTIONS(3233), - [anon_sym_u8] = ACTIONS(3235), - [anon_sym_i8] = ACTIONS(3235), - [anon_sym_u16] = ACTIONS(3235), - [anon_sym_i16] = ACTIONS(3235), - [anon_sym_u32] = ACTIONS(3235), - [anon_sym_i32] = ACTIONS(3235), - [anon_sym_u64] = ACTIONS(3235), - [anon_sym_i64] = ACTIONS(3235), - [anon_sym_u128] = ACTIONS(3235), - [anon_sym_i128] = ACTIONS(3235), - [anon_sym_isize] = ACTIONS(3235), - [anon_sym_usize] = ACTIONS(3235), - [anon_sym_f32] = ACTIONS(3235), - [anon_sym_f64] = ACTIONS(3235), - [anon_sym_bool] = ACTIONS(3235), - [anon_sym_str] = ACTIONS(3235), - [anon_sym_char] = ACTIONS(3235), - [anon_sym_BANG] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3241), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3243), - [anon_sym_fn] = ACTIONS(3245), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3247), - [anon_sym_impl] = ACTIONS(3249), - [anon_sym_union] = ACTIONS(3247), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(3251), - [anon_sym_raw] = ACTIONS(3247), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3255), - [sym_super] = ACTIONS(3255), - [sym_crate] = ACTIONS(3255), - [sym_metavariable] = ACTIONS(3257), - }, - [STATE(1036)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3024), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [1036] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2490), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1036), [sym_block_comment] = STATE(1036), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(1037)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2301), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [1037] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2621), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1037), [sym_block_comment] = STATE(1037), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(1038)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2976), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [1038] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(3330), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1038), [sym_block_comment] = STATE(1038), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(1039)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2070), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3584), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [1039] = { + [sym_function_modifiers] = STATE(3686), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2075), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3651), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3651), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2258), [sym_line_comment] = STATE(1039), [sym_block_comment] = STATE(1039), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1616), + [anon_sym_QMARK] = ACTIONS(1618), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1622), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(1040)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2096), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3584), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3584), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2096), - [sym_tuple_type] = STATE(2096), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2058), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2096), - [sym_use_bounds] = STATE(3584), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2235), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1632), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1636), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1638), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [1040] = { + [sym_function_modifiers] = STATE(3686), + [sym_removed_trait_bound] = STATE(2076), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(3651), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3651), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2076), + [sym_tuple_type] = STATE(2076), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2038), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2076), + [sym_use_bounds] = STATE(3651), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2238), [sym_line_comment] = STATE(1040), [sym_block_comment] = STATE(1040), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3375), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3365), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1618), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(1041)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2080), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3584), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1632), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [1041] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2659), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1041), [sym_block_comment] = STATE(1041), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(1042)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2337), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [1042] = { + [sym_function_modifiers] = STATE(3686), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2086), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3651), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3651), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2258), [sym_line_comment] = STATE(1042), [sym_block_comment] = STATE(1042), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1616), + [anon_sym_QMARK] = ACTIONS(1618), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1622), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(1043)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2081), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3584), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1632), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1636), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1638), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [1043] = { + [sym_function_modifiers] = STATE(3686), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2051), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3651), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3651), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2258), [sym_line_comment] = STATE(1043), [sym_block_comment] = STATE(1043), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1616), + [anon_sym_QMARK] = ACTIONS(1618), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1622), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(1044)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2069), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3584), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1632), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1636), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1638), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [1044] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2054), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1044), [sym_block_comment] = STATE(1044), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(1045)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2592), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [1045] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2053), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(3754), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2053), + [sym_tuple_type] = STATE(2053), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2042), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2053), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2028), [sym_line_comment] = STATE(1045), [sym_block_comment] = STATE(1045), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3367), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(1046)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3107), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(3369), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [1046] = { + [sym_function_modifiers] = STATE(3686), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(3311), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3651), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1616), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3651), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2258), [sym_line_comment] = STATE(1046), [sym_block_comment] = STATE(1046), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1616), + [anon_sym_QMARK] = ACTIONS(1618), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(1622), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(1047)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3063), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1632), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1636), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1638), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [1047] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2929), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1047), [sym_block_comment] = STATE(1047), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(1048)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2751), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [1048] = { + [sym_function_modifiers] = STATE(3753), + [sym_removed_trait_bound] = STATE(1432), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(3495), + [sym_bracketed_type] = STATE(3677), + [sym_lifetime] = STATE(3495), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1604), + [sym_function_type] = STATE(1432), + [sym_tuple_type] = STATE(1432), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(1409), + [sym_generic_type_with_turbofish] = STATE(3809), + [sym_bounded_type] = STATE(1432), + [sym_use_bounds] = STATE(3495), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3411), + [sym_scoped_type_identifier] = STATE(1086), [sym_line_comment] = STATE(1048), [sym_block_comment] = STATE(1048), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3371), + [anon_sym_LPAREN] = ACTIONS(3339), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(3183), + [anon_sym_u8] = ACTIONS(3341), + [anon_sym_i8] = ACTIONS(3341), + [anon_sym_u16] = ACTIONS(3341), + [anon_sym_i16] = ACTIONS(3341), + [anon_sym_u32] = ACTIONS(3341), + [anon_sym_i32] = ACTIONS(3341), + [anon_sym_u64] = ACTIONS(3341), + [anon_sym_i64] = ACTIONS(3341), + [anon_sym_u128] = ACTIONS(3341), + [anon_sym_i128] = ACTIONS(3341), + [anon_sym_isize] = ACTIONS(3341), + [anon_sym_usize] = ACTIONS(3341), + [anon_sym_f32] = ACTIONS(3341), + [anon_sym_f64] = ACTIONS(3341), + [anon_sym_bool] = ACTIONS(3341), + [anon_sym_str] = ACTIONS(3341), + [anon_sym_char] = ACTIONS(3341), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3191), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(1049)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2326), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(3343), + [anon_sym_fn] = ACTIONS(3195), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(3347), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(3347), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(3347), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3205), + [sym_super] = ACTIONS(3205), + [sym_crate] = ACTIONS(3205), + [sym_metavariable] = ACTIONS(3349), + }, + [1049] = { + [sym_function_modifiers] = STATE(3806), + [sym_removed_trait_bound] = STATE(2068), + [sym_extern_modifier] = STATE(2431), + [sym__type] = STATE(2081), + [sym_bracketed_type] = STATE(3736), + [sym_lifetime] = STATE(3754), + [sym_array_type] = STATE(2068), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(2068), + [sym_tuple_type] = STATE(2068), + [sym_unit_type] = STATE(2068), + [sym_generic_type] = STATE(2035), + [sym_generic_type_with_turbofish] = STATE(3731), + [sym_bounded_type] = STATE(2068), + [sym_use_bounds] = STATE(3754), + [sym_reference_type] = STATE(2068), + [sym_pointer_type] = STATE(2068), + [sym_never_type] = STATE(2068), + [sym_abstract_type] = STATE(2068), + [sym_dynamic_type] = STATE(2068), + [sym_macro_invocation] = STATE(2068), + [sym_scoped_identifier] = STATE(3454), + [sym_scoped_type_identifier] = STATE(2027), [sym_line_comment] = STATE(1049), [sym_block_comment] = STATE(1049), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), + [aux_sym_function_modifiers_repeat1] = STATE(2329), + [sym_identifier] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1612), + [anon_sym_STAR] = ACTIONS(1060), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_u8] = ACTIONS(1620), + [anon_sym_i8] = ACTIONS(1620), + [anon_sym_u16] = ACTIONS(1620), + [anon_sym_i16] = ACTIONS(1620), + [anon_sym_u32] = ACTIONS(1620), + [anon_sym_i32] = ACTIONS(1620), + [anon_sym_u64] = ACTIONS(1620), + [anon_sym_i64] = ACTIONS(1620), + [anon_sym_u128] = ACTIONS(1620), + [anon_sym_i128] = ACTIONS(1620), + [anon_sym_isize] = ACTIONS(1620), + [anon_sym_usize] = ACTIONS(1620), + [anon_sym_f32] = ACTIONS(1620), + [anon_sym_f64] = ACTIONS(1620), + [anon_sym_bool] = ACTIONS(1620), + [anon_sym_str] = ACTIONS(1620), + [anon_sym_char] = ACTIONS(1620), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1626), [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(1050)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2073), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [anon_sym_async] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1096), + [anon_sym_for] = ACTIONS(1098), + [anon_sym_gen] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1102), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(1106), + [anon_sym_dyn] = ACTIONS(1110), + [anon_sym_raw] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + }, + [1050] = { + [sym_attribute_item] = STATE(1052), [sym_line_comment] = STATE(1050), [sym_block_comment] = STATE(1050), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(1051)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2646), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), + [aux_sym_enum_variant_list_repeat1] = STATE(1050), + [sym_identifier] = ACTIONS(3373), + [anon_sym_LPAREN] = ACTIONS(772), + [anon_sym_LBRACK] = ACTIONS(772), + [anon_sym_RBRACK] = ACTIONS(772), + [anon_sym_LBRACE] = ACTIONS(772), + [anon_sym_STAR] = ACTIONS(772), + [anon_sym_u8] = ACTIONS(3373), + [anon_sym_i8] = ACTIONS(3373), + [anon_sym_u16] = ACTIONS(3373), + [anon_sym_i16] = ACTIONS(3373), + [anon_sym_u32] = ACTIONS(3373), + [anon_sym_i32] = ACTIONS(3373), + [anon_sym_u64] = ACTIONS(3373), + [anon_sym_i64] = ACTIONS(3373), + [anon_sym_u128] = ACTIONS(3373), + [anon_sym_i128] = ACTIONS(3373), + [anon_sym_isize] = ACTIONS(3373), + [anon_sym_usize] = ACTIONS(3373), + [anon_sym_f32] = ACTIONS(3373), + [anon_sym_f64] = ACTIONS(3373), + [anon_sym_bool] = ACTIONS(3373), + [anon_sym_str] = ACTIONS(3373), + [anon_sym_char] = ACTIONS(3373), + [anon_sym_DASH] = ACTIONS(772), + [anon_sym_BANG] = ACTIONS(772), + [anon_sym_AMP] = ACTIONS(772), + [anon_sym_PIPE] = ACTIONS(772), + [anon_sym_LT] = ACTIONS(772), + [anon_sym_DOT_DOT] = ACTIONS(772), + [anon_sym_COMMA] = ACTIONS(772), + [anon_sym_COLON_COLON] = ACTIONS(772), + [anon_sym_POUND] = ACTIONS(798), + [anon_sym_SQUOTE] = ACTIONS(3373), + [anon_sym_async] = ACTIONS(3373), + [anon_sym_break] = ACTIONS(3373), + [anon_sym_const] = ACTIONS(3373), + [anon_sym_continue] = ACTIONS(3373), + [anon_sym_default] = ACTIONS(3373), + [anon_sym_for] = ACTIONS(3373), + [anon_sym_gen] = ACTIONS(3373), + [anon_sym_if] = ACTIONS(3373), + [anon_sym_loop] = ACTIONS(3373), + [anon_sym_match] = ACTIONS(3373), + [anon_sym_return] = ACTIONS(3373), + [anon_sym_static] = ACTIONS(3373), + [anon_sym_union] = ACTIONS(3373), + [anon_sym_unsafe] = ACTIONS(3373), + [anon_sym_while] = ACTIONS(3373), + [anon_sym_raw] = ACTIONS(3373), + [anon_sym_yield] = ACTIONS(3373), + [anon_sym_move] = ACTIONS(3373), + [anon_sym_try] = ACTIONS(3373), + [sym_integer_literal] = ACTIONS(772), + [aux_sym_string_literal_token1] = ACTIONS(772), + [sym_char_literal] = ACTIONS(772), + [anon_sym_true] = ACTIONS(3373), + [anon_sym_false] = ACTIONS(3373), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3373), + [sym_super] = ACTIONS(3373), + [sym_crate] = ACTIONS(3373), + [sym_metavariable] = ACTIONS(772), + [sym__raw_string_literal_start] = ACTIONS(772), + [sym_float_literal] = ACTIONS(772), + }, + [1051] = { [sym_line_comment] = STATE(1051), [sym_block_comment] = STATE(1051), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(1052)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2089), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3776), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2089), - [sym_tuple_type] = STATE(2089), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2056), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2089), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2036), + [sym_identifier] = ACTIONS(1925), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_LBRACK] = ACTIONS(1923), + [anon_sym_RBRACK] = ACTIONS(1923), + [anon_sym_LBRACE] = ACTIONS(1923), + [anon_sym_STAR] = ACTIONS(1923), + [anon_sym_u8] = ACTIONS(1925), + [anon_sym_i8] = ACTIONS(1925), + [anon_sym_u16] = ACTIONS(1925), + [anon_sym_i16] = ACTIONS(1925), + [anon_sym_u32] = ACTIONS(1925), + [anon_sym_i32] = ACTIONS(1925), + [anon_sym_u64] = ACTIONS(1925), + [anon_sym_i64] = ACTIONS(1925), + [anon_sym_u128] = ACTIONS(1925), + [anon_sym_i128] = ACTIONS(1925), + [anon_sym_isize] = ACTIONS(1925), + [anon_sym_usize] = ACTIONS(1925), + [anon_sym_f32] = ACTIONS(1925), + [anon_sym_f64] = ACTIONS(1925), + [anon_sym_bool] = ACTIONS(1925), + [anon_sym_str] = ACTIONS(1925), + [anon_sym_char] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1923), + [anon_sym_BANG] = ACTIONS(1923), + [anon_sym_AMP] = ACTIONS(1923), + [anon_sym_PIPE] = ACTIONS(1923), + [anon_sym_LT] = ACTIONS(1923), + [anon_sym_DOT_DOT] = ACTIONS(1923), + [anon_sym_COMMA] = ACTIONS(1923), + [anon_sym_COLON_COLON] = ACTIONS(1923), + [anon_sym_POUND] = ACTIONS(1923), + [anon_sym_SQUOTE] = ACTIONS(1925), + [anon_sym_async] = ACTIONS(1925), + [anon_sym_break] = ACTIONS(1925), + [anon_sym_const] = ACTIONS(1925), + [anon_sym_continue] = ACTIONS(1925), + [anon_sym_default] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(1925), + [anon_sym_gen] = ACTIONS(1925), + [anon_sym_if] = ACTIONS(1925), + [anon_sym_loop] = ACTIONS(1925), + [anon_sym_match] = ACTIONS(1925), + [anon_sym_return] = ACTIONS(1925), + [anon_sym_static] = ACTIONS(1925), + [anon_sym_union] = ACTIONS(1925), + [anon_sym_unsafe] = ACTIONS(1925), + [anon_sym_while] = ACTIONS(1925), + [anon_sym_raw] = ACTIONS(1925), + [anon_sym_yield] = ACTIONS(1925), + [anon_sym_move] = ACTIONS(1925), + [anon_sym_try] = ACTIONS(1925), + [sym_integer_literal] = ACTIONS(1923), + [aux_sym_string_literal_token1] = ACTIONS(1923), + [sym_char_literal] = ACTIONS(1923), + [anon_sym_true] = ACTIONS(1925), + [anon_sym_false] = ACTIONS(1925), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1925), + [sym_super] = ACTIONS(1925), + [sym_crate] = ACTIONS(1925), + [sym_metavariable] = ACTIONS(1923), + [sym__raw_string_literal_start] = ACTIONS(1923), + [sym_float_literal] = ACTIONS(1923), + }, + [1052] = { [sym_line_comment] = STATE(1052), [sym_block_comment] = STATE(1052), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3377), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(3379), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(1053)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2091), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(2091), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(2091), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), + [sym_identifier] = ACTIONS(3375), + [anon_sym_LPAREN] = ACTIONS(3377), + [anon_sym_LBRACK] = ACTIONS(3377), + [anon_sym_RBRACK] = ACTIONS(3377), + [anon_sym_LBRACE] = ACTIONS(3377), + [anon_sym_STAR] = ACTIONS(3377), + [anon_sym_u8] = ACTIONS(3375), + [anon_sym_i8] = ACTIONS(3375), + [anon_sym_u16] = ACTIONS(3375), + [anon_sym_i16] = ACTIONS(3375), + [anon_sym_u32] = ACTIONS(3375), + [anon_sym_i32] = ACTIONS(3375), + [anon_sym_u64] = ACTIONS(3375), + [anon_sym_i64] = ACTIONS(3375), + [anon_sym_u128] = ACTIONS(3375), + [anon_sym_i128] = ACTIONS(3375), + [anon_sym_isize] = ACTIONS(3375), + [anon_sym_usize] = ACTIONS(3375), + [anon_sym_f32] = ACTIONS(3375), + [anon_sym_f64] = ACTIONS(3375), + [anon_sym_bool] = ACTIONS(3375), + [anon_sym_str] = ACTIONS(3375), + [anon_sym_char] = ACTIONS(3375), + [anon_sym_DASH] = ACTIONS(3377), + [anon_sym_BANG] = ACTIONS(3377), + [anon_sym_AMP] = ACTIONS(3377), + [anon_sym_PIPE] = ACTIONS(3377), + [anon_sym_LT] = ACTIONS(3377), + [anon_sym_DOT_DOT] = ACTIONS(3377), + [anon_sym_COMMA] = ACTIONS(3377), + [anon_sym_COLON_COLON] = ACTIONS(3377), + [anon_sym_POUND] = ACTIONS(3377), + [anon_sym_SQUOTE] = ACTIONS(3375), + [anon_sym_async] = ACTIONS(3375), + [anon_sym_break] = ACTIONS(3375), + [anon_sym_const] = ACTIONS(3375), + [anon_sym_continue] = ACTIONS(3375), + [anon_sym_default] = ACTIONS(3375), + [anon_sym_for] = ACTIONS(3375), + [anon_sym_gen] = ACTIONS(3375), + [anon_sym_if] = ACTIONS(3375), + [anon_sym_loop] = ACTIONS(3375), + [anon_sym_match] = ACTIONS(3375), + [anon_sym_return] = ACTIONS(3375), + [anon_sym_static] = ACTIONS(3375), + [anon_sym_union] = ACTIONS(3375), + [anon_sym_unsafe] = ACTIONS(3375), + [anon_sym_while] = ACTIONS(3375), + [anon_sym_raw] = ACTIONS(3375), + [anon_sym_yield] = ACTIONS(3375), + [anon_sym_move] = ACTIONS(3375), + [anon_sym_try] = ACTIONS(3375), + [sym_integer_literal] = ACTIONS(3377), + [aux_sym_string_literal_token1] = ACTIONS(3377), + [sym_char_literal] = ACTIONS(3377), + [anon_sym_true] = ACTIONS(3375), + [anon_sym_false] = ACTIONS(3375), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3375), + [sym_super] = ACTIONS(3375), + [sym_crate] = ACTIONS(3375), + [sym_metavariable] = ACTIONS(3377), + [sym__raw_string_literal_start] = ACTIONS(3377), + [sym_float_literal] = ACTIONS(3377), + }, + [1053] = { [sym_line_comment] = STATE(1053), [sym_block_comment] = STATE(1053), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3089), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(1054)] = { - [sym_function_modifiers] = STATE(3775), - [sym_removed_trait_bound] = STATE(1530), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(1492), - [sym_bracketed_type] = STATE(3687), - [sym_lifetime] = STATE(3537), - [sym_array_type] = STATE(1530), - [sym_for_lifetimes] = STATE(1618), - [sym_function_type] = STATE(1530), - [sym_tuple_type] = STATE(1530), - [sym_unit_type] = STATE(1530), - [sym_generic_type] = STATE(1422), - [sym_generic_type_with_turbofish] = STATE(3817), - [sym_bounded_type] = STATE(1530), - [sym_use_bounds] = STATE(3537), - [sym_reference_type] = STATE(1530), - [sym_pointer_type] = STATE(1530), - [sym_never_type] = STATE(1530), - [sym_abstract_type] = STATE(1530), - [sym_dynamic_type] = STATE(1530), - [sym_macro_invocation] = STATE(1530), - [sym_scoped_identifier] = STATE(3346), - [sym_scoped_type_identifier] = STATE(1093), + [sym_identifier] = ACTIONS(1600), + [anon_sym_LPAREN] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1602), + [anon_sym_LBRACE] = ACTIONS(1602), + [anon_sym_STAR] = ACTIONS(1602), + [anon_sym_u8] = ACTIONS(1600), + [anon_sym_i8] = ACTIONS(1600), + [anon_sym_u16] = ACTIONS(1600), + [anon_sym_i16] = ACTIONS(1600), + [anon_sym_u32] = ACTIONS(1600), + [anon_sym_i32] = ACTIONS(1600), + [anon_sym_u64] = ACTIONS(1600), + [anon_sym_i64] = ACTIONS(1600), + [anon_sym_u128] = ACTIONS(1600), + [anon_sym_i128] = ACTIONS(1600), + [anon_sym_isize] = ACTIONS(1600), + [anon_sym_usize] = ACTIONS(1600), + [anon_sym_f32] = ACTIONS(1600), + [anon_sym_f64] = ACTIONS(1600), + [anon_sym_bool] = ACTIONS(1600), + [anon_sym_str] = ACTIONS(1600), + [anon_sym_char] = ACTIONS(1600), + [anon_sym_DASH] = ACTIONS(1600), + [anon_sym_BANG] = ACTIONS(1602), + [anon_sym_AMP] = ACTIONS(1602), + [anon_sym_PIPE] = ACTIONS(1602), + [anon_sym_LT] = ACTIONS(1602), + [anon_sym__] = ACTIONS(1600), + [anon_sym_DOT_DOT] = ACTIONS(1602), + [anon_sym_COLON_COLON] = ACTIONS(1602), + [anon_sym_DASH_GT] = ACTIONS(1602), + [anon_sym_SQUOTE] = ACTIONS(1600), + [anon_sym_async] = ACTIONS(1600), + [anon_sym_break] = ACTIONS(1600), + [anon_sym_const] = ACTIONS(1600), + [anon_sym_continue] = ACTIONS(1600), + [anon_sym_default] = ACTIONS(1600), + [anon_sym_for] = ACTIONS(1600), + [anon_sym_gen] = ACTIONS(1600), + [anon_sym_if] = ACTIONS(1600), + [anon_sym_loop] = ACTIONS(1600), + [anon_sym_match] = ACTIONS(1600), + [anon_sym_return] = ACTIONS(1600), + [anon_sym_static] = ACTIONS(1600), + [anon_sym_union] = ACTIONS(1600), + [anon_sym_unsafe] = ACTIONS(1600), + [anon_sym_while] = ACTIONS(1600), + [anon_sym_raw] = ACTIONS(1600), + [anon_sym_yield] = ACTIONS(1600), + [anon_sym_move] = ACTIONS(1600), + [anon_sym_try] = ACTIONS(1600), + [sym_integer_literal] = ACTIONS(1602), + [aux_sym_string_literal_token1] = ACTIONS(1602), + [sym_char_literal] = ACTIONS(1602), + [anon_sym_true] = ACTIONS(1600), + [anon_sym_false] = ACTIONS(1600), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(1600), + [sym_super] = ACTIONS(1600), + [sym_crate] = ACTIONS(1600), + [sym_metavariable] = ACTIONS(1602), + [sym__raw_string_literal_start] = ACTIONS(1602), + [sym_float_literal] = ACTIONS(1602), + }, + [1054] = { [sym_line_comment] = STATE(1054), [sym_block_comment] = STATE(1054), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3225), - [anon_sym_LBRACK] = ACTIONS(3227), - [anon_sym_STAR] = ACTIONS(3231), - [anon_sym_QMARK] = ACTIONS(3233), - [anon_sym_u8] = ACTIONS(3235), - [anon_sym_i8] = ACTIONS(3235), - [anon_sym_u16] = ACTIONS(3235), - [anon_sym_i16] = ACTIONS(3235), - [anon_sym_u32] = ACTIONS(3235), - [anon_sym_i32] = ACTIONS(3235), - [anon_sym_u64] = ACTIONS(3235), - [anon_sym_i64] = ACTIONS(3235), - [anon_sym_u128] = ACTIONS(3235), - [anon_sym_i128] = ACTIONS(3235), - [anon_sym_isize] = ACTIONS(3235), - [anon_sym_usize] = ACTIONS(3235), - [anon_sym_f32] = ACTIONS(3235), - [anon_sym_f64] = ACTIONS(3235), - [anon_sym_bool] = ACTIONS(3235), - [anon_sym_str] = ACTIONS(3235), - [anon_sym_char] = ACTIONS(3235), - [anon_sym_BANG] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3241), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(3243), - [anon_sym_fn] = ACTIONS(3245), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(3247), - [anon_sym_impl] = ACTIONS(3249), - [anon_sym_union] = ACTIONS(3247), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(3251), - [anon_sym_raw] = ACTIONS(3247), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3255), - [sym_super] = ACTIONS(3255), - [sym_crate] = ACTIONS(3255), - [sym_metavariable] = ACTIONS(3257), - }, - [STATE(1055)] = { - [sym_function_modifiers] = STATE(3661), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3340), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3584), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1606), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3584), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2278), + [sym_identifier] = ACTIONS(3379), + [anon_sym_LPAREN] = ACTIONS(3381), + [anon_sym_LBRACK] = ACTIONS(3381), + [anon_sym_LBRACE] = ACTIONS(3381), + [anon_sym_STAR] = ACTIONS(3381), + [anon_sym_u8] = ACTIONS(3379), + [anon_sym_i8] = ACTIONS(3379), + [anon_sym_u16] = ACTIONS(3379), + [anon_sym_i16] = ACTIONS(3379), + [anon_sym_u32] = ACTIONS(3379), + [anon_sym_i32] = ACTIONS(3379), + [anon_sym_u64] = ACTIONS(3379), + [anon_sym_i64] = ACTIONS(3379), + [anon_sym_u128] = ACTIONS(3379), + [anon_sym_i128] = ACTIONS(3379), + [anon_sym_isize] = ACTIONS(3379), + [anon_sym_usize] = ACTIONS(3379), + [anon_sym_f32] = ACTIONS(3379), + [anon_sym_f64] = ACTIONS(3379), + [anon_sym_bool] = ACTIONS(3379), + [anon_sym_str] = ACTIONS(3379), + [anon_sym_char] = ACTIONS(3379), + [anon_sym_DASH] = ACTIONS(3379), + [anon_sym_BANG] = ACTIONS(3381), + [anon_sym_AMP] = ACTIONS(3381), + [anon_sym_PIPE] = ACTIONS(3381), + [anon_sym_LT] = ACTIONS(3381), + [anon_sym__] = ACTIONS(3379), + [anon_sym_DOT_DOT] = ACTIONS(3381), + [anon_sym_COLON_COLON] = ACTIONS(3381), + [anon_sym_DASH_GT] = ACTIONS(3381), + [anon_sym_SQUOTE] = ACTIONS(3379), + [anon_sym_async] = ACTIONS(3379), + [anon_sym_break] = ACTIONS(3379), + [anon_sym_const] = ACTIONS(3379), + [anon_sym_continue] = ACTIONS(3379), + [anon_sym_default] = ACTIONS(3379), + [anon_sym_for] = ACTIONS(3379), + [anon_sym_gen] = ACTIONS(3379), + [anon_sym_if] = ACTIONS(3379), + [anon_sym_loop] = ACTIONS(3379), + [anon_sym_match] = ACTIONS(3379), + [anon_sym_return] = ACTIONS(3379), + [anon_sym_static] = ACTIONS(3379), + [anon_sym_union] = ACTIONS(3379), + [anon_sym_unsafe] = ACTIONS(3379), + [anon_sym_while] = ACTIONS(3379), + [anon_sym_raw] = ACTIONS(3379), + [anon_sym_yield] = ACTIONS(3379), + [anon_sym_move] = ACTIONS(3379), + [anon_sym_try] = ACTIONS(3379), + [sym_integer_literal] = ACTIONS(3381), + [aux_sym_string_literal_token1] = ACTIONS(3381), + [sym_char_literal] = ACTIONS(3381), + [anon_sym_true] = ACTIONS(3379), + [anon_sym_false] = ACTIONS(3379), + [anon_sym_SLASH_SLASH] = ACTIONS(105), + [anon_sym_SLASH_STAR] = ACTIONS(107), + [sym_self] = ACTIONS(3379), + [sym_super] = ACTIONS(3379), + [sym_crate] = ACTIONS(3379), + [sym_metavariable] = ACTIONS(3381), + [sym__raw_string_literal_start] = ACTIONS(3381), + [sym_float_literal] = ACTIONS(3381), + }, + [1055] = { [sym_line_comment] = STATE(1055), [sym_block_comment] = STATE(1055), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1624), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1640), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1644), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1646), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(1056)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(3116), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), - [sym_line_comment] = STATE(1056), - [sym_block_comment] = STATE(1056), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(1057)] = { - [sym_function_modifiers] = STATE(3815), - [sym_removed_trait_bound] = STATE(2079), - [sym_extern_modifier] = STATE(2421), - [sym__type] = STATE(2081), - [sym_bracketed_type] = STATE(3750), - [sym_lifetime] = STATE(3776), - [sym_array_type] = STATE(2079), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(2079), - [sym_tuple_type] = STATE(2079), - [sym_unit_type] = STATE(2079), - [sym_generic_type] = STATE(2051), - [sym_generic_type_with_turbofish] = STATE(3633), - [sym_bounded_type] = STATE(2079), - [sym_use_bounds] = STATE(3776), - [sym_reference_type] = STATE(2079), - [sym_pointer_type] = STATE(2079), - [sym_never_type] = STATE(2079), - [sym_abstract_type] = STATE(2079), - [sym_dynamic_type] = STATE(2079), - [sym_macro_invocation] = STATE(2079), - [sym_scoped_identifier] = STATE(3335), - [sym_scoped_type_identifier] = STATE(2031), - [sym_line_comment] = STATE(1057), - [sym_block_comment] = STATE(1057), - [aux_sym_function_modifiers_repeat1] = STATE(2336), - [sym_identifier] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1620), - [anon_sym_STAR] = ACTIONS(1066), - [anon_sym_QMARK] = ACTIONS(1068), - [anon_sym_u8] = ACTIONS(1628), - [anon_sym_i8] = ACTIONS(1628), - [anon_sym_u16] = ACTIONS(1628), - [anon_sym_i16] = ACTIONS(1628), - [anon_sym_u32] = ACTIONS(1628), - [anon_sym_i32] = ACTIONS(1628), - [anon_sym_u64] = ACTIONS(1628), - [anon_sym_i64] = ACTIONS(1628), - [anon_sym_u128] = ACTIONS(1628), - [anon_sym_i128] = ACTIONS(1628), - [anon_sym_isize] = ACTIONS(1628), - [anon_sym_usize] = ACTIONS(1628), - [anon_sym_f32] = ACTIONS(1628), - [anon_sym_f64] = ACTIONS(1628), - [anon_sym_bool] = ACTIONS(1628), - [anon_sym_str] = ACTIONS(1628), - [anon_sym_char] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_AMP] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(3081), - [anon_sym_async] = ACTIONS(1096), - [anon_sym_const] = ACTIONS(1096), - [anon_sym_default] = ACTIONS(1638), - [anon_sym_fn] = ACTIONS(1102), - [anon_sym_for] = ACTIONS(1104), - [anon_sym_gen] = ACTIONS(1642), - [anon_sym_impl] = ACTIONS(1108), - [anon_sym_union] = ACTIONS(1642), - [anon_sym_unsafe] = ACTIONS(1096), - [anon_sym_use] = ACTIONS(1110), - [anon_sym_extern] = ACTIONS(1112), - [anon_sym_dyn] = ACTIONS(1116), - [anon_sym_raw] = ACTIONS(1642), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1650), - [sym_super] = ACTIONS(1650), - [sym_crate] = ACTIONS(1650), - [sym_metavariable] = ACTIONS(1652), - }, - [STATE(1058)] = { - [sym_attribute_item] = STATE(1060), - [sym_line_comment] = STATE(1058), - [sym_block_comment] = STATE(1058), - [aux_sym_enum_variant_list_repeat1] = STATE(1058), - [sym_identifier] = ACTIONS(3381), - [anon_sym_LPAREN] = ACTIONS(776), - [anon_sym_LBRACK] = ACTIONS(776), - [anon_sym_RBRACK] = ACTIONS(776), - [anon_sym_LBRACE] = ACTIONS(776), - [anon_sym_STAR] = ACTIONS(776), - [anon_sym_u8] = ACTIONS(3381), - [anon_sym_i8] = ACTIONS(3381), - [anon_sym_u16] = ACTIONS(3381), - [anon_sym_i16] = ACTIONS(3381), - [anon_sym_u32] = ACTIONS(3381), - [anon_sym_i32] = ACTIONS(3381), - [anon_sym_u64] = ACTIONS(3381), - [anon_sym_i64] = ACTIONS(3381), - [anon_sym_u128] = ACTIONS(3381), - [anon_sym_i128] = ACTIONS(3381), - [anon_sym_isize] = ACTIONS(3381), - [anon_sym_usize] = ACTIONS(3381), - [anon_sym_f32] = ACTIONS(3381), - [anon_sym_f64] = ACTIONS(3381), - [anon_sym_bool] = ACTIONS(3381), - [anon_sym_str] = ACTIONS(3381), - [anon_sym_char] = ACTIONS(3381), - [anon_sym_DASH] = ACTIONS(776), - [anon_sym_BANG] = ACTIONS(776), - [anon_sym_AMP] = ACTIONS(776), - [anon_sym_PIPE] = ACTIONS(776), - [anon_sym_LT] = ACTIONS(776), - [anon_sym_DOT_DOT] = ACTIONS(776), - [anon_sym_COMMA] = ACTIONS(776), - [anon_sym_COLON_COLON] = ACTIONS(776), - [anon_sym_POUND] = ACTIONS(802), - [anon_sym_SQUOTE] = ACTIONS(3381), - [anon_sym_async] = ACTIONS(3381), - [anon_sym_break] = ACTIONS(3381), - [anon_sym_const] = ACTIONS(3381), - [anon_sym_continue] = ACTIONS(3381), - [anon_sym_default] = ACTIONS(3381), - [anon_sym_for] = ACTIONS(3381), - [anon_sym_gen] = ACTIONS(3381), - [anon_sym_if] = ACTIONS(3381), - [anon_sym_loop] = ACTIONS(3381), - [anon_sym_match] = ACTIONS(3381), - [anon_sym_return] = ACTIONS(3381), - [anon_sym_static] = ACTIONS(3381), - [anon_sym_union] = ACTIONS(3381), - [anon_sym_unsafe] = ACTIONS(3381), - [anon_sym_while] = ACTIONS(3381), - [anon_sym_raw] = ACTIONS(3381), - [anon_sym_yield] = ACTIONS(3381), - [anon_sym_move] = ACTIONS(3381), - [anon_sym_try] = ACTIONS(3381), - [sym_integer_literal] = ACTIONS(776), - [aux_sym_string_literal_token1] = ACTIONS(776), - [sym_char_literal] = ACTIONS(776), - [anon_sym_true] = ACTIONS(3381), - [anon_sym_false] = ACTIONS(3381), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3381), - [sym_super] = ACTIONS(3381), - [sym_crate] = ACTIONS(3381), - [sym_metavariable] = ACTIONS(776), - [sym__raw_string_literal_start] = ACTIONS(776), - [sym_float_literal] = ACTIONS(776), - }, - [STATE(1059)] = { - [sym_line_comment] = STATE(1059), - [sym_block_comment] = STATE(1059), - [sym_identifier] = ACTIONS(1905), - [anon_sym_LPAREN] = ACTIONS(1903), - [anon_sym_LBRACK] = ACTIONS(1903), - [anon_sym_RBRACK] = ACTIONS(1903), - [anon_sym_LBRACE] = ACTIONS(1903), - [anon_sym_STAR] = ACTIONS(1903), - [anon_sym_u8] = ACTIONS(1905), - [anon_sym_i8] = ACTIONS(1905), - [anon_sym_u16] = ACTIONS(1905), - [anon_sym_i16] = ACTIONS(1905), - [anon_sym_u32] = ACTIONS(1905), - [anon_sym_i32] = ACTIONS(1905), - [anon_sym_u64] = ACTIONS(1905), - [anon_sym_i64] = ACTIONS(1905), - [anon_sym_u128] = ACTIONS(1905), - [anon_sym_i128] = ACTIONS(1905), - [anon_sym_isize] = ACTIONS(1905), - [anon_sym_usize] = ACTIONS(1905), - [anon_sym_f32] = ACTIONS(1905), - [anon_sym_f64] = ACTIONS(1905), - [anon_sym_bool] = ACTIONS(1905), - [anon_sym_str] = ACTIONS(1905), - [anon_sym_char] = ACTIONS(1905), - [anon_sym_DASH] = ACTIONS(1903), - [anon_sym_BANG] = ACTIONS(1903), - [anon_sym_AMP] = ACTIONS(1903), - [anon_sym_PIPE] = ACTIONS(1903), - [anon_sym_LT] = ACTIONS(1903), - [anon_sym_DOT_DOT] = ACTIONS(1903), - [anon_sym_COMMA] = ACTIONS(1903), - [anon_sym_COLON_COLON] = ACTIONS(1903), - [anon_sym_POUND] = ACTIONS(1903), - [anon_sym_SQUOTE] = ACTIONS(1905), - [anon_sym_async] = ACTIONS(1905), - [anon_sym_break] = ACTIONS(1905), - [anon_sym_const] = ACTIONS(1905), - [anon_sym_continue] = ACTIONS(1905), - [anon_sym_default] = ACTIONS(1905), - [anon_sym_for] = ACTIONS(1905), - [anon_sym_gen] = ACTIONS(1905), - [anon_sym_if] = ACTIONS(1905), - [anon_sym_loop] = ACTIONS(1905), - [anon_sym_match] = ACTIONS(1905), - [anon_sym_return] = ACTIONS(1905), - [anon_sym_static] = ACTIONS(1905), - [anon_sym_union] = ACTIONS(1905), - [anon_sym_unsafe] = ACTIONS(1905), - [anon_sym_while] = ACTIONS(1905), - [anon_sym_raw] = ACTIONS(1905), - [anon_sym_yield] = ACTIONS(1905), - [anon_sym_move] = ACTIONS(1905), - [anon_sym_try] = ACTIONS(1905), - [sym_integer_literal] = ACTIONS(1903), - [aux_sym_string_literal_token1] = ACTIONS(1903), - [sym_char_literal] = ACTIONS(1903), - [anon_sym_true] = ACTIONS(1905), - [anon_sym_false] = ACTIONS(1905), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1905), - [sym_super] = ACTIONS(1905), - [sym_crate] = ACTIONS(1905), - [sym_metavariable] = ACTIONS(1903), - [sym__raw_string_literal_start] = ACTIONS(1903), - [sym_float_literal] = ACTIONS(1903), - }, - [STATE(1060)] = { - [sym_line_comment] = STATE(1060), - [sym_block_comment] = STATE(1060), [sym_identifier] = ACTIONS(3383), - [anon_sym_LPAREN] = ACTIONS(3385), - [anon_sym_LBRACK] = ACTIONS(3385), - [anon_sym_RBRACK] = ACTIONS(3385), - [anon_sym_LBRACE] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(3385), + [anon_sym_LPAREN] = ACTIONS(1186), + [anon_sym_RPAREN] = ACTIONS(1186), + [anon_sym_LBRACK] = ACTIONS(1186), + [anon_sym_LBRACE] = ACTIONS(1186), + [anon_sym_STAR] = ACTIONS(1186), [anon_sym_u8] = ACTIONS(3383), [anon_sym_i8] = ACTIONS(3383), [anon_sym_u16] = ACTIONS(3383), @@ -116773,15 +115798,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(3383), [anon_sym_str] = ACTIONS(3383), [anon_sym_char] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_BANG] = ACTIONS(3385), - [anon_sym_AMP] = ACTIONS(3385), - [anon_sym_PIPE] = ACTIONS(3385), - [anon_sym_LT] = ACTIONS(3385), - [anon_sym_DOT_DOT] = ACTIONS(3385), - [anon_sym_COMMA] = ACTIONS(3385), - [anon_sym_COLON_COLON] = ACTIONS(3385), - [anon_sym_POUND] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(1186), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_AMP] = ACTIONS(1186), + [anon_sym_PIPE] = ACTIONS(1186), + [anon_sym_LT] = ACTIONS(1186), + [anon_sym_DOT_DOT] = ACTIONS(1186), + [anon_sym_COLON_COLON] = ACTIONS(1186), [anon_sym_SQUOTE] = ACTIONS(3383), [anon_sym_async] = ACTIONS(3383), [anon_sym_break] = ACTIONS(3383), @@ -116802,9 +115825,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(3383), [anon_sym_move] = ACTIONS(3383), [anon_sym_try] = ACTIONS(3383), - [sym_integer_literal] = ACTIONS(3385), - [aux_sym_string_literal_token1] = ACTIONS(3385), - [sym_char_literal] = ACTIONS(3385), + [sym_integer_literal] = ACTIONS(1186), + [aux_sym_string_literal_token1] = ACTIONS(1186), + [sym_char_literal] = ACTIONS(1186), [anon_sym_true] = ACTIONS(3383), [anon_sym_false] = ACTIONS(3383), [anon_sym_SLASH_SLASH] = ACTIONS(105), @@ -116812,212 +115835,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_self] = ACTIONS(3383), [sym_super] = ACTIONS(3383), [sym_crate] = ACTIONS(3383), - [sym_metavariable] = ACTIONS(3385), - [sym__raw_string_literal_start] = ACTIONS(3385), - [sym_float_literal] = ACTIONS(3385), - }, - [STATE(1061)] = { - [sym_line_comment] = STATE(1061), - [sym_block_comment] = STATE(1061), - [sym_identifier] = ACTIONS(3387), - [anon_sym_LPAREN] = ACTIONS(3389), - [anon_sym_LBRACK] = ACTIONS(3389), - [anon_sym_LBRACE] = ACTIONS(3389), - [anon_sym_STAR] = ACTIONS(3389), - [anon_sym_u8] = ACTIONS(3387), - [anon_sym_i8] = ACTIONS(3387), - [anon_sym_u16] = ACTIONS(3387), - [anon_sym_i16] = ACTIONS(3387), - [anon_sym_u32] = ACTIONS(3387), - [anon_sym_i32] = ACTIONS(3387), - [anon_sym_u64] = ACTIONS(3387), - [anon_sym_i64] = ACTIONS(3387), - [anon_sym_u128] = ACTIONS(3387), - [anon_sym_i128] = ACTIONS(3387), - [anon_sym_isize] = ACTIONS(3387), - [anon_sym_usize] = ACTIONS(3387), - [anon_sym_f32] = ACTIONS(3387), - [anon_sym_f64] = ACTIONS(3387), - [anon_sym_bool] = ACTIONS(3387), - [anon_sym_str] = ACTIONS(3387), - [anon_sym_char] = ACTIONS(3387), - [anon_sym_DASH] = ACTIONS(3387), - [anon_sym_BANG] = ACTIONS(3389), - [anon_sym_AMP] = ACTIONS(3389), - [anon_sym_PIPE] = ACTIONS(3389), - [anon_sym_LT] = ACTIONS(3389), - [anon_sym__] = ACTIONS(3387), - [anon_sym_DOT_DOT] = ACTIONS(3389), - [anon_sym_COLON_COLON] = ACTIONS(3389), - [anon_sym_DASH_GT] = ACTIONS(3389), - [anon_sym_SQUOTE] = ACTIONS(3387), - [anon_sym_async] = ACTIONS(3387), - [anon_sym_break] = ACTIONS(3387), - [anon_sym_const] = ACTIONS(3387), - [anon_sym_continue] = ACTIONS(3387), - [anon_sym_default] = ACTIONS(3387), - [anon_sym_for] = ACTIONS(3387), - [anon_sym_gen] = ACTIONS(3387), - [anon_sym_if] = ACTIONS(3387), - [anon_sym_loop] = ACTIONS(3387), - [anon_sym_match] = ACTIONS(3387), - [anon_sym_return] = ACTIONS(3387), - [anon_sym_static] = ACTIONS(3387), - [anon_sym_union] = ACTIONS(3387), - [anon_sym_unsafe] = ACTIONS(3387), - [anon_sym_while] = ACTIONS(3387), - [anon_sym_raw] = ACTIONS(3387), - [anon_sym_yield] = ACTIONS(3387), - [anon_sym_move] = ACTIONS(3387), - [anon_sym_try] = ACTIONS(3387), - [sym_integer_literal] = ACTIONS(3389), - [aux_sym_string_literal_token1] = ACTIONS(3389), - [sym_char_literal] = ACTIONS(3389), - [anon_sym_true] = ACTIONS(3387), - [anon_sym_false] = ACTIONS(3387), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3387), - [sym_super] = ACTIONS(3387), - [sym_crate] = ACTIONS(3387), - [sym_metavariable] = ACTIONS(3389), - [sym__raw_string_literal_start] = ACTIONS(3389), - [sym_float_literal] = ACTIONS(3389), - }, - [STATE(1062)] = { - [sym_line_comment] = STATE(1062), - [sym_block_comment] = STATE(1062), - [sym_identifier] = ACTIONS(1612), - [anon_sym_LPAREN] = ACTIONS(1614), - [anon_sym_LBRACK] = ACTIONS(1614), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_STAR] = ACTIONS(1614), - [anon_sym_u8] = ACTIONS(1612), - [anon_sym_i8] = ACTIONS(1612), - [anon_sym_u16] = ACTIONS(1612), - [anon_sym_i16] = ACTIONS(1612), - [anon_sym_u32] = ACTIONS(1612), - [anon_sym_i32] = ACTIONS(1612), - [anon_sym_u64] = ACTIONS(1612), - [anon_sym_i64] = ACTIONS(1612), - [anon_sym_u128] = ACTIONS(1612), - [anon_sym_i128] = ACTIONS(1612), - [anon_sym_isize] = ACTIONS(1612), - [anon_sym_usize] = ACTIONS(1612), - [anon_sym_f32] = ACTIONS(1612), - [anon_sym_f64] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_str] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1612), - [anon_sym_BANG] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1614), - [anon_sym_PIPE] = ACTIONS(1614), - [anon_sym_LT] = ACTIONS(1614), - [anon_sym__] = ACTIONS(1612), - [anon_sym_DOT_DOT] = ACTIONS(1614), - [anon_sym_COLON_COLON] = ACTIONS(1614), - [anon_sym_DASH_GT] = ACTIONS(1614), - [anon_sym_SQUOTE] = ACTIONS(1612), - [anon_sym_async] = ACTIONS(1612), - [anon_sym_break] = ACTIONS(1612), - [anon_sym_const] = ACTIONS(1612), - [anon_sym_continue] = ACTIONS(1612), - [anon_sym_default] = ACTIONS(1612), - [anon_sym_for] = ACTIONS(1612), - [anon_sym_gen] = ACTIONS(1612), - [anon_sym_if] = ACTIONS(1612), - [anon_sym_loop] = ACTIONS(1612), - [anon_sym_match] = ACTIONS(1612), - [anon_sym_return] = ACTIONS(1612), - [anon_sym_static] = ACTIONS(1612), - [anon_sym_union] = ACTIONS(1612), - [anon_sym_unsafe] = ACTIONS(1612), - [anon_sym_while] = ACTIONS(1612), - [anon_sym_raw] = ACTIONS(1612), - [anon_sym_yield] = ACTIONS(1612), - [anon_sym_move] = ACTIONS(1612), - [anon_sym_try] = ACTIONS(1612), - [sym_integer_literal] = ACTIONS(1614), - [aux_sym_string_literal_token1] = ACTIONS(1614), - [sym_char_literal] = ACTIONS(1614), - [anon_sym_true] = ACTIONS(1612), - [anon_sym_false] = ACTIONS(1612), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(1612), - [sym_super] = ACTIONS(1612), - [sym_crate] = ACTIONS(1612), - [sym_metavariable] = ACTIONS(1614), - [sym__raw_string_literal_start] = ACTIONS(1614), - [sym_float_literal] = ACTIONS(1614), - }, - [STATE(1063)] = { - [sym_line_comment] = STATE(1063), - [sym_block_comment] = STATE(1063), - [sym_identifier] = ACTIONS(3391), - [anon_sym_LPAREN] = ACTIONS(1224), - [anon_sym_RPAREN] = ACTIONS(1224), - [anon_sym_LBRACK] = ACTIONS(1224), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_STAR] = ACTIONS(1224), - [anon_sym_u8] = ACTIONS(3391), - [anon_sym_i8] = ACTIONS(3391), - [anon_sym_u16] = ACTIONS(3391), - [anon_sym_i16] = ACTIONS(3391), - [anon_sym_u32] = ACTIONS(3391), - [anon_sym_i32] = ACTIONS(3391), - [anon_sym_u64] = ACTIONS(3391), - [anon_sym_i64] = ACTIONS(3391), - [anon_sym_u128] = ACTIONS(3391), - [anon_sym_i128] = ACTIONS(3391), - [anon_sym_isize] = ACTIONS(3391), - [anon_sym_usize] = ACTIONS(3391), - [anon_sym_f32] = ACTIONS(3391), - [anon_sym_f64] = ACTIONS(3391), - [anon_sym_bool] = ACTIONS(3391), - [anon_sym_str] = ACTIONS(3391), - [anon_sym_char] = ACTIONS(3391), - [anon_sym_DASH] = ACTIONS(1224), - [anon_sym_BANG] = ACTIONS(1224), - [anon_sym_AMP] = ACTIONS(1224), - [anon_sym_PIPE] = ACTIONS(1224), - [anon_sym_LT] = ACTIONS(1224), - [anon_sym_DOT_DOT] = ACTIONS(1224), - [anon_sym_COLON_COLON] = ACTIONS(1224), - [anon_sym_SQUOTE] = ACTIONS(3391), - [anon_sym_async] = ACTIONS(3391), - [anon_sym_break] = ACTIONS(3391), - [anon_sym_const] = ACTIONS(3391), - [anon_sym_continue] = ACTIONS(3391), - [anon_sym_default] = ACTIONS(3391), - [anon_sym_for] = ACTIONS(3391), - [anon_sym_gen] = ACTIONS(3391), - [anon_sym_if] = ACTIONS(3391), - [anon_sym_loop] = ACTIONS(3391), - [anon_sym_match] = ACTIONS(3391), - [anon_sym_return] = ACTIONS(3391), - [anon_sym_static] = ACTIONS(3391), - [anon_sym_union] = ACTIONS(3391), - [anon_sym_unsafe] = ACTIONS(3391), - [anon_sym_while] = ACTIONS(3391), - [anon_sym_raw] = ACTIONS(3391), - [anon_sym_yield] = ACTIONS(3391), - [anon_sym_move] = ACTIONS(3391), - [anon_sym_try] = ACTIONS(3391), - [sym_integer_literal] = ACTIONS(1224), - [aux_sym_string_literal_token1] = ACTIONS(1224), - [sym_char_literal] = ACTIONS(1224), - [anon_sym_true] = ACTIONS(3391), - [anon_sym_false] = ACTIONS(3391), - [anon_sym_SLASH_SLASH] = ACTIONS(105), - [anon_sym_SLASH_STAR] = ACTIONS(107), - [sym_self] = ACTIONS(3391), - [sym_super] = ACTIONS(3391), - [sym_crate] = ACTIONS(3391), - [sym_metavariable] = ACTIONS(1224), - [sym__raw_string_literal_start] = ACTIONS(1224), - [sym_float_literal] = ACTIONS(1224), + [sym_metavariable] = ACTIONS(1186), + [sym__raw_string_literal_start] = ACTIONS(1186), + [sym_float_literal] = ACTIONS(1186), }, }; @@ -117027,10 +115847,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1064), 2, + STATE(1056), 2, sym_line_comment, sym_block_comment, - ACTIONS(1903), 18, + ACTIONS(1923), 18, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -117049,7 +115869,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(1905), 41, + ACTIONS(1925), 41, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117096,10 +115916,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1065), 2, + STATE(1057), 2, sym_line_comment, sym_block_comment, - ACTIONS(3395), 20, + ACTIONS(3387), 20, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -117120,7 +115940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(3393), 37, + ACTIONS(3385), 37, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117165,50 +115985,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1072), 1, + ACTIONS(1066), 1, anon_sym_DASH, - ACTIONS(1122), 1, + ACTIONS(1116), 1, aux_sym_string_literal_token1, - ACTIONS(1132), 1, + ACTIONS(1126), 1, sym__raw_string_literal_start, - ACTIONS(2301), 1, + ACTIONS(2321), 1, anon_sym_COLON_COLON, - ACTIONS(3397), 1, + ACTIONS(3389), 1, sym_identifier, - ACTIONS(3407), 1, + ACTIONS(3399), 1, sym_metavariable, - STATE(2174), 1, + STATE(2167), 1, sym_scoped_identifier, - STATE(2225), 1, + STATE(2175), 1, sym__literal_pattern, - STATE(3740), 1, + STATE(3723), 1, sym_bracketed_type, - STATE(3804), 1, + STATE(3791), 1, sym_generic_type_with_turbofish, - ACTIONS(1124), 2, + ACTIONS(1118), 2, anon_sym_true, anon_sym_false, - STATE(1066), 2, + STATE(1058), 2, sym_line_comment, sym_block_comment, - ACTIONS(1120), 3, + ACTIONS(1114), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3401), 3, + ACTIONS(3393), 3, anon_sym_COLON, anon_sym_else, anon_sym_in, - ACTIONS(3405), 3, + ACTIONS(3397), 3, sym_self, sym_super, sym_crate, - STATE(2116), 4, + STATE(2100), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3399), 7, + ACTIONS(3391), 7, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -117216,7 +116036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, - ACTIONS(3403), 21, + ACTIONS(3395), 21, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117245,50 +116065,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1072), 1, + ACTIONS(1066), 1, anon_sym_DASH, - ACTIONS(1122), 1, + ACTIONS(1116), 1, aux_sym_string_literal_token1, - ACTIONS(1132), 1, + ACTIONS(1126), 1, sym__raw_string_literal_start, - ACTIONS(2301), 1, + ACTIONS(2321), 1, anon_sym_COLON_COLON, - ACTIONS(3409), 1, + ACTIONS(3401), 1, sym_identifier, - ACTIONS(3419), 1, + ACTIONS(3411), 1, sym_metavariable, - STATE(2162), 1, + STATE(2143), 1, sym_scoped_identifier, - STATE(2188), 1, + STATE(2218), 1, sym__literal_pattern, - STATE(3740), 1, + STATE(3723), 1, sym_bracketed_type, - STATE(3804), 1, + STATE(3791), 1, sym_generic_type_with_turbofish, - ACTIONS(1124), 2, + ACTIONS(1118), 2, anon_sym_true, anon_sym_false, - STATE(1067), 2, + STATE(1059), 2, sym_line_comment, sym_block_comment, - ACTIONS(1120), 3, + ACTIONS(1114), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3413), 3, + ACTIONS(3405), 3, anon_sym_COLON, anon_sym_else, anon_sym_in, - ACTIONS(3417), 3, + ACTIONS(3409), 3, sym_self, sym_super, sym_crate, - STATE(2116), 4, + STATE(2100), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3411), 7, + ACTIONS(3403), 7, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -117296,7 +116116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, - ACTIONS(3415), 21, + ACTIONS(3407), 21, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117325,50 +116145,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1072), 1, + ACTIONS(1066), 1, anon_sym_DASH, - ACTIONS(1122), 1, + ACTIONS(1116), 1, aux_sym_string_literal_token1, - ACTIONS(1132), 1, + ACTIONS(1126), 1, sym__raw_string_literal_start, - ACTIONS(2301), 1, + ACTIONS(2321), 1, anon_sym_COLON_COLON, - ACTIONS(3421), 1, + ACTIONS(3413), 1, sym_identifier, - ACTIONS(3431), 1, + ACTIONS(3423), 1, sym_metavariable, - STATE(2149), 1, + STATE(2171), 1, sym_scoped_identifier, - STATE(2222), 1, + STATE(2226), 1, sym__literal_pattern, - STATE(3740), 1, + STATE(3723), 1, sym_bracketed_type, - STATE(3804), 1, + STATE(3791), 1, sym_generic_type_with_turbofish, - ACTIONS(1124), 2, + ACTIONS(1118), 2, anon_sym_true, anon_sym_false, - STATE(1068), 2, + STATE(1060), 2, sym_line_comment, sym_block_comment, - ACTIONS(1120), 3, + ACTIONS(1114), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3425), 3, + ACTIONS(3417), 3, anon_sym_COLON, anon_sym_else, anon_sym_in, - ACTIONS(3429), 3, + ACTIONS(3421), 3, sym_self, sym_super, sym_crate, - STATE(2116), 4, + STATE(2100), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3423), 7, + ACTIONS(3415), 7, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -117376,7 +116196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, - ACTIONS(3427), 21, + ACTIONS(3419), 21, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117403,10 +116223,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1069), 2, + STATE(1061), 2, sym_line_comment, sym_block_comment, - ACTIONS(1442), 9, + ACTIONS(1430), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117416,7 +116236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1444), 41, + ACTIONS(1432), 41, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117458,214 +116278,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [514] = 11, + [514] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3435), 1, - anon_sym_LPAREN, - ACTIONS(3439), 1, - anon_sym_BANG, - ACTIONS(3441), 1, - anon_sym_COLON_COLON, - ACTIONS(3443), 1, - anon_sym_LT2, - STATE(1430), 1, - sym_type_arguments, - STATE(1434), 1, - sym_parameters, - STATE(1070), 2, + STATE(1062), 2, sym_line_comment, sym_block_comment, - ACTIONS(3437), 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(3433), 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, - [591] = 11, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3435), 1, - anon_sym_LPAREN, - ACTIONS(3441), 1, - anon_sym_COLON_COLON, - ACTIONS(3443), 1, - anon_sym_LT2, - ACTIONS(3449), 1, - anon_sym_BANG, - STATE(1430), 1, - sym_type_arguments, - STATE(1434), 1, - sym_parameters, - STATE(1071), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3447), 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(3445), 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, - [668] = 12, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(348), 1, - anon_sym_LBRACE, - ACTIONS(3455), 1, - anon_sym_BANG, - ACTIONS(3457), 1, - anon_sym_COLON_COLON, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(3461), 1, - anon_sym_move, - STATE(1534), 1, - sym_block, - STATE(3719), 1, - sym_label, - STATE(1072), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3453), 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(3451), 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, - [747] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - STATE(1073), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1512), 9, + ACTIONS(1470), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117675,7 +116296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1514), 41, + ACTIONS(1472), 41, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117717,15 +116338,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [812] = 5, + [579] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1074), 2, + STATE(1063), 2, sym_line_comment, sym_block_comment, - ACTIONS(1454), 9, + ACTIONS(1446), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117735,7 +116356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1456), 41, + ACTIONS(1448), 41, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117777,15 +116398,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [877] = 5, + [644] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1075), 2, + STATE(1064), 2, sym_line_comment, sym_block_comment, - ACTIONS(1438), 9, + ACTIONS(1296), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117795,7 +116416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1440), 41, + ACTIONS(1294), 41, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117837,15 +116458,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [942] = 5, + [709] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1076), 2, + STATE(1065), 2, sym_line_comment, sym_block_comment, - ACTIONS(1136), 9, + ACTIONS(1434), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117855,7 +116476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1134), 41, + ACTIONS(1436), 41, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117897,77 +116518,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1007] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3467), 1, - anon_sym_POUND, - STATE(1369), 2, - sym_attribute_item, - sym_inner_attribute_item, - STATE(1077), 3, - sym_line_comment, - sym_block_comment, - aux_sym_match_arm_repeat1, - ACTIONS(3465), 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(3463), 32, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_const, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_raw, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [1076] = 5, + [774] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1078), 2, + STATE(1066), 2, sym_line_comment, sym_block_comment, - ACTIONS(1446), 9, + ACTIONS(1442), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117977,7 +116536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1448), 41, + ACTIONS(1444), 41, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118019,15 +116578,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1141] = 5, + [839] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1079), 2, + STATE(1067), 2, sym_line_comment, sym_block_comment, - ACTIONS(1528), 9, + ACTIONS(1338), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118037,7 +116596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1530), 41, + ACTIONS(1336), 41, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118079,27 +116638,27 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1206] = 11, + [904] = 11, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3435), 1, + ACTIONS(3427), 1, anon_sym_LPAREN, - ACTIONS(3439), 1, + ACTIONS(3431), 1, anon_sym_BANG, - ACTIONS(3441), 1, + ACTIONS(3433), 1, anon_sym_COLON_COLON, - ACTIONS(3443), 1, + ACTIONS(3435), 1, anon_sym_LT2, - STATE(1430), 1, - sym_type_arguments, - STATE(1434), 1, + STATE(1391), 1, sym_parameters, - STATE(1080), 2, + STATE(1425), 1, + sym_type_arguments, + STATE(1068), 2, sym_line_comment, sym_block_comment, - ACTIONS(3472), 17, + ACTIONS(3429), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -118117,7 +116676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3470), 27, + ACTIONS(3425), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -118145,15 +116704,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [1283] = 5, + [981] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1081), 2, + STATE(1069), 2, sym_line_comment, sym_block_comment, - ACTIONS(1450), 9, + ACTIONS(1438), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118163,7 +116722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1452), 41, + ACTIONS(1440), 41, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118205,15 +116764,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1348] = 5, + [1046] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1082), 2, + STATE(1070), 2, sym_line_comment, sym_block_comment, - ACTIONS(1056), 9, + ACTIONS(1546), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118223,7 +116782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1054), 41, + ACTIONS(1548), 41, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118265,67 +116824,36 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1413] = 24, - ACTIONS(29), 1, - anon_sym_LT, + [1111] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1620), 1, - anon_sym_LBRACK, - ACTIONS(3363), 1, - anon_sym_SQUOTE, - ACTIONS(3474), 1, - sym_identifier, - ACTIONS(3478), 1, + ACTIONS(3441), 1, + anon_sym_POUND, + STATE(1361), 2, + sym_attribute_item, + sym_inner_attribute_item, + STATE(1071), 3, + sym_line_comment, + sym_block_comment, + aux_sym_match_arm_repeat1, + ACTIONS(3439), 14, + sym__raw_string_literal_start, + sym_float_literal, anon_sym_LPAREN, - ACTIONS(3480), 1, - anon_sym_STAR, - ACTIONS(3484), 1, + anon_sym_LBRACK, + anon_sym_DASH, anon_sym_AMP, - ACTIONS(3486), 1, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - ACTIONS(3490), 1, - anon_sym_for, - ACTIONS(3494), 1, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - STATE(2586), 1, - sym_where_predicate, - STATE(2812), 1, - sym_scoped_type_identifier, - STATE(3140), 1, - sym_generic_type, - STATE(3624), 1, - sym_scoped_identifier, - STATE(3636), 1, - sym_bracketed_type, - STATE(3780), 1, - sym_generic_type_with_turbofish, - STATE(1083), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3476), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - ACTIONS(3492), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3488), 4, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - anon_sym_raw, - STATE(3400), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3482), 17, + ACTIONS(3437), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118343,15 +116871,229 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1515] = 5, + 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_raw, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [1180] = 11, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1084), 2, + ACTIONS(3427), 1, + anon_sym_LPAREN, + ACTIONS(3431), 1, + anon_sym_BANG, + ACTIONS(3433), 1, + anon_sym_COLON_COLON, + ACTIONS(3435), 1, + anon_sym_LT2, + STATE(1391), 1, + sym_parameters, + STATE(1425), 1, + sym_type_arguments, + STATE(1072), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3446), 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(3444), 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, + [1257] = 12, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(348), 1, + anon_sym_LBRACE, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, + anon_sym_COLON_COLON, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + ACTIONS(3458), 1, + anon_sym_move, + STATE(1533), 1, + sym_block, + STATE(3709), 1, + sym_label, + STATE(1073), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3450), 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(3448), 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, + [1336] = 11, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3427), 1, + anon_sym_LPAREN, + ACTIONS(3433), 1, + anon_sym_COLON_COLON, + ACTIONS(3435), 1, + anon_sym_LT2, + ACTIONS(3464), 1, + anon_sym_BANG, + STATE(1391), 1, + sym_parameters, + STATE(1425), 1, + sym_type_arguments, + STATE(1074), 2, sym_line_comment, sym_block_comment, - ACTIONS(2067), 9, + ACTIONS(3462), 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(3460), 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, + [1413] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1075), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2363), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118361,7 +117103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2069), 40, + ACTIONS(2365), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118402,110 +117144,25 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1579] = 24, - ACTIONS(29), 1, - anon_sym_LT, + [1477] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1620), 1, - anon_sym_LBRACK, - ACTIONS(3363), 1, - anon_sym_SQUOTE, - ACTIONS(3474), 1, - sym_identifier, - ACTIONS(3478), 1, - anon_sym_LPAREN, - ACTIONS(3480), 1, - anon_sym_STAR, - ACTIONS(3484), 1, - anon_sym_AMP, - ACTIONS(3486), 1, - anon_sym_COLON_COLON, - ACTIONS(3490), 1, - anon_sym_for, - ACTIONS(3494), 1, - sym_metavariable, - STATE(2482), 1, - sym_where_predicate, - STATE(2812), 1, - sym_scoped_type_identifier, - STATE(3140), 1, - sym_generic_type, - STATE(3624), 1, - sym_scoped_identifier, - STATE(3636), 1, - sym_bracketed_type, - STATE(3780), 1, - sym_generic_type_with_turbofish, - STATE(1085), 2, + STATE(1076), 2, sym_line_comment, sym_block_comment, - ACTIONS(3492), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3496), 3, + ACTIONS(2685), 9, anon_sym_SEMI, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_EQ, - ACTIONS(3488), 4, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - anon_sym_raw, - STATE(3400), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3482), 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, - [1681] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3498), 1, - anon_sym_POUND, - STATE(1386), 1, - sym_attribute_item, - STATE(1086), 3, - sym_line_comment, - sym_block_comment, - aux_sym_enum_variant_list_repeat1, - ACTIONS(776), 11, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, anon_sym_LT, + anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_SQUOTE, - sym_integer_literal, + anon_sym_POUND, sym_metavariable, - ACTIONS(3381), 35, + ACTIONS(2687), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118526,30 +117183,35 @@ 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, anon_sym_raw, sym_identifier, sym_self, sym_super, sym_crate, - [1749] = 5, + [1541] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1087), 2, + STATE(1077), 2, sym_line_comment, sym_block_comment, - ACTIONS(2665), 9, + ACTIONS(2087), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118559,7 +117221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2667), 40, + ACTIONS(2089), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118600,25 +117262,103 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1813] = 10, + [1605] = 24, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3435), 1, + ACTIONS(1612), 1, + anon_sym_LBRACK, + ACTIONS(3303), 1, + anon_sym_SQUOTE, + ACTIONS(3466), 1, + sym_identifier, + ACTIONS(3470), 1, + anon_sym_LPAREN, + ACTIONS(3472), 1, + anon_sym_STAR, + ACTIONS(3476), 1, + anon_sym_AMP, + ACTIONS(3478), 1, + anon_sym_COLON_COLON, + ACTIONS(3482), 1, + anon_sym_for, + ACTIONS(3486), 1, + sym_metavariable, + STATE(2484), 1, + sym_where_predicate, + STATE(2836), 1, + sym_scoped_type_identifier, + STATE(3138), 1, + sym_generic_type, + STATE(3626), 1, + sym_bracketed_type, + STATE(3640), 1, + sym_scoped_identifier, + STATE(3756), 1, + sym_generic_type_with_turbofish, + STATE(1078), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3468), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(3484), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3480), 4, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + anon_sym_raw, + STATE(3399), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3474), 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, + [1707] = 10, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3427), 1, anon_sym_LPAREN, - ACTIONS(3443), 1, + ACTIONS(3435), 1, anon_sym_LT2, - ACTIONS(3505), 1, + ACTIONS(3492), 1, anon_sym_COLON_COLON, - STATE(1430), 1, - sym_type_arguments, - STATE(1434), 1, + STATE(1391), 1, sym_parameters, - STATE(1088), 2, + STATE(1425), 1, + sym_type_arguments, + STATE(1079), 2, sym_line_comment, sym_block_comment, - ACTIONS(3503), 17, + ACTIONS(3490), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -118636,7 +117376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3501), 27, + ACTIONS(3488), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -118664,67 +117404,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [1887] = 24, + [1781] = 24, ACTIONS(29), 1, anon_sym_LT, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1620), 1, + ACTIONS(1612), 1, anon_sym_LBRACK, - ACTIONS(3363), 1, + ACTIONS(3303), 1, anon_sym_SQUOTE, - ACTIONS(3474), 1, + ACTIONS(3466), 1, sym_identifier, - ACTIONS(3478), 1, + ACTIONS(3470), 1, anon_sym_LPAREN, - ACTIONS(3480), 1, + ACTIONS(3472), 1, anon_sym_STAR, - ACTIONS(3484), 1, + ACTIONS(3476), 1, anon_sym_AMP, - ACTIONS(3486), 1, + ACTIONS(3478), 1, anon_sym_COLON_COLON, - ACTIONS(3490), 1, + ACTIONS(3482), 1, anon_sym_for, - ACTIONS(3494), 1, + ACTIONS(3486), 1, sym_metavariable, - STATE(2586), 1, + STATE(2536), 1, sym_where_predicate, - STATE(2812), 1, + STATE(2836), 1, sym_scoped_type_identifier, - STATE(3140), 1, + STATE(3138), 1, sym_generic_type, - STATE(3624), 1, - sym_scoped_identifier, - STATE(3636), 1, + STATE(3626), 1, sym_bracketed_type, - STATE(3780), 1, + STATE(3640), 1, + sym_scoped_identifier, + STATE(3756), 1, sym_generic_type_with_turbofish, - STATE(1089), 2, + STATE(1080), 2, sym_line_comment, sym_block_comment, - ACTIONS(3492), 3, + ACTIONS(3484), 3, sym_self, sym_super, sym_crate, - ACTIONS(3507), 3, + ACTIONS(3494), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(3488), 4, + ACTIONS(3480), 4, anon_sym_default, anon_sym_gen, anon_sym_union, anon_sym_raw, - STATE(3400), 6, + STATE(3399), 6, sym_higher_ranked_trait_bound, sym_lifetime, sym_array_type, sym_tuple_type, sym_reference_type, sym_pointer_type, - ACTIONS(3482), 17, + ACTIONS(3474), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118742,15 +117482,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [1989] = 5, + [1883] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1090), 2, + STATE(1081), 2, sym_line_comment, sym_block_comment, - ACTIONS(2911), 9, + ACTIONS(1931), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118760,7 +117500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2913), 40, + ACTIONS(1933), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118801,15 +117541,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [2053] = 5, + [1947] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1091), 2, + STATE(1082), 2, sym_line_comment, sym_block_comment, - ACTIONS(2343), 9, + ACTIONS(2931), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118819,7 +117559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2345), 40, + ACTIONS(2933), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118860,25 +117600,168 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [2117] = 5, + [2011] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1092), 2, + ACTIONS(3496), 1, + anon_sym_POUND, + STATE(1378), 1, + sym_attribute_item, + STATE(1083), 3, + sym_line_comment, + sym_block_comment, + aux_sym_enum_variant_list_repeat1, + ACTIONS(772), 11, + 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_integer_literal, + sym_metavariable, + ACTIONS(3373), 35, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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, + anon_sym_raw, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [2079] = 24, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(1612), 1, + anon_sym_LBRACK, + ACTIONS(3303), 1, + anon_sym_SQUOTE, + ACTIONS(3466), 1, + sym_identifier, + ACTIONS(3470), 1, + anon_sym_LPAREN, + ACTIONS(3472), 1, + anon_sym_STAR, + ACTIONS(3476), 1, + anon_sym_AMP, + ACTIONS(3478), 1, + anon_sym_COLON_COLON, + ACTIONS(3482), 1, + anon_sym_for, + ACTIONS(3486), 1, + sym_metavariable, + STATE(2536), 1, + sym_where_predicate, + STATE(2836), 1, + sym_scoped_type_identifier, + STATE(3138), 1, + sym_generic_type, + STATE(3626), 1, + sym_bracketed_type, + STATE(3640), 1, + sym_scoped_identifier, + STATE(3756), 1, + sym_generic_type_with_turbofish, + STATE(1084), 2, sym_line_comment, sym_block_comment, - ACTIONS(1911), 9, + ACTIONS(3484), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3499), 3, anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(3480), 4, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + anon_sym_raw, + STATE(3399), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3474), 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, + [2181] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1085), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3503), 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_COMMA, anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(1913), 40, + ACTIONS(3501), 35, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118899,43 +117782,38 @@ 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, anon_sym_raw, sym_identifier, sym_self, sym_super, sym_crate, - [2181] = 9, + [2244] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3435), 1, + ACTIONS(3427), 1, anon_sym_LPAREN, - ACTIONS(3443), 1, + ACTIONS(3435), 1, anon_sym_LT2, - STATE(1394), 1, - sym_parameters, - STATE(1431), 1, + STATE(1406), 1, sym_type_arguments, - STATE(1093), 2, + STATE(1413), 1, + sym_parameters, + STATE(1086), 2, sym_line_comment, sym_block_comment, - ACTIONS(3511), 17, + ACTIONS(3507), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -118953,7 +117831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3509), 27, + ACTIONS(3505), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -118981,23 +117859,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2252] = 9, + [2315] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3435), 1, - anon_sym_LPAREN, - ACTIONS(3443), 1, - anon_sym_LT2, - STATE(1394), 1, - sym_parameters, - STATE(1431), 1, - sym_type_arguments, - STATE(1094), 2, + ACTIONS(3513), 1, + anon_sym_BANG, + ACTIONS(3515), 1, + anon_sym_COLON_COLON, + STATE(1087), 2, sym_line_comment, sym_block_comment, - ACTIONS(3515), 17, + ACTIONS(3511), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -119015,8 +117889,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3513), 27, + ACTIONS(3509), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -119043,14 +117918,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2323] = 6, + anon_sym_LT2, + [2382] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, ACTIONS(3521), 1, anon_sym_RBRACE, - STATE(1095), 2, + STATE(1088), 2, sym_line_comment, sym_block_comment, ACTIONS(3519), 15, @@ -119102,20 +117978,20 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [2388] = 9, + [2447] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3435), 1, + ACTIONS(3427), 1, anon_sym_LPAREN, - ACTIONS(3443), 1, + ACTIONS(3435), 1, anon_sym_LT2, - STATE(1394), 1, - sym_parameters, - STATE(1431), 1, + STATE(1406), 1, sym_type_arguments, - STATE(1096), 2, + STATE(1413), 1, + sym_parameters, + STATE(1089), 2, sym_line_comment, sym_block_comment, ACTIONS(3525), 17, @@ -119164,12 +118040,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2459] = 5, + [2518] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1097), 2, + STATE(1090), 2, sym_line_comment, sym_block_comment, ACTIONS(3529), 13, @@ -119222,20 +118098,20 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [2522] = 9, + [2581] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3435), 1, + ACTIONS(3427), 1, anon_sym_LPAREN, - ACTIONS(3443), 1, + ACTIONS(3435), 1, anon_sym_LT2, - STATE(1394), 1, - sym_parameters, - STATE(1431), 1, + STATE(1406), 1, sym_type_arguments, - STATE(1098), 2, + STATE(1413), 1, + sym_parameters, + STATE(1091), 2, sym_line_comment, sym_block_comment, ACTIONS(3533), 17, @@ -119284,29 +118160,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2593] = 5, + [2652] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1099), 2, + ACTIONS(3539), 1, + anon_sym_RBRACE, + STATE(1092), 2, sym_line_comment, sym_block_comment, - ACTIONS(3537), 13, - anon_sym_SEMI, + ACTIONS(3537), 15, + sym__raw_string_literal_start, + sym_float_literal, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DASH, anon_sym_AMP, - anon_sym_EQ, + anon_sym_PIPE, anon_sym_LT, + anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(3535), 35, + ACTIONS(3535), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119324,33 +118204,30 @@ 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_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, + anon_sym_ref, + sym_mutable_specifier, anon_sym_raw, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [2656] = 5, + [2717] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1100), 2, + STATE(1093), 2, sym_line_comment, sym_block_comment, - ACTIONS(3541), 13, + ACTIONS(3543), 13, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, @@ -119364,7 +118241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(3539), 35, + ACTIONS(3541), 35, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119400,19 +118277,19 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [2719] = 7, + [2780] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3547), 1, - anon_sym_BANG, ACTIONS(3549), 1, + anon_sym_BANG, + ACTIONS(3551), 1, anon_sym_COLON_COLON, - STATE(1101), 2, + STATE(1094), 2, sym_line_comment, sym_block_comment, - ACTIONS(3545), 17, + ACTIONS(3547), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -119430,7 +118307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3543), 29, + ACTIONS(3545), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119460,19 +118337,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_else, anon_sym_LT2, - [2786] = 7, + [2847] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3555), 1, - anon_sym_BANG, ACTIONS(3557), 1, + anon_sym_BANG, + ACTIONS(3559), 1, anon_sym_COLON_COLON, - STATE(1102), 2, + STATE(1095), 2, sym_line_comment, sym_block_comment, - ACTIONS(3553), 17, + ACTIONS(3555), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -119490,7 +118367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3551), 29, + ACTIONS(3553), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119520,77 +118397,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_else, anon_sym_LT2, - [2853] = 5, + [2914] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1103), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3561), 13, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, + ACTIONS(3565), 1, anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(3559), 35, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_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, - anon_sym_raw, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [2916] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, ACTIONS(3567), 1, - anon_sym_BANG, - ACTIONS(3569), 1, anon_sym_COLON_COLON, - STATE(1104), 2, + STATE(1096), 2, sym_line_comment, sym_block_comment, - ACTIONS(3565), 17, + ACTIONS(3563), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -119608,7 +118427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3563), 29, + ACTIONS(3561), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119638,78 +118457,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_else, anon_sym_LT2, - [2983] = 6, + [2981] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3575), 1, - anon_sym_RBRACE, - STATE(1105), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3573), 15, - sym__raw_string_literal_start, - sym_float_literal, + ACTIONS(3427), 1, 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(3571), 32, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_const, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_raw, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [3048] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3581), 1, - anon_sym_BANG, - ACTIONS(3583), 1, - anon_sym_COLON_COLON, - STATE(1106), 2, + ACTIONS(3435), 1, + anon_sym_LT2, + STATE(1406), 1, + sym_type_arguments, + STATE(1413), 1, + sym_parameters, + STATE(1097), 2, sym_line_comment, sym_block_comment, - ACTIONS(3579), 17, + ACTIONS(3571), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -119727,9 +118491,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3577), 29, + ACTIONS(3569), 27, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -119756,13 +118519,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - anon_sym_LT2, + [3052] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1098), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3575), 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(3573), 35, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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, + anon_sym_raw, + sym_identifier, + sym_self, + sym_super, + sym_crate, [3115] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1107), 2, + STATE(1099), 2, sym_line_comment, sym_block_comment, ACTIONS(2641), 7, @@ -119821,60 +118641,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1102), 1, + ACTIONS(1096), 1, anon_sym_fn, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_extern, - ACTIONS(3277), 1, + ACTIONS(3257), 1, anon_sym_for, - ACTIONS(3478), 1, + ACTIONS(3470), 1, anon_sym_LPAREN, - ACTIONS(3486), 1, + ACTIONS(3478), 1, anon_sym_COLON_COLON, - ACTIONS(3494), 1, + ACTIONS(3486), 1, sym_metavariable, - ACTIONS(3585), 1, + ACTIONS(3577), 1, sym_identifier, - ACTIONS(3589), 1, + ACTIONS(3581), 1, anon_sym_default, - STATE(1624), 1, + STATE(1618), 1, sym_for_lifetimes, - STATE(2027), 1, + STATE(2026), 1, sym_scoped_type_identifier, - STATE(2042), 1, + STATE(2030), 1, sym_generic_type, - STATE(2336), 1, + STATE(2329), 1, aux_sym_function_modifiers_repeat1, - STATE(2421), 1, + STATE(2431), 1, sym_extern_modifier, - STATE(3624), 1, - sym_scoped_identifier, - STATE(3636), 1, + STATE(3626), 1, sym_bracketed_type, - STATE(3780), 1, + STATE(3640), 1, + sym_scoped_identifier, + STATE(3756), 1, sym_generic_type_with_turbofish, - STATE(3815), 1, + STATE(3806), 1, sym_function_modifiers, - STATE(1108), 2, + STATE(1100), 2, sym_line_comment, sym_block_comment, - ACTIONS(1096), 3, + ACTIONS(1090), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(3488), 3, + ACTIONS(3480), 3, anon_sym_gen, anon_sym_union, anon_sym_raw, - ACTIONS(3492), 3, + ACTIONS(3484), 3, sym_self, sym_super, sym_crate, - STATE(2074), 3, + STATE(2066), 3, sym_higher_ranked_trait_bound, sym_function_type, sym_tuple_type, - ACTIONS(3587), 17, + ACTIONS(3579), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119897,10 +118717,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1109), 2, + STATE(1101), 2, sym_line_comment, sym_block_comment, - ACTIONS(2537), 7, + ACTIONS(2557), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119908,7 +118728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2539), 40, + ACTIONS(2559), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119954,10 +118774,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1110), 2, + STATE(1102), 2, sym_line_comment, sym_block_comment, - ACTIONS(2549), 7, + ACTIONS(2569), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119965,7 +118785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2551), 40, + ACTIONS(2571), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120011,10 +118831,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1111), 2, + STATE(1103), 2, sym_line_comment, sym_block_comment, - ACTIONS(2553), 7, + ACTIONS(2573), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120022,7 +118842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2555), 40, + ACTIONS(2575), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120068,10 +118888,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1112), 2, + STATE(1104), 2, sym_line_comment, sym_block_comment, - ACTIONS(2557), 7, + ACTIONS(2577), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120079,7 +118899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2559), 40, + ACTIONS(2579), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120125,10 +118945,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1113), 2, + STATE(1105), 2, sym_line_comment, sym_block_comment, - ACTIONS(2569), 7, + ACTIONS(2589), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120136,7 +118956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2571), 40, + ACTIONS(2591), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120182,10 +119002,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1114), 2, + STATE(1106), 2, sym_line_comment, sym_block_comment, - ACTIONS(2573), 7, + ACTIONS(2593), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120193,7 +119013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2575), 40, + ACTIONS(2595), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120239,10 +119059,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1115), 2, + STATE(1107), 2, sym_line_comment, sym_block_comment, - ACTIONS(2577), 7, + ACTIONS(2597), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120250,7 +119070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2579), 40, + ACTIONS(2599), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120296,10 +119116,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1116), 2, + STATE(1108), 2, sym_line_comment, sym_block_comment, - ACTIONS(2605), 7, + ACTIONS(2625), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120307,7 +119127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2607), 40, + ACTIONS(2627), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120353,10 +119173,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1117), 2, + STATE(1109), 2, sym_line_comment, sym_block_comment, - ACTIONS(2637), 7, + ACTIONS(2657), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120364,7 +119184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2639), 40, + ACTIONS(2659), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120410,10 +119230,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1118), 2, + STATE(1110), 2, sym_line_comment, sym_block_comment, - ACTIONS(2649), 7, + ACTIONS(2669), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120421,7 +119241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2651), 40, + ACTIONS(2671), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120467,10 +119287,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1119), 2, + STATE(1111), 2, sym_line_comment, sym_block_comment, - ACTIONS(2653), 7, + ACTIONS(2673), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120478,7 +119298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2655), 40, + ACTIONS(2675), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120524,10 +119344,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1120), 2, + STATE(1112), 2, sym_line_comment, sym_block_comment, - ACTIONS(2661), 7, + ACTIONS(2681), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120535,7 +119355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2663), 40, + ACTIONS(2683), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120581,10 +119401,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1121), 2, + STATE(1113), 2, sym_line_comment, sym_block_comment, - ACTIONS(2745), 7, + ACTIONS(2769), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120592,7 +119412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2747), 40, + ACTIONS(2771), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120638,10 +119458,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1122), 2, + STATE(1114), 2, sym_line_comment, sym_block_comment, - ACTIONS(2749), 7, + ACTIONS(2825), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120649,7 +119469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2751), 40, + ACTIONS(2827), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120695,10 +119515,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1123), 2, + STATE(1115), 2, sym_line_comment, sym_block_comment, - ACTIONS(2805), 7, + ACTIONS(2839), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120706,7 +119526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2807), 40, + ACTIONS(2841), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120752,10 +119572,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1124), 2, + STATE(1116), 2, sym_line_comment, sym_block_comment, - ACTIONS(2823), 7, + ACTIONS(2843), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120763,7 +119583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2825), 40, + ACTIONS(2845), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120809,10 +119629,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1125), 2, + STATE(1117), 2, sym_line_comment, sym_block_comment, - ACTIONS(2247), 7, + ACTIONS(2267), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120820,7 +119640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2249), 40, + ACTIONS(2269), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120866,10 +119686,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1126), 2, + STATE(1118), 2, sym_line_comment, sym_block_comment, - ACTIONS(2251), 7, + ACTIONS(2271), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120877,7 +119697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2253), 40, + ACTIONS(2273), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120923,10 +119743,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1127), 2, + STATE(1119), 2, sym_line_comment, sym_block_comment, - ACTIONS(2255), 7, + ACTIONS(2275), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120934,7 +119754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2257), 40, + ACTIONS(2277), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120980,10 +119800,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1128), 2, + STATE(1120), 2, sym_line_comment, sym_block_comment, - ACTIONS(2259), 7, + ACTIONS(2279), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120991,7 +119811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2261), 40, + ACTIONS(2281), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121037,10 +119857,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1129), 2, + STATE(1121), 2, sym_line_comment, sym_block_comment, - ACTIONS(2263), 7, + ACTIONS(2283), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121048,7 +119868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2265), 40, + ACTIONS(2285), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121094,10 +119914,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1130), 2, + STATE(1122), 2, sym_line_comment, sym_block_comment, - ACTIONS(2267), 7, + ACTIONS(2287), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121105,7 +119925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2269), 40, + ACTIONS(2289), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121151,10 +119971,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1131), 2, + STATE(1123), 2, sym_line_comment, sym_block_comment, - ACTIONS(2271), 7, + ACTIONS(2291), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121162,7 +119982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2273), 40, + ACTIONS(2293), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121208,10 +120028,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1132), 2, + STATE(1124), 2, sym_line_comment, sym_block_comment, - ACTIONS(2275), 7, + ACTIONS(2295), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121219,7 +120039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2277), 40, + ACTIONS(2297), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121265,10 +120085,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1133), 2, + STATE(1125), 2, sym_line_comment, sym_block_comment, - ACTIONS(2279), 7, + ACTIONS(2299), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121276,7 +120096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2281), 40, + ACTIONS(2301), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121322,10 +120142,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1134), 2, + STATE(1126), 2, sym_line_comment, sym_block_comment, - ACTIONS(2283), 7, + ACTIONS(2303), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121333,7 +120153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2285), 40, + ACTIONS(2305), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121379,10 +120199,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1135), 2, + STATE(1127), 2, sym_line_comment, sym_block_comment, - ACTIONS(2347), 7, + ACTIONS(2367), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121390,7 +120210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2349), 40, + ACTIONS(2369), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121436,10 +120256,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1136), 2, + STATE(1128), 2, sym_line_comment, sym_block_comment, - ACTIONS(2351), 7, + ACTIONS(2371), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121447,7 +120267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2353), 40, + ACTIONS(2373), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121493,10 +120313,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1137), 2, + STATE(1129), 2, sym_line_comment, sym_block_comment, - ACTIONS(2355), 7, + ACTIONS(2375), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121504,7 +120324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2357), 40, + ACTIONS(2377), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121550,10 +120370,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1138), 2, + STATE(1130), 2, sym_line_comment, sym_block_comment, - ACTIONS(2359), 7, + ACTIONS(2379), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121561,7 +120381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2361), 40, + ACTIONS(2381), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121607,10 +120427,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1139), 2, + STATE(1131), 2, sym_line_comment, sym_block_comment, - ACTIONS(2363), 7, + ACTIONS(2383), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121618,7 +120438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2365), 40, + ACTIONS(2385), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121664,10 +120484,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1140), 2, + STATE(1132), 2, sym_line_comment, sym_block_comment, - ACTIONS(2367), 7, + ACTIONS(2387), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121675,7 +120495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2369), 40, + ACTIONS(2389), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121721,10 +120541,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1141), 2, + STATE(1133), 2, sym_line_comment, sym_block_comment, - ACTIONS(2371), 7, + ACTIONS(2391), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121732,7 +120552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2373), 40, + ACTIONS(2393), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121778,10 +120598,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1142), 2, + STATE(1134), 2, sym_line_comment, sym_block_comment, - ACTIONS(2375), 7, + ACTIONS(2395), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121789,7 +120609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2377), 40, + ACTIONS(2397), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121835,10 +120655,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1143), 2, + STATE(1135), 2, sym_line_comment, sym_block_comment, - ACTIONS(2379), 7, + ACTIONS(2399), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121846,7 +120666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2381), 40, + ACTIONS(2401), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121892,10 +120712,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1144), 2, + STATE(1136), 2, sym_line_comment, sym_block_comment, - ACTIONS(2383), 7, + ACTIONS(2403), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121903,7 +120723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2385), 40, + ACTIONS(2405), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121949,10 +120769,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1145), 2, + STATE(1137), 2, sym_line_comment, sym_block_comment, - ACTIONS(2387), 7, + ACTIONS(2407), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121960,7 +120780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2389), 40, + ACTIONS(2409), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122006,10 +120826,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1146), 2, + STATE(1138), 2, sym_line_comment, sym_block_comment, - ACTIONS(2391), 7, + ACTIONS(2411), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122017,7 +120837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2393), 40, + ACTIONS(2413), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122063,10 +120883,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1147), 2, + STATE(1139), 2, sym_line_comment, sym_block_comment, - ACTIONS(2395), 7, + ACTIONS(2415), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122074,7 +120894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2397), 40, + ACTIONS(2417), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122120,10 +120940,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1148), 2, + STATE(1140), 2, sym_line_comment, sym_block_comment, - ACTIONS(2399), 7, + ACTIONS(2419), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122131,7 +120951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2401), 40, + ACTIONS(2421), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122177,10 +120997,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1149), 2, + STATE(1141), 2, sym_line_comment, sym_block_comment, - ACTIONS(2403), 7, + ACTIONS(2423), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122188,7 +121008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2405), 40, + ACTIONS(2425), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122234,10 +121054,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1150), 2, + STATE(1142), 2, sym_line_comment, sym_block_comment, - ACTIONS(2407), 7, + ACTIONS(2427), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122245,7 +121065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2409), 40, + ACTIONS(2429), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122291,10 +121111,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1151), 2, + STATE(1143), 2, sym_line_comment, sym_block_comment, - ACTIONS(2415), 7, + ACTIONS(2435), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122302,7 +121122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2417), 40, + ACTIONS(2437), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122348,10 +121168,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1152), 2, + STATE(1144), 2, sym_line_comment, sym_block_comment, - ACTIONS(2505), 7, + ACTIONS(2525), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122359,7 +121179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2507), 40, + ACTIONS(2527), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122405,10 +121225,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1153), 2, + STATE(1145), 2, sym_line_comment, sym_block_comment, - ACTIONS(2509), 7, + ACTIONS(2529), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122416,7 +121236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2511), 40, + ACTIONS(2531), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122462,10 +121282,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1154), 2, + STATE(1146), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 7, + ACTIONS(2533), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122473,7 +121293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2515), 40, + ACTIONS(2535), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122519,10 +121339,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1155), 2, + STATE(1147), 2, sym_line_comment, sym_block_comment, - ACTIONS(2517), 7, + ACTIONS(2537), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122530,7 +121350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2519), 40, + ACTIONS(2539), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122576,10 +121396,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1156), 2, + STATE(1148), 2, sym_line_comment, sym_block_comment, - ACTIONS(2521), 7, + ACTIONS(2541), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122587,7 +121407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2523), 40, + ACTIONS(2543), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122633,10 +121453,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1157), 2, + STATE(1149), 2, sym_line_comment, sym_block_comment, - ACTIONS(2525), 7, + ACTIONS(2545), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122644,7 +121464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2527), 40, + ACTIONS(2547), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122690,10 +121510,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1158), 2, + STATE(1150), 2, sym_line_comment, sym_block_comment, - ACTIONS(2529), 7, + ACTIONS(2549), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122701,7 +121521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2531), 40, + ACTIONS(2551), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122747,10 +121567,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1159), 2, + STATE(1151), 2, sym_line_comment, sym_block_comment, - ACTIONS(2541), 7, + ACTIONS(2561), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122758,7 +121578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2543), 40, + ACTIONS(2563), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122804,10 +121624,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1160), 2, + STATE(1152), 2, sym_line_comment, sym_block_comment, - ACTIONS(2545), 7, + ACTIONS(2565), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122815,7 +121635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2547), 40, + ACTIONS(2567), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122861,10 +121681,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1161), 2, + STATE(1153), 2, sym_line_comment, sym_block_comment, - ACTIONS(2561), 7, + ACTIONS(2581), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122872,7 +121692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2563), 40, + ACTIONS(2583), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122918,10 +121738,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1162), 2, + STATE(1154), 2, sym_line_comment, sym_block_comment, - ACTIONS(2565), 7, + ACTIONS(2585), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122929,7 +121749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2567), 40, + ACTIONS(2587), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122975,10 +121795,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1163), 2, + STATE(1155), 2, sym_line_comment, sym_block_comment, - ACTIONS(2581), 7, + ACTIONS(2601), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122986,7 +121806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2583), 40, + ACTIONS(2603), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123032,10 +121852,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1164), 2, + STATE(1156), 2, sym_line_comment, sym_block_comment, - ACTIONS(2585), 7, + ACTIONS(2605), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123043,7 +121863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2587), 40, + ACTIONS(2607), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123089,10 +121909,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1165), 2, + STATE(1157), 2, sym_line_comment, sym_block_comment, - ACTIONS(2589), 7, + ACTIONS(2609), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123100,7 +121920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2591), 40, + ACTIONS(2611), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123146,10 +121966,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1166), 2, + STATE(1158), 2, sym_line_comment, sym_block_comment, - ACTIONS(2593), 7, + ACTIONS(2613), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123157,7 +121977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2595), 40, + ACTIONS(2615), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123203,10 +122023,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1167), 2, + STATE(1159), 2, sym_line_comment, sym_block_comment, - ACTIONS(2597), 7, + ACTIONS(2617), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123214,7 +122034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2599), 40, + ACTIONS(2619), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123260,10 +122080,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1168), 2, + STATE(1160), 2, sym_line_comment, sym_block_comment, - ACTIONS(2601), 7, + ACTIONS(2621), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123271,7 +122091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2603), 40, + ACTIONS(2623), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123317,10 +122137,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1169), 2, + STATE(1161), 2, sym_line_comment, sym_block_comment, - ACTIONS(2609), 7, + ACTIONS(2629), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123328,7 +122148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2611), 40, + ACTIONS(2631), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123374,10 +122194,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1170), 2, + STATE(1162), 2, sym_line_comment, sym_block_comment, - ACTIONS(2613), 7, + ACTIONS(2633), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123385,7 +122205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2615), 40, + ACTIONS(2635), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123431,10 +122251,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1171), 2, + STATE(1163), 2, sym_line_comment, sym_block_comment, - ACTIONS(2617), 7, + ACTIONS(2637), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123442,7 +122262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2619), 40, + ACTIONS(2639), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123488,10 +122308,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1172), 2, + STATE(1164), 2, sym_line_comment, sym_block_comment, - ACTIONS(2621), 7, + ACTIONS(2645), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123499,7 +122319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2623), 40, + ACTIONS(2647), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123545,10 +122365,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1173), 2, + STATE(1165), 2, sym_line_comment, sym_block_comment, - ACTIONS(2625), 7, + ACTIONS(2649), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123556,7 +122376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2627), 40, + ACTIONS(2651), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123602,10 +122422,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1174), 2, + STATE(1166), 2, sym_line_comment, sym_block_comment, - ACTIONS(2629), 7, + ACTIONS(2653), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123613,7 +122433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2631), 40, + ACTIONS(2655), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123659,10 +122479,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1175), 2, + STATE(1167), 2, sym_line_comment, sym_block_comment, - ACTIONS(2633), 7, + ACTIONS(2661), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123670,7 +122490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2635), 40, + ACTIONS(2663), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123716,10 +122536,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1176), 2, + STATE(1168), 2, sym_line_comment, sym_block_comment, - ACTIONS(2645), 7, + ACTIONS(2665), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123727,7 +122547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2647), 40, + ACTIONS(2667), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123773,10 +122593,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1177), 2, + STATE(1169), 2, sym_line_comment, sym_block_comment, - ACTIONS(2657), 7, + ACTIONS(2677), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123784,7 +122604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2659), 40, + ACTIONS(2679), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123830,10 +122650,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1178), 2, + STATE(1170), 2, sym_line_comment, sym_block_comment, - ACTIONS(2669), 7, + ACTIONS(2689), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123841,7 +122661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2671), 40, + ACTIONS(2691), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123887,10 +122707,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1179), 2, + STATE(1171), 2, sym_line_comment, sym_block_comment, - ACTIONS(2673), 7, + ACTIONS(2693), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123898,7 +122718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2675), 40, + ACTIONS(2695), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123944,10 +122764,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1180), 2, + STATE(1172), 2, sym_line_comment, sym_block_comment, - ACTIONS(2677), 7, + ACTIONS(2697), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123955,7 +122775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2679), 40, + ACTIONS(2699), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124001,10 +122821,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1181), 2, + STATE(1173), 2, sym_line_comment, sym_block_comment, - ACTIONS(2681), 7, + ACTIONS(2703), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124012,7 +122832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2683), 40, + ACTIONS(2705), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124058,10 +122878,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1182), 2, + STATE(1174), 2, sym_line_comment, sym_block_comment, - ACTIONS(2685), 7, + ACTIONS(2707), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124069,7 +122889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2687), 40, + ACTIONS(2709), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124115,10 +122935,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1183), 2, + STATE(1175), 2, sym_line_comment, sym_block_comment, - ACTIONS(2689), 7, + ACTIONS(2711), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124126,7 +122946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2691), 40, + ACTIONS(2713), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124172,10 +122992,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1184), 2, + STATE(1176), 2, sym_line_comment, sym_block_comment, - ACTIONS(2693), 7, + ACTIONS(2715), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124183,7 +123003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2695), 40, + ACTIONS(2717), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124229,10 +123049,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1185), 2, + STATE(1177), 2, sym_line_comment, sym_block_comment, - ACTIONS(2697), 7, + ACTIONS(2719), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124240,7 +123060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2699), 40, + ACTIONS(2721), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124286,10 +123106,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1186), 2, + STATE(1178), 2, sym_line_comment, sym_block_comment, - ACTIONS(2701), 7, + ACTIONS(2723), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124297,7 +123117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2703), 40, + ACTIONS(2725), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124343,10 +123163,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1187), 2, + STATE(1179), 2, sym_line_comment, sym_block_comment, - ACTIONS(2705), 7, + ACTIONS(2727), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124354,7 +123174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2707), 40, + ACTIONS(2729), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124400,10 +123220,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1188), 2, + STATE(1180), 2, sym_line_comment, sym_block_comment, - ACTIONS(2709), 7, + ACTIONS(2731), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124411,7 +123231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2711), 40, + ACTIONS(2733), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124457,10 +123277,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1189), 2, + STATE(1181), 2, sym_line_comment, sym_block_comment, - ACTIONS(2715), 7, + ACTIONS(2737), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124468,7 +123288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2717), 40, + ACTIONS(2739), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124514,10 +123334,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1190), 2, + STATE(1182), 2, sym_line_comment, sym_block_comment, - ACTIONS(2719), 7, + ACTIONS(2741), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124525,7 +123345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2721), 40, + ACTIONS(2743), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124571,10 +123391,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1191), 2, + STATE(1183), 2, sym_line_comment, sym_block_comment, - ACTIONS(2723), 7, + ACTIONS(2745), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124582,7 +123402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2725), 40, + ACTIONS(2747), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124628,10 +123448,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1192), 2, + STATE(1184), 2, sym_line_comment, sym_block_comment, - ACTIONS(2727), 7, + ACTIONS(2749), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124639,7 +123459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2729), 40, + ACTIONS(2751), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124685,10 +123505,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1193), 2, + STATE(1185), 2, sym_line_comment, sym_block_comment, - ACTIONS(2731), 7, + ACTIONS(2753), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124696,7 +123516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2733), 40, + ACTIONS(2755), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124742,10 +123562,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1194), 2, + STATE(1186), 2, sym_line_comment, sym_block_comment, - ACTIONS(2735), 7, + ACTIONS(2757), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124753,7 +123573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2737), 40, + ACTIONS(2759), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124799,10 +123619,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1195), 2, + STATE(1187), 2, sym_line_comment, sym_block_comment, - ACTIONS(2741), 7, + ACTIONS(2761), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124810,7 +123630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2743), 40, + ACTIONS(2763), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124856,10 +123676,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1196), 2, + STATE(1188), 2, sym_line_comment, sym_block_comment, - ACTIONS(2753), 7, + ACTIONS(2773), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124867,7 +123687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2755), 40, + ACTIONS(2775), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124913,10 +123733,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1197), 2, + STATE(1189), 2, sym_line_comment, sym_block_comment, - ACTIONS(2757), 7, + ACTIONS(2777), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124924,7 +123744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2759), 40, + ACTIONS(2779), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124970,10 +123790,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1198), 2, + STATE(1190), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 7, + ACTIONS(2781), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124981,7 +123801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2763), 40, + ACTIONS(2783), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125027,10 +123847,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1199), 2, + STATE(1191), 2, sym_line_comment, sym_block_comment, - ACTIONS(2765), 7, + ACTIONS(2785), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125038,7 +123858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2767), 40, + ACTIONS(2787), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125084,10 +123904,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1200), 2, + STATE(1192), 2, sym_line_comment, sym_block_comment, - ACTIONS(2769), 7, + ACTIONS(2789), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125095,7 +123915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2771), 40, + ACTIONS(2791), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125141,10 +123961,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1201), 2, + STATE(1193), 2, sym_line_comment, sym_block_comment, - ACTIONS(2773), 7, + ACTIONS(2793), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125152,7 +123972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2775), 40, + ACTIONS(2795), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125198,10 +124018,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1202), 2, + STATE(1194), 2, sym_line_comment, sym_block_comment, - ACTIONS(2777), 7, + ACTIONS(2797), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125209,7 +124029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2779), 40, + ACTIONS(2799), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125255,10 +124075,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1203), 2, + STATE(1195), 2, sym_line_comment, sym_block_comment, - ACTIONS(2781), 7, + ACTIONS(2801), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125266,7 +124086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2783), 40, + ACTIONS(2803), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125312,10 +124132,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1204), 2, + STATE(1196), 2, sym_line_comment, sym_block_comment, - ACTIONS(2785), 7, + ACTIONS(2805), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125323,7 +124143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2787), 40, + ACTIONS(2807), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125369,10 +124189,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1205), 2, + STATE(1197), 2, sym_line_comment, sym_block_comment, - ACTIONS(2789), 7, + ACTIONS(2809), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125380,7 +124200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2791), 40, + ACTIONS(2811), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125426,10 +124246,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1206), 2, + STATE(1198), 2, sym_line_comment, sym_block_comment, - ACTIONS(2793), 7, + ACTIONS(2813), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125437,7 +124257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2795), 40, + ACTIONS(2815), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125483,10 +124303,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1207), 2, + STATE(1199), 2, sym_line_comment, sym_block_comment, - ACTIONS(2797), 7, + ACTIONS(2817), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125494,7 +124314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2799), 40, + ACTIONS(2819), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125540,10 +124360,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1208), 2, + STATE(1200), 2, sym_line_comment, sym_block_comment, - ACTIONS(2811), 7, + ACTIONS(2831), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125551,7 +124371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2813), 40, + ACTIONS(2833), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125597,10 +124417,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1209), 2, + STATE(1201), 2, sym_line_comment, sym_block_comment, - ACTIONS(2815), 7, + ACTIONS(2835), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125608,7 +124428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2817), 40, + ACTIONS(2837), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125654,10 +124474,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1210), 2, + STATE(1202), 2, sym_line_comment, sym_block_comment, - ACTIONS(2827), 7, + ACTIONS(2847), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125665,7 +124485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2829), 40, + ACTIONS(2849), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125711,10 +124531,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1211), 2, + STATE(1203), 2, sym_line_comment, sym_block_comment, - ACTIONS(2831), 7, + ACTIONS(2851), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125722,7 +124542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2833), 40, + ACTIONS(2853), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125768,10 +124588,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1212), 2, + STATE(1204), 2, sym_line_comment, sym_block_comment, - ACTIONS(2835), 7, + ACTIONS(2855), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125779,7 +124599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2837), 40, + ACTIONS(2857), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125825,10 +124645,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1213), 2, + STATE(1205), 2, sym_line_comment, sym_block_comment, - ACTIONS(2839), 7, + ACTIONS(2859), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125836,7 +124656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2841), 40, + ACTIONS(2861), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125882,10 +124702,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1214), 2, + STATE(1206), 2, sym_line_comment, sym_block_comment, - ACTIONS(2843), 7, + ACTIONS(2863), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125893,7 +124713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2845), 40, + ACTIONS(2865), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125939,10 +124759,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1215), 2, + STATE(1207), 2, sym_line_comment, sym_block_comment, - ACTIONS(2847), 7, + ACTIONS(2867), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125950,7 +124770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2849), 40, + ACTIONS(2869), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125996,10 +124816,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1216), 2, + STATE(1208), 2, sym_line_comment, sym_block_comment, - ACTIONS(2851), 7, + ACTIONS(2871), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126007,7 +124827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2853), 40, + ACTIONS(2873), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126053,10 +124873,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1217), 2, + STATE(1209), 2, sym_line_comment, sym_block_comment, - ACTIONS(2855), 7, + ACTIONS(2875), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126064,7 +124884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2857), 40, + ACTIONS(2877), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126110,10 +124930,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1218), 2, + STATE(1210), 2, sym_line_comment, sym_block_comment, - ACTIONS(2859), 7, + ACTIONS(2879), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126121,7 +124941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2861), 40, + ACTIONS(2881), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126167,10 +124987,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1219), 2, + STATE(1211), 2, sym_line_comment, sym_block_comment, - ACTIONS(2863), 7, + ACTIONS(2883), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126178,7 +124998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2865), 40, + ACTIONS(2885), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126224,10 +125044,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1220), 2, + STATE(1212), 2, sym_line_comment, sym_block_comment, - ACTIONS(2867), 7, + ACTIONS(2887), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126235,7 +125055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2869), 40, + ACTIONS(2889), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126281,10 +125101,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1221), 2, + STATE(1213), 2, sym_line_comment, sym_block_comment, - ACTIONS(2871), 7, + ACTIONS(2891), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126292,7 +125112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2873), 40, + ACTIONS(2893), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126338,10 +125158,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1222), 2, + STATE(1214), 2, sym_line_comment, sym_block_comment, - ACTIONS(2875), 7, + ACTIONS(2895), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126349,7 +125169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2877), 40, + ACTIONS(2897), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126395,10 +125215,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1223), 2, + STATE(1215), 2, sym_line_comment, sym_block_comment, - ACTIONS(2879), 7, + ACTIONS(2899), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126406,7 +125226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2881), 40, + ACTIONS(2901), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126452,10 +125272,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1224), 2, + STATE(1216), 2, sym_line_comment, sym_block_comment, - ACTIONS(2883), 7, + ACTIONS(2903), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126463,7 +125283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2885), 40, + ACTIONS(2905), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126509,10 +125329,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1225), 2, + STATE(1217), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 7, + ACTIONS(2907), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126520,7 +125340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2889), 40, + ACTIONS(2909), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126566,10 +125386,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1226), 2, + STATE(1218), 2, sym_line_comment, sym_block_comment, - ACTIONS(2891), 7, + ACTIONS(2911), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126577,7 +125397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2893), 40, + ACTIONS(2913), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126623,10 +125443,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1227), 2, + STATE(1219), 2, sym_line_comment, sym_block_comment, - ACTIONS(2895), 7, + ACTIONS(2915), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126634,7 +125454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2897), 40, + ACTIONS(2917), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126680,10 +125500,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1228), 2, + STATE(1220), 2, sym_line_comment, sym_block_comment, - ACTIONS(2899), 7, + ACTIONS(2919), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126691,7 +125511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2901), 40, + ACTIONS(2921), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126737,10 +125557,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1229), 2, + STATE(1221), 2, sym_line_comment, sym_block_comment, - ACTIONS(2903), 7, + ACTIONS(2923), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126748,7 +125568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2905), 40, + ACTIONS(2925), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126794,10 +125614,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1230), 2, + STATE(1222), 2, sym_line_comment, sym_block_comment, - ACTIONS(2907), 7, + ACTIONS(2927), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126805,7 +125625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2909), 40, + ACTIONS(2929), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126851,10 +125671,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1231), 2, + STATE(1223), 2, sym_line_comment, sym_block_comment, - ACTIONS(2915), 7, + ACTIONS(2935), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126862,7 +125682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2917), 40, + ACTIONS(2937), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126908,10 +125728,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1232), 2, + STATE(1224), 2, sym_line_comment, sym_block_comment, - ACTIONS(2919), 7, + ACTIONS(2939), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126919,7 +125739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2921), 40, + ACTIONS(2941), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126965,10 +125785,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1233), 2, + STATE(1225), 2, sym_line_comment, sym_block_comment, - ACTIONS(2923), 7, + ACTIONS(2943), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126976,7 +125796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2925), 40, + ACTIONS(2945), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127022,10 +125842,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1234), 2, + STATE(1226), 2, sym_line_comment, sym_block_comment, - ACTIONS(2927), 7, + ACTIONS(2947), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127033,7 +125853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2929), 40, + ACTIONS(2949), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127079,10 +125899,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1235), 2, + STATE(1227), 2, sym_line_comment, sym_block_comment, - ACTIONS(2931), 7, + ACTIONS(2951), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127090,7 +125910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2933), 40, + ACTIONS(2953), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127136,10 +125956,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1236), 2, + STATE(1228), 2, sym_line_comment, sym_block_comment, - ACTIONS(2935), 7, + ACTIONS(2955), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127147,7 +125967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2937), 40, + ACTIONS(2957), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127193,10 +126013,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1237), 2, + STATE(1229), 2, sym_line_comment, sym_block_comment, - ACTIONS(2939), 7, + ACTIONS(2959), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127204,7 +126024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2941), 40, + ACTIONS(2961), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127250,10 +126070,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1238), 2, + STATE(1230), 2, sym_line_comment, sym_block_comment, - ACTIONS(2943), 7, + ACTIONS(2963), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127261,7 +126081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2945), 40, + ACTIONS(2965), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127307,10 +126127,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1239), 2, + STATE(1231), 2, sym_line_comment, sym_block_comment, - ACTIONS(2947), 7, + ACTIONS(2967), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127318,7 +126138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2949), 40, + ACTIONS(2969), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127364,10 +126184,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1240), 2, + STATE(1232), 2, sym_line_comment, sym_block_comment, - ACTIONS(2951), 7, + ACTIONS(2971), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127375,7 +126195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2953), 40, + ACTIONS(2973), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127421,10 +126241,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1241), 2, + STATE(1233), 2, sym_line_comment, sym_block_comment, - ACTIONS(2955), 7, + ACTIONS(2975), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127432,7 +126252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2957), 40, + ACTIONS(2977), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127478,10 +126298,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1242), 2, + STATE(1234), 2, sym_line_comment, sym_block_comment, - ACTIONS(2959), 7, + ACTIONS(2979), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127489,7 +126309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2961), 40, + ACTIONS(2981), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127535,10 +126355,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1243), 2, + STATE(1235), 2, sym_line_comment, sym_block_comment, - ACTIONS(2963), 7, + ACTIONS(2983), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127546,7 +126366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2965), 40, + ACTIONS(2985), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127592,10 +126412,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1244), 2, + STATE(1236), 2, sym_line_comment, sym_block_comment, - ACTIONS(2967), 7, + ACTIONS(2987), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127603,7 +126423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2969), 40, + ACTIONS(2989), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127649,10 +126469,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1245), 2, + STATE(1237), 2, sym_line_comment, sym_block_comment, - ACTIONS(2971), 7, + ACTIONS(2991), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127660,7 +126480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2973), 40, + ACTIONS(2993), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127706,10 +126526,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1246), 2, + STATE(1238), 2, sym_line_comment, sym_block_comment, - ACTIONS(2975), 7, + ACTIONS(2995), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127717,7 +126537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2977), 40, + ACTIONS(2997), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127763,10 +126583,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1247), 2, + STATE(1239), 2, sym_line_comment, sym_block_comment, - ACTIONS(2979), 7, + ACTIONS(2999), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127774,7 +126594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2981), 40, + ACTIONS(3001), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127820,10 +126640,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1248), 2, + STATE(1240), 2, sym_line_comment, sym_block_comment, - ACTIONS(2983), 7, + ACTIONS(3003), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127831,7 +126651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2985), 40, + ACTIONS(3005), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127877,10 +126697,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1249), 2, + STATE(1241), 2, sym_line_comment, sym_block_comment, - ACTIONS(2987), 7, + ACTIONS(3007), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127888,7 +126708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2989), 40, + ACTIONS(3009), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127934,10 +126754,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1250), 2, + STATE(1242), 2, sym_line_comment, sym_block_comment, - ACTIONS(2991), 7, + ACTIONS(3011), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127945,7 +126765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2993), 40, + ACTIONS(3013), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127991,10 +126811,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1251), 2, + STATE(1243), 2, sym_line_comment, sym_block_comment, - ACTIONS(2995), 7, + ACTIONS(3015), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128002,7 +126822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2997), 40, + ACTIONS(3017), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128048,10 +126868,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1252), 2, + STATE(1244), 2, sym_line_comment, sym_block_comment, - ACTIONS(2999), 7, + ACTIONS(3019), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128059,7 +126879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3001), 40, + ACTIONS(3021), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128105,10 +126925,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1253), 2, + STATE(1245), 2, sym_line_comment, sym_block_comment, - ACTIONS(3003), 7, + ACTIONS(3023), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128116,7 +126936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3005), 40, + ACTIONS(3025), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128162,10 +126982,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1254), 2, + STATE(1246), 2, sym_line_comment, sym_block_comment, - ACTIONS(3007), 7, + ACTIONS(3027), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128173,7 +126993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3009), 40, + ACTIONS(3029), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128219,10 +127039,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1255), 2, + STATE(1247), 2, sym_line_comment, sym_block_comment, - ACTIONS(3011), 7, + ACTIONS(3031), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128230,7 +127050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3013), 40, + ACTIONS(3033), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128276,10 +127096,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1256), 2, + STATE(1248), 2, sym_line_comment, sym_block_comment, - ACTIONS(3015), 7, + ACTIONS(3035), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128287,7 +127107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3017), 40, + ACTIONS(3037), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128333,10 +127153,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1257), 2, + STATE(1249), 2, sym_line_comment, sym_block_comment, - ACTIONS(3019), 7, + ACTIONS(3039), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128344,7 +127164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3021), 40, + ACTIONS(3041), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128390,10 +127210,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1258), 2, + STATE(1250), 2, sym_line_comment, sym_block_comment, - ACTIONS(3023), 7, + ACTIONS(3043), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128401,7 +127221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3025), 40, + ACTIONS(3045), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128447,10 +127267,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1259), 2, + STATE(1251), 2, sym_line_comment, sym_block_comment, - ACTIONS(3027), 7, + ACTIONS(3047), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128458,7 +127278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3029), 40, + ACTIONS(3049), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128504,10 +127324,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1260), 2, + STATE(1252), 2, sym_line_comment, sym_block_comment, - ACTIONS(3031), 7, + ACTIONS(3051), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128515,7 +127335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3033), 40, + ACTIONS(3053), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128561,10 +127381,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1261), 2, + STATE(1253), 2, sym_line_comment, sym_block_comment, - ACTIONS(3035), 7, + ACTIONS(3055), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128572,7 +127392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3037), 40, + ACTIONS(3057), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128618,10 +127438,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1262), 2, + STATE(1254), 2, sym_line_comment, sym_block_comment, - ACTIONS(3039), 7, + ACTIONS(1839), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128629,7 +127449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3041), 40, + ACTIONS(1841), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128675,10 +127495,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1263), 2, + STATE(1255), 2, sym_line_comment, sym_block_comment, - ACTIONS(3043), 7, + ACTIONS(1843), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128686,7 +127506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3045), 40, + ACTIONS(1845), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128732,10 +127552,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1264), 2, + STATE(1256), 2, sym_line_comment, sym_block_comment, - ACTIONS(3047), 7, + ACTIONS(1847), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128743,7 +127563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3049), 40, + ACTIONS(1849), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128789,10 +127609,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1265), 2, + STATE(1257), 2, sym_line_comment, sym_block_comment, - ACTIONS(3051), 7, + ACTIONS(1851), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128800,7 +127620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3053), 40, + ACTIONS(1853), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128846,10 +127666,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1266), 2, + STATE(1258), 2, sym_line_comment, sym_block_comment, - ACTIONS(3055), 7, + ACTIONS(1855), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128857,7 +127677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3057), 40, + ACTIONS(1857), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128903,10 +127723,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1267), 2, + STATE(1259), 2, sym_line_comment, sym_block_comment, - ACTIONS(3059), 7, + ACTIONS(1859), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128914,7 +127734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3061), 40, + ACTIONS(1861), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128960,10 +127780,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1268), 2, + STATE(1260), 2, sym_line_comment, sym_block_comment, - ACTIONS(3063), 7, + ACTIONS(1863), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128971,7 +127791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3065), 40, + ACTIONS(1865), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129017,10 +127837,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1269), 2, + STATE(1261), 2, sym_line_comment, sym_block_comment, - ACTIONS(1847), 7, + ACTIONS(1867), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129028,7 +127848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1849), 40, + ACTIONS(1869), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129074,10 +127894,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1270), 2, + STATE(1262), 2, sym_line_comment, sym_block_comment, - ACTIONS(1851), 7, + ACTIONS(1871), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129085,7 +127905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1853), 40, + ACTIONS(1873), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129131,10 +127951,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1271), 2, + STATE(1263), 2, sym_line_comment, sym_block_comment, - ACTIONS(1855), 7, + ACTIONS(1875), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129142,7 +127962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1857), 40, + ACTIONS(1877), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129188,10 +128008,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1272), 2, + STATE(1264), 2, sym_line_comment, sym_block_comment, - ACTIONS(1859), 7, + ACTIONS(1879), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129199,7 +128019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1861), 40, + ACTIONS(1881), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129245,10 +128065,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1273), 2, + STATE(1265), 2, sym_line_comment, sym_block_comment, - ACTIONS(1863), 7, + ACTIONS(1883), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129256,7 +128076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1865), 40, + ACTIONS(1885), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129302,10 +128122,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1274), 2, + STATE(1266), 2, sym_line_comment, sym_block_comment, - ACTIONS(1867), 7, + ACTIONS(1887), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129313,7 +128133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1869), 40, + ACTIONS(1889), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129359,10 +128179,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1275), 2, + STATE(1267), 2, sym_line_comment, sym_block_comment, - ACTIONS(1871), 7, + ACTIONS(1891), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129370,7 +128190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1873), 40, + ACTIONS(1893), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129416,10 +128236,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1276), 2, + STATE(1268), 2, sym_line_comment, sym_block_comment, - ACTIONS(1875), 7, + ACTIONS(1895), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129427,7 +128247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1877), 40, + ACTIONS(1897), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129473,10 +128293,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1277), 2, + STATE(1269), 2, sym_line_comment, sym_block_comment, - ACTIONS(1879), 7, + ACTIONS(1899), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129484,7 +128304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1881), 40, + ACTIONS(1901), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129530,10 +128350,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1278), 2, + STATE(1270), 2, sym_line_comment, sym_block_comment, - ACTIONS(1883), 7, + ACTIONS(1903), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129541,7 +128361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1885), 40, + ACTIONS(1905), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129587,10 +128407,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1279), 2, + STATE(1271), 2, sym_line_comment, sym_block_comment, - ACTIONS(1887), 7, + ACTIONS(1907), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129598,7 +128418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1889), 40, + ACTIONS(1909), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129644,10 +128464,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1280), 2, + STATE(1272), 2, sym_line_comment, sym_block_comment, - ACTIONS(1891), 7, + ACTIONS(1911), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129655,7 +128475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1893), 40, + ACTIONS(1913), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129701,10 +128521,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1281), 2, + STATE(1273), 2, sym_line_comment, sym_block_comment, - ACTIONS(1895), 7, + ACTIONS(1915), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129712,7 +128532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1897), 40, + ACTIONS(1917), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129758,10 +128578,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1282), 2, + STATE(1274), 2, sym_line_comment, sym_block_comment, - ACTIONS(1899), 7, + ACTIONS(1919), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129769,7 +128589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1901), 40, + ACTIONS(1921), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129815,10 +128635,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1283), 2, + STATE(1275), 2, sym_line_comment, sym_block_comment, - ACTIONS(1907), 7, + ACTIONS(1927), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129826,7 +128646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1909), 40, + ACTIONS(1929), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129872,10 +128692,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1284), 2, + STATE(1276), 2, sym_line_comment, sym_block_comment, - ACTIONS(1915), 7, + ACTIONS(1935), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129883,7 +128703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1917), 40, + ACTIONS(1937), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129929,10 +128749,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1285), 2, + STATE(1277), 2, sym_line_comment, sym_block_comment, - ACTIONS(1919), 7, + ACTIONS(1939), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129940,7 +128760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1921), 40, + ACTIONS(1941), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129986,10 +128806,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1286), 2, + STATE(1278), 2, sym_line_comment, sym_block_comment, - ACTIONS(1923), 7, + ACTIONS(1943), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129997,7 +128817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1925), 40, + ACTIONS(1945), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130043,10 +128863,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1287), 2, + STATE(1279), 2, sym_line_comment, sym_block_comment, - ACTIONS(1927), 7, + ACTIONS(1947), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130054,7 +128874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1929), 40, + ACTIONS(1949), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130100,10 +128920,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1288), 2, + STATE(1280), 2, sym_line_comment, sym_block_comment, - ACTIONS(1931), 7, + ACTIONS(1951), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130111,7 +128931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1933), 40, + ACTIONS(1953), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130157,10 +128977,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1289), 2, + STATE(1281), 2, sym_line_comment, sym_block_comment, - ACTIONS(1935), 7, + ACTIONS(1955), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130168,7 +128988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1937), 40, + ACTIONS(1957), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130214,10 +129034,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1290), 2, + STATE(1282), 2, sym_line_comment, sym_block_comment, - ACTIONS(1939), 7, + ACTIONS(3059), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130225,7 +129045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1941), 40, + ACTIONS(3061), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130271,10 +129091,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1291), 2, + STATE(1283), 2, sym_line_comment, sym_block_comment, - ACTIONS(1943), 7, + ACTIONS(1963), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130282,7 +129102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1945), 40, + ACTIONS(1965), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130328,10 +129148,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1292), 2, + STATE(1284), 2, sym_line_comment, sym_block_comment, - ACTIONS(1947), 7, + ACTIONS(1967), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130339,7 +129159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1949), 40, + ACTIONS(1969), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130385,10 +129205,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1293), 2, + STATE(1285), 2, sym_line_comment, sym_block_comment, - ACTIONS(1951), 7, + ACTIONS(1971), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130396,7 +129216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1953), 40, + ACTIONS(1973), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130442,10 +129262,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1294), 2, + STATE(1286), 2, sym_line_comment, sym_block_comment, - ACTIONS(1955), 7, + ACTIONS(1975), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130453,7 +129273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1957), 40, + ACTIONS(1977), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130499,10 +129319,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1295), 2, + STATE(1287), 2, sym_line_comment, sym_block_comment, - ACTIONS(1959), 7, + ACTIONS(1979), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130510,7 +129330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1961), 40, + ACTIONS(1981), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130556,10 +129376,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1296), 2, + STATE(1288), 2, sym_line_comment, sym_block_comment, - ACTIONS(1963), 7, + ACTIONS(1983), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130567,7 +129387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1965), 40, + ACTIONS(1985), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130613,10 +129433,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1297), 2, + STATE(1289), 2, sym_line_comment, sym_block_comment, - ACTIONS(1967), 7, + ACTIONS(1987), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130624,7 +129444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1969), 40, + ACTIONS(1989), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130670,10 +129490,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1298), 2, + STATE(1290), 2, sym_line_comment, sym_block_comment, - ACTIONS(3067), 7, + ACTIONS(1991), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130681,7 +129501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3069), 40, + ACTIONS(1993), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130727,10 +129547,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1299), 2, + STATE(1291), 2, sym_line_comment, sym_block_comment, - ACTIONS(1975), 7, + ACTIONS(1995), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130738,7 +129558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1977), 40, + ACTIONS(1997), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130784,10 +129604,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1300), 2, + STATE(1292), 2, sym_line_comment, sym_block_comment, - ACTIONS(1979), 7, + ACTIONS(1999), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130795,7 +129615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1981), 40, + ACTIONS(2001), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130841,10 +129661,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1301), 2, + STATE(1293), 2, sym_line_comment, sym_block_comment, - ACTIONS(1983), 7, + ACTIONS(2003), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130852,7 +129672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1985), 40, + ACTIONS(2005), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130898,10 +129718,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1302), 2, + STATE(1294), 2, sym_line_comment, sym_block_comment, - ACTIONS(1987), 7, + ACTIONS(2007), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130909,7 +129729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1989), 40, + ACTIONS(2009), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130955,10 +129775,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1303), 2, + STATE(1295), 2, sym_line_comment, sym_block_comment, - ACTIONS(1991), 7, + ACTIONS(2011), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130966,7 +129786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1993), 40, + ACTIONS(2013), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131012,10 +129832,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1304), 2, + STATE(1296), 2, sym_line_comment, sym_block_comment, - ACTIONS(1995), 7, + ACTIONS(2015), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131023,7 +129843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1997), 40, + ACTIONS(2017), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131069,10 +129889,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1305), 2, + STATE(1297), 2, sym_line_comment, sym_block_comment, - ACTIONS(1999), 7, + ACTIONS(2019), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131080,7 +129900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2001), 40, + ACTIONS(2021), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131126,10 +129946,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1306), 2, + STATE(1298), 2, sym_line_comment, sym_block_comment, - ACTIONS(2003), 7, + ACTIONS(2023), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131137,7 +129957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2005), 40, + ACTIONS(2025), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131183,10 +130003,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1307), 2, + STATE(1299), 2, sym_line_comment, sym_block_comment, - ACTIONS(2007), 7, + ACTIONS(2027), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131194,7 +130014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2009), 40, + ACTIONS(2029), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131240,10 +130060,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1308), 2, + STATE(1300), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 7, + ACTIONS(2031), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131251,7 +130071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2013), 40, + ACTIONS(2033), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131297,10 +130117,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1309), 2, + STATE(1301), 2, sym_line_comment, sym_block_comment, - ACTIONS(2015), 7, + ACTIONS(1835), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131308,7 +130128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2017), 40, + ACTIONS(1837), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131354,10 +130174,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1310), 2, + STATE(1302), 2, sym_line_comment, sym_block_comment, - ACTIONS(2019), 7, + ACTIONS(2035), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131365,7 +130185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2021), 40, + ACTIONS(2037), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131411,10 +130231,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1311), 2, + STATE(1303), 2, sym_line_comment, sym_block_comment, - ACTIONS(2023), 7, + ACTIONS(2039), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131422,7 +130242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2025), 40, + ACTIONS(2041), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131468,10 +130288,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1312), 2, + STATE(1304), 2, sym_line_comment, sym_block_comment, - ACTIONS(2027), 7, + ACTIONS(2043), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131479,7 +130299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2029), 40, + ACTIONS(2045), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131525,10 +130345,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1313), 2, + STATE(1305), 2, sym_line_comment, sym_block_comment, - ACTIONS(2031), 7, + ACTIONS(2047), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131536,7 +130356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2033), 40, + ACTIONS(2049), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131582,10 +130402,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1314), 2, + STATE(1306), 2, sym_line_comment, sym_block_comment, - ACTIONS(2035), 7, + ACTIONS(2051), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131593,7 +130413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2037), 40, + ACTIONS(2053), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131639,10 +130459,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1315), 2, + STATE(1307), 2, sym_line_comment, sym_block_comment, - ACTIONS(1843), 7, + ACTIONS(2055), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131650,7 +130470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1845), 40, + ACTIONS(2057), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131696,10 +130516,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1316), 2, + STATE(1308), 2, sym_line_comment, sym_block_comment, - ACTIONS(2039), 7, + ACTIONS(2059), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131707,7 +130527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2041), 40, + ACTIONS(2061), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131753,10 +130573,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1317), 2, + STATE(1309), 2, sym_line_comment, sym_block_comment, - ACTIONS(2043), 7, + ACTIONS(2063), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131764,7 +130584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2045), 40, + ACTIONS(2065), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131810,10 +130630,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1318), 2, + STATE(1310), 2, sym_line_comment, sym_block_comment, - ACTIONS(2047), 7, + ACTIONS(2067), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131821,7 +130641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2049), 40, + ACTIONS(2069), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131867,10 +130687,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1319), 2, + STATE(1311), 2, sym_line_comment, sym_block_comment, - ACTIONS(2051), 7, + ACTIONS(2071), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131878,7 +130698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2053), 40, + ACTIONS(2073), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131924,10 +130744,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1320), 2, + STATE(1312), 2, sym_line_comment, sym_block_comment, - ACTIONS(2055), 7, + ACTIONS(2075), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131935,7 +130755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2057), 40, + ACTIONS(2077), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131981,10 +130801,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1321), 2, + STATE(1313), 2, sym_line_comment, sym_block_comment, - ACTIONS(2059), 7, + ACTIONS(2079), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131992,7 +130812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2061), 40, + ACTIONS(2081), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132038,10 +130858,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1322), 2, + STATE(1314), 2, sym_line_comment, sym_block_comment, - ACTIONS(2063), 7, + ACTIONS(2083), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132049,7 +130869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2065), 40, + ACTIONS(2085), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132095,10 +130915,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1323), 2, + STATE(1315), 2, sym_line_comment, sym_block_comment, - ACTIONS(2071), 7, + ACTIONS(2091), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132106,7 +130926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2073), 40, + ACTIONS(2093), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132152,10 +130972,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1324), 2, + STATE(1316), 2, sym_line_comment, sym_block_comment, - ACTIONS(2075), 7, + ACTIONS(2095), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132163,7 +130983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2077), 40, + ACTIONS(2097), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132209,10 +131029,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1325), 2, + STATE(1317), 2, sym_line_comment, sym_block_comment, - ACTIONS(2079), 7, + ACTIONS(2099), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132220,7 +131040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2081), 40, + ACTIONS(2101), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132266,10 +131086,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1326), 2, + STATE(1318), 2, sym_line_comment, sym_block_comment, - ACTIONS(2083), 7, + ACTIONS(2103), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132277,7 +131097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2085), 40, + ACTIONS(2105), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132323,10 +131143,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1327), 2, + STATE(1319), 2, sym_line_comment, sym_block_comment, - ACTIONS(2087), 7, + ACTIONS(2107), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132334,7 +131154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2089), 40, + ACTIONS(2109), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132380,10 +131200,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1328), 2, + STATE(1320), 2, sym_line_comment, sym_block_comment, - ACTIONS(2091), 7, + ACTIONS(2111), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132391,7 +131211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2093), 40, + ACTIONS(2113), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132437,10 +131257,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1329), 2, + STATE(1321), 2, sym_line_comment, sym_block_comment, - ACTIONS(2095), 7, + ACTIONS(2115), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132448,7 +131268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2097), 40, + ACTIONS(2117), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132494,10 +131314,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1330), 2, + STATE(1322), 2, sym_line_comment, sym_block_comment, - ACTIONS(2099), 7, + ACTIONS(2119), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132505,7 +131325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2101), 40, + ACTIONS(2121), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132551,10 +131371,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1331), 2, + STATE(1323), 2, sym_line_comment, sym_block_comment, - ACTIONS(2103), 7, + ACTIONS(2123), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132562,7 +131382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2105), 40, + ACTIONS(2125), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132608,10 +131428,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1332), 2, + STATE(1324), 2, sym_line_comment, sym_block_comment, - ACTIONS(2107), 7, + ACTIONS(2127), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132619,7 +131439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2109), 40, + ACTIONS(2129), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132665,10 +131485,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1333), 2, + STATE(1325), 2, sym_line_comment, sym_block_comment, - ACTIONS(2111), 7, + ACTIONS(2131), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132676,7 +131496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2113), 40, + ACTIONS(2133), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132722,10 +131542,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1334), 2, + STATE(1326), 2, sym_line_comment, sym_block_comment, - ACTIONS(2115), 7, + ACTIONS(2135), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132733,7 +131553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2117), 40, + ACTIONS(2137), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132779,10 +131599,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1335), 2, + STATE(1327), 2, sym_line_comment, sym_block_comment, - ACTIONS(2119), 7, + ACTIONS(2139), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132790,7 +131610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2121), 40, + ACTIONS(2141), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132836,10 +131656,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1336), 2, + STATE(1328), 2, sym_line_comment, sym_block_comment, - ACTIONS(2123), 7, + ACTIONS(2143), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132847,7 +131667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2125), 40, + ACTIONS(2145), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132893,10 +131713,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1337), 2, + STATE(1329), 2, sym_line_comment, sym_block_comment, - ACTIONS(2127), 7, + ACTIONS(2147), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132904,7 +131724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2129), 40, + ACTIONS(2149), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132950,10 +131770,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1338), 2, + STATE(1330), 2, sym_line_comment, sym_block_comment, - ACTIONS(2131), 7, + ACTIONS(2151), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132961,7 +131781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2133), 40, + ACTIONS(2153), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133007,10 +131827,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1339), 2, + STATE(1331), 2, sym_line_comment, sym_block_comment, - ACTIONS(2135), 7, + ACTIONS(2155), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133018,7 +131838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2137), 40, + ACTIONS(2157), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133064,10 +131884,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1340), 2, + STATE(1332), 2, sym_line_comment, sym_block_comment, - ACTIONS(2139), 7, + ACTIONS(2159), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133075,7 +131895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2141), 40, + ACTIONS(2161), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133121,10 +131941,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1341), 2, + STATE(1333), 2, sym_line_comment, sym_block_comment, - ACTIONS(2143), 7, + ACTIONS(2163), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133132,7 +131952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2145), 40, + ACTIONS(2165), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133178,10 +131998,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1342), 2, + STATE(1334), 2, sym_line_comment, sym_block_comment, - ACTIONS(2147), 7, + ACTIONS(2167), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133189,7 +132009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2149), 40, + ACTIONS(2169), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133235,10 +132055,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1343), 2, + STATE(1335), 2, sym_line_comment, sym_block_comment, - ACTIONS(2151), 7, + ACTIONS(2171), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133246,7 +132066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2153), 40, + ACTIONS(2173), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133292,10 +132112,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1344), 2, + STATE(1336), 2, sym_line_comment, sym_block_comment, - ACTIONS(2155), 7, + ACTIONS(2175), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133303,7 +132123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2157), 40, + ACTIONS(2177), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133349,10 +132169,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1345), 2, + STATE(1337), 2, sym_line_comment, sym_block_comment, - ACTIONS(2159), 7, + ACTIONS(2179), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133360,7 +132180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2161), 40, + ACTIONS(2181), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133406,10 +132226,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1346), 2, + STATE(1338), 2, sym_line_comment, sym_block_comment, - ACTIONS(2163), 7, + ACTIONS(2183), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133417,7 +132237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2165), 40, + ACTIONS(2185), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133463,10 +132283,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1347), 2, + STATE(1339), 2, sym_line_comment, sym_block_comment, - ACTIONS(2167), 7, + ACTIONS(2187), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133474,7 +132294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2169), 40, + ACTIONS(2189), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133520,10 +132340,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1348), 2, + STATE(1340), 2, sym_line_comment, sym_block_comment, - ACTIONS(2171), 7, + ACTIONS(2191), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133531,7 +132351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2173), 40, + ACTIONS(2193), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133577,10 +132397,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1349), 2, + STATE(1341), 2, sym_line_comment, sym_block_comment, - ACTIONS(2175), 7, + ACTIONS(2195), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133588,7 +132408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2177), 40, + ACTIONS(2197), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133634,10 +132454,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1350), 2, + STATE(1342), 2, sym_line_comment, sym_block_comment, - ACTIONS(2179), 7, + ACTIONS(2199), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133645,7 +132465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2181), 40, + ACTIONS(2201), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133691,10 +132511,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1351), 2, + STATE(1343), 2, sym_line_comment, sym_block_comment, - ACTIONS(2183), 7, + ACTIONS(2203), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133702,7 +132522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2185), 40, + ACTIONS(2205), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133748,10 +132568,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1352), 2, + STATE(1344), 2, sym_line_comment, sym_block_comment, - ACTIONS(2187), 7, + ACTIONS(2207), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133759,7 +132579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2189), 40, + ACTIONS(2209), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133805,10 +132625,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1353), 2, + STATE(1345), 2, sym_line_comment, sym_block_comment, - ACTIONS(2191), 7, + ACTIONS(2211), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133816,7 +132636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2193), 40, + ACTIONS(2213), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133862,10 +132682,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1354), 2, + STATE(1346), 2, sym_line_comment, sym_block_comment, - ACTIONS(2195), 7, + ACTIONS(2215), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133873,7 +132693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2197), 40, + ACTIONS(2217), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133919,10 +132739,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1355), 2, + STATE(1347), 2, sym_line_comment, sym_block_comment, - ACTIONS(2199), 7, + ACTIONS(2219), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133930,7 +132750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2201), 40, + ACTIONS(2221), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133976,10 +132796,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1356), 2, + STATE(1348), 2, sym_line_comment, sym_block_comment, - ACTIONS(2203), 7, + ACTIONS(2223), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133987,7 +132807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2205), 40, + ACTIONS(2225), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134033,10 +132853,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1357), 2, + STATE(1349), 2, sym_line_comment, sym_block_comment, - ACTIONS(2207), 7, + ACTIONS(2227), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134044,7 +132864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2209), 40, + ACTIONS(2229), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134090,10 +132910,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1358), 2, + STATE(1350), 2, sym_line_comment, sym_block_comment, - ACTIONS(2211), 7, + ACTIONS(2231), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134101,7 +132921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2213), 40, + ACTIONS(2233), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134147,10 +132967,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1359), 2, + STATE(1351), 2, sym_line_comment, sym_block_comment, - ACTIONS(2215), 7, + ACTIONS(2235), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134158,7 +132978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2217), 40, + ACTIONS(2237), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134204,10 +133024,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1360), 2, + STATE(1352), 2, sym_line_comment, sym_block_comment, - ACTIONS(2219), 7, + ACTIONS(2239), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134215,7 +133035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2221), 40, + ACTIONS(2241), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134261,10 +133081,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1361), 2, + STATE(1353), 2, sym_line_comment, sym_block_comment, - ACTIONS(2223), 7, + ACTIONS(2243), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134272,7 +133092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2225), 40, + ACTIONS(2245), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134318,10 +133138,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1362), 2, + STATE(1354), 2, sym_line_comment, sym_block_comment, - ACTIONS(2227), 7, + ACTIONS(2247), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134329,7 +133149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2229), 40, + ACTIONS(2249), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134375,10 +133195,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1363), 2, + STATE(1355), 2, sym_line_comment, sym_block_comment, - ACTIONS(2231), 7, + ACTIONS(2251), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134386,7 +133206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2233), 40, + ACTIONS(2253), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134432,10 +133252,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1364), 2, + STATE(1356), 2, sym_line_comment, sym_block_comment, - ACTIONS(2235), 7, + ACTIONS(2255), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134443,7 +133263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2237), 40, + ACTIONS(2257), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134489,10 +133309,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1365), 2, + STATE(1357), 2, sym_line_comment, sym_block_comment, - ACTIONS(2239), 7, + ACTIONS(2259), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134500,7 +133320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2241), 40, + ACTIONS(2261), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134546,10 +133366,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1366), 2, + STATE(1358), 2, sym_line_comment, sym_block_comment, - ACTIONS(2243), 7, + ACTIONS(2263), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134557,7 +133377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2245), 40, + ACTIONS(2265), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134603,10 +133423,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1367), 2, + STATE(1359), 2, sym_line_comment, sym_block_comment, - ACTIONS(3581), 16, + ACTIONS(3549), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134623,7 +133443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3583), 31, + ACTIONS(3551), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134660,10 +133480,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1368), 2, + STATE(1360), 2, sym_line_comment, sym_block_comment, - ACTIONS(1903), 12, + ACTIONS(1923), 12, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -134676,7 +133496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_integer_literal, sym_metavariable, - ACTIONS(1905), 35, + ACTIONS(1925), 35, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134717,10 +133537,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1369), 2, + STATE(1361), 2, sym_line_comment, sym_block_comment, - ACTIONS(3593), 15, + ACTIONS(3585), 15, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -134736,7 +133556,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(3591), 32, + ACTIONS(3583), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134774,10 +133594,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1370), 2, + STATE(1362), 2, sym_line_comment, sym_block_comment, - ACTIONS(3597), 15, + ACTIONS(3589), 15, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -134793,7 +133613,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(3595), 32, + ACTIONS(3587), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134831,10 +133651,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1371), 2, + STATE(1363), 2, sym_line_comment, sym_block_comment, - ACTIONS(2561), 15, + ACTIONS(2581), 15, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -134850,7 +133670,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2563), 32, + ACTIONS(2583), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134888,10 +133708,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1372), 2, + STATE(1364), 2, sym_line_comment, sym_block_comment, - ACTIONS(1903), 7, + ACTIONS(1923), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134899,7 +133719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1905), 40, + ACTIONS(1925), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134945,10 +133765,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1373), 2, + STATE(1365), 2, sym_line_comment, sym_block_comment, - ACTIONS(1903), 15, + ACTIONS(1923), 15, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -134964,7 +133784,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(1905), 32, + ACTIONS(1925), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134997,127 +133817,67 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19711] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3455), 1, - anon_sym_BANG, - ACTIONS(3457), 1, - anon_sym_COLON_COLON, - ACTIONS(3599), 2, - anon_sym_const, - sym_mutable_specifier, - STATE(1374), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3453), 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(3451), 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, - [19779] = 26, + [19711] = 26, ACTIONS(29), 1, anon_sym_LT, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_extern, - ACTIONS(3245), 1, + ACTIONS(3195), 1, anon_sym_fn, - ACTIONS(3601), 1, + ACTIONS(3591), 1, sym_identifier, - ACTIONS(3603), 1, + ACTIONS(3593), 1, anon_sym_LPAREN, - ACTIONS(3607), 1, + ACTIONS(3597), 1, anon_sym_COLON_COLON, - ACTIONS(3609), 1, + ACTIONS(3599), 1, anon_sym_default, - ACTIONS(3611), 1, + ACTIONS(3601), 1, anon_sym_for, - ACTIONS(3617), 1, + ACTIONS(3607), 1, sym_metavariable, - STATE(1098), 1, + STATE(1091), 1, sym_scoped_type_identifier, - STATE(1413), 1, + STATE(1390), 1, sym_generic_type, - STATE(1618), 1, + STATE(1604), 1, sym_for_lifetimes, - STATE(2336), 1, + STATE(2329), 1, aux_sym_function_modifiers_repeat1, - STATE(2421), 1, + STATE(2431), 1, sym_extern_modifier, - STATE(3654), 1, + STATE(3644), 1, sym_scoped_identifier, - STATE(3689), 1, + STATE(3679), 1, sym_generic_type_with_turbofish, - STATE(3701), 1, + STATE(3691), 1, sym_bracketed_type, - STATE(3775), 1, + STATE(3753), 1, sym_function_modifiers, - STATE(1375), 2, + STATE(1366), 2, sym_line_comment, sym_block_comment, - ACTIONS(1096), 3, + ACTIONS(1090), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(3613), 3, + ACTIONS(3603), 3, anon_sym_gen, anon_sym_union, anon_sym_raw, - ACTIONS(3615), 3, + ACTIONS(3605), 3, sym_self, sym_super, sym_crate, - STATE(1485), 3, + STATE(1521), 3, sym_higher_ranked_trait_bound, sym_function_type, sym_tuple_type, - ACTIONS(3605), 17, + ACTIONS(3595), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135135,26 +133895,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + [19815] = 8, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, + anon_sym_COLON_COLON, + ACTIONS(3609), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(1367), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3450), 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(3448), 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, [19883] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3457), 1, + ACTIONS(3454), 1, anon_sym_COLON_COLON, - ACTIONS(3619), 1, + ACTIONS(3611), 1, anon_sym_BANG, - STATE(1376), 2, + STATE(1368), 2, sym_line_comment, sym_block_comment, - ACTIONS(3621), 6, + ACTIONS(3613), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - ACTIONS(3453), 16, + ACTIONS(3450), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135171,7 +133991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DOT_DOT, anon_sym_as, - ACTIONS(3451), 23, + ACTIONS(3448), 23, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, @@ -135200,10 +134020,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1377), 2, + STATE(1369), 2, sym_line_comment, sym_block_comment, - ACTIONS(3555), 16, + ACTIONS(3565), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135220,7 +134040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3557), 31, + ACTIONS(3567), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135257,10 +134077,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1378), 2, + STATE(1370), 2, sym_line_comment, sym_block_comment, - ACTIONS(3625), 7, + ACTIONS(3617), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -135268,7 +134088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3623), 40, + ACTIONS(3615), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135309,124 +134129,67 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20075] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - STATE(1379), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3567), 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(3569), 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, - [20137] = 26, + [20075] = 26, ACTIONS(29), 1, anon_sym_LT, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_extern, - ACTIONS(3199), 1, + ACTIONS(3237), 1, anon_sym_fn, - ACTIONS(3627), 1, + ACTIONS(3619), 1, sym_identifier, - ACTIONS(3629), 1, + ACTIONS(3621), 1, anon_sym_LPAREN, - ACTIONS(3633), 1, + ACTIONS(3625), 1, anon_sym_COLON_COLON, - ACTIONS(3635), 1, + ACTIONS(3627), 1, anon_sym_default, - ACTIONS(3637), 1, + ACTIONS(3629), 1, anon_sym_for, - ACTIONS(3643), 1, + ACTIONS(3635), 1, sym_metavariable, - STATE(1603), 1, - sym_for_lifetimes, - STATE(1609), 1, + STATE(1602), 1, sym_scoped_type_identifier, - STATE(1677), 1, + STATE(1607), 1, + sym_for_lifetimes, + STATE(1709), 1, sym_generic_type, - STATE(2336), 1, + STATE(2329), 1, aux_sym_function_modifiers_repeat1, - STATE(2421), 1, + STATE(2431), 1, sym_extern_modifier, - STATE(3644), 1, + STATE(3634), 1, sym_function_modifiers, - STATE(3680), 1, + STATE(3670), 1, sym_scoped_identifier, - STATE(3699), 1, + STATE(3689), 1, sym_generic_type_with_turbofish, - STATE(3705), 1, + STATE(3695), 1, sym_bracketed_type, - STATE(1380), 2, + STATE(1371), 2, sym_line_comment, sym_block_comment, - ACTIONS(1096), 3, + ACTIONS(1090), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(3639), 3, + ACTIONS(3631), 3, anon_sym_gen, anon_sym_union, anon_sym_raw, - ACTIONS(3641), 3, + ACTIONS(3633), 3, sym_self, sym_super, sym_crate, - STATE(1818), 3, + STATE(1822), 3, sym_higher_ranked_trait_bound, sym_function_type, sym_tuple_type, - ACTIONS(3631), 17, + ACTIONS(3623), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135444,15 +134207,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + [20179] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1372), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3513), 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(3515), 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, [20241] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1381), 2, + STATE(1373), 2, sym_line_comment, sym_block_comment, - ACTIONS(3573), 15, + ACTIONS(3519), 15, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -135468,7 +134288,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(3571), 32, + ACTIONS(3517), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135506,10 +134326,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1382), 2, + STATE(1374), 2, sym_line_comment, sym_block_comment, - ACTIONS(3519), 15, + ACTIONS(3537), 15, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -135525,7 +134345,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(3517), 32, + ACTIONS(3535), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135558,67 +134378,128 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20365] = 26, + [20365] = 9, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3464), 1, + anon_sym_BANG, + ACTIONS(3637), 1, + anon_sym_LBRACE, + ACTIONS(3639), 1, + anon_sym_COLON_COLON, + STATE(1472), 1, + sym_field_initializer_list, + STATE(1375), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1508), 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(1506), 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, + [20435] = 26, ACTIONS(29), 1, anon_sym_LT, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_extern, - ACTIONS(1640), 1, + ACTIONS(1632), 1, anon_sym_fn, - ACTIONS(3478), 1, + ACTIONS(3470), 1, anon_sym_LPAREN, - ACTIONS(3486), 1, + ACTIONS(3478), 1, anon_sym_COLON_COLON, - ACTIONS(3494), 1, + ACTIONS(3486), 1, sym_metavariable, - ACTIONS(3589), 1, + ACTIONS(3581), 1, anon_sym_default, - ACTIONS(3645), 1, + ACTIONS(3641), 1, sym_identifier, - ACTIONS(3647), 1, + ACTIONS(3643), 1, anon_sym_for, - STATE(1606), 1, + STATE(1616), 1, sym_for_lifetimes, - STATE(2042), 1, + STATE(2030), 1, sym_generic_type, - STATE(2268), 1, + STATE(2261), 1, sym_scoped_type_identifier, - STATE(2336), 1, + STATE(2329), 1, aux_sym_function_modifiers_repeat1, - STATE(2421), 1, + STATE(2431), 1, sym_extern_modifier, - STATE(3624), 1, - sym_scoped_identifier, - STATE(3636), 1, + STATE(3626), 1, sym_bracketed_type, - STATE(3661), 1, + STATE(3640), 1, + sym_scoped_identifier, + STATE(3686), 1, sym_function_modifiers, - STATE(3780), 1, + STATE(3756), 1, sym_generic_type_with_turbofish, - STATE(1383), 2, + STATE(1376), 2, sym_line_comment, sym_block_comment, - ACTIONS(1096), 3, + ACTIONS(1090), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(3488), 3, + ACTIONS(3480), 3, anon_sym_gen, anon_sym_union, anon_sym_raw, - ACTIONS(3492), 3, + ACTIONS(3484), 3, sym_self, sym_super, sym_crate, - STATE(2074), 3, + STATE(2066), 3, sym_higher_ranked_trait_bound, sym_function_type, sym_tuple_type, - ACTIONS(3587), 17, + ACTIONS(3579), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135636,15 +134517,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [20469] = 5, + [20539] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1384), 2, + STATE(1377), 2, sym_line_comment, sym_block_comment, - ACTIONS(1971), 7, + ACTIONS(1959), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -135652,7 +134533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1973), 40, + ACTIONS(1961), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135693,76 +134574,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20531] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3449), 1, - anon_sym_BANG, - ACTIONS(3649), 1, - anon_sym_LBRACE, - ACTIONS(3651), 1, - anon_sym_COLON_COLON, - STATE(1467), 1, - sym_field_initializer_list, - STATE(1385), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1506), 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(1504), 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, [20601] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1386), 2, + STATE(1378), 2, sym_line_comment, sym_block_comment, - ACTIONS(3385), 12, + ACTIONS(3377), 12, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -135775,7 +134595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_integer_literal, sym_metavariable, - ACTIONS(3383), 35, + ACTIONS(3375), 35, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135818,51 +134638,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1686), 1, + ACTIONS(1678), 1, anon_sym_DASH, - ACTIONS(1712), 1, + ACTIONS(1704), 1, aux_sym_string_literal_token1, - ACTIONS(1720), 1, + ACTIONS(1712), 1, sym__raw_string_literal_start, - ACTIONS(3413), 1, + ACTIONS(3405), 1, anon_sym_if, - ACTIONS(3653), 1, + ACTIONS(3645), 1, sym_identifier, - ACTIONS(3657), 1, + ACTIONS(3649), 1, anon_sym_COLON_COLON, - ACTIONS(3661), 1, + ACTIONS(3653), 1, sym_metavariable, - STATE(2641), 1, + STATE(2619), 1, sym_scoped_identifier, - STATE(3020), 1, + STATE(3087), 1, sym__literal_pattern, - STATE(3632), 1, + STATE(3622), 1, sym_bracketed_type, - STATE(3649), 1, + STATE(3639), 1, sym_generic_type_with_turbofish, - ACTIONS(1714), 2, + ACTIONS(1706), 2, anon_sym_true, anon_sym_false, - ACTIONS(3411), 2, + ACTIONS(3403), 2, anon_sym_EQ_GT, anon_sym_PIPE, - STATE(1387), 2, + STATE(1379), 2, sym_line_comment, sym_block_comment, - ACTIONS(1710), 3, + ACTIONS(1702), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3659), 3, + ACTIONS(3651), 3, sym_self, sym_super, sym_crate, - STATE(2441), 4, + STATE(2502), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3655), 21, + ACTIONS(3647), 21, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135889,10 +134709,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1388), 2, + STATE(1380), 2, sym_line_comment, sym_block_comment, - ACTIONS(2287), 7, + ACTIONS(2307), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -135900,7 +134720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2289), 40, + ACTIONS(2309), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135946,10 +134766,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1389), 2, + STATE(1381), 2, sym_line_comment, sym_block_comment, - ACTIONS(2411), 7, + ACTIONS(2431), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -135957,7 +134777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2413), 40, + ACTIONS(2433), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -136003,10 +134823,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1390), 2, + STATE(1382), 2, sym_line_comment, sym_block_comment, - ACTIONS(3547), 16, + ACTIONS(3557), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136023,7 +134843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3549), 31, + ACTIONS(3559), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136062,51 +134882,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1686), 1, + ACTIONS(1678), 1, anon_sym_DASH, - ACTIONS(1712), 1, + ACTIONS(1704), 1, aux_sym_string_literal_token1, - ACTIONS(1720), 1, + ACTIONS(1712), 1, sym__raw_string_literal_start, - ACTIONS(3401), 1, + ACTIONS(3393), 1, anon_sym_if, - ACTIONS(3657), 1, + ACTIONS(3649), 1, anon_sym_COLON_COLON, - ACTIONS(3663), 1, + ACTIONS(3655), 1, sym_identifier, - ACTIONS(3669), 1, + ACTIONS(3661), 1, sym_metavariable, - STATE(2678), 1, + STATE(2682), 1, sym_scoped_identifier, - STATE(2889), 1, + STATE(2893), 1, sym__literal_pattern, - STATE(3632), 1, + STATE(3622), 1, sym_bracketed_type, - STATE(3649), 1, + STATE(3639), 1, sym_generic_type_with_turbofish, - ACTIONS(1714), 2, + ACTIONS(1706), 2, anon_sym_true, anon_sym_false, - ACTIONS(3399), 2, + ACTIONS(3391), 2, anon_sym_EQ_GT, anon_sym_PIPE, - STATE(1391), 2, + STATE(1383), 2, sym_line_comment, sym_block_comment, - ACTIONS(1710), 3, + ACTIONS(1702), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3667), 3, + ACTIONS(3659), 3, sym_self, sym_super, sym_crate, - STATE(2441), 4, + STATE(2502), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3665), 21, + ACTIONS(3657), 21, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -136135,51 +134955,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1686), 1, + ACTIONS(1678), 1, anon_sym_DASH, - ACTIONS(1712), 1, + ACTIONS(1704), 1, aux_sym_string_literal_token1, - ACTIONS(1720), 1, + ACTIONS(1712), 1, sym__raw_string_literal_start, - ACTIONS(3425), 1, + ACTIONS(3417), 1, anon_sym_if, - ACTIONS(3657), 1, + ACTIONS(3649), 1, anon_sym_COLON_COLON, - ACTIONS(3671), 1, + ACTIONS(3663), 1, sym_identifier, - ACTIONS(3677), 1, + ACTIONS(3669), 1, sym_metavariable, - STATE(2864), 1, + STATE(2695), 1, sym_scoped_identifier, - STATE(2926), 1, + STATE(2911), 1, sym__literal_pattern, - STATE(3632), 1, + STATE(3622), 1, sym_bracketed_type, - STATE(3649), 1, + STATE(3639), 1, sym_generic_type_with_turbofish, - ACTIONS(1714), 2, + ACTIONS(1706), 2, anon_sym_true, anon_sym_false, - ACTIONS(3423), 2, + ACTIONS(3415), 2, anon_sym_EQ_GT, anon_sym_PIPE, - STATE(1392), 2, + STATE(1384), 2, sym_line_comment, sym_block_comment, - ACTIONS(1710), 3, + ACTIONS(1702), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3675), 3, + ACTIONS(3667), 3, sym_self, sym_super, sym_crate, - STATE(2441), 4, + STATE(2502), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3673), 21, + ACTIONS(3665), 21, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -136206,10 +135026,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1393), 2, + STATE(1385), 2, sym_line_comment, sym_block_comment, - ACTIONS(2819), 7, + ACTIONS(2765), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -136217,7 +135037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2821), 40, + ACTIONS(2767), 40, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -136258,17 +135078,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21193] = 6, + [21193] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3683), 1, - anon_sym_DASH_GT, - STATE(1394), 2, + STATE(1386), 2, sym_line_comment, sym_block_comment, - ACTIONS(3681), 15, + ACTIONS(3673), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136284,7 +135102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3679), 30, + ACTIONS(3671), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136312,20 +135130,23 @@ 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, - [21256] = 6, + [21254] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3689), 1, - anon_sym_DASH_GT, - STATE(1395), 2, + ACTIONS(3675), 1, + anon_sym_else, + STATE(1449), 1, + sym_else_clause, + STATE(1387), 2, sym_line_comment, sym_block_comment, - ACTIONS(3687), 15, + ACTIONS(1404), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136341,7 +135162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3685), 30, + ACTIONS(1402), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136371,18 +135192,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, [21319] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3695), 1, - anon_sym_DASH_GT, - STATE(1396), 2, + ACTIONS(3677), 1, + anon_sym_COLON_COLON, + STATE(1388), 2, sym_line_comment, sym_block_comment, - ACTIONS(3693), 15, + ACTIONS(3525), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136398,7 +135218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3691), 30, + ACTIONS(3523), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136429,91 +135249,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [21382] = 23, - ACTIONS(29), 1, - anon_sym_LT, + [21382] = 12, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1620), 1, - anon_sym_LBRACK, - ACTIONS(3363), 1, + ACTIONS(3454), 1, + anon_sym_COLON_COLON, + ACTIONS(3456), 1, anon_sym_SQUOTE, - ACTIONS(3474), 1, - sym_identifier, - ACTIONS(3478), 1, - anon_sym_LPAREN, - ACTIONS(3480), 1, + ACTIONS(3611), 1, + anon_sym_BANG, + ACTIONS(3679), 1, + anon_sym_move, + STATE(409), 1, + sym_block, + STATE(3776), 1, + sym_label, + STATE(1389), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3450), 15, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(3484), 1, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(3486), 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(3448), 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, + [21457] = 6, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3677), 1, anon_sym_COLON_COLON, - ACTIONS(3490), 1, - anon_sym_for, - ACTIONS(3494), 1, - sym_metavariable, - STATE(2586), 1, - sym_where_predicate, - STATE(2812), 1, - sym_scoped_type_identifier, - STATE(3140), 1, - sym_generic_type, - STATE(3624), 1, - sym_scoped_identifier, - STATE(3636), 1, - sym_bracketed_type, - STATE(3780), 1, - sym_generic_type_with_turbofish, - STATE(1397), 2, + STATE(1390), 2, sym_line_comment, sym_block_comment, - ACTIONS(3492), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3488), 4, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - anon_sym_raw, - STATE(3400), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3482), 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, - [21479] = 6, + ACTIONS(3533), 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(3531), 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, + [21520] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3701), 1, + ACTIONS(3685), 1, anon_sym_DASH_GT, - STATE(1398), 2, + STATE(1391), 2, sym_line_comment, sym_block_comment, - ACTIONS(3699), 15, + ACTIONS(3683), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136529,7 +135395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3697), 30, + ACTIONS(3681), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136560,15 +135426,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [21542] = 5, + [21583] = 23, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1399), 2, + ACTIONS(1612), 1, + anon_sym_LBRACK, + ACTIONS(3303), 1, + anon_sym_SQUOTE, + ACTIONS(3466), 1, + sym_identifier, + ACTIONS(3470), 1, + anon_sym_LPAREN, + ACTIONS(3472), 1, + anon_sym_STAR, + ACTIONS(3476), 1, + anon_sym_AMP, + ACTIONS(3478), 1, + anon_sym_COLON_COLON, + ACTIONS(3482), 1, + anon_sym_for, + ACTIONS(3486), 1, + sym_metavariable, + STATE(2536), 1, + sym_where_predicate, + STATE(2836), 1, + sym_scoped_type_identifier, + STATE(3138), 1, + sym_generic_type, + STATE(3626), 1, + sym_bracketed_type, + STATE(3640), 1, + sym_scoped_identifier, + STATE(3756), 1, + sym_generic_type_with_turbofish, + STATE(1392), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3484), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3480), 4, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + anon_sym_raw, + STATE(3399), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3474), 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, + [21680] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1393), 2, sym_line_comment, sym_block_comment, - ACTIONS(3705), 15, + ACTIONS(3563), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136579,12 +135519,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(3703), 31, + ACTIONS(3561), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136603,32 +135545,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, 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, - [21603] = 7, + anon_sym_LT2, + [21741] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(1455), 1, - sym_label, - STATE(1400), 2, + STATE(1394), 2, sym_line_comment, sym_block_comment, - ACTIONS(3709), 15, + ACTIONS(3689), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136644,7 +135580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3707), 29, + ACTIONS(3687), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136672,17 +135608,23 @@ 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, - [21668] = 5, + [21802] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1401), 2, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + STATE(1457), 1, + sym_label, + STATE(1395), 2, sym_line_comment, sym_block_comment, - ACTIONS(3713), 15, + ACTIONS(3693), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136698,7 +135640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3711), 31, + ACTIONS(3691), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136726,132 +135668,17 @@ 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, - [21729] = 6, + [21867] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3715), 1, - anon_sym_LBRACE, - STATE(1402), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3555), 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(3557), 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, - [21792] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - STATE(1403), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3719), 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(3717), 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, - [21853] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - STATE(1404), 2, + STATE(1396), 2, sym_line_comment, sym_block_comment, - ACTIONS(3723), 15, + ACTIONS(3697), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136867,7 +135694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3721), 31, + ACTIONS(3695), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136895,21 +135722,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [21914] = 6, + [21928] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3725), 1, + ACTIONS(3699), 1, anon_sym_LBRACE, - STATE(1405), 2, + STATE(1397), 2, sym_line_comment, sym_block_comment, - ACTIONS(3567), 16, + ACTIONS(3565), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136926,7 +135753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3569), 29, + ACTIONS(3567), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136956,17 +135783,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_as, anon_sym_else, - [21977] = 6, + [21991] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3727), 1, - anon_sym_COLON_COLON, - STATE(1406), 2, + STATE(1398), 2, sym_line_comment, sym_block_comment, - ACTIONS(3515), 15, + ACTIONS(3703), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136982,7 +135807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3513), 30, + ACTIONS(3701), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137010,32 +135835,33 @@ 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, - [22040] = 12, + [22052] = 12, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1386), 1, + ACTIONS(1380), 1, anon_sym_LBRACE, - ACTIONS(3455), 1, + ACTIONS(3452), 1, anon_sym_BANG, - ACTIONS(3457), 1, + ACTIONS(3454), 1, anon_sym_COLON_COLON, - ACTIONS(3459), 1, + ACTIONS(3456), 1, anon_sym_SQUOTE, - ACTIONS(3729), 1, + ACTIONS(3705), 1, anon_sym_move, - STATE(484), 1, + STATE(488), 1, sym_block, - STATE(3782), 1, + STATE(3772), 1, sym_label, - STATE(1407), 2, + STATE(1399), 2, sym_line_comment, sym_block_comment, - ACTIONS(3453), 15, + ACTIONS(3450), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137051,7 +135877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3451), 24, + ACTIONS(3448), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_RBRACE, @@ -137076,17 +135902,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_as, - [22115] = 6, + [22127] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3735), 1, + ACTIONS(3711), 1, anon_sym_DASH_GT, - STATE(1408), 2, + STATE(1400), 2, sym_line_comment, sym_block_comment, - ACTIONS(3733), 15, + ACTIONS(3709), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137102,7 +135928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3731), 30, + ACTIONS(3707), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137133,15 +135959,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [22178] = 5, + [22190] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1409), 2, + ACTIONS(3717), 1, + anon_sym_DASH_GT, + STATE(1401), 2, sym_line_comment, sym_block_comment, - ACTIONS(3739), 15, + ACTIONS(3715), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137157,7 +135985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3737), 31, + ACTIONS(3713), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137185,25 +136013,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, - [22239] = 5, + [22253] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1410), 2, + ACTIONS(3719), 1, + anon_sym_LBRACE, + STATE(1402), 2, sym_line_comment, sym_block_comment, - ACTIONS(3743), 15, + ACTIONS(3513), 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, @@ -137213,13 +136043,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3741), 31, + ACTIONS(3515), 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, @@ -137242,20 +136071,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [22300] = 6, + [22316] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3727), 1, - anon_sym_COLON_COLON, - STATE(1411), 2, + ACTIONS(3725), 1, + anon_sym_DASH_GT, + STATE(1403), 2, sym_line_comment, sym_block_comment, - ACTIONS(3525), 15, + ACTIONS(3723), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137271,7 +136099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3523), 30, + ACTIONS(3721), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137302,19 +136130,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [22363] = 7, + [22379] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3747), 1, - anon_sym_LPAREN, - STATE(1479), 1, - sym_arguments, - STATE(1412), 2, + STATE(1404), 2, sym_line_comment, sym_block_comment, - ACTIONS(3749), 15, + ACTIONS(3729), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137330,8 +136154,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3745), 29, + ACTIONS(3727), 31, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -137357,20 +136182,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [22428] = 6, + [22440] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3727), 1, - anon_sym_COLON_COLON, - STATE(1413), 2, + STATE(1405), 2, sym_line_comment, sym_block_comment, - ACTIONS(3533), 15, + ACTIONS(3385), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137386,7 +136210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3531), 30, + ACTIONS(3387), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137394,6 +136218,7 @@ 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, @@ -137417,29 +136242,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [22491] = 12, - ACTIONS(19), 1, - anon_sym_LBRACE, + [22501] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3457), 1, - anon_sym_COLON_COLON, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(3619), 1, - anon_sym_BANG, - ACTIONS(3751), 1, - anon_sym_move, - STATE(399), 1, - sym_block, - STATE(3621), 1, - sym_label, - STATE(1414), 2, + STATE(1406), 2, sym_line_comment, sym_block_comment, - ACTIONS(3453), 15, + ACTIONS(3733), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137455,10 +136266,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3451), 24, + ACTIONS(3731), 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, @@ -137479,18 +136293,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_COMMA, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, - [22566] = 6, + anon_sym_else, + [22562] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3757), 1, - anon_sym_DASH_GT, - STATE(1415), 2, + STATE(1407), 2, sym_line_comment, sym_block_comment, - ACTIONS(3755), 15, + ACTIONS(3737), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137506,7 +136322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3753), 30, + ACTIONS(3735), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137534,18 +136350,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [22629] = 5, + [22623] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1416), 2, + STATE(1408), 2, sym_line_comment, sym_block_comment, - ACTIONS(3761), 15, + ACTIONS(3741), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137561,7 +136378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3759), 31, + ACTIONS(3739), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137589,19 +136406,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, - [22690] = 5, + [22684] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1417), 2, + ACTIONS(3677), 1, + anon_sym_COLON_COLON, + STATE(1409), 2, sym_line_comment, sym_block_comment, - ACTIONS(3765), 15, + ACTIONS(3507), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137617,7 +136436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3763), 31, + ACTIONS(3505), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137645,28 +136464,26 @@ 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, - [22751] = 6, + [22747] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3767), 1, - anon_sym_LBRACE, - STATE(1418), 2, + ACTIONS(3747), 1, + anon_sym_DASH_GT, + STATE(1410), 2, sym_line_comment, sym_block_comment, - ACTIONS(3581), 16, + ACTIONS(3745), 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, @@ -137676,12 +136493,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3583), 29, + ACTIONS(3743), 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, @@ -137703,18 +136521,18 @@ 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, - [22814] = 5, + [22810] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1419), 2, + STATE(1411), 2, sym_line_comment, sym_block_comment, - ACTIONS(3771), 15, + ACTIONS(3751), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137730,7 +136548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3769), 31, + ACTIONS(3749), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137762,17 +136580,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [22875] = 6, + [22871] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3773), 1, - anon_sym_COLON_COLON, - STATE(1420), 2, + STATE(1412), 2, sym_line_comment, sym_block_comment, - ACTIONS(3511), 15, + ACTIONS(3755), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137788,7 +136604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3509), 30, + ACTIONS(3753), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137816,20 +136632,21 @@ 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, - [22938] = 6, + [22932] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3775), 1, - anon_sym_COLON_COLON, - STATE(1421), 2, + ACTIONS(3761), 1, + anon_sym_DASH_GT, + STATE(1413), 2, sym_line_comment, sym_block_comment, - ACTIONS(3511), 15, + ACTIONS(3759), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137845,7 +136662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3509), 30, + ACTIONS(3757), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137876,17 +136693,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23001] = 6, + [22995] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3727), 1, + ACTIONS(3763), 1, anon_sym_COLON_COLON, - STATE(1422), 2, + STATE(1414), 2, sym_line_comment, sym_block_comment, - ACTIONS(3511), 15, + ACTIONS(3571), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137902,7 +136719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3509), 30, + ACTIONS(3569), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137933,15 +136750,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23064] = 5, + [23058] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1423), 2, + ACTIONS(3765), 1, + anon_sym_COLON_COLON, + STATE(1415), 2, sym_line_comment, sym_block_comment, - ACTIONS(1604), 15, + ACTIONS(3571), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137957,7 +136776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1606), 31, + ACTIONS(3569), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137965,7 +136784,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, @@ -137989,17 +136807,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23125] = 6, + [23121] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3777), 1, + ACTIONS(3677), 1, anon_sym_COLON_COLON, - STATE(1424), 2, + STATE(1416), 2, sym_line_comment, sym_block_comment, - ACTIONS(1506), 15, + ACTIONS(3571), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138015,7 +136833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1504), 30, + ACTIONS(3569), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138046,24 +136864,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23188] = 6, + [23184] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3779), 1, - anon_sym_LBRACE, - STATE(1425), 2, + STATE(1417), 2, sym_line_comment, sym_block_comment, - ACTIONS(3547), 16, + ACTIONS(3769), 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, @@ -138073,12 +136888,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3549), 29, + ACTIONS(3767), 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, @@ -138101,23 +136917,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23251] = 5, + [23245] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1426), 2, + ACTIONS(3771), 1, + anon_sym_LBRACE, + STATE(1418), 2, sym_line_comment, sym_block_comment, - ACTIONS(3783), 15, + ACTIONS(3549), 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, @@ -138127,13 +136947,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3781), 31, + ACTIONS(3551), 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, @@ -138155,29 +136974,27 @@ 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_COLON_COLON, anon_sym_as, anon_sym_else, - [23312] = 7, + [23308] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3785), 1, - anon_sym_else, - STATE(1445), 1, - sym_else_clause, - STATE(1427), 2, + ACTIONS(3773), 1, + anon_sym_LBRACE, + STATE(1419), 2, sym_line_comment, sym_block_comment, - ACTIONS(1412), 15, + ACTIONS(3557), 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, @@ -138187,13 +137004,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1410), 29, + ACTIONS(3559), 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, @@ -138215,17 +137031,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_COLON_COLON, anon_sym_as, - [23377] = 5, + anon_sym_else, + [23371] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1428), 2, + STATE(1420), 2, sym_line_comment, sym_block_comment, - ACTIONS(3789), 15, + ACTIONS(3777), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138241,7 +137058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3787), 31, + ACTIONS(3775), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138269,19 +137086,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_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23438] = 5, + [23432] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1429), 2, + STATE(1421), 2, sym_line_comment, sym_block_comment, - ACTIONS(3553), 17, + ACTIONS(1596), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138292,14 +137109,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(3551), 29, + ACTIONS(1598), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138307,6 +137122,7 @@ 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, @@ -138318,26 +137134,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_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - anon_sym_LT2, - [23499] = 5, + [23493] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1430), 2, + STATE(1422), 2, sym_line_comment, sym_block_comment, - ACTIONS(3793), 15, + ACTIONS(3781), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138353,7 +137170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3791), 31, + ACTIONS(3779), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138385,15 +137202,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23560] = 5, + [23554] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1431), 2, + ACTIONS(3783), 1, + anon_sym_COLON_COLON, + STATE(1423), 2, sym_line_comment, sym_block_comment, - ACTIONS(3797), 15, + ACTIONS(1508), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138409,7 +137228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3795), 31, + ACTIONS(1506), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138437,19 +137256,20 @@ 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, - [23621] = 5, + [23617] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1432), 2, + ACTIONS(3789), 1, + anon_sym_DASH_GT, + STATE(1424), 2, sym_line_comment, sym_block_comment, - ACTIONS(3801), 15, + ACTIONS(3787), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138465,7 +137285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3799), 31, + ACTIONS(3785), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138493,19 +137313,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, - [23682] = 5, + [23680] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1433), 2, + STATE(1425), 2, sym_line_comment, sym_block_comment, - ACTIONS(3393), 15, + ACTIONS(3793), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138521,7 +137340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3395), 31, + ACTIONS(3791), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138529,7 +137348,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, @@ -138550,20 +137368,23 @@ 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, - [23743] = 6, + [23741] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3807), 1, - anon_sym_DASH_GT, - STATE(1434), 2, + ACTIONS(3797), 1, + anon_sym_LPAREN, + STATE(1482), 1, + sym_arguments, + STATE(1426), 2, sym_line_comment, sym_block_comment, - ACTIONS(3805), 15, + ACTIONS(3799), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138579,9 +137400,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3803), 30, + ACTIONS(3795), 29, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -138615,10 +137435,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1435), 2, + STATE(1427), 2, sym_line_comment, sym_block_comment, - ACTIONS(1506), 15, + ACTIONS(3803), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138634,7 +137454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1504), 30, + ACTIONS(3801), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138670,10 +137490,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1436), 2, + STATE(1428), 2, sym_line_comment, sym_block_comment, - ACTIONS(3811), 15, + ACTIONS(3807), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138689,7 +137509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3809), 30, + ACTIONS(3805), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138725,10 +137545,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1437), 2, + STATE(1429), 2, sym_line_comment, sym_block_comment, - ACTIONS(3815), 15, + ACTIONS(3811), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138744,7 +137564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3813), 30, + ACTIONS(3809), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138780,10 +137600,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1438), 2, + STATE(1430), 2, sym_line_comment, sym_block_comment, - ACTIONS(3819), 15, + ACTIONS(1436), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138799,7 +137619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3817), 30, + ACTIONS(1434), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138835,10 +137655,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1439), 2, + STATE(1431), 2, sym_line_comment, sym_block_comment, - ACTIONS(3823), 15, + ACTIONS(1458), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138854,7 +137674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3821), 30, + ACTIONS(1456), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138890,10 +137710,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1440), 2, + STATE(1432), 2, sym_line_comment, sym_block_comment, - ACTIONS(3827), 15, + ACTIONS(3507), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138909,7 +137729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3825), 30, + ACTIONS(3505), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -138945,10 +137765,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1441), 2, + STATE(1433), 2, sym_line_comment, sym_block_comment, - ACTIONS(3831), 15, + ACTIONS(1294), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138964,7 +137784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3829), 30, + ACTIONS(1296), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139000,10 +137820,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1442), 2, + STATE(1434), 2, sym_line_comment, sym_block_comment, - ACTIONS(1004), 15, + ACTIONS(3815), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139019,7 +137839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1006), 30, + ACTIONS(3813), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139055,10 +137875,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1443), 2, + STATE(1435), 2, sym_line_comment, sym_block_comment, - ACTIONS(1054), 15, + ACTIONS(3819), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139074,7 +137894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1056), 30, + ACTIONS(3817), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139110,10 +137930,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1444), 2, + STATE(1436), 2, sym_line_comment, sym_block_comment, - ACTIONS(3835), 15, + ACTIONS(3823), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139129,7 +137949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3833), 30, + ACTIONS(3821), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139165,10 +137985,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1445), 2, + STATE(1437), 2, sym_line_comment, sym_block_comment, - ACTIONS(1486), 15, + ACTIONS(3827), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139184,7 +138004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1484), 30, + ACTIONS(3825), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139220,10 +138040,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1446), 2, + STATE(1438), 2, sym_line_comment, sym_block_comment, - ACTIONS(1556), 15, + ACTIONS(3831), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139239,7 +138059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1554), 30, + ACTIONS(3829), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139275,10 +138095,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1447), 2, + STATE(1439), 2, sym_line_comment, sym_block_comment, - ACTIONS(1468), 15, + ACTIONS(3835), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139294,7 +138114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1466), 30, + ACTIONS(3833), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139330,10 +138150,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1448), 2, + STATE(1440), 2, sym_line_comment, sym_block_comment, - ACTIONS(1490), 15, + ACTIONS(3839), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139349,7 +138169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1488), 30, + ACTIONS(3837), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139385,10 +138205,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1449), 2, + STATE(1441), 2, sym_line_comment, sym_block_comment, - ACTIONS(3839), 15, + ACTIONS(3843), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139404,7 +138224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3837), 30, + ACTIONS(3841), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139440,10 +138260,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1450), 2, + STATE(1442), 2, sym_line_comment, sym_block_comment, - ACTIONS(1506), 15, + ACTIONS(3847), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139459,7 +138279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1504), 30, + ACTIONS(3845), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139495,10 +138315,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1451), 2, + STATE(1443), 2, sym_line_comment, sym_block_comment, - ACTIONS(3843), 15, + ACTIONS(3851), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139514,7 +138334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3841), 30, + ACTIONS(3849), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139550,10 +138370,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1452), 2, + STATE(1444), 2, sym_line_comment, sym_block_comment, - ACTIONS(1482), 15, + ACTIONS(3855), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139569,7 +138389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1480), 30, + ACTIONS(3853), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139605,10 +138425,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1453), 2, + STATE(1445), 2, sym_line_comment, sym_block_comment, - ACTIONS(1478), 15, + ACTIONS(1468), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139624,7 +138444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1476), 30, + ACTIONS(1466), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139660,10 +138480,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1454), 2, + STATE(1446), 2, sym_line_comment, sym_block_comment, - ACTIONS(3749), 15, + ACTIONS(1472), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139679,7 +138499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3745), 30, + ACTIONS(1470), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139715,10 +138535,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1455), 2, + STATE(1447), 2, sym_line_comment, sym_block_comment, - ACTIONS(3847), 15, + ACTIONS(1336), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139734,7 +138554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3845), 30, + ACTIONS(1338), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139770,10 +138590,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1456), 2, + STATE(1448), 2, sym_line_comment, sym_block_comment, - ACTIONS(3851), 15, + ACTIONS(3859), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139789,7 +138609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3849), 30, + ACTIONS(3857), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139825,10 +138645,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1457), 2, + STATE(1449), 2, sym_line_comment, sym_block_comment, - ACTIONS(3855), 15, + ACTIONS(1492), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139844,7 +138664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3853), 30, + ACTIONS(1490), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -139880,127 +138700,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1458), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3859), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3857), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [25246] = 12, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(412), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(3861), 1, - anon_sym_BANG, - ACTIONS(3863), 1, - anon_sym_COLON_COLON, - ACTIONS(3865), 1, - anon_sym_move, - STATE(1726), 1, - sym_block, - STATE(3783), 1, - sym_label, - STATE(1459), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3453), 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(3451), 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, - [25320] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - STATE(1460), 2, + STATE(1450), 2, sym_line_comment, sym_block_comment, - ACTIONS(1506), 15, + ACTIONS(1548), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140016,7 +138719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1504), 30, + ACTIONS(1546), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140047,15 +138750,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25380] = 5, + [25246] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1461), 2, + STATE(1451), 2, sym_line_comment, sym_block_comment, - ACTIONS(3869), 15, + ACTIONS(1480), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140071,7 +138774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3867), 30, + ACTIONS(1478), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140102,15 +138805,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25440] = 5, + [25306] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1462), 2, + STATE(1452), 2, sym_line_comment, sym_block_comment, - ACTIONS(1506), 15, + ACTIONS(1476), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140126,7 +138829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1504), 30, + ACTIONS(1474), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140157,15 +138860,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25500] = 5, + [25366] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1463), 2, + STATE(1453), 2, sym_line_comment, sym_block_comment, - ACTIONS(3873), 15, + ACTIONS(1508), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140181,7 +138884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3871), 30, + ACTIONS(1506), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140212,15 +138915,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25560] = 5, + [25426] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1464), 2, + STATE(1454), 2, sym_line_comment, sym_block_comment, - ACTIONS(3877), 15, + ACTIONS(3863), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140236,7 +138939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3875), 30, + ACTIONS(3861), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140267,15 +138970,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25620] = 5, + [25486] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1465), 2, + STATE(1455), 2, sym_line_comment, sym_block_comment, - ACTIONS(3881), 15, + ACTIONS(1488), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140291,7 +138994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3879), 30, + ACTIONS(1486), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140322,15 +139025,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25680] = 5, + [25546] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1466), 2, + STATE(1456), 2, sym_line_comment, sym_block_comment, - ACTIONS(1016), 15, + ACTIONS(3799), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140346,7 +139049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1018), 30, + ACTIONS(3795), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140377,15 +139080,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25740] = 5, + [25606] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1467), 2, + STATE(1457), 2, sym_line_comment, sym_block_comment, - ACTIONS(3885), 15, + ACTIONS(3867), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140401,7 +139104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3883), 30, + ACTIONS(3865), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140432,15 +139135,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25800] = 5, + [25666] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1468), 2, + STATE(1458), 2, sym_line_comment, sym_block_comment, - ACTIONS(3889), 15, + ACTIONS(3871), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140456,7 +139159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3887), 30, + ACTIONS(3869), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140487,15 +139190,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25860] = 5, + [25726] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1469), 2, + STATE(1459), 2, sym_line_comment, sym_block_comment, - ACTIONS(3893), 15, + ACTIONS(1484), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140511,7 +139214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3891), 30, + ACTIONS(1482), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140542,15 +139245,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25920] = 5, + [25786] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1470), 2, + STATE(1460), 2, sym_line_comment, sym_block_comment, - ACTIONS(3897), 15, + ACTIONS(3875), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140566,7 +139269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3895), 30, + ACTIONS(3873), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140597,21 +139300,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25980] = 8, + [25846] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - STATE(1471), 2, + STATE(1461), 2, sym_line_comment, sym_block_comment, - ACTIONS(3903), 14, + ACTIONS(1530), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140625,14 +139322,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(3899), 28, + ACTIONS(1528), 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, @@ -140655,15 +139355,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26046] = 5, + [25906] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1472), 2, + STATE(1462), 2, sym_line_comment, sym_block_comment, - ACTIONS(3911), 15, + ACTIONS(3879), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140679,7 +139379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3909), 30, + ACTIONS(3877), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140710,15 +139410,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26106] = 5, + [25966] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1473), 2, + STATE(1463), 2, sym_line_comment, sym_block_comment, - ACTIONS(3915), 15, + ACTIONS(3883), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140734,7 +139434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3913), 30, + ACTIONS(3881), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140765,15 +139465,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26166] = 5, + [26026] = 12, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1474), 2, + ACTIONS(412), 1, + anon_sym_LBRACE, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + ACTIONS(3885), 1, + anon_sym_BANG, + ACTIONS(3887), 1, + anon_sym_COLON_COLON, + ACTIONS(3889), 1, + anon_sym_move, + STATE(1719), 1, + sym_block, + STATE(3773), 1, + sym_label, + STATE(1464), 2, sym_line_comment, sym_block_comment, - ACTIONS(1012), 15, + ACTIONS(3450), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140789,14 +139503,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1014), 30, - anon_sym_SEMI, + ACTIONS(3448), 23, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -140816,19 +139526,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [26226] = 5, + [26100] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1475), 2, + STATE(1465), 2, sym_line_comment, sym_block_comment, - ACTIONS(1530), 15, + ACTIONS(1508), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140844,7 +139551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1528), 30, + ACTIONS(1506), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140875,15 +139582,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26286] = 5, + [26160] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1476), 2, + STATE(1466), 2, sym_line_comment, sym_block_comment, - ACTIONS(1456), 15, + ACTIONS(3893), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140899,7 +139606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1454), 30, + ACTIONS(3891), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140930,15 +139637,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26346] = 5, + [26220] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1477), 2, + STATE(1467), 2, sym_line_comment, sym_block_comment, - ACTIONS(3919), 15, + ACTIONS(1508), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140954,7 +139661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3917), 30, + ACTIONS(1506), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -140985,21 +139692,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26406] = 8, + [26280] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - STATE(1478), 2, + STATE(1468), 2, sym_line_comment, sym_block_comment, - ACTIONS(3923), 14, + ACTIONS(3897), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141013,14 +139714,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(3921), 28, + ACTIONS(3895), 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, @@ -141043,15 +139747,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26472] = 5, + [26340] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1479), 2, + STATE(1469), 2, sym_line_comment, sym_block_comment, - ACTIONS(3927), 15, + ACTIONS(3901), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141067,7 +139771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3925), 30, + ACTIONS(3899), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141098,15 +139802,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26532] = 5, + [26400] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1480), 2, + STATE(1470), 2, sym_line_comment, sym_block_comment, - ACTIONS(1464), 15, + ACTIONS(3905), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141122,7 +139826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1462), 30, + ACTIONS(3903), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141153,15 +139857,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26592] = 5, + [26460] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1481), 2, + STATE(1471), 2, sym_line_comment, sym_block_comment, - ACTIONS(3931), 15, + ACTIONS(958), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141177,7 +139881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3929), 30, + ACTIONS(960), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141208,15 +139912,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26652] = 5, + [26520] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1482), 2, + STATE(1472), 2, sym_line_comment, sym_block_comment, - ACTIONS(3935), 15, + ACTIONS(3909), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141232,7 +139936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3933), 30, + ACTIONS(3907), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141263,15 +139967,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26712] = 5, + [26580] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1483), 2, + STATE(1473), 2, sym_line_comment, sym_block_comment, - ACTIONS(3939), 15, + ACTIONS(3913), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141287,7 +139991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3937), 30, + ACTIONS(3911), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141318,15 +140022,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26772] = 5, + [26640] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1484), 2, + STATE(1474), 2, sym_line_comment, sym_block_comment, - ACTIONS(3943), 15, + ACTIONS(3917), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141342,7 +140046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3941), 30, + ACTIONS(3915), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141373,15 +140077,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26832] = 5, + [26700] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1485), 2, + STATE(1475), 2, sym_line_comment, sym_block_comment, - ACTIONS(3533), 15, + ACTIONS(3921), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141397,7 +140101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3531), 30, + ACTIONS(3919), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141428,15 +140132,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26892] = 5, + [26760] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1486), 2, + ACTIONS(3925), 1, + anon_sym_LBRACK, + ACTIONS(3929), 1, + anon_sym_QMARK, + ACTIONS(3931), 1, + anon_sym_DOT, + STATE(1476), 2, sym_line_comment, sym_block_comment, - ACTIONS(3947), 15, + ACTIONS(3927), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141450,17 +140160,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(3945), 30, + ACTIONS(3923), 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, @@ -141483,15 +140190,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26952] = 5, + [26826] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1487), 2, + STATE(1477), 2, sym_line_comment, sym_block_comment, - ACTIONS(3951), 15, + ACTIONS(3935), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141507,7 +140214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3949), 30, + ACTIONS(3933), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141538,15 +140245,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27012] = 5, + [26886] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1488), 2, + STATE(1478), 2, sym_line_comment, sym_block_comment, - ACTIONS(3955), 15, + ACTIONS(3939), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141562,7 +140269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3953), 30, + ACTIONS(3937), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141593,15 +140300,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27072] = 5, + [26946] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1489), 2, + STATE(1479), 2, sym_line_comment, sym_block_comment, - ACTIONS(958), 15, + ACTIONS(1042), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141617,7 +140324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(960), 30, + ACTIONS(1044), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141648,15 +140355,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27132] = 5, + [27006] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1490), 2, + STATE(1480), 2, sym_line_comment, sym_block_comment, - ACTIONS(3959), 15, + ACTIONS(3943), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141672,7 +140379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3957), 30, + ACTIONS(3941), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141703,15 +140410,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27192] = 5, + [27066] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1491), 2, + ACTIONS(3925), 1, + anon_sym_LBRACK, + ACTIONS(3929), 1, + anon_sym_QMARK, + ACTIONS(3931), 1, + anon_sym_DOT, + STATE(1481), 2, sym_line_comment, sym_block_comment, - ACTIONS(1544), 15, + ACTIONS(3947), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141725,17 +140438,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(1542), 30, + ACTIONS(3945), 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, @@ -141758,15 +140468,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27252] = 5, + [27132] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1492), 2, + STATE(1482), 2, sym_line_comment, sym_block_comment, - ACTIONS(3963), 15, + ACTIONS(3951), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141782,7 +140492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3961), 30, + ACTIONS(3949), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141813,18 +140523,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27312] = 6, + [27192] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3967), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - STATE(1493), 2, + STATE(1483), 2, sym_line_comment, sym_block_comment, - ACTIONS(3969), 15, + ACTIONS(3955), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141840,12 +140547,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3965), 28, + ACTIONS(3953), 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, @@ -141867,17 +140575,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, - [27374] = 5, + [27252] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1494), 2, + STATE(1484), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 15, + ACTIONS(3959), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141893,7 +140602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3971), 30, + ACTIONS(3957), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141924,15 +140633,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27434] = 5, + [27312] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1495), 2, + STATE(1485), 2, sym_line_comment, sym_block_comment, - ACTIONS(3977), 15, + ACTIONS(3963), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141948,7 +140657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3975), 30, + ACTIONS(3961), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -141979,15 +140688,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27494] = 5, + [27372] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1496), 2, + STATE(1486), 2, sym_line_comment, sym_block_comment, - ACTIONS(3981), 15, + ACTIONS(3967), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142003,7 +140712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3979), 30, + ACTIONS(3965), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142034,15 +140743,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27554] = 5, + [27432] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1497), 2, + STATE(1487), 2, sym_line_comment, sym_block_comment, - ACTIONS(1560), 15, + ACTIONS(3971), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142058,7 +140767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1558), 30, + ACTIONS(3969), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142089,15 +140798,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27614] = 5, + [27492] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1498), 2, + STATE(1488), 2, sym_line_comment, sym_block_comment, - ACTIONS(3985), 15, + ACTIONS(984), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142113,7 +140822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3983), 30, + ACTIONS(986), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142144,15 +140853,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27674] = 5, + [27552] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1499), 2, + STATE(1489), 2, sym_line_comment, sym_block_comment, - ACTIONS(3525), 15, + ACTIONS(3975), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142168,7 +140877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3523), 30, + ACTIONS(3973), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142199,15 +140908,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27734] = 5, + [27612] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1500), 2, + ACTIONS(3979), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1490), 2, sym_line_comment, sym_block_comment, - ACTIONS(1526), 15, + ACTIONS(3981), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142223,13 +140935,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1524), 30, + ACTIONS(3977), 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, @@ -142251,26 +140962,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, - [27794] = 9, + [27674] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - STATE(1501), 2, + STATE(1491), 2, sym_line_comment, sym_block_comment, - ACTIONS(3989), 14, + ACTIONS(3985), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142284,14 +140986,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(3987), 27, + ACTIONS(3983), 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, @@ -142312,16 +141017,17 @@ 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, - [27862] = 5, + [27734] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1502), 2, + STATE(1492), 2, sym_line_comment, sym_block_comment, - ACTIONS(3995), 15, + ACTIONS(1538), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142337,7 +141043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3993), 30, + ACTIONS(1536), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142368,15 +141074,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27922] = 5, + [27794] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1503), 2, + STATE(1493), 2, sym_line_comment, sym_block_comment, - ACTIONS(3999), 15, + ACTIONS(3989), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142392,7 +141098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3997), 30, + ACTIONS(3987), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142423,15 +141129,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27982] = 5, + [27854] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1504), 2, + STATE(1494), 2, sym_line_comment, sym_block_comment, - ACTIONS(4003), 15, + ACTIONS(3525), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142447,7 +141153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4001), 30, + ACTIONS(3523), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142478,18 +141184,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28042] = 6, + [27914] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4005), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - STATE(1505), 2, + STATE(1495), 2, sym_line_comment, sym_block_comment, - ACTIONS(3969), 15, + ACTIONS(1542), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142505,12 +141208,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3965), 28, + ACTIONS(1540), 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, @@ -142532,17 +141236,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, - [28104] = 5, + [27974] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1506), 2, + STATE(1496), 2, sym_line_comment, sym_block_comment, - ACTIONS(4009), 15, + ACTIONS(3993), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142558,7 +141263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4007), 30, + ACTIONS(3991), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142589,15 +141294,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28164] = 5, + [28034] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1507), 2, + ACTIONS(3925), 1, + anon_sym_LBRACK, + ACTIONS(3929), 1, + anon_sym_QMARK, + ACTIONS(3931), 1, + anon_sym_DOT, + ACTIONS(3999), 1, + anon_sym_as, + STATE(1497), 2, sym_line_comment, sym_block_comment, - ACTIONS(1506), 15, + ACTIONS(3997), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142611,17 +141324,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(1504), 30, + ACTIONS(3995), 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, @@ -142642,17 +141352,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, - [28224] = 5, + [28102] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1508), 2, + STATE(1498), 2, sym_line_comment, sym_block_comment, - ACTIONS(3969), 15, + ACTIONS(4003), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142668,7 +141377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3965), 30, + ACTIONS(4001), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142699,15 +141408,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28284] = 5, + [28162] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1509), 2, + STATE(1499), 2, sym_line_comment, sym_block_comment, - ACTIONS(1472), 15, + ACTIONS(1432), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142723,7 +141432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1470), 30, + ACTIONS(1430), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142754,15 +141463,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28344] = 5, + [28222] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1510), 2, + STATE(1500), 2, sym_line_comment, sym_block_comment, - ACTIONS(1498), 15, + ACTIONS(4007), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142778,7 +141487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1496), 30, + ACTIONS(4005), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142809,15 +141518,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28404] = 5, + [28282] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1511), 2, + STATE(1501), 2, sym_line_comment, sym_block_comment, - ACTIONS(1042), 15, + ACTIONS(4011), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142833,7 +141542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1044), 30, + ACTIONS(4009), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -142864,15 +141573,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28464] = 5, + [28342] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1512), 2, + ACTIONS(4013), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1502), 2, sym_line_comment, sym_block_comment, - ACTIONS(4013), 15, + ACTIONS(3981), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142888,13 +141600,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4011), 30, + ACTIONS(3977), 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, @@ -142916,15 +141627,14 @@ 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, - [28524] = 5, + [28404] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1513), 2, + STATE(1503), 2, sym_line_comment, sym_block_comment, ACTIONS(4017), 15, @@ -142974,15 +141684,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28584] = 5, + [28464] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1514), 2, + STATE(1504), 2, sym_line_comment, sym_block_comment, - ACTIONS(4021), 15, + ACTIONS(1508), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142998,7 +141708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4019), 30, + ACTIONS(1506), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143029,15 +141739,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28644] = 5, + [28524] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1515), 2, + STATE(1505), 2, sym_line_comment, sym_block_comment, - ACTIONS(4025), 15, + ACTIONS(3981), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143053,7 +141763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4023), 30, + ACTIONS(3977), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143084,15 +141794,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28704] = 5, + [28584] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1516), 2, + STATE(1506), 2, sym_line_comment, sym_block_comment, - ACTIONS(1506), 15, + ACTIONS(1508), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143108,7 +141818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1504), 30, + ACTIONS(1506), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143139,15 +141849,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28764] = 5, + [28644] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1517), 2, + STATE(1507), 2, sym_line_comment, sym_block_comment, - ACTIONS(4029), 15, + ACTIONS(4021), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143163,7 +141873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4027), 30, + ACTIONS(4019), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143194,15 +141904,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28824] = 5, + [28704] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1518), 2, + STATE(1508), 2, sym_line_comment, sym_block_comment, - ACTIONS(4033), 15, + ACTIONS(962), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143218,7 +141928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4031), 30, + ACTIONS(964), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143249,21 +141959,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28884] = 8, + [28764] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - STATE(1519), 2, + STATE(1509), 2, sym_line_comment, sym_block_comment, - ACTIONS(4037), 14, + ACTIONS(4025), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143277,14 +141981,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(4035), 28, + ACTIONS(4023), 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, @@ -143307,15 +142014,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28950] = 5, + [28824] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1520), 2, + STATE(1510), 2, sym_line_comment, sym_block_comment, - ACTIONS(1134), 15, + ACTIONS(4029), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143331,7 +142038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1136), 30, + ACTIONS(4027), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143362,15 +142069,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29010] = 5, + [28884] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1521), 2, + STATE(1511), 2, sym_line_comment, sym_block_comment, - ACTIONS(4041), 15, + ACTIONS(4033), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143386,7 +142093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4039), 30, + ACTIONS(4031), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143417,19 +142124,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29070] = 7, + [28944] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3455), 1, - anon_sym_BANG, - ACTIONS(3457), 1, - anon_sym_COLON_COLON, - STATE(1522), 2, + STATE(1512), 2, sym_line_comment, sym_block_comment, - ACTIONS(3453), 15, + ACTIONS(4037), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143445,12 +142148,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3451), 28, + ACTIONS(4035), 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, @@ -143472,17 +142176,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, - [29134] = 5, + [29004] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1523), 2, + STATE(1513), 2, sym_line_comment, sym_block_comment, - ACTIONS(4045), 15, + ACTIONS(1508), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143498,7 +142203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4043), 30, + ACTIONS(1506), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143529,19 +142234,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29194] = 7, + [29064] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3449), 1, - anon_sym_BANG, - ACTIONS(4047), 1, - anon_sym_COLON_COLON, - STATE(1524), 2, + STATE(1514), 2, sym_line_comment, sym_block_comment, - ACTIONS(1506), 15, + ACTIONS(4041), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143557,12 +142258,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1504), 28, + ACTIONS(4039), 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, @@ -143584,17 +142286,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, - [29258] = 5, + [29124] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1525), 2, + STATE(1515), 2, sym_line_comment, sym_block_comment, - ACTIONS(1448), 15, + ACTIONS(4045), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143610,7 +142313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1446), 30, + ACTIONS(4043), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143641,15 +142344,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29318] = 5, + [29184] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1526), 2, + ACTIONS(3925), 1, + anon_sym_LBRACK, + ACTIONS(3929), 1, + anon_sym_QMARK, + ACTIONS(3931), 1, + anon_sym_DOT, + STATE(1516), 2, sym_line_comment, sym_block_comment, - ACTIONS(1444), 15, + ACTIONS(4049), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143663,17 +142372,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(1442), 30, + ACTIONS(4047), 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, @@ -143696,15 +142402,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29378] = 5, + [29250] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1527), 2, + STATE(1517), 2, sym_line_comment, sym_block_comment, - ACTIONS(4051), 15, + ACTIONS(4053), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143720,7 +142426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4049), 30, + ACTIONS(4051), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143751,15 +142457,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29438] = 5, + [29310] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1528), 2, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3454), 1, + anon_sym_COLON_COLON, + STATE(1518), 2, sym_line_comment, sym_block_comment, - ACTIONS(4055), 15, + ACTIONS(3450), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143775,13 +142485,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4053), 30, + ACTIONS(3448), 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, @@ -143803,18 +142512,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, - [29498] = 5, + [29374] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1529), 2, + STATE(1519), 2, sym_line_comment, sym_block_comment, - ACTIONS(1514), 15, + ACTIONS(4057), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143830,7 +142538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1512), 30, + ACTIONS(4055), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143861,15 +142569,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29558] = 5, + [29434] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1530), 2, + ACTIONS(3464), 1, + anon_sym_BANG, + ACTIONS(4059), 1, + anon_sym_COLON_COLON, + STATE(1520), 2, sym_line_comment, sym_block_comment, - ACTIONS(3511), 15, + ACTIONS(1508), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143885,13 +142597,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3509), 30, + ACTIONS(1506), 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, @@ -143913,18 +142624,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, - [29618] = 5, + [29498] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1531), 2, + STATE(1521), 2, sym_line_comment, sym_block_comment, - ACTIONS(4059), 15, + ACTIONS(3533), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143940,7 +142650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4057), 30, + ACTIONS(3531), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -143971,15 +142681,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29678] = 5, + [29558] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1532), 2, + STATE(1522), 2, sym_line_comment, sym_block_comment, - ACTIONS(1494), 15, + ACTIONS(1038), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143995,7 +142705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1492), 30, + ACTIONS(1040), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -144026,15 +142736,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29738] = 5, + [29618] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1533), 2, + STATE(1523), 2, sym_line_comment, sym_block_comment, - ACTIONS(1510), 15, + ACTIONS(4063), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144050,7 +142760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1508), 30, + ACTIONS(4061), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -144081,15 +142791,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29798] = 5, + [29678] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1534), 2, + STATE(1524), 2, sym_line_comment, sym_block_comment, - ACTIONS(1460), 15, + ACTIONS(1440), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144105,7 +142815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1458), 30, + ACTIONS(1438), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -144136,15 +142846,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29858] = 5, + [29738] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1535), 2, + STATE(1525), 2, sym_line_comment, sym_block_comment, - ACTIONS(1518), 15, + ACTIONS(4067), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144160,7 +142870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1516), 30, + ACTIONS(4065), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -144191,15 +142901,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29918] = 5, + [29798] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1536), 2, + STATE(1526), 2, sym_line_comment, sym_block_comment, - ACTIONS(1522), 15, + ACTIONS(1516), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144215,7 +142925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1520), 30, + ACTIONS(1514), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -144246,15 +142956,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [29978] = 5, + [29858] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1537), 2, + STATE(1527), 2, sym_line_comment, sym_block_comment, - ACTIONS(1540), 15, + ACTIONS(4071), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144270,7 +142980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1538), 30, + ACTIONS(4069), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -144301,15 +143011,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30038] = 5, + [29918] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1538), 2, + STATE(1528), 2, sym_line_comment, sym_block_comment, - ACTIONS(4063), 15, + ACTIONS(4075), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144325,7 +143035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4061), 30, + ACTIONS(4073), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -144356,15 +143066,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30098] = 5, + [29978] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1539), 2, + STATE(1529), 2, sym_line_comment, sym_block_comment, - ACTIONS(4067), 15, + ACTIONS(3571), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144380,7 +143090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4065), 30, + ACTIONS(3569), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -144411,15 +143121,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30158] = 5, + [30038] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1540), 2, + STATE(1530), 2, sym_line_comment, sym_block_comment, - ACTIONS(4071), 15, + ACTIONS(1500), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144435,7 +143145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4069), 30, + ACTIONS(1498), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -144466,15 +143176,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30218] = 5, + [30098] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1541), 2, + STATE(1531), 2, sym_line_comment, sym_block_comment, - ACTIONS(4075), 15, + ACTIONS(1496), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144490,7 +143200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4073), 30, + ACTIONS(1494), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -144521,15 +143231,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30278] = 5, + [30158] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1542), 2, + STATE(1532), 2, sym_line_comment, sym_block_comment, - ACTIONS(3515), 15, + ACTIONS(1512), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144545,7 +143255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3513), 30, + ACTIONS(1510), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -144576,15 +143286,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30338] = 5, + [30218] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1543), 2, + STATE(1533), 2, sym_line_comment, sym_block_comment, - ACTIONS(1452), 15, + ACTIONS(1520), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144600,7 +143310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1450), 30, + ACTIONS(1518), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -144631,21 +143341,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30398] = 8, + [30278] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - STATE(1544), 2, + STATE(1534), 2, sym_line_comment, sym_block_comment, - ACTIONS(4079), 14, + ACTIONS(1524), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144659,14 +143363,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(4077), 28, + ACTIONS(1522), 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, @@ -144689,15 +143396,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30464] = 5, + [30338] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1545), 2, + STATE(1535), 2, sym_line_comment, sym_block_comment, - ACTIONS(1440), 15, + ACTIONS(1534), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144713,7 +143420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1438), 30, + ACTIONS(1532), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -144744,15 +143451,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30524] = 5, + [30398] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1546), 2, + STATE(1536), 2, sym_line_comment, sym_block_comment, - ACTIONS(1548), 15, + ACTIONS(1454), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144768,7 +143475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1546), 30, + ACTIONS(1452), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -144799,15 +143506,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30584] = 5, + [30458] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1547), 2, + STATE(1537), 2, sym_line_comment, sym_block_comment, - ACTIONS(4083), 15, + ACTIONS(1444), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144823,7 +143530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4081), 30, + ACTIONS(1442), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -144854,15 +143561,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30644] = 5, + [30518] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1548), 2, + STATE(1538), 2, sym_line_comment, sym_block_comment, - ACTIONS(4087), 15, + ACTIONS(4079), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144878,7 +143585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4085), 30, + ACTIONS(4077), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -144909,15 +143616,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30704] = 5, + [30578] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1549), 2, + STATE(1539), 2, sym_line_comment, sym_block_comment, - ACTIONS(4091), 15, + ACTIONS(1464), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144933,7 +143640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4089), 30, + ACTIONS(1462), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -144964,15 +143671,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30764] = 5, + [30638] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1550), 2, + STATE(1540), 2, sym_line_comment, sym_block_comment, - ACTIONS(4095), 15, + ACTIONS(4083), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144988,7 +143695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4093), 30, + ACTIONS(4081), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -145019,15 +143726,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30824] = 5, + [30698] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1551), 2, + STATE(1541), 2, sym_line_comment, sym_block_comment, - ACTIONS(4099), 15, + ACTIONS(1448), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145043,7 +143750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4097), 30, + ACTIONS(1446), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -145074,15 +143781,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30884] = 5, + [30758] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1552), 2, + ACTIONS(3925), 1, + anon_sym_LBRACK, + ACTIONS(3929), 1, + anon_sym_QMARK, + ACTIONS(3931), 1, + anon_sym_DOT, + STATE(1542), 2, sym_line_comment, sym_block_comment, - ACTIONS(4103), 15, + ACTIONS(4087), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145096,17 +143809,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(4101), 30, + ACTIONS(4085), 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, @@ -145129,15 +143839,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [30944] = 5, + [30824] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1553), 2, + STATE(1543), 2, sym_line_comment, sym_block_comment, - ACTIONS(4107), 15, + ACTIONS(4091), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145153,7 +143863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4105), 30, + ACTIONS(4089), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -145184,15 +143894,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [31004] = 5, + [30884] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1554), 2, + STATE(1544), 2, sym_line_comment, sym_block_comment, - ACTIONS(4111), 15, + ACTIONS(4095), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145208,7 +143918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4109), 30, + ACTIONS(4093), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -145239,15 +143949,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [31064] = 5, + [30944] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1555), 2, + STATE(1545), 2, sym_line_comment, sym_block_comment, - ACTIONS(4115), 15, + ACTIONS(4099), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145263,7 +143973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4113), 30, + ACTIONS(4097), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -145294,15 +144004,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [31124] = 5, + [31004] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1556), 2, + STATE(1546), 2, sym_line_comment, sym_block_comment, - ACTIONS(4119), 15, + ACTIONS(4103), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145318,7 +144028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4117), 30, + ACTIONS(4101), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -145349,17 +144059,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [31184] = 6, + [31064] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4121), 1, - anon_sym_COLON_COLON, - STATE(1557), 2, + STATE(1547), 2, sym_line_comment, sym_block_comment, - ACTIONS(1506), 15, + ACTIONS(4107), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145375,12 +144083,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1504), 28, + ACTIONS(4105), 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, @@ -145402,19 +144111,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, - [31245] = 6, + [31124] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3457), 1, - anon_sym_COLON_COLON, - STATE(1558), 2, + STATE(1548), 2, sym_line_comment, sym_block_comment, - ACTIONS(3453), 15, + ACTIONS(4111), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145430,12 +144138,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3451), 28, + ACTIONS(4109), 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, @@ -145457,85 +144166,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, - [31306] = 19, - ACTIONS(29), 1, - anon_sym_LT, + [31184] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1072), 1, - anon_sym_DASH, - ACTIONS(1122), 1, - aux_sym_string_literal_token1, - ACTIONS(1132), 1, - sym__raw_string_literal_start, - ACTIONS(2301), 1, - anon_sym_COLON_COLON, - ACTIONS(3421), 1, - sym_identifier, - ACTIONS(3431), 1, - sym_metavariable, - STATE(2149), 1, - sym_scoped_identifier, - STATE(2222), 1, - sym__literal_pattern, - STATE(3740), 1, - sym_bracketed_type, - STATE(3804), 1, - sym_generic_type_with_turbofish, - ACTIONS(1124), 2, - anon_sym_true, - anon_sym_false, - STATE(1559), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1120), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3429), 3, - sym_self, - sym_super, - sym_crate, - STATE(2116), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3427), 21, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_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, - anon_sym_raw, - [31393] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - STATE(1560), 2, + STATE(1549), 2, sym_line_comment, sym_block_comment, - ACTIONS(4125), 10, + ACTIONS(4115), 10, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -145546,7 +144188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(4123), 34, + ACTIONS(4113), 34, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -145581,53 +144223,108 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31452] = 19, + [31243] = 6, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4117), 1, + anon_sym_COLON_COLON, + STATE(1550), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1508), 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(1506), 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, + [31304] = 19, ACTIONS(29), 1, anon_sym_LT, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1072), 1, + ACTIONS(1066), 1, anon_sym_DASH, - ACTIONS(1122), 1, + ACTIONS(1116), 1, aux_sym_string_literal_token1, - ACTIONS(1132), 1, + ACTIONS(1126), 1, sym__raw_string_literal_start, - ACTIONS(2301), 1, + ACTIONS(2321), 1, anon_sym_COLON_COLON, - ACTIONS(3409), 1, + ACTIONS(3401), 1, sym_identifier, - ACTIONS(3419), 1, + ACTIONS(3411), 1, sym_metavariable, - STATE(2162), 1, + STATE(2143), 1, sym_scoped_identifier, - STATE(2188), 1, + STATE(2218), 1, sym__literal_pattern, - STATE(3740), 1, + STATE(3723), 1, sym_bracketed_type, - STATE(3804), 1, + STATE(3791), 1, sym_generic_type_with_turbofish, - ACTIONS(1124), 2, + ACTIONS(1118), 2, anon_sym_true, anon_sym_false, - STATE(1561), 2, + STATE(1551), 2, sym_line_comment, sym_block_comment, - ACTIONS(1120), 3, + ACTIONS(1114), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3417), 3, + ACTIONS(3409), 3, sym_self, sym_super, sym_crate, - STATE(2116), 4, + STATE(2100), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3415), 21, + ACTIONS(3407), 21, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -145649,53 +144346,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_gen, anon_sym_union, anon_sym_raw, - [31539] = 19, + [31391] = 11, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + ACTIONS(3458), 1, + anon_sym_move, + ACTIONS(4119), 1, + anon_sym_COLON_COLON, + STATE(1533), 1, + sym_block, + STATE(3709), 1, + sym_label, + STATE(1552), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3450), 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(3448), 23, + 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_as, + [31462] = 19, ACTIONS(29), 1, anon_sym_LT, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1072), 1, + ACTIONS(1066), 1, anon_sym_DASH, - ACTIONS(1122), 1, + ACTIONS(1116), 1, aux_sym_string_literal_token1, - ACTIONS(1132), 1, + ACTIONS(1126), 1, sym__raw_string_literal_start, - ACTIONS(2301), 1, + ACTIONS(2321), 1, anon_sym_COLON_COLON, - ACTIONS(3397), 1, + ACTIONS(3389), 1, sym_identifier, - ACTIONS(3407), 1, + ACTIONS(3399), 1, sym_metavariable, - STATE(2174), 1, + STATE(2167), 1, sym_scoped_identifier, - STATE(2225), 1, + STATE(2175), 1, sym__literal_pattern, - STATE(3740), 1, + STATE(3723), 1, sym_bracketed_type, - STATE(3804), 1, + STATE(3791), 1, sym_generic_type_with_turbofish, - ACTIONS(1124), 2, + ACTIONS(1118), 2, anon_sym_true, anon_sym_false, - STATE(1562), 2, + STATE(1553), 2, sym_line_comment, sym_block_comment, - ACTIONS(1120), 3, + ACTIONS(1114), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3405), 3, + ACTIONS(3397), 3, sym_self, sym_super, sym_crate, - STATE(2116), 4, + STATE(2100), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3403), 21, + ACTIONS(3395), 21, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -145717,16 +144474,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_gen, anon_sym_union, anon_sym_raw, - [31626] = 5, + [31549] = 10, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1563), 2, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(3458), 1, + anon_sym_move, + ACTIONS(4119), 1, + anon_sym_COLON_COLON, + STATE(1533), 1, + sym_block, + STATE(3709), 1, + sym_label, + STATE(1554), 2, sym_line_comment, sym_block_comment, - ACTIONS(4129), 10, + ACTIONS(3450), 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(3448), 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, + [31618] = 6, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4123), 1, anon_sym_LPAREN, + STATE(1555), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4126), 9, anon_sym_LBRACK, anon_sym_STAR, anon_sym_QMARK, @@ -145736,7 +144553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(4127), 34, + ACTIONS(4121), 34, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -145771,15 +144588,17 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31685] = 5, + [31679] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1564), 2, + ACTIONS(4128), 1, + anon_sym_COLON_COLON, + STATE(1556), 2, sym_line_comment, sym_block_comment, - ACTIONS(4133), 10, + ACTIONS(4126), 9, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -145787,10 +144606,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_AMP, anon_sym_LT, - anon_sym_COLON_COLON, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(4131), 34, + ACTIONS(4121), 34, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -145825,27 +144643,53 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31744] = 6, + [31740] = 19, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4139), 1, + ACTIONS(1678), 1, + anon_sym_DASH, + ACTIONS(1704), 1, + aux_sym_string_literal_token1, + ACTIONS(1712), 1, + sym__raw_string_literal_start, + ACTIONS(3645), 1, + sym_identifier, + ACTIONS(3649), 1, anon_sym_COLON_COLON, - STATE(1565), 2, + ACTIONS(3653), 1, + sym_metavariable, + STATE(2619), 1, + sym_scoped_identifier, + STATE(3087), 1, + sym__literal_pattern, + STATE(3622), 1, + sym_bracketed_type, + STATE(3639), 1, + sym_generic_type_with_turbofish, + ACTIONS(1706), 2, + anon_sym_true, + anon_sym_false, + STATE(1557), 2, sym_line_comment, sym_block_comment, - ACTIONS(4137), 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(4135), 34, + ACTIONS(1702), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3651), 3, + sym_self, + sym_super, + sym_crate, + STATE(2502), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3647), 21, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -145863,42 +144707,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, anon_sym_default, - anon_sym_fn, - anon_sym_for, anon_sym_gen, - anon_sym_impl, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - anon_sym_dyn, anon_sym_raw, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [31805] = 10, + [31827] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3455), 1, - anon_sym_BANG, - ACTIONS(3461), 1, - anon_sym_move, - ACTIONS(4142), 1, + ACTIONS(3454), 1, anon_sym_COLON_COLON, - STATE(1534), 1, - sym_block, - STATE(3719), 1, - sym_label, - STATE(1566), 2, + STATE(1558), 2, sym_line_comment, sym_block_comment, - ACTIONS(3453), 15, + ACTIONS(3450), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145914,10 +144737,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3451), 24, + ACTIONS(3448), 28, + anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -145937,19 +144763,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_COMMA, anon_sym_as, - [31874] = 6, + anon_sym_else, + [31888] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4144), 1, - anon_sym_LPAREN, - STATE(1567), 2, + STATE(1559), 2, sym_line_comment, sym_block_comment, - ACTIONS(4137), 9, + ACTIONS(4133), 10, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, anon_sym_QMARK, @@ -145959,7 +144785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(4135), 34, + ACTIONS(4131), 34, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -145994,53 +144820,53 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [31935] = 19, + [31947] = 19, ACTIONS(29), 1, anon_sym_LT, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1686), 1, + ACTIONS(1066), 1, anon_sym_DASH, - ACTIONS(1712), 1, + ACTIONS(1116), 1, aux_sym_string_literal_token1, - ACTIONS(1720), 1, + ACTIONS(1126), 1, sym__raw_string_literal_start, - ACTIONS(3653), 1, - sym_identifier, - ACTIONS(3657), 1, + ACTIONS(2321), 1, anon_sym_COLON_COLON, - ACTIONS(3661), 1, + ACTIONS(3413), 1, + sym_identifier, + ACTIONS(3423), 1, sym_metavariable, - STATE(2641), 1, + STATE(2171), 1, sym_scoped_identifier, - STATE(3020), 1, + STATE(2226), 1, sym__literal_pattern, - STATE(3632), 1, + STATE(3723), 1, sym_bracketed_type, - STATE(3649), 1, + STATE(3791), 1, sym_generic_type_with_turbofish, - ACTIONS(1714), 2, + ACTIONS(1118), 2, anon_sym_true, anon_sym_false, - STATE(1568), 2, + STATE(1560), 2, sym_line_comment, sym_block_comment, - ACTIONS(1710), 3, + ACTIONS(1114), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3659), 3, + ACTIONS(3421), 3, sym_self, sym_super, sym_crate, - STATE(2441), 4, + STATE(2100), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3655), 21, + ACTIONS(3419), 21, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -146062,66 +144888,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_gen, anon_sym_union, anon_sym_raw, - [32022] = 11, + [32034] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3455), 1, - anon_sym_BANG, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(3461), 1, - anon_sym_move, - ACTIONS(4142), 1, - anon_sym_COLON_COLON, - STATE(1534), 1, - sym_block, - STATE(3719), 1, - sym_label, - STATE(1569), 2, + STATE(1561), 2, sym_line_comment, sym_block_comment, - ACTIONS(3453), 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(3451), 23, + ACTIONS(4137), 10, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + 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_as, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(4135), 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_extern, + anon_sym_dyn, + anon_sym_raw, + sym_identifier, + sym_self, + sym_super, + sym_crate, [32093] = 19, ACTIONS(29), 1, anon_sym_LT, @@ -146129,46 +144949,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1686), 1, + ACTIONS(1678), 1, anon_sym_DASH, - ACTIONS(1712), 1, + ACTIONS(1704), 1, aux_sym_string_literal_token1, - ACTIONS(1720), 1, + ACTIONS(1712), 1, sym__raw_string_literal_start, - ACTIONS(3657), 1, + ACTIONS(3649), 1, anon_sym_COLON_COLON, - ACTIONS(3663), 1, + ACTIONS(3655), 1, sym_identifier, - ACTIONS(3669), 1, + ACTIONS(3661), 1, sym_metavariable, - STATE(2678), 1, + STATE(2682), 1, sym_scoped_identifier, - STATE(2889), 1, + STATE(2893), 1, sym__literal_pattern, - STATE(3632), 1, + STATE(3622), 1, sym_bracketed_type, - STATE(3649), 1, + STATE(3639), 1, sym_generic_type_with_turbofish, - ACTIONS(1714), 2, + ACTIONS(1706), 2, anon_sym_true, anon_sym_false, - STATE(1570), 2, + STATE(1562), 2, sym_line_comment, sym_block_comment, - ACTIONS(1710), 3, + ACTIONS(1702), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3667), 3, + ACTIONS(3659), 3, sym_self, sym_super, sym_crate, - STATE(2441), 4, + STATE(2502), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3665), 21, + ACTIONS(3657), 21, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -146197,46 +145017,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1686), 1, + ACTIONS(1678), 1, anon_sym_DASH, - ACTIONS(1712), 1, + ACTIONS(1704), 1, aux_sym_string_literal_token1, - ACTIONS(1720), 1, + ACTIONS(1712), 1, sym__raw_string_literal_start, - ACTIONS(3657), 1, + ACTIONS(3649), 1, anon_sym_COLON_COLON, - ACTIONS(3671), 1, + ACTIONS(3663), 1, sym_identifier, - ACTIONS(3677), 1, + ACTIONS(3669), 1, sym_metavariable, - STATE(2864), 1, + STATE(2695), 1, sym_scoped_identifier, - STATE(2926), 1, + STATE(2911), 1, sym__literal_pattern, - STATE(3632), 1, + STATE(3622), 1, sym_bracketed_type, - STATE(3649), 1, + STATE(3639), 1, sym_generic_type_with_turbofish, - ACTIONS(1714), 2, + ACTIONS(1706), 2, anon_sym_true, anon_sym_false, - STATE(1571), 2, + STATE(1563), 2, sym_line_comment, sym_block_comment, - ACTIONS(1710), 3, + ACTIONS(1702), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3675), 3, + ACTIONS(3667), 3, sym_self, sym_super, sym_crate, - STATE(2441), 4, + STATE(2502), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3673), 21, + ACTIONS(3665), 21, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -146258,59 +145078,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_gen, anon_sym_union, anon_sym_raw, - [32267] = 19, + [32267] = 22, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4149), 2, + ACTIONS(4157), 1, + anon_sym_EQ, + ACTIONS(4163), 1, + anon_sym_DOT_DOT, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4165), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - STATE(1572), 2, + ACTIONS(4165), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1564), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4147), 19, + ACTIONS(3881), 7, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_else, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146321,53 +145148,57 @@ 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, - [32353] = 11, + [32359] = 18, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3439), 1, - anon_sym_BANG, - ACTIONS(4171), 1, - anon_sym_LPAREN, - ACTIONS(4173), 1, - anon_sym_COLON_COLON, - ACTIONS(4175), 1, - anon_sym_LT2, - STATE(1684), 1, - sym_parameters, - STATE(1718), 1, - sym_type_arguments, - STATE(1573), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3472), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3925), 1, + anon_sym_LBRACK, + ACTIONS(3929), 1, + anon_sym_QMARK, + ACTIONS(3931), 1, + anon_sym_DOT, + ACTIONS(3999), 1, + anon_sym_as, + ACTIONS(4143), 1, anon_sym_CARET, + ACTIONS(4145), 1, anon_sym_AMP, + ACTIONS(4147), 1, anon_sym_PIPE, + ACTIONS(4149), 1, + anon_sym_AMP_AMP, + ACTIONS(3997), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, + STATE(1565), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4141), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4159), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3470), 20, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, + ACTIONS(3995), 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, @@ -146377,64 +145208,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [32423] = 18, + anon_sym_COMMA, + anon_sym_else, + [32443] = 11, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, - anon_sym_CARET, - ACTIONS(4155), 1, - anon_sym_AMP, - ACTIONS(4157), 1, - anon_sym_PIPE, - ACTIONS(4159), 1, - anon_sym_AMP_AMP, - ACTIONS(3989), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4149), 2, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4169), 2, - anon_sym_GT, - anon_sym_LT, - STATE(1574), 2, + STATE(1566), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3987), 20, + ACTIONS(3997), 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(3995), 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, @@ -146446,61 +145265,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + 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, - [32507] = 17, + [32513] = 21, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(3989), 2, - anon_sym_EQ, + ACTIONS(4149), 1, + anon_sym_AMP_AMP, + ACTIONS(4151), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4163), 1, anon_sym_DOT_DOT, - ACTIONS(4149), 2, + ACTIONS(4169), 1, + anon_sym_EQ, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - STATE(1575), 2, + ACTIONS(4165), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1567), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3987), 21, + ACTIONS(4167), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146511,58 +145340,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_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [32589] = 19, + [32603] = 21, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(394), 2, - anon_sym_EQ, + ACTIONS(4163), 1, anon_sym_DOT_DOT, - ACTIONS(4149), 2, + ACTIONS(4173), 1, + anon_sym_EQ, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - STATE(1576), 2, + ACTIONS(4165), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1568), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(392), 19, + ACTIONS(4171), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -146578,44 +145409,46 @@ 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, - [32675] = 11, + [32693] = 15, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4149), 2, + ACTIONS(4143), 1, + anon_sym_CARET, + ACTIONS(4145), 1, + anon_sym_AMP, + ACTIONS(4147), 1, + anon_sym_PIPE, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1577), 2, + ACTIONS(4153), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1569), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3989), 9, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(3997), 4, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3987), 25, + ACTIONS(3995), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -146641,46 +145474,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [32745] = 10, + [32771] = 19, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - STATE(1578), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4151), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3989), 11, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(4143), 1, anon_sym_CARET, + ACTIONS(4145), 1, anon_sym_AMP, + ACTIONS(4147), 1, anon_sym_PIPE, + ACTIONS(4149), 1, + anon_sym_AMP_AMP, + ACTIONS(4151), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(4177), 2, + anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(3987), 25, + STATE(1570), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4141), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4159), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4175), 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, @@ -146691,57 +145537,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, - [32813] = 13, + [32857] = 22, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4155), 1, + ACTIONS(4143), 1, + anon_sym_CARET, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4149), 2, + ACTIONS(4147), 1, + anon_sym_PIPE, + ACTIONS(4149), 1, + anon_sym_AMP_AMP, + ACTIONS(4151), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4157), 1, + anon_sym_EQ, + ACTIONS(4163), 1, + anon_sym_DOT_DOT, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1579), 2, + ACTIONS(4161), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4165), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1571), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3989), 6, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3987), 25, + ACTIONS(4159), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4015), 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(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146752,54 +145611,118 @@ 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, - [32887] = 12, + [32949] = 22, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4149), 2, + ACTIONS(4143), 1, + anon_sym_CARET, + ACTIONS(4145), 1, + anon_sym_AMP, + ACTIONS(4147), 1, + anon_sym_PIPE, + ACTIONS(4149), 1, + anon_sym_AMP_AMP, + ACTIONS(4151), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4157), 1, + anon_sym_EQ, + ACTIONS(4163), 1, + anon_sym_DOT_DOT, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1580), 2, + ACTIONS(4161), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4165), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1572), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4141), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4159), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4031), 7, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_else, + ACTIONS(4155), 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, + [33041] = 11, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3431), 1, + anon_sym_BANG, + ACTIONS(4179), 1, + anon_sym_LPAREN, + ACTIONS(4181), 1, + anon_sym_COLON_COLON, + ACTIONS(4183), 1, + anon_sym_LT2, + STATE(1653), 1, + sym_parameters, + STATE(1671), 1, + sym_type_arguments, + STATE(1573), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(3429), 17, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3989), 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(3987), 25, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(3425), 20, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -146810,60 +145733,70 @@ 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_else, - [32959] = 14, + anon_sym_as, + [33111] = 21, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(352), 1, + anon_sym_EQ, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4149), 2, + ACTIONS(4147), 1, + anon_sym_PIPE, + ACTIONS(4149), 1, + anon_sym_AMP_AMP, + ACTIONS(4151), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4163), 1, + anon_sym_DOT_DOT, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1581), 2, + ACTIONS(4161), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4165), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1574), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3989), 5, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3987), 25, + ACTIONS(4159), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(346), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146874,71 +145807,68 @@ 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, - [33035] = 21, + [33201] = 22, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4179), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4181), 1, + ACTIONS(4163), 1, anon_sym_DOT_DOT, - ACTIONS(4149), 2, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4183), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1582), 2, + STATE(1575), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4177), 17, + ACTIONS(4065), 7, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_else, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146949,65 +145879,161 @@ 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, - [33125] = 21, + [33293] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(4119), 1, + anon_sym_COLON_COLON, + ACTIONS(4185), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(1576), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3450), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4155), 1, anon_sym_AMP, - ACTIONS(4157), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + 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(3448), 24, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_QMARK, anon_sym_AMP_AMP, - ACTIONS(4161), 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_SQUOTE, + anon_sym_as, + [33357] = 11, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3431), 1, + anon_sym_BANG, + ACTIONS(4179), 1, + anon_sym_LPAREN, ACTIONS(4181), 1, - anon_sym_DOT_DOT, - ACTIONS(4187), 1, - anon_sym_EQ, - ACTIONS(4149), 2, + anon_sym_COLON_COLON, + ACTIONS(4183), 1, + anon_sym_LT2, + STATE(1653), 1, + sym_parameters, + STATE(1671), 1, + sym_type_arguments, + STATE(1577), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3446), 17, anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, - ACTIONS(4163), 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(4169), 2, + anon_sym_LT_LT_EQ, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4183), 2, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3444), 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(1583), 2, + anon_sym_as, + [33427] = 9, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3637), 1, + anon_sym_LBRACE, + ACTIONS(3639), 1, + anon_sym_COLON_COLON, + ACTIONS(4187), 1, + anon_sym_BANG, + STATE(1472), 1, + sym_field_initializer_list, + STATE(1578), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(1508), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4185), 17, + 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(1506), 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, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147018,46 +146044,50 @@ 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, - [33215] = 15, + anon_sym_EQ_EQ, + 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, + [33493] = 14, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, - anon_sym_PIPE, - ACTIONS(4149), 2, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1584), 2, + STATE(1579), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3989), 4, + ACTIONS(3997), 5, + anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3987), 25, + ACTIONS(3995), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -147083,66 +146113,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [33293] = 22, + [33569] = 13, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, - anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, - anon_sym_PIPE, - ACTIONS(4159), 1, - anon_sym_AMP_AMP, - ACTIONS(4161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4181), 1, - anon_sym_DOT_DOT, - ACTIONS(4191), 1, - anon_sym_EQ, - ACTIONS(4149), 2, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4183), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1585), 2, + STATE(1580), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4007), 7, + ACTIONS(3997), 6, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3995), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_else, - ACTIONS(4189), 10, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147153,66 +146166,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33385] = 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_COMMA, + anon_sym_else, + [33643] = 19, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4181), 1, - anon_sym_DOT_DOT, - ACTIONS(4191), 1, + ACTIONS(394), 2, anon_sym_EQ, - ACTIONS(4149), 2, + anon_sym_DOT_DOT, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4183), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1586), 2, + STATE(1581), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4019), 7, + ACTIONS(392), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_else, - ACTIONS(4189), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147223,48 +146237,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33477] = 11, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_else, + [33729] = 10, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3439), 1, - anon_sym_BANG, - ACTIONS(4171), 1, - anon_sym_LPAREN, - ACTIONS(4173), 1, - anon_sym_COLON_COLON, - ACTIONS(4175), 1, - anon_sym_LT2, - STATE(1684), 1, - sym_parameters, - STATE(1718), 1, - sym_type_arguments, - STATE(1587), 2, + ACTIONS(3925), 1, + anon_sym_LBRACK, + ACTIONS(3929), 1, + anon_sym_QMARK, + ACTIONS(3931), 1, + anon_sym_DOT, + ACTIONS(3999), 1, + anon_sym_as, + STATE(1582), 2, sym_line_comment, sym_block_comment, - ACTIONS(3437), 17, - anon_sym_PLUS, + ACTIONS(4141), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3997), 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(3433), 20, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + ACTIONS(3995), 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, @@ -147275,49 +146289,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, - [33547] = 8, + anon_sym_COMMA, + anon_sym_else, + [33797] = 12, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3455), 1, - anon_sym_BANG, - ACTIONS(4142), 1, - anon_sym_COLON_COLON, - ACTIONS(4193), 2, - anon_sym_const, - sym_mutable_specifier, - STATE(1588), 2, + ACTIONS(3925), 1, + anon_sym_LBRACK, + ACTIONS(3929), 1, + anon_sym_QMARK, + ACTIONS(3931), 1, + anon_sym_DOT, + ACTIONS(3999), 1, + anon_sym_as, + ACTIONS(4139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4153), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1583), 2, sym_line_comment, sym_block_comment, - ACTIONS(3453), 15, - anon_sym_PLUS, + ACTIONS(4141), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3997), 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(3451), 24, + ACTIONS(3995), 25, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_QMARK, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -147336,25 +146357,29 @@ 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, - [33611] = 9, + anon_sym_COMMA, + anon_sym_else, + [33869] = 11, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3649), 1, - anon_sym_LBRACE, - ACTIONS(3651), 1, + ACTIONS(4179), 1, + anon_sym_LPAREN, + ACTIONS(4181), 1, anon_sym_COLON_COLON, - ACTIONS(4195), 1, + ACTIONS(4183), 1, + anon_sym_LT2, + ACTIONS(4189), 1, anon_sym_BANG, - STATE(1467), 1, - sym_field_initializer_list, - STATE(1589), 2, + STATE(1653), 1, + sym_parameters, + STATE(1671), 1, + sym_type_arguments, + STATE(1584), 2, sym_line_comment, sym_block_comment, - ACTIONS(1506), 15, + ACTIONS(3462), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147365,16 +146390,16 @@ 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(1504), 24, - anon_sym_SEMI, - anon_sym_LPAREN, + ACTIONS(3460), 20, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -147386,67 +146411,65 @@ 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, - [33677] = 21, + [33939] = 21, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(352), 1, - anon_sym_EQ, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4181), 1, + ACTIONS(4163), 1, anon_sym_DOT_DOT, - ACTIONS(4149), 2, + ACTIONS(4193), 1, + anon_sym_EQ, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4183), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1590), 2, + STATE(1585), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(346), 17, + ACTIONS(4191), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -147464,58 +146487,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_COMMA, anon_sym_else, - [33767] = 21, + [34029] = 21, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4181), 1, + ACTIONS(4163), 1, anon_sym_DOT_DOT, - ACTIONS(4199), 1, + ACTIONS(4197), 1, anon_sym_EQ, - ACTIONS(4149), 2, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4183), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1591), 2, + STATE(1586), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4197), 17, + ACTIONS(4195), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -147533,66 +146556,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_COMMA, anon_sym_else, - [33857] = 22, + [34119] = 17, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, - anon_sym_AMP_AMP, - ACTIONS(4161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4181), 1, - anon_sym_DOT_DOT, - ACTIONS(4191), 1, + ACTIONS(3997), 2, anon_sym_EQ, - ACTIONS(4149), 2, + anon_sym_DOT_DOT, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4183), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1592), 2, + STATE(1587), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3857), 7, + ACTIONS(3995), 21, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_else, - ACTIONS(4189), 10, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147603,66 +146617,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33949] = 22, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_else, + [34201] = 21, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4181), 1, + ACTIONS(4163), 1, anon_sym_DOT_DOT, - ACTIONS(4191), 1, + ACTIONS(4201), 1, anon_sym_EQ, - ACTIONS(4149), 2, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4183), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1593), 2, + STATE(1588), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4039), 7, + ACTIONS(4199), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_else, - ACTIONS(4189), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147673,63 +146688,326 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34041] = 21, + anon_sym_COMMA, + anon_sym_else, + [34291] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3464), 1, + anon_sym_BANG, + ACTIONS(4203), 1, + anon_sym_COLON_COLON, + STATE(1472), 1, + sym_field_initializer_list, + STATE(1589), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1508), 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(1506), 24, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(3905), 1, + anon_sym_LBRACE, anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 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_SQUOTE, anon_sym_as, - ACTIONS(4153), 1, + [34354] = 9, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4189), 1, + anon_sym_BANG, + ACTIONS(4205), 1, + anon_sym_LBRACE, + ACTIONS(4207), 1, + anon_sym_COLON_COLON, + STATE(1912), 1, + sym_field_initializer_list, + STATE(1590), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1508), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4155), 1, anon_sym_AMP, - ACTIONS(4157), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + 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(1506), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, - ACTIONS(4161), 1, anon_sym_PIPE_PIPE, - ACTIONS(4181), 1, - anon_sym_DOT_DOT, - ACTIONS(4203), 1, - anon_sym_EQ, - ACTIONS(4149), 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_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + 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, + [34419] = 8, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(4119), 1, + anon_sym_COLON_COLON, + ACTIONS(4209), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(1591), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3450), 15, anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, - ACTIONS(4163), 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(4169), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4183), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3448), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1594), 2, + anon_sym_as, + [34482] = 8, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3885), 1, + anon_sym_BANG, + ACTIONS(3887), 1, + anon_sym_COLON_COLON, + ACTIONS(4211), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(1592), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(3450), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 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(3448), 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(4201), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [34545] = 8, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3454), 1, + anon_sym_COLON_COLON, + ACTIONS(3611), 1, + anon_sym_BANG, + ACTIONS(4213), 1, + sym_identifier, + STATE(1593), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3450), 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(3448), 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, + anon_sym_DASH_EQ, + anon_sym_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, + [34608] = 10, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4179), 1, + anon_sym_LPAREN, + ACTIONS(4183), 1, + anon_sym_LT2, + ACTIONS(4215), 1, + anon_sym_COLON_COLON, + STATE(1653), 1, + sym_parameters, + STATE(1671), 1, + sym_type_arguments, + STATE(1594), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3490), 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(3488), 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, @@ -147738,67 +147016,47 @@ 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_COMMA, - anon_sym_else, - [34131] = 21, + 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, + [34675] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(3771), 1, + anon_sym_LBRACE, + STATE(1595), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3549), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4155), 1, + anon_sym_BANG, anon_sym_AMP, - ACTIONS(4157), 1, anon_sym_PIPE, - ACTIONS(4159), 1, - anon_sym_AMP_AMP, - ACTIONS(4161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4181), 1, - anon_sym_DOT_DOT, - ACTIONS(4207), 1, - anon_sym_EQ, - ACTIONS(4149), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4163), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4183), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1595), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4151), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4167), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4205), 17, - anon_sym_SEMI, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3551), 24, 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, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147809,29 +147067,27 @@ 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, - [34221] = 11, + anon_sym_EQ_EQ, + 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, + [34733] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4171), 1, - anon_sym_LPAREN, - ACTIONS(4173), 1, + ACTIONS(4059), 1, anon_sym_COLON_COLON, - ACTIONS(4175), 1, - anon_sym_LT2, - ACTIONS(4209), 1, + ACTIONS(4187), 1, anon_sym_BANG, - STATE(1684), 1, - sym_parameters, - STATE(1718), 1, - sym_type_arguments, STATE(1596), 2, sym_line_comment, sym_block_comment, - ACTIONS(3447), 17, + ACTIONS(1508), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147842,16 +147098,16 @@ 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(3445), 20, + ACTIONS(1506), 24, + anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -147863,34 +147119,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, - [34291] = 8, + [34793] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3457), 1, - anon_sym_COLON_COLON, - ACTIONS(3619), 1, - anon_sym_BANG, - ACTIONS(4211), 1, - sym_identifier, STATE(1597), 2, sym_line_comment, sym_block_comment, - ACTIONS(3453), 16, + ACTIONS(3565), 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, @@ -147900,12 +147153,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - anon_sym_as, - ACTIONS(3451), 23, - anon_sym_SEMI, + ACTIONS(3567), 25, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -147925,25 +147176,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [34354] = 10, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + [34849] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4171), 1, + ACTIONS(4179), 1, anon_sym_LPAREN, - ACTIONS(4175), 1, + ACTIONS(4183), 1, anon_sym_LT2, - ACTIONS(4213), 1, - anon_sym_COLON_COLON, - STATE(1684), 1, + STATE(1657), 1, sym_parameters, - STATE(1718), 1, + STATE(1673), 1, sym_type_arguments, STATE(1598), 2, sym_line_comment, sym_block_comment, - ACTIONS(3503), 17, + ACTIONS(3525), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147961,7 +147213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3501), 20, + ACTIONS(3523), 20, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -147982,28 +147234,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [34421] = 8, + [34913] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3455), 1, - anon_sym_BANG, - ACTIONS(4142), 1, - anon_sym_COLON_COLON, - ACTIONS(4215), 2, - anon_sym_const, - sym_mutable_specifier, STATE(1599), 2, sym_line_comment, sym_block_comment, - ACTIONS(3453), 15, + ACTIONS(3549), 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, @@ -148013,7 +147259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3451), 23, + ACTIONS(3551), 25, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -148036,22 +147282,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, - [34484] = 8, + [34969] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3449), 1, - anon_sym_BANG, - ACTIONS(4217), 1, - anon_sym_COLON_COLON, - STATE(1467), 1, - sym_field_initializer_list, + ACTIONS(4179), 1, + anon_sym_LPAREN, + ACTIONS(4183), 1, + anon_sym_LT2, + STATE(1657), 1, + sym_parameters, + STATE(1673), 1, + sym_type_arguments, STATE(1600), 2, sym_line_comment, sym_block_comment, - ACTIONS(1506), 15, + ACTIONS(3507), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148062,15 +147312,16 @@ 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(1504), 24, - anon_sym_LPAREN, + ACTIONS(3505), 20, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -148082,32 +147333,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, 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, - [34547] = 8, + [35033] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3861), 1, + ACTIONS(3557), 1, anon_sym_BANG, - ACTIONS(3863), 1, + ACTIONS(3559), 1, anon_sym_COLON_COLON, - ACTIONS(4219), 2, - anon_sym_const, - sym_mutable_specifier, STATE(1601), 2, sym_line_comment, sym_block_comment, - ACTIONS(3453), 15, + ACTIONS(3555), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148118,12 +147363,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(3451), 23, + ACTIONS(3553), 22, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148138,32 +147385,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, - [34610] = 9, + anon_sym_LT2, + [35093] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4209), 1, - anon_sym_BANG, - ACTIONS(4221), 1, - anon_sym_LBRACE, - ACTIONS(4223), 1, - anon_sym_COLON_COLON, - STATE(1920), 1, - sym_field_initializer_list, + ACTIONS(4179), 1, + anon_sym_LPAREN, + ACTIONS(4183), 1, + anon_sym_LT2, + STATE(1657), 1, + sym_parameters, + STATE(1673), 1, + sym_type_arguments, STATE(1602), 2, sym_line_comment, sym_block_comment, - ACTIONS(1506), 15, + ACTIONS(3533), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148174,13 +147420,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(1504), 23, - anon_sym_LPAREN, + ACTIONS(3531), 20, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -148194,66 +147441,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [35157] = 9, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4179), 1, + anon_sym_LPAREN, + ACTIONS(4183), 1, + anon_sym_LT2, + STATE(1657), 1, + sym_parameters, + STATE(1673), 1, + sym_type_arguments, + STATE(1603), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3571), 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(3569), 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, - [34675] = 22, + [35221] = 22, ACTIONS(29), 1, anon_sym_LT, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_extern, - ACTIONS(3486), 1, + ACTIONS(3478), 1, anon_sym_COLON_COLON, - ACTIONS(3494), 1, + ACTIONS(3486), 1, sym_metavariable, - ACTIONS(3589), 1, + ACTIONS(3581), 1, anon_sym_default, - ACTIONS(4225), 1, + ACTIONS(4217), 1, sym_identifier, - ACTIONS(4227), 1, + ACTIONS(4219), 1, anon_sym_fn, - STATE(2336), 1, + STATE(2329), 1, aux_sym_function_modifiers_repeat1, - STATE(2421), 1, + STATE(2431), 1, sym_extern_modifier, - STATE(2665), 1, + STATE(2654), 1, sym_scoped_type_identifier, - STATE(3624), 1, - sym_scoped_identifier, - STATE(3636), 1, - sym_bracketed_type, - STATE(3655), 1, + STATE(3506), 1, sym_function_modifiers, - STATE(3764), 1, - sym_generic_type, - STATE(3780), 1, + STATE(3626), 1, + sym_bracketed_type, + STATE(3640), 1, + sym_scoped_identifier, + STATE(3756), 1, sym_generic_type_with_turbofish, - STATE(1603), 2, + STATE(3789), 1, + sym_generic_type, + STATE(1604), 2, sym_line_comment, sym_block_comment, - ACTIONS(1096), 3, + ACTIONS(1090), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(3488), 3, + ACTIONS(3480), 3, anon_sym_gen, anon_sym_union, anon_sym_raw, - ACTIONS(3492), 3, + ACTIONS(3484), 3, sym_self, sym_super, sym_crate, - ACTIONS(3587), 17, + ACTIONS(3579), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -148271,23 +147571,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [34765] = 9, + [35311] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4171), 1, - anon_sym_LPAREN, - ACTIONS(4175), 1, - anon_sym_LT2, - STATE(1685), 1, - sym_parameters, - STATE(1720), 1, - sym_type_arguments, - STATE(1604), 2, + ACTIONS(3452), 1, + anon_sym_BANG, + ACTIONS(4119), 1, + anon_sym_COLON_COLON, + STATE(1605), 2, sym_line_comment, sym_block_comment, - ACTIONS(3525), 17, + ACTIONS(3450), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148298,16 +147594,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(3523), 20, + ACTIONS(3448), 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, @@ -148319,29 +147614,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_SQUOTE, anon_sym_as, - [34829] = 5, + [35371] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1605), 2, + ACTIONS(3464), 1, + anon_sym_BANG, + ACTIONS(4221), 1, + anon_sym_COLON_COLON, + STATE(1606), 2, sym_line_comment, sym_block_comment, - ACTIONS(3567), 16, + ACTIONS(1508), 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, @@ -148351,7 +147652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3569), 25, + ACTIONS(1506), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -148374,60 +147675,59 @@ 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, - [34885] = 22, + [35431] = 22, ACTIONS(29), 1, anon_sym_LT, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1112), 1, + ACTIONS(1106), 1, anon_sym_extern, - ACTIONS(3486), 1, + ACTIONS(3478), 1, anon_sym_COLON_COLON, - ACTIONS(3494), 1, + ACTIONS(3486), 1, sym_metavariable, - ACTIONS(3589), 1, + ACTIONS(3581), 1, anon_sym_default, - ACTIONS(4229), 1, + ACTIONS(4223), 1, sym_identifier, - ACTIONS(4231), 1, + ACTIONS(4225), 1, anon_sym_fn, - STATE(2336), 1, + STATE(2329), 1, aux_sym_function_modifiers_repeat1, - STATE(2421), 1, + STATE(2431), 1, sym_extern_modifier, - STATE(2769), 1, + STATE(2749), 1, sym_scoped_type_identifier, - STATE(3506), 1, - sym_function_modifiers, - STATE(3624), 1, - sym_scoped_identifier, - STATE(3636), 1, + STATE(3626), 1, sym_bracketed_type, - STATE(3764), 1, - sym_generic_type, - STATE(3780), 1, + STATE(3640), 1, + sym_scoped_identifier, + STATE(3645), 1, + sym_function_modifiers, + STATE(3756), 1, sym_generic_type_with_turbofish, - STATE(1606), 2, + STATE(3789), 1, + sym_generic_type, + STATE(1607), 2, sym_line_comment, sym_block_comment, - ACTIONS(1096), 3, + ACTIONS(1090), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(3488), 3, + ACTIONS(3480), 3, anon_sym_gen, anon_sym_union, anon_sym_raw, - ACTIONS(3492), 3, + ACTIONS(3484), 3, sym_self, sym_super, sym_crate, - ACTIONS(3587), 17, + ACTIONS(3579), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -148445,17 +147745,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [34975] = 6, + [35521] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3715), 1, + ACTIONS(3773), 1, anon_sym_LBRACE, - STATE(1607), 2, + STATE(1608), 2, sym_line_comment, sym_block_comment, - ACTIONS(3555), 16, + ACTIONS(3557), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148472,7 +147772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3557), 24, + ACTIONS(3559), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148497,15 +147797,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [35033] = 5, + [35579] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1608), 2, + ACTIONS(3565), 1, + anon_sym_BANG, + ACTIONS(3567), 1, + anon_sym_COLON_COLON, + STATE(1609), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3563), 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(3561), 22, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + anon_sym_LT2, + [35639] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1610), 2, sym_line_comment, sym_block_comment, - ACTIONS(3581), 16, + ACTIONS(3557), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148522,7 +147875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3583), 25, + ACTIONS(3559), 25, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -148548,23 +147901,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, - [35089] = 9, + [35695] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4171), 1, - anon_sym_LPAREN, - ACTIONS(4175), 1, - anon_sym_LT2, - STATE(1685), 1, - sym_parameters, - STATE(1720), 1, - sym_type_arguments, - STATE(1609), 2, + ACTIONS(3513), 1, + anon_sym_BANG, + ACTIONS(3515), 1, + anon_sym_COLON_COLON, + STATE(1611), 2, sym_line_comment, sym_block_comment, - ACTIONS(3533), 17, + ACTIONS(3511), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148582,7 +147931,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3531), 20, + ACTIONS(3509), 22, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -148603,41 +147953,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [35153] = 9, + anon_sym_LT2, + [35755] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4171), 1, - anon_sym_LPAREN, - ACTIONS(4175), 1, - anon_sym_LT2, - STATE(1685), 1, - sym_parameters, - STATE(1720), 1, - sym_type_arguments, - STATE(1610), 2, + ACTIONS(3699), 1, + anon_sym_LBRACE, + STATE(1612), 2, sym_line_comment, sym_block_comment, - ACTIONS(3515), 17, + ACTIONS(3565), 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(3513), 20, + ACTIONS(3567), 24, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -148651,31 +147996,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_COLON_COLON, anon_sym_as, - [35217] = 6, + [35813] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3779), 1, - anon_sym_LBRACE, - STATE(1611), 2, + ACTIONS(3454), 1, + anon_sym_COLON_COLON, + ACTIONS(3611), 1, + anon_sym_BANG, + STATE(1613), 2, sym_line_comment, sym_block_comment, - ACTIONS(3547), 16, + ACTIONS(3450), 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, @@ -148685,10 +148034,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3549), 24, + ACTIONS(3448), 24, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -148708,21 +148058,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [35275] = 7, + [35873] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3555), 1, + ACTIONS(3549), 1, anon_sym_BANG, - ACTIONS(3557), 1, + ACTIONS(3551), 1, anon_sym_COLON_COLON, - STATE(1612), 2, + STATE(1614), 2, sym_line_comment, sym_block_comment, - ACTIONS(3553), 17, + ACTIONS(3547), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148740,7 +148089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3551), 22, + ACTIONS(3545), 22, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148763,25 +148112,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_as, anon_sym_LT2, - [35335] = 7, + [35933] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3455), 1, - anon_sym_BANG, - ACTIONS(4142), 1, - anon_sym_COLON_COLON, - STATE(1613), 2, + ACTIONS(3719), 1, + anon_sym_LBRACE, + STATE(1615), 2, sym_line_comment, sym_block_comment, - ACTIONS(3453), 15, + ACTIONS(3513), 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, @@ -148791,10 +148139,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3451), 24, + ACTIONS(3515), 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, @@ -148814,27 +148162,92 @@ 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, - [35395] = 7, + [35991] = 22, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3449), 1, - anon_sym_BANG, - ACTIONS(4233), 1, + ACTIONS(1106), 1, + anon_sym_extern, + ACTIONS(3478), 1, anon_sym_COLON_COLON, - STATE(1614), 2, + ACTIONS(3486), 1, + sym_metavariable, + ACTIONS(3581), 1, + anon_sym_default, + ACTIONS(4227), 1, + sym_identifier, + ACTIONS(4229), 1, + anon_sym_fn, + STATE(2329), 1, + aux_sym_function_modifiers_repeat1, + STATE(2431), 1, + sym_extern_modifier, + STATE(2817), 1, + sym_scoped_type_identifier, + STATE(3510), 1, + sym_function_modifiers, + STATE(3626), 1, + sym_bracketed_type, + STATE(3640), 1, + sym_scoped_identifier, + STATE(3756), 1, + sym_generic_type_with_turbofish, + STATE(3789), 1, + sym_generic_type, + STATE(1616), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1090), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3480), 3, + anon_sym_gen, + anon_sym_union, + anon_sym_raw, + ACTIONS(3484), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3579), 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, + [36081] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1617), 2, sym_line_comment, sym_block_comment, - ACTIONS(1506), 15, + ACTIONS(3513), 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, @@ -148844,7 +148257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1504), 24, + ACTIONS(3515), 25, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -148867,21 +148280,90 @@ 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, - [35455] = 7, + [36137] = 22, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3581), 1, - anon_sym_BANG, - ACTIONS(3583), 1, + ACTIONS(1106), 1, + anon_sym_extern, + ACTIONS(3478), 1, anon_sym_COLON_COLON, - STATE(1615), 2, + ACTIONS(3486), 1, + sym_metavariable, + ACTIONS(3581), 1, + anon_sym_default, + ACTIONS(4231), 1, + sym_identifier, + ACTIONS(4233), 1, + anon_sym_fn, + STATE(2329), 1, + aux_sym_function_modifiers_repeat1, + STATE(2431), 1, + sym_extern_modifier, + STATE(2871), 1, + sym_scoped_type_identifier, + STATE(3626), 1, + sym_bracketed_type, + STATE(3640), 1, + sym_scoped_identifier, + STATE(3756), 1, + sym_generic_type_with_turbofish, + STATE(3789), 1, + sym_generic_type, + STATE(3808), 1, + sym_function_modifiers, + STATE(1618), 2, sym_line_comment, sym_block_comment, + ACTIONS(1090), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3480), 3, + anon_sym_gen, + anon_sym_union, + anon_sym_raw, + ACTIONS(3484), 3, + sym_self, + sym_super, + sym_crate, ACTIONS(3579), 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, + [36227] = 7, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4235), 1, + anon_sym_else, + STATE(1753), 1, + sym_else_clause, + STATE(1619), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1404), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148892,14 +148374,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(3577), 22, + ACTIONS(1402), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148914,23 +148394,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, - anon_sym_LT2, - [35515] = 5, + [36286] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1616), 2, + STATE(1620), 2, sym_line_comment, sym_block_comment, - ACTIONS(3547), 16, + ACTIONS(3513), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148947,10 +148428,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3549), 25, + ACTIONS(3515), 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, @@ -148971,24 +148452,22 @@ 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, - [35571] = 5, + [36341] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1617), 2, + STATE(1621), 2, sym_line_comment, sym_block_comment, - ACTIONS(3555), 16, + ACTIONS(3751), 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, @@ -148998,10 +148477,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3557), 25, + ACTIONS(3749), 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, @@ -149022,89 +148502,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, - [35627] = 22, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(1112), 1, - anon_sym_extern, - ACTIONS(3486), 1, - anon_sym_COLON_COLON, - ACTIONS(3494), 1, - sym_metavariable, - ACTIONS(3589), 1, - anon_sym_default, - ACTIONS(4235), 1, - sym_identifier, - ACTIONS(4237), 1, - anon_sym_fn, - STATE(2336), 1, - aux_sym_function_modifiers_repeat1, - STATE(2421), 1, - sym_extern_modifier, - STATE(2836), 1, - sym_scoped_type_identifier, - STATE(3515), 1, - sym_function_modifiers, - STATE(3624), 1, - sym_scoped_identifier, - STATE(3636), 1, - sym_bracketed_type, - STATE(3764), 1, - sym_generic_type, - STATE(3780), 1, - sym_generic_type_with_turbofish, - STATE(1618), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1096), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3488), 3, - anon_sym_gen, - anon_sym_union, - anon_sym_raw, - ACTIONS(3492), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3587), 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, - [35717] = 7, + [36396] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3547), 1, - anon_sym_BANG, - ACTIONS(3549), 1, + ACTIONS(4013), 2, + anon_sym_LBRACE, anon_sym_COLON_COLON, - STATE(1619), 2, + STATE(1622), 2, sym_line_comment, sym_block_comment, - ACTIONS(3545), 17, + ACTIONS(3981), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149115,14 +148525,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(3543), 22, + ACTIONS(3977), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149137,27 +148545,94 @@ 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, - [35777] = 7, + [36453] = 25, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3457), 1, - anon_sym_COLON_COLON, - ACTIONS(3619), 1, - anon_sym_BANG, - STATE(1620), 2, + ACTIONS(412), 1, + anon_sym_LBRACE, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + ACTIONS(3925), 1, + anon_sym_LBRACK, + ACTIONS(3929), 1, + anon_sym_QMARK, + ACTIONS(3931), 1, + anon_sym_DOT, + ACTIONS(3999), 1, + anon_sym_as, + ACTIONS(4241), 1, + anon_sym_CARET, + ACTIONS(4243), 1, + anon_sym_AMP, + ACTIONS(4245), 1, + anon_sym_PIPE, + ACTIONS(4247), 1, + anon_sym_AMP_AMP, + ACTIONS(4249), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4255), 1, + anon_sym_EQ, + ACTIONS(4261), 1, + anon_sym_DOT_DOT, + STATE(1759), 1, + sym_block, + STATE(3773), 1, + sym_label, + ACTIONS(4237), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4251), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4259), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4263), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1623), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4239), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4257), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4253), 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, + [36548] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1624), 2, sym_line_comment, sym_block_comment, - ACTIONS(3453), 15, + ACTIONS(3697), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149173,11 +148648,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3451), 24, - anon_sym_SEMI, + ACTIONS(3695), 25, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -149197,20 +148672,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - [35837] = 7, + [36603] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3567), 1, - anon_sym_BANG, - ACTIONS(3569), 1, + ACTIONS(4013), 1, anon_sym_COLON_COLON, - STATE(1621), 2, + STATE(1625), 2, sym_line_comment, sym_block_comment, - ACTIONS(3565), 17, + ACTIONS(3981), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149221,17 +148695,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(3563), 22, + ACTIONS(3977), 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, @@ -149243,27 +148715,99 @@ 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, - [35897] = 7, + [36660] = 25, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4047), 1, - anon_sym_COLON_COLON, - ACTIONS(4195), 1, - anon_sym_BANG, - STATE(1622), 2, + ACTIONS(412), 1, + anon_sym_LBRACE, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + ACTIONS(3925), 1, + anon_sym_LBRACK, + ACTIONS(3929), 1, + anon_sym_QMARK, + ACTIONS(3931), 1, + anon_sym_DOT, + ACTIONS(3999), 1, + anon_sym_as, + ACTIONS(4241), 1, + anon_sym_CARET, + ACTIONS(4243), 1, + anon_sym_AMP, + ACTIONS(4245), 1, + anon_sym_PIPE, + ACTIONS(4247), 1, + anon_sym_AMP_AMP, + ACTIONS(4249), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4255), 1, + anon_sym_EQ, + ACTIONS(4261), 1, + anon_sym_DOT_DOT, + STATE(1765), 1, + sym_block, + STATE(3773), 1, + sym_label, + ACTIONS(4237), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4251), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4259), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4263), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1626), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4239), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4257), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4253), 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, + [36755] = 7, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4265), 1, + anon_sym_SQUOTE, + STATE(1905), 1, + sym_label, + STATE(1627), 2, sym_line_comment, sym_block_comment, - ACTIONS(1506), 15, + ACTIONS(3693), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149279,11 +148823,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1504), 24, - anon_sym_SEMI, + ACTIONS(3691), 23, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -149304,24 +148847,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [35957] = 6, + [36814] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3725), 1, - anon_sym_LBRACE, - STATE(1623), 2, + STATE(1628), 2, sym_line_comment, sym_block_comment, - ACTIONS(3567), 16, + ACTIONS(3737), 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, @@ -149331,9 +148871,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3569), 24, + ACTIONS(3735), 25, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -149356,109 +148897,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [36015] = 22, - ACTIONS(29), 1, - anon_sym_LT, + [36869] = 25, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1112), 1, - anon_sym_extern, - ACTIONS(3486), 1, - anon_sym_COLON_COLON, - ACTIONS(3494), 1, - sym_metavariable, - ACTIONS(3589), 1, - anon_sym_default, - ACTIONS(4239), 1, - sym_identifier, - ACTIONS(4241), 1, - anon_sym_fn, - STATE(2336), 1, - aux_sym_function_modifiers_repeat1, - STATE(2421), 1, - sym_extern_modifier, - STATE(2877), 1, - sym_scoped_type_identifier, - STATE(3500), 1, - sym_function_modifiers, - STATE(3624), 1, - sym_scoped_identifier, - STATE(3636), 1, - sym_bracketed_type, - STATE(3764), 1, - sym_generic_type, - STATE(3780), 1, - sym_generic_type_with_turbofish, - STATE(1624), 2, + ACTIONS(759), 1, + anon_sym_RBRACK, + ACTIONS(3925), 1, + anon_sym_LBRACK, + ACTIONS(3929), 1, + anon_sym_QMARK, + ACTIONS(3931), 1, + anon_sym_DOT, + ACTIONS(3999), 1, + anon_sym_as, + ACTIONS(4143), 1, + anon_sym_CARET, + ACTIONS(4145), 1, + anon_sym_AMP, + ACTIONS(4147), 1, + anon_sym_PIPE, + ACTIONS(4149), 1, + anon_sym_AMP_AMP, + ACTIONS(4151), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4157), 1, + anon_sym_EQ, + ACTIONS(4267), 1, + anon_sym_SEMI, + ACTIONS(4269), 1, + anon_sym_DOT_DOT, + ACTIONS(4271), 1, + anon_sym_COMMA, + STATE(3032), 1, + aux_sym_arguments_repeat1, + ACTIONS(4139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4153), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4161), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4165), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1629), 2, sym_line_comment, sym_block_comment, - ACTIONS(1096), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3488), 3, - anon_sym_gen, - anon_sym_union, - anon_sym_raw, - ACTIONS(3492), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3587), 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, - [36105] = 9, + ACTIONS(4141), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4159), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4155), 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, + [36964] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4171), 1, - anon_sym_LPAREN, - ACTIONS(4175), 1, - anon_sym_LT2, - STATE(1685), 1, - sym_parameters, - STATE(1720), 1, - sym_type_arguments, - STATE(1625), 2, + STATE(1630), 2, sym_line_comment, sym_block_comment, - ACTIONS(3511), 17, + ACTIONS(3557), 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(3509), 20, + ACTIONS(3559), 24, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -149472,31 +149007,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - [36169] = 6, + [37019] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3767), 1, - anon_sym_LBRACE, - STATE(1626), 2, + ACTIONS(4119), 1, + anon_sym_COLON_COLON, + STATE(1631), 2, sym_line_comment, sym_block_comment, - ACTIONS(3581), 16, + ACTIONS(3450), 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, @@ -149506,10 +149043,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3583), 24, + ACTIONS(3448), 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, @@ -149529,68 +149066,208 @@ 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, - [36227] = 25, + [37076] = 25, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(412), 1, + ACTIONS(922), 1, + anon_sym_RBRACK, + ACTIONS(3925), 1, + anon_sym_LBRACK, + ACTIONS(3929), 1, + anon_sym_QMARK, + ACTIONS(3931), 1, + anon_sym_DOT, + ACTIONS(3999), 1, + anon_sym_as, + ACTIONS(4143), 1, + anon_sym_CARET, + ACTIONS(4145), 1, + anon_sym_AMP, + ACTIONS(4147), 1, + anon_sym_PIPE, + ACTIONS(4149), 1, + anon_sym_AMP_AMP, + ACTIONS(4151), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4157), 1, + anon_sym_EQ, + ACTIONS(4269), 1, + anon_sym_DOT_DOT, + ACTIONS(4273), 1, + anon_sym_SEMI, + ACTIONS(4275), 1, + anon_sym_COMMA, + STATE(3043), 1, + aux_sym_arguments_repeat1, + ACTIONS(4139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4153), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4161), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4165), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1632), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4141), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4159), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4155), 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, + [37171] = 25, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(884), 1, + anon_sym_RBRACK, + ACTIONS(3925), 1, + anon_sym_LBRACK, + ACTIONS(3929), 1, + anon_sym_QMARK, + ACTIONS(3931), 1, + anon_sym_DOT, + ACTIONS(3999), 1, + anon_sym_as, + ACTIONS(4143), 1, + anon_sym_CARET, + ACTIONS(4145), 1, + anon_sym_AMP, + ACTIONS(4147), 1, + anon_sym_PIPE, + ACTIONS(4149), 1, + anon_sym_AMP_AMP, + ACTIONS(4151), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4157), 1, + anon_sym_EQ, + ACTIONS(4269), 1, + anon_sym_DOT_DOT, + ACTIONS(4277), 1, + anon_sym_SEMI, + ACTIONS(4279), 1, + anon_sym_COMMA, + STATE(3159), 1, + aux_sym_arguments_repeat1, + ACTIONS(4139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4153), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4161), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4165), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1633), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4141), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4159), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4155), 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, + [37266] = 25, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(1380), 1, anon_sym_LBRACE, - ACTIONS(3459), 1, + ACTIONS(3456), 1, anon_sym_SQUOTE, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4247), 1, + ACTIONS(4241), 1, anon_sym_CARET, - ACTIONS(4249), 1, + ACTIONS(4243), 1, anon_sym_AMP, - ACTIONS(4251), 1, + ACTIONS(4245), 1, anon_sym_PIPE, - ACTIONS(4253), 1, + ACTIONS(4247), 1, anon_sym_AMP_AMP, - ACTIONS(4255), 1, + ACTIONS(4249), 1, anon_sym_PIPE_PIPE, - ACTIONS(4261), 1, + ACTIONS(4255), 1, anon_sym_EQ, - ACTIONS(4267), 1, + ACTIONS(4261), 1, anon_sym_DOT_DOT, - STATE(1767), 1, + STATE(472), 1, sym_block, - STATE(3783), 1, + STATE(3772), 1, sym_label, - ACTIONS(4243), 2, + ACTIONS(4237), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4257), 2, + ACTIONS(4251), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4265), 2, + ACTIONS(4259), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4269), 2, + ACTIONS(4263), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1627), 2, + STATE(1634), 2, sym_line_comment, sym_block_comment, - ACTIONS(4245), 3, + ACTIONS(4239), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4263), 4, + ACTIONS(4257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4259), 10, + ACTIONS(4253), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149601,40 +149278,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36322] = 6, + [37361] = 25, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3967), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - STATE(1628), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3969), 15, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + ACTIONS(3925), 1, + anon_sym_LBRACK, + ACTIONS(3929), 1, + anon_sym_QMARK, + ACTIONS(3931), 1, + anon_sym_DOT, + ACTIONS(3999), 1, + anon_sym_as, + ACTIONS(4241), 1, + anon_sym_CARET, + ACTIONS(4243), 1, + anon_sym_AMP, + ACTIONS(4245), 1, + anon_sym_PIPE, + ACTIONS(4247), 1, + anon_sym_AMP_AMP, + ACTIONS(4249), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4255), 1, + anon_sym_EQ, + ACTIONS(4261), 1, + anon_sym_DOT_DOT, + STATE(400), 1, + sym_block, + STATE(3776), 1, + sym_label, + ACTIONS(4237), 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(4251), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4259), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3965), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4263), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1635), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4239), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4257), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4253), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149645,73 +149348,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_as, - [36379] = 25, + [37456] = 25, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1386), 1, + ACTIONS(1380), 1, anon_sym_LBRACE, - ACTIONS(3459), 1, + ACTIONS(3456), 1, anon_sym_SQUOTE, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4247), 1, + ACTIONS(4241), 1, anon_sym_CARET, - ACTIONS(4249), 1, + ACTIONS(4243), 1, anon_sym_AMP, - ACTIONS(4251), 1, + ACTIONS(4245), 1, anon_sym_PIPE, - ACTIONS(4253), 1, + ACTIONS(4247), 1, anon_sym_AMP_AMP, - ACTIONS(4255), 1, + ACTIONS(4249), 1, anon_sym_PIPE_PIPE, - ACTIONS(4261), 1, + ACTIONS(4255), 1, anon_sym_EQ, - ACTIONS(4267), 1, + ACTIONS(4261), 1, anon_sym_DOT_DOT, - STATE(478), 1, + STATE(490), 1, sym_block, - STATE(3782), 1, + STATE(3772), 1, sym_label, - ACTIONS(4243), 2, + ACTIONS(4237), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4257), 2, + ACTIONS(4251), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4265), 2, + ACTIONS(4259), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4269), 2, + ACTIONS(4263), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1629), 2, + STATE(1636), 2, sym_line_comment, sym_block_comment, - ACTIONS(4245), 3, + ACTIONS(4239), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4263), 4, + ACTIONS(4257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4259), 10, + ACTIONS(4253), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149722,22 +149418,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36474] = 5, + [37551] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1630), 2, + ACTIONS(4281), 1, + anon_sym_COLON_COLON, + STATE(1637), 2, sym_line_comment, sym_block_comment, - ACTIONS(3567), 16, + ACTIONS(1508), 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, @@ -149747,10 +149444,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3569), 24, + ACTIONS(1506), 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, @@ -149770,20 +149467,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_SQUOTE, anon_sym_as, - [36529] = 6, + [37608] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4005), 2, - anon_sym_LBRACE, + ACTIONS(3979), 1, anon_sym_COLON_COLON, - STATE(1631), 2, + STATE(1638), 2, sym_line_comment, sym_block_comment, - ACTIONS(3969), 15, + ACTIONS(3981), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149799,10 +149495,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3965), 23, + ACTIONS(3977), 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, @@ -149822,67 +149518,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, - [36586] = 25, + [37665] = 25, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(412), 1, + ACTIONS(348), 1, anon_sym_LBRACE, - ACTIONS(3459), 1, + ACTIONS(3456), 1, anon_sym_SQUOTE, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4247), 1, + ACTIONS(4241), 1, anon_sym_CARET, - ACTIONS(4249), 1, + ACTIONS(4243), 1, anon_sym_AMP, - ACTIONS(4251), 1, + ACTIONS(4245), 1, anon_sym_PIPE, - ACTIONS(4253), 1, + ACTIONS(4247), 1, anon_sym_AMP_AMP, - ACTIONS(4255), 1, + ACTIONS(4249), 1, anon_sym_PIPE_PIPE, - ACTIONS(4261), 1, + ACTIONS(4255), 1, anon_sym_EQ, - ACTIONS(4267), 1, + ACTIONS(4261), 1, anon_sym_DOT_DOT, - STATE(1761), 1, + STATE(1492), 1, sym_block, - STATE(3783), 1, + STATE(3709), 1, sym_label, - ACTIONS(4243), 2, + ACTIONS(4237), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4257), 2, + ACTIONS(4251), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4265), 2, + ACTIONS(4259), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4269), 2, + ACTIONS(4263), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1632), 2, + STATE(1639), 2, sym_line_comment, sym_block_comment, - ACTIONS(4245), 3, + ACTIONS(4239), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4263), 4, + ACTIONS(4257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4259), 10, + ACTIONS(4253), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149893,17 +149590,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36681] = 6, + [37760] = 18, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3967), 1, + ACTIONS(4283), 1, + sym_identifier, + ACTIONS(4285), 1, + anon_sym_LBRACE, + ACTIONS(4287), 1, + anon_sym_RBRACE, + ACTIONS(4289), 1, + anon_sym_STAR, + ACTIONS(4293), 1, + anon_sym_COMMA, + ACTIONS(4295), 1, anon_sym_COLON_COLON, - STATE(1633), 2, + ACTIONS(4299), 1, + sym_metavariable, + STATE(2585), 1, + sym_scoped_identifier, + STATE(2963), 1, + sym__use_clause, + STATE(3605), 1, + sym_generic_type_with_turbofish, + STATE(3770), 1, + sym_bracketed_type, + STATE(1640), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4297), 3, + sym_self, + sym_super, + sym_crate, + STATE(3142), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4291), 21, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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, + anon_sym_raw, + [37841] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1641), 2, sym_line_comment, sym_block_comment, - ACTIONS(3969), 15, + ACTIONS(3769), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149919,10 +149677,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3965), 24, + ACTIONS(3767), 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, @@ -149942,23 +149701,24 @@ 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, - [36738] = 5, + [37896] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1634), 2, + STATE(1642), 2, sym_line_comment, sym_block_comment, - ACTIONS(3705), 15, + ACTIONS(3565), 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, @@ -149968,10 +149728,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3703), 25, + ACTIONS(3567), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -149994,15 +149753,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [36793] = 5, + [37951] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1635), 2, + STATE(1643), 2, sym_line_comment, sym_block_comment, - ACTIONS(3581), 16, + ACTIONS(3549), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150019,7 +149778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3583), 24, + ACTIONS(3551), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150044,87 +149803,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [36848] = 25, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(922), 1, - anon_sym_RBRACK, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4153), 1, - anon_sym_CARET, - ACTIONS(4155), 1, - anon_sym_AMP, - ACTIONS(4157), 1, - anon_sym_PIPE, - ACTIONS(4159), 1, - anon_sym_AMP_AMP, - ACTIONS(4161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, - anon_sym_EQ, - ACTIONS(4271), 1, - anon_sym_SEMI, - ACTIONS(4273), 1, - anon_sym_DOT_DOT, - ACTIONS(4277), 1, - anon_sym_COMMA, - STATE(3099), 1, - aux_sym_arguments_repeat1, - ACTIONS(4149), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4163), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4169), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4275), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1636), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4151), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4167), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4189), 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, - [36943] = 6, + [38006] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4142), 1, - anon_sym_COLON_COLON, - STATE(1637), 2, + STATE(1457), 1, + sym_label, + STATE(1644), 2, sym_line_comment, sym_block_comment, - ACTIONS(3453), 15, + ACTIONS(3693), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150140,7 +149829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3451), 24, + ACTIONS(3691), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -150165,66 +149854,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_SQUOTE, anon_sym_as, - [37000] = 25, + [38063] = 25, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(348), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, + ACTIONS(3456), 1, anon_sym_SQUOTE, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4247), 1, + ACTIONS(4241), 1, anon_sym_CARET, - ACTIONS(4249), 1, + ACTIONS(4243), 1, anon_sym_AMP, - ACTIONS(4251), 1, + ACTIONS(4245), 1, anon_sym_PIPE, - ACTIONS(4253), 1, + ACTIONS(4247), 1, anon_sym_AMP_AMP, - ACTIONS(4255), 1, + ACTIONS(4249), 1, anon_sym_PIPE_PIPE, - ACTIONS(4261), 1, + ACTIONS(4255), 1, anon_sym_EQ, - ACTIONS(4267), 1, + ACTIONS(4261), 1, anon_sym_DOT_DOT, - STATE(1446), 1, + STATE(415), 1, sym_block, - STATE(3719), 1, + STATE(3776), 1, sym_label, - ACTIONS(4243), 2, + ACTIONS(4237), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4257), 2, + ACTIONS(4251), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4265), 2, + ACTIONS(4259), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4269), 2, + ACTIONS(4263), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1638), 2, + STATE(1645), 2, sym_line_comment, sym_block_comment, - ACTIONS(4245), 3, + ACTIONS(4239), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4263), 4, + ACTIONS(4257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4259), 10, + ACTIONS(4253), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150235,17 +149924,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37095] = 6, + [38158] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4279), 1, + ACTIONS(3979), 2, + anon_sym_LBRACE, anon_sym_COLON_COLON, - STATE(1639), 2, + STATE(1646), 2, sym_line_comment, sym_block_comment, - ACTIONS(1506), 15, + ACTIONS(3981), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150261,10 +149951,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1504), 24, + ACTIONS(3977), 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, @@ -150284,91 +149974,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, - [37152] = 5, + [38215] = 25, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1640), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3713), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(916), 1, + anon_sym_RBRACK, + ACTIONS(3925), 1, + anon_sym_LBRACK, + ACTIONS(3929), 1, + anon_sym_QMARK, + ACTIONS(3931), 1, + anon_sym_DOT, + ACTIONS(3999), 1, + anon_sym_as, + ACTIONS(4143), 1, anon_sym_CARET, + ACTIONS(4145), 1, anon_sym_AMP, + ACTIONS(4147), 1, anon_sym_PIPE, + ACTIONS(4149), 1, + anon_sym_AMP_AMP, + ACTIONS(4151), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4157), 1, + anon_sym_EQ, + ACTIONS(4269), 1, + anon_sym_DOT_DOT, + ACTIONS(4301), 1, + anon_sym_SEMI, + ACTIONS(4303), 1, + anon_sym_COMMA, + STATE(3171), 1, + aux_sym_arguments_repeat1, + ACTIONS(4139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3711), 25, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_as, - [37207] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - STATE(1455), 1, - sym_label, - STATE(1641), 2, + STATE(1647), 2, sym_line_comment, sym_block_comment, - ACTIONS(3709), 15, - anon_sym_PLUS, + ACTIONS(4141), 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(3707), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4159), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150379,27 +150045,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - anon_sym_as, - [37264] = 7, + [38310] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3861), 1, + ACTIONS(3885), 1, anon_sym_BANG, - ACTIONS(3863), 1, + ACTIONS(3887), 1, anon_sym_COLON_COLON, - STATE(1642), 2, + STATE(1648), 2, sym_line_comment, sym_block_comment, - ACTIONS(3453), 15, + ACTIONS(3450), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150415,7 +150073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3451), 23, + ACTIONS(3448), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150439,66 +150097,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [37323] = 25, + [38369] = 25, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(763), 1, - anon_sym_RBRACK, - ACTIONS(3901), 1, + ACTIONS(348), 1, + anon_sym_LBRACE, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4241), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4243), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4245), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4247), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4249), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4255), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4261), 1, anon_sym_DOT_DOT, - ACTIONS(4281), 1, - anon_sym_SEMI, - ACTIONS(4283), 1, - anon_sym_COMMA, - STATE(3117), 1, - aux_sym_arguments_repeat1, - ACTIONS(4149), 2, + STATE(1451), 1, + sym_block, + STATE(3709), 1, + sym_label, + ACTIONS(4237), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4251), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4259), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4263), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1643), 2, + STATE(1649), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4239), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4253), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150509,19 +150167,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37418] = 7, + [38464] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4209), 1, + ACTIONS(4189), 1, anon_sym_BANG, - ACTIONS(4285), 1, + ACTIONS(4305), 1, anon_sym_COLON_COLON, - STATE(1644), 2, + STATE(1650), 2, sym_line_comment, sym_block_comment, - ACTIONS(1506), 15, + ACTIONS(1508), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150537,7 +150195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1504), 23, + ACTIONS(1506), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150561,36 +150219,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [37477] = 5, + [38523] = 14, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1645), 2, + ACTIONS(3925), 1, + anon_sym_LBRACK, + ACTIONS(3929), 1, + anon_sym_QMARK, + ACTIONS(3931), 1, + anon_sym_DOT, + ACTIONS(3999), 1, + anon_sym_as, + ACTIONS(4241), 1, + anon_sym_CARET, + ACTIONS(4243), 1, + anon_sym_AMP, + ACTIONS(4237), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4251), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1651), 2, sym_line_comment, sym_block_comment, - ACTIONS(3761), 15, - anon_sym_PLUS, + ACTIONS(4239), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(3997), 5, 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(3759), 25, + ACTIONS(3995), 21, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -150609,110 +150276,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_as, - [37532] = 25, + anon_sym_SQUOTE, + [38595] = 21, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(348), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(3901), 1, + ACTIONS(352), 1, + anon_sym_EQ, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4247), 1, + ACTIONS(4241), 1, anon_sym_CARET, - ACTIONS(4249), 1, + ACTIONS(4243), 1, anon_sym_AMP, - ACTIONS(4251), 1, + ACTIONS(4245), 1, anon_sym_PIPE, - ACTIONS(4253), 1, + ACTIONS(4247), 1, anon_sym_AMP_AMP, - ACTIONS(4255), 1, + ACTIONS(4249), 1, anon_sym_PIPE_PIPE, - ACTIONS(4261), 1, - anon_sym_EQ, - ACTIONS(4267), 1, + ACTIONS(4307), 1, anon_sym_DOT_DOT, - STATE(1491), 1, - sym_block, - STATE(3719), 1, - sym_label, - ACTIONS(4243), 2, + ACTIONS(4237), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4257), 2, + ACTIONS(4251), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4265), 2, + ACTIONS(4259), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4269), 2, + ACTIONS(4263), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1646), 2, + STATE(1652), 2, sym_line_comment, sym_block_comment, - ACTIONS(4245), 3, + ACTIONS(4239), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4263), 4, + ACTIONS(4257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4259), 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, - [37627] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - STATE(1647), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3771), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - 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(3769), 25, + ACTIONS(346), 13, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150723,27 +150341,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_as, - [37682] = 7, + anon_sym_SQUOTE, + [38681] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4287), 1, - anon_sym_SQUOTE, - STATE(1914), 1, - sym_label, - STATE(1648), 2, + ACTIONS(4309), 1, + anon_sym_DASH_GT, + STATE(1653), 2, sym_line_comment, sym_block_comment, - ACTIONS(3709), 15, + ACTIONS(3683), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150759,7 +150368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3707), 23, + ACTIONS(3681), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150783,111 +150392,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [37741] = 25, + [38737] = 19, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(880), 1, - anon_sym_RBRACK, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4241), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4243), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4245), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4247), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4249), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4177), 2, anon_sym_EQ, - ACTIONS(4273), 1, anon_sym_DOT_DOT, - ACTIONS(4289), 1, - anon_sym_SEMI, - ACTIONS(4291), 1, - anon_sym_COMMA, - STATE(2989), 1, - aux_sym_arguments_repeat1, - ACTIONS(4149), 2, + ACTIONS(4237), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4251), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4259), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1649), 2, + STATE(1654), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4239), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 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, - [37836] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(4293), 1, - anon_sym_else, - STATE(1755), 1, - sym_else_clause, - STATE(1650), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1412), 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(1410), 23, + ACTIONS(4175), 15, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150898,92 +150452,26 @@ 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, - [37895] = 18, - ACTIONS(29), 1, - anon_sym_LT, + anon_sym_SQUOTE, + [38819] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4295), 1, - sym_identifier, - ACTIONS(4297), 1, - anon_sym_LBRACE, - ACTIONS(4299), 1, - anon_sym_RBRACE, - ACTIONS(4301), 1, - anon_sym_STAR, - ACTIONS(4305), 1, - anon_sym_COMMA, - ACTIONS(4307), 1, - anon_sym_COLON_COLON, ACTIONS(4311), 1, - sym_metavariable, - STATE(2606), 1, - sym_scoped_identifier, - STATE(3108), 1, - sym__use_clause, - STATE(3502), 1, - sym_bracketed_type, - STATE(3606), 1, - sym_generic_type_with_turbofish, - STATE(1651), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4309), 3, - sym_self, - sym_super, - sym_crate, - STATE(3144), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4303), 21, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_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, - anon_sym_raw, - [37976] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - STATE(1652), 2, + anon_sym_DASH_GT, + STATE(1655), 2, sym_line_comment, sym_block_comment, - ACTIONS(3555), 16, + ACTIONS(3745), 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, @@ -150993,7 +150481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3557), 24, + ACTIONS(3743), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151016,68 +150504,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [38031] = 25, - ACTIONS(19), 1, - anon_sym_LBRACE, + [38875] = 21, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4247), 1, + ACTIONS(4197), 1, + anon_sym_EQ, + ACTIONS(4241), 1, anon_sym_CARET, - ACTIONS(4249), 1, + ACTIONS(4243), 1, anon_sym_AMP, - ACTIONS(4251), 1, + ACTIONS(4245), 1, anon_sym_PIPE, - ACTIONS(4253), 1, + ACTIONS(4247), 1, anon_sym_AMP_AMP, - ACTIONS(4255), 1, + ACTIONS(4249), 1, anon_sym_PIPE_PIPE, - ACTIONS(4261), 1, - anon_sym_EQ, - ACTIONS(4267), 1, + ACTIONS(4307), 1, anon_sym_DOT_DOT, - STATE(426), 1, - sym_block, - STATE(3621), 1, - sym_label, - ACTIONS(4243), 2, + ACTIONS(4237), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4257), 2, + ACTIONS(4251), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4265), 2, + ACTIONS(4259), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4269), 2, + ACTIONS(4263), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1653), 2, + STATE(1656), 2, sym_line_comment, sym_block_comment, - ACTIONS(4245), 3, + ACTIONS(4239), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4263), 4, + ACTIONS(4257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4259), 10, + ACTIONS(4195), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151088,22 +150569,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38126] = 5, + anon_sym_SQUOTE, + [38961] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1654), 2, + ACTIONS(4313), 1, + anon_sym_DASH_GT, + STATE(1657), 2, sym_line_comment, sym_block_comment, - ACTIONS(3547), 16, + ACTIONS(3759), 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, @@ -151113,7 +150596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3549), 24, + ACTIONS(3757), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151136,41 +150619,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [38181] = 6, + [39017] = 21, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4005), 1, - anon_sym_COLON_COLON, - STATE(1655), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3969), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3925), 1, + anon_sym_LBRACK, + ACTIONS(3929), 1, + anon_sym_QMARK, + ACTIONS(3931), 1, + anon_sym_DOT, + ACTIONS(3999), 1, + anon_sym_as, + ACTIONS(4201), 1, + anon_sym_EQ, + ACTIONS(4241), 1, anon_sym_CARET, + ACTIONS(4243), 1, anon_sym_AMP, + ACTIONS(4245), 1, anon_sym_PIPE, + ACTIONS(4247), 1, + anon_sym_AMP_AMP, + ACTIONS(4249), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4307), 1, + anon_sym_DOT_DOT, + ACTIONS(4237), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4251), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4259), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3965), 24, + ACTIONS(4263), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1658), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4239), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4257), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4199), 13, 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, @@ -151181,74 +150684,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, - anon_sym_as, - [38238] = 25, - ACTIONS(19), 1, - anon_sym_LBRACE, + [39103] = 10, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4247), 1, + STATE(1659), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4239), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3997), 11, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, - ACTIONS(4249), 1, anon_sym_AMP, - ACTIONS(4251), 1, anon_sym_PIPE, - ACTIONS(4253), 1, - anon_sym_AMP_AMP, - ACTIONS(4255), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4261), 1, - anon_sym_EQ, - ACTIONS(4267), 1, - anon_sym_DOT_DOT, - STATE(422), 1, - sym_block, - STATE(3621), 1, - sym_label, - ACTIONS(4243), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4257), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4265), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4269), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1656), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4245), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4263), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4259), 10, + anon_sym_DOT_DOT, + ACTIONS(3995), 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, @@ -151259,66 +150732,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38333] = 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, + [39167] = 24, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(918), 1, - anon_sym_RBRACK, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4313), 1, - anon_sym_SEMI, ACTIONS(4315), 1, + anon_sym_RPAREN, + ACTIONS(4317), 1, anon_sym_COMMA, - STATE(3183), 1, + STATE(2901), 1, aux_sym_arguments_repeat1, - ACTIONS(4149), 2, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1657), 2, + STATE(1660), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151329,107 +150807,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38428] = 25, + [39259] = 22, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1386), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4247), 1, + ACTIONS(4241), 1, anon_sym_CARET, - ACTIONS(4249), 1, + ACTIONS(4243), 1, anon_sym_AMP, - ACTIONS(4251), 1, + ACTIONS(4245), 1, anon_sym_PIPE, - ACTIONS(4253), 1, + ACTIONS(4247), 1, anon_sym_AMP_AMP, - ACTIONS(4255), 1, + ACTIONS(4249), 1, anon_sym_PIPE_PIPE, - ACTIONS(4261), 1, + ACTIONS(4255), 1, anon_sym_EQ, - ACTIONS(4267), 1, + ACTIONS(4307), 1, anon_sym_DOT_DOT, - STATE(491), 1, - sym_block, - STATE(3782), 1, - sym_label, - ACTIONS(4243), 2, + ACTIONS(4237), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4257), 2, + ACTIONS(4251), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4265), 2, + ACTIONS(4259), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4269), 2, + ACTIONS(4263), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1658), 2, + STATE(1661), 2, sym_line_comment, sym_block_comment, - ACTIONS(4245), 3, + ACTIONS(4031), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, + ACTIONS(4239), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4263), 4, + ACTIONS(4257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4259), 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, - [38523] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - STATE(1659), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3719), 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(3717), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4253), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151440,25 +150873,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_DASH_GT, - anon_sym_as, - [38577] = 6, + [39347] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3863), 1, + ACTIONS(3887), 1, anon_sym_COLON_COLON, - STATE(1660), 2, + STATE(1662), 2, sym_line_comment, sym_block_comment, - ACTIONS(3453), 15, + ACTIONS(3450), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151474,7 +150899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3451), 23, + ACTIONS(3448), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151498,54 +150923,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [38633] = 18, + [39403] = 13, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4247), 1, - anon_sym_CARET, - ACTIONS(4249), 1, + ACTIONS(4243), 1, anon_sym_AMP, - ACTIONS(4251), 1, - anon_sym_PIPE, - ACTIONS(4253), 1, - anon_sym_AMP_AMP, - ACTIONS(3989), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4243), 2, + ACTIONS(4237), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4257), 2, + ACTIONS(4251), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4265), 2, - anon_sym_GT, - anon_sym_LT, - STATE(1661), 2, + STATE(1663), 2, sym_line_comment, sym_block_comment, - ACTIONS(4245), 3, + ACTIONS(4239), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4263), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3987), 16, + ACTIONS(3997), 6, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3995), 21, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -151557,20 +150973,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_EQ_EQ, + 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, - [38713] = 6, + [39473] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4317), 1, - anon_sym_DASH_GT, - STATE(1662), 2, + STATE(1664), 2, sym_line_comment, sym_block_comment, - ACTIONS(3687), 15, + ACTIONS(1436), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151586,7 +151004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3685), 23, + ACTIONS(1434), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151610,17 +151028,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [38769] = 6, + anon_sym_else, + [39527] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4319), 1, - anon_sym_DASH_GT, - STATE(1663), 2, + STATE(1665), 2, sym_line_comment, sym_block_comment, - ACTIONS(3693), 15, + ACTIONS(3781), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151636,7 +151053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3691), 23, + ACTIONS(3779), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151659,18 +151076,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, - [38825] = 6, + [39581] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4321), 1, - anon_sym_DASH_GT, - STATE(1664), 2, + STATE(1666), 2, sym_line_comment, sym_block_comment, - ACTIONS(3699), 15, + ACTIONS(1444), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151686,7 +151102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3697), 23, + ACTIONS(1442), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151710,62 +151126,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [38881] = 22, + anon_sym_else, + [39635] = 24, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(952), 1, + anon_sym_RPAREN, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4247), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4249), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4251), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4253), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4255), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4261), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4323), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4243), 2, + ACTIONS(4319), 1, + anon_sym_COMMA, + STATE(2989), 1, + aux_sym_arguments_repeat1, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4257), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4265), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4325), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1665), 2, + STATE(1667), 2, sym_line_comment, sym_block_comment, - ACTIONS(4019), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, - ACTIONS(4245), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4263), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4259), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151776,17 +151195,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38969] = 6, + [39727] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4327), 1, + ACTIONS(4321), 1, anon_sym_COLON_COLON, - STATE(1666), 2, + STATE(1668), 2, sym_line_comment, sym_block_comment, - ACTIONS(3525), 15, + ACTIONS(1508), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151802,7 +151221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3523), 23, + ACTIONS(1506), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151826,175 +151245,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [39025] = 24, + [39783] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(930), 1, - anon_sym_RPAREN, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4153), 1, - anon_sym_CARET, - ACTIONS(4155), 1, - anon_sym_AMP, - ACTIONS(4157), 1, - anon_sym_PIPE, - ACTIONS(4159), 1, - anon_sym_AMP_AMP, - ACTIONS(4161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, - anon_sym_EQ, - ACTIONS(4273), 1, - anon_sym_DOT_DOT, - ACTIONS(4329), 1, - anon_sym_COMMA, - STATE(2967), 1, - aux_sym_arguments_repeat1, - ACTIONS(4149), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4163), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4169), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4275), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1667), 2, + STATE(1669), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4167), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4189), 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] = 17, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4247), 1, - anon_sym_CARET, - ACTIONS(4249), 1, - anon_sym_AMP, - ACTIONS(4251), 1, - anon_sym_PIPE, - ACTIONS(3989), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4243), 2, + ACTIONS(3777), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4257), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4265), 2, - anon_sym_GT, - anon_sym_LT, - STATE(1668), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4245), 3, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4263), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3987), 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, - [39195] = 15, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4247), 1, anon_sym_CARET, - ACTIONS(4249), 1, anon_sym_AMP, - ACTIONS(4251), 1, anon_sym_PIPE, - ACTIONS(4243), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4257), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1669), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4245), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3989), 4, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3987), 21, + ACTIONS(3775), 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, @@ -152013,86 +151292,21 @@ 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, - [39269] = 24, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, + anon_sym_DASH_GT, anon_sym_as, - ACTIONS(4153), 1, - anon_sym_CARET, - ACTIONS(4155), 1, - anon_sym_AMP, - ACTIONS(4157), 1, - anon_sym_PIPE, - ACTIONS(4159), 1, - anon_sym_AMP_AMP, - ACTIONS(4161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, - anon_sym_EQ, - ACTIONS(4273), 1, - anon_sym_DOT_DOT, - ACTIONS(4331), 1, - anon_sym_RPAREN, - ACTIONS(4333), 1, - anon_sym_COMMA, - STATE(2925), 1, - aux_sym_arguments_repeat1, - ACTIONS(4149), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4163), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4169), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4275), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1670), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4151), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4167), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4189), 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, - [39361] = 6, + [39837] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4335), 1, - anon_sym_COLON_COLON, - STATE(1671), 2, + ACTIONS(4323), 1, + anon_sym_LPAREN, + STATE(1916), 1, + sym_arguments, + STATE(1670), 2, sym_line_comment, sym_block_comment, - ACTIONS(1506), 15, + ACTIONS(3799), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152108,8 +151322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1504), 23, - anon_sym_LPAREN, + ACTIONS(3795), 22, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -152132,19 +151345,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [39417] = 7, + [39895] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4337), 1, - anon_sym_LPAREN, - STATE(1923), 1, - sym_arguments, - STATE(1672), 2, + STATE(1671), 2, sym_line_comment, sym_block_comment, - ACTIONS(3749), 15, + ACTIONS(3793), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152160,7 +151369,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3745), 22, + ACTIONS(3791), 24, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -152182,16 +151392,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - [39475] = 5, + [39949] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1673), 2, + ACTIONS(4325), 1, + anon_sym_COLON_COLON, + STATE(1672), 2, sym_line_comment, sym_block_comment, - ACTIONS(3739), 15, + ACTIONS(1508), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152207,7 +151420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3737), 24, + ACTIONS(1506), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152230,19 +151443,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [39529] = 6, + [40005] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4339), 1, - anon_sym_COLON_COLON, - STATE(1674), 2, + STATE(1673), 2, sym_line_comment, sym_block_comment, - ACTIONS(1506), 15, + ACTIONS(3733), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152258,7 +151468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1504), 23, + ACTIONS(3731), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152281,16 +151491,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, - [39585] = 5, + [40059] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1675), 2, + STATE(1674), 2, sym_line_comment, sym_block_comment, - ACTIONS(1444), 15, + ACTIONS(1440), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152306,7 +151517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1442), 24, + ACTIONS(1438), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152331,62 +151542,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_as, anon_sym_else, - [39639] = 22, + [40113] = 22, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4247), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4249), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4251), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4253), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4255), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4261), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4323), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4243), 2, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4257), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4265), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4325), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1676), 2, + STATE(1675), 2, sym_line_comment, sym_block_comment, - ACTIONS(3857), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, - ACTIONS(4245), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4263), 4, + ACTIONS(4327), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4259), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152397,17 +151608,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39727] = 6, + [40201] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4327), 1, - anon_sym_COLON_COLON, - STATE(1677), 2, + STATE(1676), 2, sym_line_comment, sym_block_comment, - ACTIONS(3533), 15, + ACTIONS(3755), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152423,7 +151632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3531), 23, + ACTIONS(3753), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152446,16 +151655,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_DASH_GT, anon_sym_as, - [39783] = 5, + [40255] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1678), 2, + ACTIONS(4329), 1, + anon_sym_DASH_GT, + STATE(1677), 2, sym_line_comment, sym_block_comment, - ACTIONS(3765), 15, + ACTIONS(3787), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152471,7 +151683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3763), 24, + ACTIONS(3785), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152494,39 +151706,65 @@ 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, - [39837] = 5, + [40311] = 24, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1679), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1452), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3925), 1, + anon_sym_LBRACK, + ACTIONS(3929), 1, + anon_sym_QMARK, + ACTIONS(3931), 1, + anon_sym_DOT, + ACTIONS(3999), 1, + anon_sym_as, + ACTIONS(4143), 1, anon_sym_CARET, + ACTIONS(4145), 1, anon_sym_AMP, + ACTIONS(4147), 1, anon_sym_PIPE, + ACTIONS(4149), 1, + anon_sym_AMP_AMP, + ACTIONS(4151), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4157), 1, + anon_sym_EQ, + ACTIONS(4269), 1, + anon_sym_DOT_DOT, + ACTIONS(4331), 1, + anon_sym_RPAREN, + ACTIONS(4333), 1, + anon_sym_COMMA, + STATE(2904), 1, + aux_sym_arguments_repeat1, + ACTIONS(4139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1450), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4165), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1678), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4141), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4159), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152537,72 +151775,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, - anon_sym_else, - [39891] = 24, + [40403] = 21, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(952), 1, - anon_sym_RPAREN, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4169), 1, + anon_sym_EQ, + ACTIONS(4241), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4243), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4245), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4247), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4249), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, - anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4307), 1, anon_sym_DOT_DOT, - ACTIONS(4341), 1, - anon_sym_COMMA, - STATE(3005), 1, - aux_sym_arguments_repeat1, - ACTIONS(4149), 2, + ACTIONS(4237), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4251), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4259), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4263), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1680), 2, + STATE(1679), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4239), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4167), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152613,35 +151839,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39983] = 5, + anon_sym_SQUOTE, + [40489] = 12, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1681), 2, + ACTIONS(3925), 1, + anon_sym_LBRACK, + ACTIONS(3929), 1, + anon_sym_QMARK, + ACTIONS(3931), 1, + anon_sym_DOT, + ACTIONS(3999), 1, + anon_sym_as, + ACTIONS(4237), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4251), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1680), 2, sym_line_comment, sym_block_comment, - ACTIONS(3723), 15, - anon_sym_PLUS, + ACTIONS(4239), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3997), 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(3721), 24, + ACTIONS(3995), 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, @@ -152660,17 +151895,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_DASH_GT, - anon_sym_as, - [40037] = 5, + anon_sym_SQUOTE, + [40557] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1682), 2, + ACTIONS(4335), 1, + anon_sym_COLON_COLON, + STATE(1681), 2, sym_line_comment, sym_block_comment, - ACTIONS(3783), 15, + ACTIONS(3571), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152686,7 +151922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3781), 24, + ACTIONS(3569), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152709,74 +151945,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, - [40091] = 11, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, anon_sym_as, - ACTIONS(4243), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1683), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4245), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3989), 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(3987), 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, - [40157] = 6, + [40613] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4343), 1, - anon_sym_DASH_GT, - STATE(1684), 2, + STATE(1682), 2, sym_line_comment, sym_block_comment, - ACTIONS(3805), 15, + ACTIONS(1448), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152792,7 +151970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3803), 23, + ACTIONS(1446), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152816,39 +151994,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [40213] = 6, + anon_sym_else, + [40667] = 24, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4345), 1, - anon_sym_DASH_GT, - STATE(1685), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3681), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(924), 1, + anon_sym_RBRACK, + ACTIONS(3925), 1, + anon_sym_LBRACK, + ACTIONS(3929), 1, + anon_sym_QMARK, + ACTIONS(3931), 1, + anon_sym_DOT, + ACTIONS(3999), 1, + anon_sym_as, + ACTIONS(4143), 1, anon_sym_CARET, + ACTIONS(4145), 1, anon_sym_AMP, + ACTIONS(4147), 1, anon_sym_PIPE, + ACTIONS(4149), 1, + anon_sym_AMP_AMP, + ACTIONS(4151), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4157), 1, + anon_sym_EQ, + ACTIONS(4269), 1, + anon_sym_DOT_DOT, + ACTIONS(4337), 1, + anon_sym_COMMA, + STATE(2910), 1, + aux_sym_arguments_repeat1, + ACTIONS(4139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3679), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4165), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1683), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4141), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4159), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152859,65 +152063,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_EQ_EQ, - 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, - [40269] = 21, + [40759] = 21, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4179), 1, + ACTIONS(4173), 1, anon_sym_EQ, - ACTIONS(4247), 1, + ACTIONS(4241), 1, anon_sym_CARET, - ACTIONS(4249), 1, + ACTIONS(4243), 1, anon_sym_AMP, - ACTIONS(4251), 1, + ACTIONS(4245), 1, anon_sym_PIPE, - ACTIONS(4253), 1, + ACTIONS(4247), 1, anon_sym_AMP_AMP, - ACTIONS(4255), 1, + ACTIONS(4249), 1, anon_sym_PIPE_PIPE, - ACTIONS(4323), 1, + ACTIONS(4307), 1, anon_sym_DOT_DOT, - ACTIONS(4243), 2, + ACTIONS(4237), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4257), 2, + ACTIONS(4251), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4265), 2, + ACTIONS(4259), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4325), 2, + ACTIONS(4263), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1686), 2, + STATE(1684), 2, sym_line_comment, sym_block_comment, - ACTIONS(4245), 3, + ACTIONS(4239), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4263), 4, + ACTIONS(4257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4177), 13, + ACTIONS(4171), 13, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PLUS_EQ, @@ -152931,15 +152128,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_SQUOTE, - [40355] = 5, + [40845] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1687), 2, + ACTIONS(4339), 1, + anon_sym_COLON_COLON, + STATE(1685), 2, sym_line_comment, sym_block_comment, - ACTIONS(3743), 15, + ACTIONS(3571), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152955,7 +152154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3741), 24, + ACTIONS(3569), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152978,48 +152177,47 @@ 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, - [40409] = 17, + [40901] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4295), 1, + ACTIONS(4283), 1, sym_identifier, - ACTIONS(4297), 1, + ACTIONS(4285), 1, anon_sym_LBRACE, - ACTIONS(4301), 1, + ACTIONS(4289), 1, anon_sym_STAR, - ACTIONS(4307), 1, + ACTIONS(4295), 1, anon_sym_COLON_COLON, - ACTIONS(4311), 1, + ACTIONS(4299), 1, sym_metavariable, - ACTIONS(4347), 1, + ACTIONS(4341), 1, anon_sym_RBRACE, - STATE(2606), 1, + STATE(2585), 1, sym_scoped_identifier, - STATE(3291), 1, + STATE(3417), 1, sym__use_clause, - STATE(3502), 1, - sym_bracketed_type, - STATE(3606), 1, + STATE(3605), 1, sym_generic_type_with_turbofish, - STATE(1688), 2, + STATE(3770), 1, + sym_bracketed_type, + STATE(1686), 2, sym_line_comment, sym_block_comment, - ACTIONS(4309), 3, + ACTIONS(4297), 3, sym_self, sym_super, sym_crate, - STATE(3144), 4, + STATE(3142), 4, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(4303), 21, + ACTIONS(4291), 21, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -153041,107 +152239,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_gen, anon_sym_union, anon_sym_raw, - [40487] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - STATE(1689), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1456), 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(1454), 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_as, - anon_sym_else, - [40541] = 21, + [40979] = 21, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4199), 1, + ACTIONS(4193), 1, anon_sym_EQ, - ACTIONS(4247), 1, + ACTIONS(4241), 1, anon_sym_CARET, - ACTIONS(4249), 1, + ACTIONS(4243), 1, anon_sym_AMP, - ACTIONS(4251), 1, + ACTIONS(4245), 1, anon_sym_PIPE, - ACTIONS(4253), 1, + ACTIONS(4247), 1, anon_sym_AMP_AMP, - ACTIONS(4255), 1, + ACTIONS(4249), 1, anon_sym_PIPE_PIPE, - ACTIONS(4323), 1, + ACTIONS(4307), 1, anon_sym_DOT_DOT, - ACTIONS(4243), 2, + ACTIONS(4237), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4257), 2, + ACTIONS(4251), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4265), 2, + ACTIONS(4259), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4325), 2, + ACTIONS(4263), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1690), 2, + STATE(1687), 2, sym_line_comment, sym_block_comment, - ACTIONS(4245), 3, + ACTIONS(4239), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4263), 4, + ACTIONS(4257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4197), 13, + ACTIONS(4191), 13, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PLUS_EQ, @@ -153155,29 +152304,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_SQUOTE, - [40627] = 10, + [41065] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(4343), 1, + anon_sym_COLON_COLON, + STATE(1688), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3571), 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(3569), 23, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(3905), 1, + anon_sym_EQ_GT, anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 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(1691), 2, + [41121] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1689), 2, sym_line_comment, sym_block_comment, - ACTIONS(4245), 3, + ACTIONS(1432), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3989), 11, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -153186,10 +152376,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(3987), 21, + ACTIONS(1430), 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, @@ -153208,57 +152401,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_SQUOTE, - [40691] = 19, + anon_sym_as, + anon_sym_else, + [41175] = 24, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(926), 1, + anon_sym_RPAREN, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4247), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4249), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4251), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4253), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4255), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4165), 2, + ACTIONS(4157), 1, anon_sym_EQ, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4243), 2, + ACTIONS(4345), 1, + anon_sym_COMMA, + STATE(2941), 1, + aux_sym_arguments_repeat1, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4257), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4265), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - STATE(1692), 2, + ACTIONS(4165), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1690), 2, sym_line_comment, sym_block_comment, - ACTIONS(4245), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4263), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4147), 15, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153269,38 +152471,46 @@ 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, - [40773] = 5, + [41267] = 15, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1693), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1440), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3925), 1, + anon_sym_LBRACK, + ACTIONS(3929), 1, + anon_sym_QMARK, + ACTIONS(3931), 1, + anon_sym_DOT, + ACTIONS(3999), 1, + anon_sym_as, + ACTIONS(4241), 1, anon_sym_CARET, + ACTIONS(4243), 1, anon_sym_AMP, + ACTIONS(4245), 1, anon_sym_PIPE, + ACTIONS(4237), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4251), 2, anon_sym_LT_LT, anon_sym_GT_GT, + STATE(1691), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4239), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3997), 4, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1438), 24, + ACTIONS(3995), 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, @@ -153319,48 +152529,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_as, - anon_sym_else, - [40827] = 13, + anon_sym_SQUOTE, + [41341] = 22, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4249), 1, + ACTIONS(4241), 1, + anon_sym_CARET, + ACTIONS(4243), 1, anon_sym_AMP, - ACTIONS(4243), 2, + ACTIONS(4245), 1, + anon_sym_PIPE, + ACTIONS(4247), 1, + anon_sym_AMP_AMP, + ACTIONS(4249), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4255), 1, + anon_sym_EQ, + ACTIONS(4307), 1, + anon_sym_DOT_DOT, + ACTIONS(4237), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4257), 2, + ACTIONS(4251), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1694), 2, + ACTIONS(4259), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4263), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1692), 2, sym_line_comment, sym_block_comment, - ACTIONS(4245), 3, + ACTIONS(3881), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, + ACTIONS(4239), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3989), 6, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3987), 21, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4257), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4253), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153371,24 +152596,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_SQUOTE, - [40897] = 6, + [41429] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4349), 1, - anon_sym_DASH_GT, - STATE(1695), 2, + ACTIONS(4343), 1, + anon_sym_COLON_COLON, + STATE(1693), 2, sym_line_comment, sym_block_comment, - ACTIONS(3755), 15, + ACTIONS(3525), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -153404,7 +152622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3753), 23, + ACTIONS(3523), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -153428,46 +152646,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [40953] = 17, + [41485] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4295), 1, + ACTIONS(4283), 1, sym_identifier, - ACTIONS(4297), 1, + ACTIONS(4285), 1, anon_sym_LBRACE, - ACTIONS(4301), 1, + ACTIONS(4289), 1, anon_sym_STAR, - ACTIONS(4307), 1, + ACTIONS(4295), 1, anon_sym_COLON_COLON, - ACTIONS(4311), 1, + ACTIONS(4299), 1, sym_metavariable, - ACTIONS(4351), 1, + ACTIONS(4347), 1, anon_sym_RBRACE, - STATE(2606), 1, + STATE(2585), 1, sym_scoped_identifier, - STATE(3291), 1, + STATE(3417), 1, sym__use_clause, - STATE(3502), 1, - sym_bracketed_type, - STATE(3606), 1, + STATE(3605), 1, sym_generic_type_with_turbofish, - STATE(1696), 2, + STATE(3770), 1, + sym_bracketed_type, + STATE(1694), 2, sym_line_comment, sym_block_comment, - ACTIONS(4309), 3, + ACTIONS(4297), 3, sym_self, sym_super, sym_crate, - STATE(3144), 4, + STATE(3142), 4, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(4303), 21, + ACTIONS(4291), 21, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -153489,130 +152707,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_gen, anon_sym_union, anon_sym_raw, - [41031] = 22, + [41563] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4247), 1, - anon_sym_CARET, - ACTIONS(4249), 1, - anon_sym_AMP, - ACTIONS(4251), 1, - anon_sym_PIPE, - ACTIONS(4253), 1, - anon_sym_AMP_AMP, - ACTIONS(4255), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4261), 1, - anon_sym_EQ, - ACTIONS(4323), 1, - anon_sym_DOT_DOT, - ACTIONS(4243), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4257), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4265), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4325), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1697), 2, + STATE(1695), 2, sym_line_comment, sym_block_comment, - ACTIONS(4007), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, - ACTIONS(4245), 3, + ACTIONS(3563), 17, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4263), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4259), 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, - [41119] = 24, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4153), 1, anon_sym_CARET, - ACTIONS(4155), 1, anon_sym_AMP, - ACTIONS(4157), 1, anon_sym_PIPE, - ACTIONS(4159), 1, - anon_sym_AMP_AMP, - ACTIONS(4161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, - anon_sym_EQ, - ACTIONS(4273), 1, - anon_sym_DOT_DOT, - ACTIONS(4353), 1, - anon_sym_RPAREN, - ACTIONS(4355), 1, - anon_sym_COMMA, - STATE(3046), 1, - aux_sym_arguments_repeat1, - ACTIONS(4149), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4163), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + anon_sym_LT_LT_EQ, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1698), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4151), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4167), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3561), 22, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153621,58 +152748,63 @@ 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, - [41211] = 19, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + anon_sym_LT2, + [41617] = 18, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4247), 1, + ACTIONS(4241), 1, anon_sym_CARET, - ACTIONS(4249), 1, + ACTIONS(4243), 1, anon_sym_AMP, - ACTIONS(4251), 1, + ACTIONS(4245), 1, anon_sym_PIPE, - ACTIONS(4253), 1, + ACTIONS(4247), 1, anon_sym_AMP_AMP, - ACTIONS(4255), 1, - anon_sym_PIPE_PIPE, - ACTIONS(394), 2, + ACTIONS(3997), 2, anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4243), 2, + ACTIONS(4237), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4257), 2, + ACTIONS(4251), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4265), 2, + ACTIONS(4259), 2, anon_sym_GT, anon_sym_LT, - STATE(1699), 2, + STATE(1696), 2, sym_line_comment, sym_block_comment, - ACTIONS(4245), 3, + ACTIONS(4239), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4263), 4, + ACTIONS(4257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(392), 15, + ACTIONS(3995), 16, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153686,45 +152818,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_SQUOTE, - [41293] = 14, + [41697] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4247), 1, - anon_sym_CARET, - ACTIONS(4249), 1, - anon_sym_AMP, - ACTIONS(4243), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4257), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1700), 2, + STATE(1697), 2, sym_line_comment, sym_block_comment, - ACTIONS(4245), 3, + ACTIONS(3689), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3989), 5, + anon_sym_CARET, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3987), 21, + ACTIONS(3687), 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, @@ -153743,61 +152865,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [41365] = 21, + anon_sym_DASH_GT, + anon_sym_as, + [41751] = 22, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(352), 1, - anon_sym_EQ, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4247), 1, + ACTIONS(4241), 1, anon_sym_CARET, - ACTIONS(4249), 1, + ACTIONS(4243), 1, anon_sym_AMP, - ACTIONS(4251), 1, + ACTIONS(4245), 1, anon_sym_PIPE, - ACTIONS(4253), 1, + ACTIONS(4247), 1, anon_sym_AMP_AMP, - ACTIONS(4255), 1, + ACTIONS(4249), 1, anon_sym_PIPE_PIPE, - ACTIONS(4323), 1, + ACTIONS(4255), 1, + anon_sym_EQ, + ACTIONS(4307), 1, anon_sym_DOT_DOT, - ACTIONS(4243), 2, + ACTIONS(4237), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4257), 2, + ACTIONS(4251), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4265), 2, + ACTIONS(4259), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4325), 2, + ACTIONS(4263), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1701), 2, + STATE(1698), 2, sym_line_comment, sym_block_comment, - ACTIONS(4245), 3, + ACTIONS(4015), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, + ACTIONS(4239), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4263), 4, + ACTIONS(4257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(346), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4253), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153808,18 +152933,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_SQUOTE, - [41451] = 6, + [41839] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4327), 1, - anon_sym_COLON_COLON, - STATE(1702), 2, + STATE(1699), 2, sym_line_comment, sym_block_comment, - ACTIONS(3515), 15, + ACTIONS(3729), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -153835,7 +152957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3513), 23, + ACTIONS(3727), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -153858,61 +152980,41 @@ 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, - [41507] = 21, + [41893] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4203), 1, - anon_sym_EQ, - ACTIONS(4247), 1, + ACTIONS(4349), 1, + anon_sym_DASH_GT, + STATE(1700), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3709), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4249), 1, anon_sym_AMP, - ACTIONS(4251), 1, anon_sym_PIPE, - ACTIONS(4253), 1, - anon_sym_AMP_AMP, - ACTIONS(4255), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4323), 1, - anon_sym_DOT_DOT, - ACTIONS(4243), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4257), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4265), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4325), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1703), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4245), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4263), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4201), 13, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3707), 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, @@ -153923,63 +153025,96 @@ 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, - [41593] = 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, + [41949] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4351), 1, + anon_sym_DASH_GT, + STATE(1701), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3715), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4155), 1, anon_sym_AMP, - ACTIONS(4157), 1, anon_sym_PIPE, - ACTIONS(4159), 1, - anon_sym_AMP_AMP, - ACTIONS(4161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, - anon_sym_EQ, - ACTIONS(4273), 1, - anon_sym_DOT_DOT, - ACTIONS(4149), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4163), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3713), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_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(1704), 2, + anon_sym_as, + [42005] = 6, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4353), 1, + anon_sym_DASH_GT, + STATE(1702), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(3723), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4357), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(4167), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4189), 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(3721), 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, @@ -153990,15 +153125,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41681] = 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, + [42061] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1705), 2, + STATE(1703), 2, sym_line_comment, sym_block_comment, - ACTIONS(3553), 17, + ACTIONS(3673), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154009,14 +153151,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(3551), 22, + ACTIONS(3671), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154031,68 +153171,72 @@ 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, - [41735] = 21, + [42115] = 22, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4207), 1, - anon_sym_EQ, - ACTIONS(4247), 1, + ACTIONS(4241), 1, anon_sym_CARET, - ACTIONS(4249), 1, + ACTIONS(4243), 1, anon_sym_AMP, - ACTIONS(4251), 1, + ACTIONS(4245), 1, anon_sym_PIPE, - ACTIONS(4253), 1, + ACTIONS(4247), 1, anon_sym_AMP_AMP, - ACTIONS(4255), 1, + ACTIONS(4249), 1, anon_sym_PIPE_PIPE, - ACTIONS(4323), 1, + ACTIONS(4255), 1, + anon_sym_EQ, + ACTIONS(4307), 1, anon_sym_DOT_DOT, - ACTIONS(4243), 2, + ACTIONS(4237), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4257), 2, + ACTIONS(4251), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4265), 2, + ACTIONS(4259), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4325), 2, + ACTIONS(4263), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1706), 2, + STATE(1704), 2, sym_line_comment, sym_block_comment, - ACTIONS(4245), 3, + ACTIONS(4065), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, + ACTIONS(4239), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4263), 4, + ACTIONS(4257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4205), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4253), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154103,65 +153247,54 @@ 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, - [41821] = 24, + [42203] = 17, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(932), 1, - anon_sym_RBRACK, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4241), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4243), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4245), 1, anon_sym_PIPE, - ACTIONS(4159), 1, - anon_sym_AMP_AMP, - ACTIONS(4161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(3997), 2, anon_sym_EQ, - ACTIONS(4273), 1, anon_sym_DOT_DOT, - ACTIONS(4359), 1, - anon_sym_COMMA, - STATE(3145), 1, - aux_sym_arguments_repeat1, - ACTIONS(4149), 2, + ACTIONS(4237), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4251), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4259), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1707), 2, + STATE(1705), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4239), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(3995), 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, @@ -154172,20 +153305,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41913] = 5, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + [42281] = 11, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1708), 2, + ACTIONS(3925), 1, + anon_sym_LBRACK, + ACTIONS(3929), 1, + anon_sym_QMARK, + ACTIONS(3931), 1, + anon_sym_DOT, + ACTIONS(3999), 1, + anon_sym_as, + ACTIONS(4237), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1706), 2, sym_line_comment, sym_block_comment, - ACTIONS(1448), 15, - anon_sym_PLUS, + ACTIONS(4239), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3997), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -154194,13 +153340,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(1446), 24, + ACTIONS(3995), 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, @@ -154219,39 +153362,57 @@ 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, - anon_sym_else, - [41967] = 5, + anon_sym_SQUOTE, + [42347] = 19, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1709), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3801), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3925), 1, + anon_sym_LBRACK, + ACTIONS(3929), 1, + anon_sym_QMARK, + ACTIONS(3931), 1, + anon_sym_DOT, + ACTIONS(3999), 1, + anon_sym_as, + ACTIONS(4241), 1, anon_sym_CARET, + ACTIONS(4243), 1, anon_sym_AMP, + ACTIONS(4245), 1, anon_sym_PIPE, + ACTIONS(4247), 1, + anon_sym_AMP_AMP, + ACTIONS(4249), 1, + anon_sym_PIPE_PIPE, + ACTIONS(394), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4237), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4251), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4259), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3799), 24, + STATE(1707), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4239), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4257), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(392), 15, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154262,51 +153423,38 @@ 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, - [42021] = 12, + anon_sym_SQUOTE, + [42429] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4243), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4257), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1710), 2, + STATE(1708), 2, sym_line_comment, sym_block_comment, - ACTIONS(4245), 3, + ACTIONS(3741), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3989), 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(3987), 21, + ACTIONS(3739), 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, @@ -154325,84 +153473,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, - [42089] = 22, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, + anon_sym_DASH_GT, anon_sym_as, - ACTIONS(4247), 1, - anon_sym_CARET, - ACTIONS(4249), 1, - anon_sym_AMP, - ACTIONS(4251), 1, - anon_sym_PIPE, - ACTIONS(4253), 1, - anon_sym_AMP_AMP, - ACTIONS(4255), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4261), 1, - anon_sym_EQ, - ACTIONS(4323), 1, - anon_sym_DOT_DOT, - ACTIONS(4243), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4257), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4265), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4325), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1711), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4039), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, - ACTIONS(4245), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4263), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4259), 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, - [42177] = 6, + [42483] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4361), 1, - anon_sym_DASH_GT, - STATE(1712), 2, + ACTIONS(4343), 1, + anon_sym_COLON_COLON, + STATE(1709), 2, sym_line_comment, sym_block_comment, - ACTIONS(3733), 15, + ACTIONS(3533), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154418,7 +153501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3731), 23, + ACTIONS(3531), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154442,17 +153525,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42233] = 6, + [42539] = 22, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4363), 1, + ACTIONS(3925), 1, + anon_sym_LBRACK, + ACTIONS(3929), 1, + anon_sym_QMARK, + ACTIONS(3931), 1, + anon_sym_DOT, + ACTIONS(3999), 1, + anon_sym_as, + ACTIONS(4143), 1, + anon_sym_CARET, + ACTIONS(4145), 1, + anon_sym_AMP, + ACTIONS(4147), 1, + anon_sym_PIPE, + ACTIONS(4149), 1, + anon_sym_AMP_AMP, + ACTIONS(4151), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4157), 1, + anon_sym_EQ, + ACTIONS(4269), 1, + anon_sym_DOT_DOT, + ACTIONS(4139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4153), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4161), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4165), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1710), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4141), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4355), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(4159), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4155), 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, + [42627] = 6, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4343), 1, anon_sym_COLON_COLON, - STATE(1713), 2, + STATE(1711), 2, sym_line_comment, sym_block_comment, - ACTIONS(3511), 15, + ACTIONS(3507), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154468,7 +153617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3509), 23, + ACTIONS(3505), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154492,62 +153641,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42289] = 22, + [42683] = 24, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(936), 1, + anon_sym_RBRACK, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4149), 2, + ACTIONS(4357), 1, + anon_sym_COMMA, + STATE(3009), 1, + aux_sym_arguments_repeat1, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1714), 2, + STATE(1712), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4365), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154558,17 +153709,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42377] = 6, + [42775] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4367), 1, - anon_sym_COLON_COLON, - STATE(1715), 2, + STATE(1713), 2, sym_line_comment, sym_block_comment, - ACTIONS(3511), 15, + ACTIONS(3703), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154584,7 +153733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3509), 23, + ACTIONS(3701), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154607,18 +153756,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, - [42433] = 6, + [42829] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4327), 1, - anon_sym_COLON_COLON, - STATE(1716), 2, + STATE(1714), 2, sym_line_comment, sym_block_comment, - ACTIONS(3511), 15, + ACTIONS(1508), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154634,7 +153782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3509), 23, + ACTIONS(1506), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154658,15 +153806,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42489] = 5, + [42882] = 16, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1717), 2, + ACTIONS(4283), 1, + sym_identifier, + ACTIONS(4285), 1, + anon_sym_LBRACE, + ACTIONS(4289), 1, + anon_sym_STAR, + ACTIONS(4295), 1, + anon_sym_COLON_COLON, + ACTIONS(4299), 1, + sym_metavariable, + STATE(2585), 1, + sym_scoped_identifier, + STATE(3417), 1, + sym__use_clause, + STATE(3605), 1, + sym_generic_type_with_turbofish, + STATE(3770), 1, + sym_bracketed_type, + STATE(1715), 2, sym_line_comment, sym_block_comment, - ACTIONS(3789), 15, + ACTIONS(4297), 3, + sym_self, + sym_super, + sym_crate, + STATE(3142), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4291), 21, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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, + anon_sym_raw, + [42957] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1716), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1596), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154682,7 +153889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3787), 24, + ACTIONS(1598), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154705,17 +153912,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [42543] = 5, + [43010] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1718), 2, + STATE(1717), 2, sym_line_comment, sym_block_comment, - ACTIONS(3793), 15, + ACTIONS(1496), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154731,7 +153937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3791), 24, + ACTIONS(1494), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154754,66 +153960,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [42597] = 24, + [43063] = 22, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(928), 1, - anon_sym_RBRACK, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4369), 1, - anon_sym_COMMA, - STATE(2932), 1, - aux_sym_arguments_repeat1, - ACTIONS(4149), 2, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1719), 2, + ACTIONS(4359), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1718), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154824,15 +154026,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42689] = 5, + [43150] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1720), 2, + STATE(1719), 2, sym_line_comment, sym_block_comment, - ACTIONS(3797), 15, + ACTIONS(1520), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154848,7 +154050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3795), 24, + ACTIONS(1518), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154871,62 +154073,38 @@ 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, - [42743] = 21, + [43203] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4187), 1, - anon_sym_EQ, - ACTIONS(4247), 1, + STATE(1720), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1524), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4249), 1, anon_sym_AMP, - ACTIONS(4251), 1, anon_sym_PIPE, - ACTIONS(4253), 1, - anon_sym_AMP_AMP, - ACTIONS(4255), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4323), 1, - anon_sym_DOT_DOT, - ACTIONS(4243), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4257), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4265), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4325), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1721), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4245), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4263), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4185), 13, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1522), 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, @@ -154937,16 +154115,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_SQUOTE, - [42829] = 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, + [43256] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1722), 2, + STATE(1721), 2, sym_line_comment, sym_block_comment, - ACTIONS(1506), 15, + ACTIONS(1534), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -154962,7 +154146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1504), 23, + ACTIONS(1532), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -154986,80 +154170,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42882] = 22, + [43309] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4153), 1, - anon_sym_CARET, - ACTIONS(4155), 1, - anon_sym_AMP, - ACTIONS(4157), 1, - anon_sym_PIPE, - ACTIONS(4159), 1, - anon_sym_AMP_AMP, - ACTIONS(4161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, - anon_sym_EQ, - ACTIONS(4273), 1, - anon_sym_DOT_DOT, - ACTIONS(4149), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4163), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4169), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4275), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4371), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1723), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4151), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4167), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4189), 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, - [42969] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - STATE(1724), 2, + STATE(1722), 2, sym_line_comment, sym_block_comment, - ACTIONS(1494), 15, + ACTIONS(1454), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155075,7 +154194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1492), 23, + ACTIONS(1452), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155099,61 +154218,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43022] = 22, + [43362] = 22, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4149), 2, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4373), 2, + ACTIONS(4361), 2, anon_sym_RBRACE, anon_sym_COMMA, - STATE(1725), 2, + STATE(1723), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155164,15 +154283,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43109] = 5, + [43449] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1726), 2, + STATE(1724), 2, sym_line_comment, sym_block_comment, - ACTIONS(1460), 15, + ACTIONS(3921), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155188,7 +154307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1458), 23, + ACTIONS(3919), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155212,15 +154331,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43162] = 5, + [43502] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1727), 2, + STATE(1725), 2, sym_line_comment, sym_block_comment, - ACTIONS(1518), 15, + ACTIONS(3935), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155236,7 +154355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1516), 23, + ACTIONS(3933), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155260,15 +154379,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43215] = 5, + [43555] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1728), 2, + STATE(1726), 2, sym_line_comment, sym_block_comment, - ACTIONS(1522), 15, + ACTIONS(3939), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155284,7 +154403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1520), 23, + ACTIONS(3937), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155308,15 +154427,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43268] = 5, + [43608] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1729), 2, + STATE(1727), 2, sym_line_comment, sym_block_comment, - ACTIONS(1540), 15, + ACTIONS(3981), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155332,7 +154451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1538), 23, + ACTIONS(3977), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155356,103 +154475,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43321] = 23, + [43661] = 23, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4375), 1, + ACTIONS(4363), 1, anon_sym_LBRACE, - ACTIONS(4381), 1, + ACTIONS(4369), 1, anon_sym_CARET, - ACTIONS(4383), 1, + ACTIONS(4371), 1, anon_sym_AMP, - ACTIONS(4385), 1, + ACTIONS(4373), 1, anon_sym_PIPE, - ACTIONS(4387), 1, + ACTIONS(4375), 1, anon_sym_AMP_AMP, - ACTIONS(4389), 1, + ACTIONS(4377), 1, anon_sym_PIPE_PIPE, - ACTIONS(4395), 1, + ACTIONS(4383), 1, anon_sym_EQ, - ACTIONS(4401), 1, + ACTIONS(4389), 1, anon_sym_DOT_DOT, - STATE(400), 1, + STATE(396), 1, sym_match_block, - ACTIONS(4377), 2, + ACTIONS(4365), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4391), 2, + ACTIONS(4379), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4399), 2, + ACTIONS(4387), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4403), 2, + ACTIONS(4391), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1730), 2, + STATE(1728), 2, sym_line_comment, sym_block_comment, - ACTIONS(4379), 3, + ACTIONS(4367), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4397), 4, + ACTIONS(4385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4393), 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, - [43410] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - STATE(1731), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3959), 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(3957), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4381), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155463,68 +154541,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, - [43463] = 22, + [43750] = 22, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4007), 2, + ACTIONS(4015), 2, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(4149), 2, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1732), 2, + STATE(1729), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155535,15 +154606,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43550] = 5, + [43837] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1733), 2, + STATE(1730), 2, sym_line_comment, sym_block_comment, - ACTIONS(4099), 15, + ACTIONS(3851), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155559,7 +154630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4097), 23, + ACTIONS(3849), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155583,80 +154654,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43603] = 22, + [43890] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4153), 1, - anon_sym_CARET, - ACTIONS(4155), 1, - anon_sym_AMP, - ACTIONS(4157), 1, - anon_sym_PIPE, - ACTIONS(4159), 1, - anon_sym_AMP_AMP, - ACTIONS(4161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, - anon_sym_EQ, - ACTIONS(4273), 1, - anon_sym_DOT_DOT, - ACTIONS(4149), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4163), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4169), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4275), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4405), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1734), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4151), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4167), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4189), 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, - [43690] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - STATE(1735), 2, + STATE(1731), 2, sym_line_comment, sym_block_comment, - ACTIONS(1560), 15, + ACTIONS(1516), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155672,7 +154678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1558), 23, + ACTIONS(1514), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155696,61 +154702,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43743] = 22, + [43943] = 22, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(3857), 2, + ACTIONS(3881), 2, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(4149), 2, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1736), 2, + STATE(1732), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155761,58 +154767,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43830] = 21, + [44030] = 21, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4199), 1, + ACTIONS(4193), 1, anon_sym_EQ, - ACTIONS(4407), 1, + ACTIONS(4393), 1, anon_sym_LBRACK, - ACTIONS(4413), 1, + ACTIONS(4399), 1, anon_sym_QMARK, - ACTIONS(4415), 1, + ACTIONS(4401), 1, anon_sym_CARET, - ACTIONS(4417), 1, + ACTIONS(4403), 1, anon_sym_AMP, - ACTIONS(4419), 1, + ACTIONS(4405), 1, anon_sym_PIPE, - ACTIONS(4421), 1, + ACTIONS(4407), 1, anon_sym_AMP_AMP, - ACTIONS(4423), 1, + ACTIONS(4409), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(4417), 1, anon_sym_DOT, - ACTIONS(4433), 1, + ACTIONS(4419), 1, anon_sym_DOT_DOT, - ACTIONS(4437), 1, + ACTIONS(4423), 1, anon_sym_as, - ACTIONS(4409), 2, + ACTIONS(4395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4425), 2, + ACTIONS(4411), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4429), 2, + ACTIONS(4415), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4435), 2, + ACTIONS(4421), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1737), 2, + STATE(1733), 2, sym_line_comment, sym_block_comment, - ACTIONS(4411), 3, + ACTIONS(4397), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4427), 4, + ACTIONS(4413), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4197), 12, + ACTIONS(4191), 12, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_PLUS_EQ, @@ -155825,15 +154831,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43915] = 5, + [44115] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1738), 2, + STATE(1734), 2, sym_line_comment, sym_block_comment, - ACTIONS(1526), 15, + ACTIONS(1542), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155849,7 +154855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1524), 23, + ACTIONS(1540), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155873,12 +154879,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43968] = 5, + [44168] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1739), 2, + STATE(1735), 2, sym_line_comment, sym_block_comment, ACTIONS(1464), 15, @@ -155921,15 +154927,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44021] = 5, + [44221] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1740), 2, + STATE(1736), 2, sym_line_comment, sym_block_comment, - ACTIONS(1472), 15, + ACTIONS(1468), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -155945,7 +154951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1470), 23, + ACTIONS(1466), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -155969,99 +154975,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44074] = 10, + [44274] = 22, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4407), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(4413), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(4431), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(4437), 1, + ACTIONS(3999), 1, anon_sym_as, - STATE(1741), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4411), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3989), 11, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(4143), 1, anon_sym_CARET, + ACTIONS(4145), 1, anon_sym_AMP, + ACTIONS(4147), 1, anon_sym_PIPE, + ACTIONS(4149), 1, + anon_sym_AMP_AMP, + ACTIONS(4151), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4157), 1, + anon_sym_EQ, + ACTIONS(4269), 1, + anon_sym_DOT_DOT, + ACTIONS(4139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3987), 20, - 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, - 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(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [44137] = 13, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(4407), 1, - anon_sym_LBRACK, - ACTIONS(4413), 1, - anon_sym_QMARK, - ACTIONS(4417), 1, - anon_sym_AMP, - ACTIONS(4431), 1, - anon_sym_DOT, - ACTIONS(4437), 1, - anon_sym_as, - ACTIONS(4409), 2, - anon_sym_PLUS, - anon_sym_DASH, ACTIONS(4425), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1742), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1737), 2, sym_line_comment, sym_block_comment, - ACTIONS(4411), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3989), 6, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3987), 20, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4159), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156072,47 +155040,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [44206] = 12, + [44361] = 10, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4407), 1, + ACTIONS(4393), 1, anon_sym_LBRACK, - ACTIONS(4413), 1, + ACTIONS(4399), 1, anon_sym_QMARK, - ACTIONS(4431), 1, + ACTIONS(4417), 1, anon_sym_DOT, - ACTIONS(4437), 1, + ACTIONS(4423), 1, anon_sym_as, - ACTIONS(4409), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4425), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1743), 2, + STATE(1738), 2, sym_line_comment, sym_block_comment, - ACTIONS(4411), 3, + ACTIONS(4397), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3989), 7, + ACTIONS(3997), 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_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3987), 20, + ACTIONS(3995), 20, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_AMP_AMP, @@ -156133,43 +155093,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [44273] = 14, + [44424] = 13, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4407), 1, + ACTIONS(4393), 1, anon_sym_LBRACK, - ACTIONS(4413), 1, + ACTIONS(4399), 1, anon_sym_QMARK, - ACTIONS(4415), 1, + ACTIONS(4403), 1, + anon_sym_AMP, + ACTIONS(4417), 1, + anon_sym_DOT, + ACTIONS(4423), 1, + anon_sym_as, + ACTIONS(4395), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4411), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1739), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4397), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3997), 6, anon_sym_CARET, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3995), 20, + 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, + 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, + [44493] = 12, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4393), 1, + anon_sym_LBRACK, + ACTIONS(4399), 1, + anon_sym_QMARK, ACTIONS(4417), 1, - anon_sym_AMP, - ACTIONS(4431), 1, anon_sym_DOT, - ACTIONS(4437), 1, + ACTIONS(4423), 1, anon_sym_as, - ACTIONS(4409), 2, + ACTIONS(4395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4425), 2, + ACTIONS(4411), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1744), 2, + STATE(1740), 2, sym_line_comment, sym_block_comment, - ACTIONS(4411), 3, + ACTIONS(4397), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3989), 5, + ACTIONS(3997), 7, + anon_sym_CARET, + anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3987), 20, + ACTIONS(3995), 20, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_AMP_AMP, @@ -156190,50 +155204,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [44344] = 17, + [44560] = 14, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4407), 1, + ACTIONS(4393), 1, anon_sym_LBRACK, - ACTIONS(4413), 1, + ACTIONS(4399), 1, anon_sym_QMARK, - ACTIONS(4415), 1, + ACTIONS(4401), 1, anon_sym_CARET, + ACTIONS(4403), 1, + anon_sym_AMP, ACTIONS(4417), 1, + anon_sym_DOT, + ACTIONS(4423), 1, + anon_sym_as, + ACTIONS(4395), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4411), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1741), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4397), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3997), 5, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3995), 20, + 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, + 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, + [44631] = 17, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4393), 1, + anon_sym_LBRACK, + ACTIONS(4399), 1, + anon_sym_QMARK, + ACTIONS(4401), 1, + anon_sym_CARET, + ACTIONS(4403), 1, anon_sym_AMP, - ACTIONS(4419), 1, + ACTIONS(4405), 1, anon_sym_PIPE, - ACTIONS(4431), 1, + ACTIONS(4417), 1, anon_sym_DOT, - ACTIONS(4437), 1, + ACTIONS(4423), 1, anon_sym_as, - ACTIONS(3989), 2, + ACTIONS(3997), 2, anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4409), 2, + ACTIONS(4395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4425), 2, + ACTIONS(4411), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4429), 2, + ACTIONS(4415), 2, anon_sym_GT, anon_sym_LT, - STATE(1745), 2, + STATE(1742), 2, sym_line_comment, sym_block_comment, - ACTIONS(4411), 3, + ACTIONS(4397), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4427), 4, + ACTIONS(4413), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3987), 16, + ACTIONS(3995), 16, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_AMP_AMP, @@ -156250,52 +155321,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [44421] = 18, + [44708] = 18, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4407), 1, + ACTIONS(4393), 1, anon_sym_LBRACK, - ACTIONS(4413), 1, + ACTIONS(4399), 1, anon_sym_QMARK, - ACTIONS(4415), 1, + ACTIONS(4401), 1, anon_sym_CARET, - ACTIONS(4417), 1, + ACTIONS(4403), 1, anon_sym_AMP, - ACTIONS(4419), 1, + ACTIONS(4405), 1, anon_sym_PIPE, - ACTIONS(4421), 1, + ACTIONS(4407), 1, anon_sym_AMP_AMP, - ACTIONS(4431), 1, + ACTIONS(4417), 1, anon_sym_DOT, - ACTIONS(4437), 1, + ACTIONS(4423), 1, anon_sym_as, - ACTIONS(3989), 2, + ACTIONS(3997), 2, anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4409), 2, + ACTIONS(4395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4425), 2, + ACTIONS(4411), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4429), 2, + ACTIONS(4415), 2, anon_sym_GT, anon_sym_LT, - STATE(1746), 2, + STATE(1743), 2, sym_line_comment, sym_block_comment, - ACTIONS(4411), 3, + ACTIONS(4397), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4427), 4, + ACTIONS(4413), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3987), 15, + ACTIONS(3995), 15, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_PIPE_PIPE, @@ -156311,30 +155382,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [44500] = 11, + [44787] = 11, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4407), 1, + ACTIONS(4393), 1, anon_sym_LBRACK, - ACTIONS(4413), 1, + ACTIONS(4399), 1, anon_sym_QMARK, - ACTIONS(4431), 1, + ACTIONS(4417), 1, anon_sym_DOT, - ACTIONS(4437), 1, + ACTIONS(4423), 1, anon_sym_as, - ACTIONS(4409), 2, + ACTIONS(4395), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1747), 2, + STATE(1744), 2, sym_line_comment, sym_block_comment, - ACTIONS(4411), 3, + ACTIONS(4397), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3989), 9, + ACTIONS(3997), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -156344,7 +155415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3987), 20, + ACTIONS(3995), 20, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_AMP_AMP, @@ -156365,58 +155436,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [44565] = 21, + [44852] = 21, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4179), 1, + ACTIONS(4169), 1, anon_sym_EQ, - ACTIONS(4407), 1, + ACTIONS(4393), 1, anon_sym_LBRACK, - ACTIONS(4413), 1, + ACTIONS(4399), 1, anon_sym_QMARK, - ACTIONS(4415), 1, + ACTIONS(4401), 1, anon_sym_CARET, - ACTIONS(4417), 1, + ACTIONS(4403), 1, anon_sym_AMP, - ACTIONS(4419), 1, + ACTIONS(4405), 1, anon_sym_PIPE, - ACTIONS(4421), 1, + ACTIONS(4407), 1, anon_sym_AMP_AMP, - ACTIONS(4423), 1, + ACTIONS(4409), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(4417), 1, anon_sym_DOT, - ACTIONS(4433), 1, + ACTIONS(4419), 1, anon_sym_DOT_DOT, - ACTIONS(4437), 1, + ACTIONS(4423), 1, anon_sym_as, - ACTIONS(4409), 2, + ACTIONS(4395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4425), 2, + ACTIONS(4411), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4429), 2, + ACTIONS(4415), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4435), 2, + ACTIONS(4421), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1748), 2, + STATE(1745), 2, sym_line_comment, sym_block_comment, - ACTIONS(4411), 3, + ACTIONS(4397), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4427), 4, + ACTIONS(4413), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4177), 12, + ACTIONS(4167), 12, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_PLUS_EQ, @@ -156429,58 +155500,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44650] = 21, + [44937] = 21, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4187), 1, + ACTIONS(4173), 1, anon_sym_EQ, - ACTIONS(4407), 1, + ACTIONS(4393), 1, anon_sym_LBRACK, - ACTIONS(4413), 1, + ACTIONS(4399), 1, anon_sym_QMARK, - ACTIONS(4415), 1, + ACTIONS(4401), 1, anon_sym_CARET, - ACTIONS(4417), 1, + ACTIONS(4403), 1, anon_sym_AMP, - ACTIONS(4419), 1, + ACTIONS(4405), 1, anon_sym_PIPE, - ACTIONS(4421), 1, + ACTIONS(4407), 1, anon_sym_AMP_AMP, - ACTIONS(4423), 1, + ACTIONS(4409), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(4417), 1, anon_sym_DOT, - ACTIONS(4433), 1, + ACTIONS(4419), 1, anon_sym_DOT_DOT, - ACTIONS(4437), 1, + ACTIONS(4423), 1, anon_sym_as, - ACTIONS(4409), 2, + ACTIONS(4395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4425), 2, + ACTIONS(4411), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4429), 2, + ACTIONS(4415), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4435), 2, + ACTIONS(4421), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1749), 2, + STATE(1746), 2, sym_line_comment, sym_block_comment, - ACTIONS(4411), 3, + ACTIONS(4397), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4427), 4, + ACTIONS(4413), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4185), 12, + ACTIONS(4171), 12, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_PLUS_EQ, @@ -156493,44 +155564,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44735] = 15, + [45022] = 15, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4407), 1, + ACTIONS(4393), 1, anon_sym_LBRACK, - ACTIONS(4413), 1, + ACTIONS(4399), 1, anon_sym_QMARK, - ACTIONS(4415), 1, + ACTIONS(4401), 1, anon_sym_CARET, - ACTIONS(4417), 1, + ACTIONS(4403), 1, anon_sym_AMP, - ACTIONS(4419), 1, + ACTIONS(4405), 1, anon_sym_PIPE, - ACTIONS(4431), 1, + ACTIONS(4417), 1, anon_sym_DOT, - ACTIONS(4437), 1, + ACTIONS(4423), 1, anon_sym_as, - ACTIONS(4409), 2, + ACTIONS(4395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4425), 2, + ACTIONS(4411), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1750), 2, + STATE(1747), 2, sym_line_comment, sym_block_comment, - ACTIONS(4411), 3, + ACTIONS(4397), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3989), 4, + ACTIONS(3997), 4, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3987), 20, + ACTIONS(3995), 20, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_AMP_AMP, @@ -156551,54 +155622,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [44808] = 19, + [45095] = 19, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4407), 1, + ACTIONS(4393), 1, anon_sym_LBRACK, - ACTIONS(4413), 1, + ACTIONS(4399), 1, anon_sym_QMARK, - ACTIONS(4415), 1, + ACTIONS(4401), 1, anon_sym_CARET, - ACTIONS(4417), 1, + ACTIONS(4403), 1, anon_sym_AMP, - ACTIONS(4419), 1, + ACTIONS(4405), 1, anon_sym_PIPE, - ACTIONS(4421), 1, + ACTIONS(4407), 1, anon_sym_AMP_AMP, - ACTIONS(4423), 1, + ACTIONS(4409), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(4417), 1, anon_sym_DOT, - ACTIONS(4437), 1, + ACTIONS(4423), 1, anon_sym_as, - ACTIONS(4165), 2, + ACTIONS(4177), 2, anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4409), 2, + ACTIONS(4395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4425), 2, + ACTIONS(4411), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4429), 2, + ACTIONS(4415), 2, anon_sym_GT, anon_sym_LT, - STATE(1751), 2, + STATE(1748), 2, sym_line_comment, sym_block_comment, - ACTIONS(4411), 3, + ACTIONS(4397), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4427), 4, + ACTIONS(4413), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4147), 14, + ACTIONS(4175), 14, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_PLUS_EQ, @@ -156613,15 +155684,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [44889] = 5, + [45176] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1752), 2, + STATE(1749), 2, sym_line_comment, sym_block_comment, - ACTIONS(3963), 15, + ACTIONS(4053), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156637,7 +155708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3961), 23, + ACTIONS(4051), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156661,15 +155732,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44942] = 5, + [45229] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1753), 2, + STATE(1750), 2, sym_line_comment, sym_block_comment, - ACTIONS(3981), 15, + ACTIONS(4057), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156685,7 +155756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3979), 23, + ACTIONS(4055), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156709,61 +155780,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44995] = 22, + [45282] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + STATE(1751), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3955), 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(3953), 23, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(3905), 1, + anon_sym_EQ_GT, anon_sym_QMARK, - ACTIONS(3907), 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, + [45335] = 22, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3925), 1, + anon_sym_LBRACK, + ACTIONS(3929), 1, + anon_sym_QMARK, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4039), 2, + ACTIONS(4065), 2, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(4149), 2, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1754), 2, + STATE(1752), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156774,15 +155893,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45082] = 5, + [45422] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1755), 2, + STATE(1753), 2, sym_line_comment, sym_block_comment, - ACTIONS(1486), 15, + ACTIONS(1492), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156798,7 +155917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1484), 23, + ACTIONS(1490), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156822,15 +155941,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45135] = 5, + [45475] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1756), 2, + STATE(1754), 2, sym_line_comment, sym_block_comment, - ACTIONS(1490), 15, + ACTIONS(1488), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156846,7 +155965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1488), 23, + ACTIONS(1486), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156870,15 +155989,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45188] = 5, + [45528] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1757), 2, + STATE(1755), 2, sym_line_comment, sym_block_comment, - ACTIONS(1498), 15, + ACTIONS(3963), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156894,7 +156013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1496), 23, + ACTIONS(3961), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156918,15 +156037,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45241] = 5, + [45581] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1758), 2, + STATE(1756), 2, sym_line_comment, sym_block_comment, - ACTIONS(4051), 15, + ACTIONS(1500), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156942,7 +156061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4049), 23, + ACTIONS(1498), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -156966,15 +156085,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45294] = 5, + [45634] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1759), 2, + STATE(1757), 2, sym_line_comment, sym_block_comment, - ACTIONS(3851), 15, + ACTIONS(4107), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -156990,7 +156109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3849), 23, + ACTIONS(4105), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157014,15 +156133,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45347] = 5, + [45687] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1760), 2, + STATE(1758), 2, sym_line_comment, sym_block_comment, - ACTIONS(4071), 15, + ACTIONS(3875), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157038,7 +156157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4069), 23, + ACTIONS(3873), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157062,15 +156181,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45400] = 5, + [45740] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1761), 2, + STATE(1759), 2, sym_line_comment, sym_block_comment, - ACTIONS(1556), 15, + ACTIONS(1480), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157086,7 +156205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1554), 23, + ACTIONS(1478), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157110,15 +156229,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45453] = 5, + [45793] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1762), 2, + STATE(1760), 2, sym_line_comment, sym_block_comment, - ACTIONS(1468), 15, + ACTIONS(1476), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157134,7 +156253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1466), 23, + ACTIONS(1474), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157158,15 +156277,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45506] = 5, + [45846] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1763), 2, + STATE(1761), 2, sym_line_comment, sym_block_comment, - ACTIONS(1478), 15, + ACTIONS(1530), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157182,7 +156301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1476), 23, + ACTIONS(1528), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157206,102 +156325,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45559] = 22, + [45899] = 22, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4019), 2, + ACTIONS(4031), 2, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(4149), 2, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1764), 2, + STATE(1762), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 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, - [45646] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - STATE(1765), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1548), 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(1546), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157312,22 +156390,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, - [45699] = 5, + [45986] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1766), 2, + STATE(1763), 2, sym_line_comment, sym_block_comment, - ACTIONS(1482), 15, + ACTIONS(1458), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157343,7 +156414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1480), 23, + ACTIONS(1456), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157367,15 +156438,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45752] = 5, + [46039] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1767), 2, + STATE(1764), 2, sym_line_comment, sym_block_comment, - ACTIONS(1544), 15, + ACTIONS(1484), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157391,7 +156462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1542), 23, + ACTIONS(1482), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157415,15 +156486,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45805] = 5, + [46092] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1768), 2, + STATE(1765), 2, sym_line_comment, sym_block_comment, - ACTIONS(1004), 15, + ACTIONS(1538), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157439,7 +156510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1006), 23, + ACTIONS(1536), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157463,81 +156534,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45858] = 23, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(342), 1, - anon_sym_RBRACE, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4153), 1, - anon_sym_CARET, - ACTIONS(4155), 1, - anon_sym_AMP, - ACTIONS(4157), 1, - anon_sym_PIPE, - ACTIONS(4159), 1, - anon_sym_AMP_AMP, - ACTIONS(4161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, - anon_sym_EQ, - ACTIONS(4273), 1, - anon_sym_DOT_DOT, - ACTIONS(4439), 1, - anon_sym_SEMI, - ACTIONS(4149), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4163), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4169), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4275), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1769), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4151), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4167), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4189), 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, - [45947] = 5, + [46145] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1770), 2, + STATE(1766), 2, sym_line_comment, sym_block_comment, - ACTIONS(1012), 15, + ACTIONS(1038), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157553,7 +156558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1014), 23, + ACTIONS(1040), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157577,15 +156582,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46000] = 5, + [46198] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1771), 2, + STATE(1767), 2, sym_line_comment, sym_block_comment, - ACTIONS(1510), 15, + ACTIONS(1042), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157601,7 +156606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1508), 23, + ACTIONS(1044), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157625,15 +156630,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46053] = 5, + [46251] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1772), 2, + STATE(1768), 2, sym_line_comment, sym_block_comment, - ACTIONS(1016), 15, + ACTIONS(1512), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157649,7 +156654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1018), 23, + ACTIONS(1510), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157673,15 +156678,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46106] = 5, + [46304] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1773), 2, + STATE(1769), 2, sym_line_comment, sym_block_comment, - ACTIONS(4055), 15, + ACTIONS(958), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157697,7 +156702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4053), 23, + ACTIONS(960), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157721,61 +156726,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46159] = 22, + [46357] = 22, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4407), 1, + ACTIONS(4393), 1, anon_sym_LBRACK, - ACTIONS(4413), 1, + ACTIONS(4399), 1, anon_sym_QMARK, - ACTIONS(4415), 1, + ACTIONS(4401), 1, anon_sym_CARET, - ACTIONS(4417), 1, + ACTIONS(4403), 1, anon_sym_AMP, - ACTIONS(4419), 1, + ACTIONS(4405), 1, anon_sym_PIPE, - ACTIONS(4421), 1, + ACTIONS(4407), 1, anon_sym_AMP_AMP, - ACTIONS(4423), 1, + ACTIONS(4409), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(4417), 1, anon_sym_DOT, - ACTIONS(4433), 1, + ACTIONS(4419), 1, anon_sym_DOT_DOT, - ACTIONS(4437), 1, + ACTIONS(4423), 1, anon_sym_as, - ACTIONS(4443), 1, + ACTIONS(4429), 1, anon_sym_EQ, - ACTIONS(4007), 2, + ACTIONS(4015), 2, anon_sym_LPAREN, anon_sym_EQ_GT, - ACTIONS(4409), 2, + ACTIONS(4395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4425), 2, + ACTIONS(4411), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4429), 2, + ACTIONS(4415), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4435), 2, + ACTIONS(4421), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1774), 2, + STATE(1770), 2, sym_line_comment, sym_block_comment, - ACTIONS(4411), 3, + ACTIONS(4397), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4427), 4, + ACTIONS(4413), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4441), 10, + ACTIONS(4427), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157786,15 +156791,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46246] = 5, + [46444] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1775), 2, + STATE(1771), 2, sym_line_comment, sym_block_comment, - ACTIONS(1042), 15, + ACTIONS(962), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157810,7 +156815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1044), 23, + ACTIONS(964), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157834,61 +156839,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46299] = 22, + [46497] = 23, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4407), 1, + ACTIONS(342), 1, + anon_sym_RBRACE, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(4413), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(4415), 1, + ACTIONS(3931), 1, + anon_sym_DOT, + ACTIONS(3999), 1, + anon_sym_as, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4417), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4419), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4421), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4423), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_DOT, - ACTIONS(4433), 1, - anon_sym_DOT_DOT, - ACTIONS(4437), 1, - anon_sym_as, - ACTIONS(4443), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(3857), 2, - anon_sym_LPAREN, - anon_sym_EQ_GT, - ACTIONS(4409), 2, + ACTIONS(4269), 1, + anon_sym_DOT_DOT, + ACTIONS(4431), 1, + anon_sym_SEMI, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4425), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4429), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4435), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1776), 2, + STATE(1772), 2, sym_line_comment, sym_block_comment, - ACTIONS(4411), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4427), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4441), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157899,37 +156905,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46386] = 5, + [46586] = 22, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1777), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1530), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4393), 1, + anon_sym_LBRACK, + ACTIONS(4399), 1, + anon_sym_QMARK, + ACTIONS(4401), 1, anon_sym_CARET, + ACTIONS(4403), 1, anon_sym_AMP, + ACTIONS(4405), 1, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, + ACTIONS(4407), 1, + anon_sym_AMP_AMP, + ACTIONS(4409), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4417), 1, anon_sym_DOT, + ACTIONS(4419), 1, anon_sym_DOT_DOT, - ACTIONS(1528), 23, + ACTIONS(4423), 1, + anon_sym_as, + ACTIONS(4429), 1, + anon_sym_EQ, + ACTIONS(3881), 2, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4395), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4411), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4415), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4421), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1773), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4397), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4413), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4427), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157940,22 +156970,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, - [46439] = 5, + [46673] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1778), 2, + STATE(1774), 2, sym_line_comment, sym_block_comment, - ACTIONS(958), 15, + ACTIONS(1548), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -157971,7 +156994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(960), 23, + ACTIONS(1546), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -157995,15 +157018,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46492] = 5, + [46726] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1779), 2, + STATE(1775), 2, sym_line_comment, sym_block_comment, - ACTIONS(1514), 15, + ACTIONS(984), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158019,7 +157042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1512), 23, + ACTIONS(986), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158043,15 +157066,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46545] = 5, + [46779] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1780), 2, + STATE(1776), 2, sym_line_comment, sym_block_comment, - ACTIONS(3869), 15, + ACTIONS(1472), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158067,7 +157090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3867), 23, + ACTIONS(1470), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158091,102 +157114,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46598] = 22, + [46832] = 22, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4407), 1, + ACTIONS(4393), 1, anon_sym_LBRACK, - ACTIONS(4413), 1, + ACTIONS(4399), 1, anon_sym_QMARK, - ACTIONS(4415), 1, + ACTIONS(4401), 1, anon_sym_CARET, - ACTIONS(4417), 1, + ACTIONS(4403), 1, anon_sym_AMP, - ACTIONS(4419), 1, + ACTIONS(4405), 1, anon_sym_PIPE, - ACTIONS(4421), 1, + ACTIONS(4407), 1, anon_sym_AMP_AMP, - ACTIONS(4423), 1, + ACTIONS(4409), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(4417), 1, anon_sym_DOT, - ACTIONS(4433), 1, + ACTIONS(4419), 1, anon_sym_DOT_DOT, - ACTIONS(4437), 1, + ACTIONS(4423), 1, anon_sym_as, - ACTIONS(4443), 1, + ACTIONS(4429), 1, anon_sym_EQ, - ACTIONS(4039), 2, + ACTIONS(4065), 2, anon_sym_LPAREN, anon_sym_EQ_GT, - ACTIONS(4409), 2, + ACTIONS(4395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4425), 2, + ACTIONS(4411), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4429), 2, + ACTIONS(4415), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4435), 2, + ACTIONS(4421), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1781), 2, + STATE(1777), 2, sym_line_comment, sym_block_comment, - ACTIONS(4411), 3, + ACTIONS(4397), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4427), 4, + ACTIONS(4413), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4441), 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, - [46685] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - STATE(1782), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3511), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3509), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4427), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158197,68 +157179,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, - [46738] = 22, + [46919] = 22, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4407), 1, + ACTIONS(4393), 1, anon_sym_LBRACK, - ACTIONS(4413), 1, + ACTIONS(4399), 1, anon_sym_QMARK, - ACTIONS(4415), 1, + ACTIONS(4401), 1, anon_sym_CARET, - ACTIONS(4417), 1, + ACTIONS(4403), 1, anon_sym_AMP, - ACTIONS(4419), 1, + ACTIONS(4405), 1, anon_sym_PIPE, - ACTIONS(4421), 1, + ACTIONS(4407), 1, anon_sym_AMP_AMP, - ACTIONS(4423), 1, + ACTIONS(4409), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(4417), 1, anon_sym_DOT, - ACTIONS(4433), 1, + ACTIONS(4419), 1, anon_sym_DOT_DOT, - ACTIONS(4437), 1, + ACTIONS(4423), 1, anon_sym_as, - ACTIONS(4443), 1, + ACTIONS(4429), 1, anon_sym_EQ, - ACTIONS(4019), 2, + ACTIONS(4031), 2, anon_sym_LPAREN, anon_sym_EQ_GT, - ACTIONS(4409), 2, + ACTIONS(4395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4425), 2, + ACTIONS(4411), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4429), 2, + ACTIONS(4415), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4435), 2, + ACTIONS(4421), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1783), 2, + STATE(1778), 2, sym_line_comment, sym_block_comment, - ACTIONS(4411), 3, + ACTIONS(4397), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4427), 4, + ACTIONS(4413), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4441), 10, + ACTIONS(4427), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158269,15 +157244,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46825] = 5, + [47006] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1784), 2, + STATE(1779), 2, sym_line_comment, sym_block_comment, - ACTIONS(1134), 15, + ACTIONS(3967), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158293,7 +157268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1136), 23, + ACTIONS(3965), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158317,15 +157292,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46878] = 5, + [47059] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1785), 2, + STATE(1780), 2, sym_line_comment, sym_block_comment, - ACTIONS(1054), 15, + ACTIONS(4071), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158341,7 +157316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1056), 23, + ACTIONS(4069), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158365,126 +157340,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46931] = 22, + [47112] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4153), 1, - anon_sym_CARET, - ACTIONS(4155), 1, - anon_sym_AMP, - ACTIONS(4157), 1, - anon_sym_PIPE, - ACTIONS(4159), 1, - anon_sym_AMP_AMP, - ACTIONS(4161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, - anon_sym_EQ, - ACTIONS(4273), 1, - anon_sym_DOT_DOT, - ACTIONS(4149), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4163), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4169), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4275), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4445), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1786), 2, + STATE(1781), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4029), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4189), 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, - [47018] = 22, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4153), 1, anon_sym_CARET, - ACTIONS(4155), 1, anon_sym_AMP, - ACTIONS(4157), 1, anon_sym_PIPE, - ACTIONS(4159), 1, - anon_sym_AMP_AMP, - ACTIONS(4161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, - anon_sym_EQ, - ACTIONS(4273), 1, - anon_sym_DOT_DOT, - ACTIONS(4149), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4163), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4447), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1787), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4151), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4167), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4189), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4027), 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, @@ -158495,62 +157381,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47105] = 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, + [47165] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(294), 1, - anon_sym_RBRACE, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4153), 1, + STATE(1782), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3571), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4155), 1, anon_sym_AMP, - ACTIONS(4157), 1, anon_sym_PIPE, - ACTIONS(4159), 1, - anon_sym_AMP_AMP, - ACTIONS(4161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, - anon_sym_EQ, - ACTIONS(4273), 1, - anon_sym_DOT_DOT, - ACTIONS(4439), 1, - anon_sym_SEMI, - ACTIONS(4149), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4163), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1788), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4151), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4167), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4189), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3569), 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, @@ -158561,61 +157429,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47194] = 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, + [47218] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4153), 1, + STATE(1783), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1294), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4155), 1, anon_sym_AMP, - ACTIONS(4157), 1, anon_sym_PIPE, - ACTIONS(4159), 1, - anon_sym_AMP_AMP, - ACTIONS(4161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, - anon_sym_EQ, - ACTIONS(4273), 1, - anon_sym_DOT_DOT, - ACTIONS(4149), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4163), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4449), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1789), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4151), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4167), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4189), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1296), 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, @@ -158626,15 +157477,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47281] = 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, + [47271] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1790), 2, + STATE(1784), 2, sym_line_comment, sym_block_comment, - ACTIONS(3973), 15, + ACTIONS(1336), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158650,7 +157508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3971), 23, + ACTIONS(1338), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -158674,121 +157532,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47334] = 16, - ACTIONS(29), 1, - anon_sym_LT, + [47324] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4295), 1, - sym_identifier, - ACTIONS(4297), 1, - anon_sym_LBRACE, - ACTIONS(4301), 1, - anon_sym_STAR, - ACTIONS(4307), 1, - anon_sym_COLON_COLON, - ACTIONS(4311), 1, - sym_metavariable, - STATE(2606), 1, - sym_scoped_identifier, - STATE(3502), 1, - sym_bracketed_type, - STATE(3606), 1, - sym_generic_type_with_turbofish, - STATE(3813), 1, - sym__use_clause, - STATE(1791), 2, + STATE(1785), 2, sym_line_comment, sym_block_comment, - ACTIONS(4309), 3, - sym_self, - sym_super, - sym_crate, - STATE(3144), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4303), 21, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_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, - anon_sym_raw, - [47409] = 23, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4041), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4155), 1, anon_sym_AMP, - ACTIONS(4157), 1, anon_sym_PIPE, - ACTIONS(4159), 1, - anon_sym_AMP_AMP, - ACTIONS(4161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, - anon_sym_EQ, - ACTIONS(4273), 1, - anon_sym_DOT_DOT, - ACTIONS(4451), 1, - anon_sym_RPAREN, - ACTIONS(4453), 1, - anon_sym_COMMA, - ACTIONS(4149), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4163), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1792), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4151), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4167), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4189), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4039), 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, @@ -158799,62 +157573,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47498] = 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, + [47377] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(298), 1, - anon_sym_RBRACE, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4153), 1, + STATE(1786), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3993), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4155), 1, anon_sym_AMP, - ACTIONS(4157), 1, anon_sym_PIPE, - ACTIONS(4159), 1, - anon_sym_AMP_AMP, - ACTIONS(4161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, - anon_sym_EQ, - ACTIONS(4273), 1, - anon_sym_DOT_DOT, - ACTIONS(4439), 1, - anon_sym_SEMI, - ACTIONS(4149), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4163), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1793), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4151), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4167), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4189), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3991), 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, @@ -158865,15 +157621,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47587] = 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, + [47430] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1794), 2, + ACTIONS(4393), 1, + anon_sym_LBRACK, + ACTIONS(4399), 1, + anon_sym_QMARK, + ACTIONS(4417), 1, + anon_sym_DOT, + STATE(1787), 2, sym_line_comment, sym_block_comment, - ACTIONS(3977), 15, + ACTIONS(4049), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -158887,13 +157656,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(3975), 23, + ACTIONS(4047), 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, @@ -158913,62 +157679,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47640] = 23, + [47489] = 22, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4381), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4383), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4385), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4387), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4389), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4395), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4401), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4455), 1, - anon_sym_LBRACE, - STATE(1480), 1, - sym_match_block, - ACTIONS(4377), 2, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4391), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4399), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4403), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1795), 2, + ACTIONS(4433), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1788), 2, sym_line_comment, sym_block_comment, - ACTIONS(4379), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4397), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4393), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158979,61 +157744,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47729] = 22, + [47576] = 23, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4381), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4383), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4385), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4387), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4389), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4395), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4457), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4007), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4377), 2, + ACTIONS(4435), 1, + anon_sym_RPAREN, + ACTIONS(4437), 1, + anon_sym_COMMA, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4391), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4399), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4459), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1796), 2, + STATE(1789), 2, sym_line_comment, sym_block_comment, - ACTIONS(4379), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4397), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4393), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159044,62 +157810,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47816] = 23, + [47665] = 23, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1328), 1, - anon_sym_RPAREN, - ACTIONS(3901), 1, + ACTIONS(298), 1, + anon_sym_RBRACE, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4461), 1, - anon_sym_COMMA, - ACTIONS(4149), 2, + ACTIONS(4431), 1, + anon_sym_SEMI, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1797), 2, + STATE(1790), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159110,37 +157876,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47905] = 5, + [47754] = 22, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1798), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4115), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3925), 1, + anon_sym_LBRACK, + ACTIONS(3929), 1, + anon_sym_QMARK, + ACTIONS(3931), 1, + anon_sym_DOT, + ACTIONS(3999), 1, + anon_sym_as, + ACTIONS(4143), 1, anon_sym_CARET, + ACTIONS(4145), 1, anon_sym_AMP, + ACTIONS(4147), 1, anon_sym_PIPE, + ACTIONS(4149), 1, + anon_sym_AMP_AMP, + ACTIONS(4151), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4157), 1, + anon_sym_EQ, + ACTIONS(4269), 1, + anon_sym_DOT_DOT, + ACTIONS(4139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(4113), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4165), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4439), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1791), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4141), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4159), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159151,69 +157941,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, - [47958] = 23, + [47841] = 23, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(300), 1, + ACTIONS(294), 1, anon_sym_RBRACE, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4439), 1, + ACTIONS(4431), 1, anon_sym_SEMI, - ACTIONS(4149), 2, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1799), 2, + STATE(1792), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159224,62 +158007,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48047] = 23, + [47930] = 22, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4463), 1, - anon_sym_SEMI, - ACTIONS(4465), 1, - anon_sym_else, - ACTIONS(4149), 2, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1800), 2, + ACTIONS(4441), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1793), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159290,60 +158072,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48136] = 21, + [48017] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4247), 1, + STATE(1794), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3893), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4249), 1, anon_sym_AMP, - ACTIONS(4251), 1, anon_sym_PIPE, - ACTIONS(4255), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4261), 1, - anon_sym_EQ, - ACTIONS(4267), 1, - anon_sym_DOT_DOT, - ACTIONS(4243), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4257), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4265), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4269), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3891), 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(1801), 2, + anon_sym_as, + [48070] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1795), 2, sym_line_comment, sym_block_comment, - ACTIONS(4245), 3, + ACTIONS(4079), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4467), 3, - anon_sym_LBRACE, + 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(4077), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, - anon_sym_SQUOTE, - ACTIONS(4263), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4259), 10, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159354,62 +158161,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48221] = 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, + [48123] = 23, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4369), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4371), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4373), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4375), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4377), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4383), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4389), 1, anon_sym_DOT_DOT, - ACTIONS(4469), 1, - anon_sym_RBRACE, - ACTIONS(4471), 1, - anon_sym_COMMA, - ACTIONS(4149), 2, + ACTIONS(4443), 1, + anon_sym_LBRACE, + STATE(1539), 1, + sym_match_block, + ACTIONS(4365), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4379), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4387), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4391), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1802), 2, + STATE(1796), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4367), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4381), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159420,15 +158234,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48310] = 5, + [48212] = 16, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1803), 2, + ACTIONS(4283), 1, + sym_identifier, + ACTIONS(4285), 1, + anon_sym_LBRACE, + ACTIONS(4289), 1, + anon_sym_STAR, + ACTIONS(4295), 1, + anon_sym_COLON_COLON, + ACTIONS(4299), 1, + sym_metavariable, + STATE(2585), 1, + sym_scoped_identifier, + STATE(3605), 1, + sym_generic_type_with_turbofish, + STATE(3624), 1, + sym__use_clause, + STATE(3770), 1, + sym_bracketed_type, + STATE(1797), 2, sym_line_comment, sym_block_comment, - ACTIONS(3995), 15, + ACTIONS(4297), 3, + sym_self, + sym_super, + sym_crate, + STATE(3142), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4291), 21, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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, + anon_sym_raw, + [48287] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1798), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3985), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -159444,7 +158317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3993), 23, + ACTIONS(3983), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -159468,37 +158341,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48363] = 5, + [48340] = 23, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1804), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4091), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(300), 1, + anon_sym_RBRACE, + ACTIONS(3925), 1, + anon_sym_LBRACK, + ACTIONS(3929), 1, + anon_sym_QMARK, + ACTIONS(3931), 1, + anon_sym_DOT, + ACTIONS(3999), 1, + anon_sym_as, + ACTIONS(4143), 1, anon_sym_CARET, + ACTIONS(4145), 1, anon_sym_AMP, + ACTIONS(4147), 1, anon_sym_PIPE, + ACTIONS(4149), 1, + anon_sym_AMP_AMP, + ACTIONS(4151), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4157), 1, + anon_sym_EQ, + ACTIONS(4269), 1, + anon_sym_DOT_DOT, + ACTIONS(4431), 1, + anon_sym_SEMI, + ACTIONS(4139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(4089), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4165), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1799), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4141), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4159), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159509,69 +158407,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, - [48416] = 23, + [48429] = 22, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1198), 1, - anon_sym_RPAREN, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4369), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4371), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4373), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4375), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4377), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4383), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4445), 1, anon_sym_DOT_DOT, - ACTIONS(4461), 1, - anon_sym_COMMA, - ACTIONS(4149), 2, + ACTIONS(4015), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4365), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4379), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4387), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4391), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1805), 2, + STATE(1800), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4367), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4381), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159582,37 +158472,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48505] = 5, + [48516] = 23, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1806), 2, + ACTIONS(1342), 1, + anon_sym_RPAREN, + ACTIONS(3925), 1, + anon_sym_LBRACK, + ACTIONS(3929), 1, + anon_sym_QMARK, + ACTIONS(3931), 1, + anon_sym_DOT, + ACTIONS(3999), 1, + anon_sym_as, + ACTIONS(4143), 1, + anon_sym_CARET, + ACTIONS(4145), 1, + anon_sym_AMP, + ACTIONS(4147), 1, + anon_sym_PIPE, + ACTIONS(4149), 1, + anon_sym_AMP_AMP, + ACTIONS(4151), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4157), 1, + anon_sym_EQ, + ACTIONS(4269), 1, + anon_sym_DOT_DOT, + ACTIONS(4447), 1, + anon_sym_COMMA, + ACTIONS(4139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4153), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4161), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4165), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1801), 2, sym_line_comment, sym_block_comment, - ACTIONS(3881), 15, - anon_sym_PLUS, + ACTIONS(4141), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4159), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4155), 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, + [48605] = 23, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3925), 1, + anon_sym_LBRACK, + ACTIONS(3929), 1, + anon_sym_QMARK, + ACTIONS(3931), 1, + anon_sym_DOT, + ACTIONS(3999), 1, + anon_sym_as, + ACTIONS(4143), 1, anon_sym_CARET, + ACTIONS(4145), 1, anon_sym_AMP, + ACTIONS(4147), 1, anon_sym_PIPE, + ACTIONS(4149), 1, + anon_sym_AMP_AMP, + ACTIONS(4151), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4157), 1, + anon_sym_EQ, + ACTIONS(4269), 1, + anon_sym_DOT_DOT, + ACTIONS(4449), 1, + anon_sym_SEMI, + ACTIONS(4451), 1, + anon_sym_else, + ACTIONS(4139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3879), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4165), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1802), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4141), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4159), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159623,22 +158604,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [48558] = 5, + [48694] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1807), 2, + ACTIONS(4393), 1, + anon_sym_LBRACK, + ACTIONS(4399), 1, + anon_sym_QMARK, + ACTIONS(4417), 1, + anon_sym_DOT, + ACTIONS(4423), 1, + anon_sym_as, + STATE(1803), 2, sym_line_comment, sym_block_comment, - ACTIONS(4095), 15, + ACTIONS(3997), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -159652,13 +158634,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(4093), 23, + ACTIONS(3995), 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, @@ -159677,38 +158656,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [48611] = 5, + [48755] = 23, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1808), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3393), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3925), 1, + anon_sym_LBRACK, + ACTIONS(3929), 1, + anon_sym_QMARK, + ACTIONS(3931), 1, + anon_sym_DOT, + ACTIONS(3999), 1, + anon_sym_as, + ACTIONS(4143), 1, anon_sym_CARET, + ACTIONS(4145), 1, anon_sym_AMP, + ACTIONS(4147), 1, anon_sym_PIPE, + ACTIONS(4149), 1, + anon_sym_AMP_AMP, + ACTIONS(4151), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4157), 1, + anon_sym_EQ, + ACTIONS(4269), 1, + anon_sym_DOT_DOT, + ACTIONS(4453), 1, + anon_sym_RBRACE, + ACTIONS(4455), 1, + anon_sym_COMMA, + ACTIONS(4139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3395), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4165), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1804), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4141), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4159), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159719,69 +158722,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, - [48664] = 23, + [48844] = 23, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(1128), 1, + anon_sym_RPAREN, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4473), 1, - anon_sym_SEMI, - ACTIONS(4475), 1, - anon_sym_else, - ACTIONS(4149), 2, + ACTIONS(4447), 1, + anon_sym_COMMA, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1809), 2, + STATE(1805), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159792,15 +158788,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48753] = 5, + [48933] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1810), 2, + STATE(1806), 2, sym_line_comment, sym_block_comment, - ACTIONS(3525), 15, + ACTIONS(3807), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -159816,7 +158812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3523), 23, + ACTIONS(3805), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -159840,62 +158836,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48806] = 23, + [48986] = 21, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(302), 1, - anon_sym_RBRACE, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4241), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4243), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4245), 1, anon_sym_PIPE, - ACTIONS(4159), 1, - anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4249), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4255), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4261), 1, anon_sym_DOT_DOT, - ACTIONS(4439), 1, - anon_sym_SEMI, - ACTIONS(4149), 2, + ACTIONS(4237), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4251), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4259), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4263), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1811), 2, + STATE(1807), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4239), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4457), 3, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_SQUOTE, + ACTIONS(4257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4253), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159906,110 +158900,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48895] = 5, + [49071] = 23, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1812), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4025), 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(4023), 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, - [48948] = 23, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(1212), 1, - anon_sym_RPAREN, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, + ACTIONS(4459), 1, + anon_sym_SEMI, ACTIONS(4461), 1, - anon_sym_COMMA, - ACTIONS(4149), 2, + anon_sym_else, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1813), 2, + STATE(1808), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160020,15 +158966,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49037] = 5, + [49160] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1814), 2, + STATE(1809), 2, sym_line_comment, sym_block_comment, - ACTIONS(3835), 15, + ACTIONS(4007), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -160044,7 +158990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3833), 23, + ACTIONS(4005), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -160068,62 +159014,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49090] = 23, + [49213] = 23, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(302), 1, + anon_sym_RBRACE, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4477), 1, + ACTIONS(4431), 1, anon_sym_SEMI, - ACTIONS(4479), 1, - anon_sym_else, - ACTIONS(4149), 2, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1815), 2, + STATE(1810), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160134,62 +159080,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49179] = 23, + [49302] = 23, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(1138), 1, + anon_sym_RPAREN, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4439), 1, - anon_sym_SEMI, - ACTIONS(4481), 1, - anon_sym_RBRACE, - ACTIONS(4149), 2, + ACTIONS(4447), 1, + anon_sym_COMMA, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1816), 2, + STATE(1811), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160200,15 +159146,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49268] = 5, + [49391] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1817), 2, + STATE(1812), 2, sym_line_comment, sym_block_comment, - ACTIONS(3889), 15, + ACTIONS(3385), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -160224,7 +159170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3887), 23, + ACTIONS(3387), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -160248,15 +159194,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49321] = 5, + [49444] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1818), 2, + STATE(1813), 2, sym_line_comment, sym_block_comment, - ACTIONS(3533), 15, + ACTIONS(3525), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -160272,7 +159218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3531), 23, + ACTIONS(3523), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -160296,62 +159242,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49374] = 23, + [49497] = 23, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4461), 1, - anon_sym_COMMA, - ACTIONS(4483), 1, - anon_sym_RPAREN, - ACTIONS(4149), 2, + ACTIONS(4463), 1, + anon_sym_SEMI, + ACTIONS(4465), 1, + anon_sym_else, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1819), 2, + STATE(1814), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160362,62 +159308,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49463] = 23, + [49586] = 23, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4485), 1, + ACTIONS(4431), 1, anon_sym_SEMI, - ACTIONS(4487), 1, - anon_sym_else, - ACTIONS(4149), 2, + ACTIONS(4467), 1, + anon_sym_RBRACE, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1820), 2, + STATE(1815), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160428,61 +159374,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49552] = 22, + [49675] = 23, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, + ACTIONS(4147), 1, + anon_sym_PIPE, + ACTIONS(4149), 1, + anon_sym_AMP_AMP, + ACTIONS(4151), 1, + anon_sym_PIPE_PIPE, ACTIONS(4157), 1, + anon_sym_EQ, + ACTIONS(4269), 1, + anon_sym_DOT_DOT, + ACTIONS(4447), 1, + anon_sym_COMMA, + ACTIONS(4469), 1, + anon_sym_RPAREN, + ACTIONS(4139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4153), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4161), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4165), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1816), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4141), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4159), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4155), 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, + [49764] = 23, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3925), 1, + anon_sym_LBRACK, + ACTIONS(3929), 1, + anon_sym_QMARK, + ACTIONS(3931), 1, + anon_sym_DOT, + ACTIONS(3999), 1, + anon_sym_as, + ACTIONS(4143), 1, + anon_sym_CARET, + ACTIONS(4145), 1, + anon_sym_AMP, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4149), 2, + ACTIONS(4471), 1, + anon_sym_SEMI, + ACTIONS(4473), 1, + anon_sym_else, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4489), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1821), 2, + STATE(1817), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160493,15 +159506,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49639] = 5, + [49853] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1822), 2, + STATE(1818), 2, sym_line_comment, sym_block_comment, - ACTIONS(3893), 15, + ACTIONS(3803), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -160517,7 +159530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3891), 23, + ACTIONS(3801), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -160541,15 +159554,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49692] = 5, + [49906] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1823), 2, + STATE(1819), 2, sym_line_comment, sym_block_comment, - ACTIONS(3839), 15, + ACTIONS(3989), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -160565,7 +159578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3837), 23, + ACTIONS(3987), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -160589,62 +159602,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49745] = 23, + [49959] = 23, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4491), 1, + ACTIONS(4475), 1, anon_sym_SEMI, - ACTIONS(4493), 1, + ACTIONS(4477), 1, anon_sym_else, - ACTIONS(4149), 2, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1824), 2, + STATE(1820), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160655,15 +159668,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49834] = 5, + [50048] = 22, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1825), 2, + ACTIONS(3925), 1, + anon_sym_LBRACK, + ACTIONS(3929), 1, + anon_sym_QMARK, + ACTIONS(3931), 1, + anon_sym_DOT, + ACTIONS(3999), 1, + anon_sym_as, + ACTIONS(4143), 1, + anon_sym_CARET, + ACTIONS(4145), 1, + anon_sym_AMP, + ACTIONS(4147), 1, + anon_sym_PIPE, + ACTIONS(4149), 1, + anon_sym_AMP_AMP, + ACTIONS(4151), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4157), 1, + anon_sym_EQ, + ACTIONS(4269), 1, + anon_sym_DOT_DOT, + ACTIONS(4139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4153), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4161), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4165), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4479), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1821), 2, sym_line_comment, sym_block_comment, - ACTIONS(4003), 15, + ACTIONS(4141), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4159), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4155), 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, + [50135] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1822), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3533), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -160679,7 +159757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4001), 23, + ACTIONS(3531), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -160703,62 +159781,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49887] = 23, + [50188] = 23, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, ACTIONS(306), 1, anon_sym_RBRACE, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4439), 1, + ACTIONS(4431), 1, anon_sym_SEMI, - ACTIONS(4149), 2, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1826), 2, + STATE(1823), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160769,125 +159847,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49976] = 22, + [50277] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4381), 1, - anon_sym_CARET, - ACTIONS(4383), 1, - anon_sym_AMP, - ACTIONS(4385), 1, - anon_sym_PIPE, - ACTIONS(4387), 1, - anon_sym_AMP_AMP, - ACTIONS(4389), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4395), 1, - anon_sym_EQ, - ACTIONS(4457), 1, - anon_sym_DOT_DOT, - ACTIONS(3857), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4377), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4391), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4399), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4459), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1827), 2, + STATE(1824), 2, sym_line_comment, sym_block_comment, - ACTIONS(4379), 3, + ACTIONS(3905), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4397), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4393), 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, - [50063] = 21, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4199), 1, - anon_sym_EQ, - ACTIONS(4381), 1, anon_sym_CARET, - ACTIONS(4383), 1, anon_sym_AMP, - ACTIONS(4385), 1, anon_sym_PIPE, - ACTIONS(4387), 1, - anon_sym_AMP_AMP, - ACTIONS(4389), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4457), 1, - anon_sym_DOT_DOT, - ACTIONS(4377), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4391), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4399), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4459), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1828), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4379), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4397), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4197), 12, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3903), 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, @@ -160898,49 +159888,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50148] = 19, + anon_sym_EQ_EQ, + 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, + [50330] = 19, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4381), 1, + ACTIONS(4369), 1, anon_sym_CARET, - ACTIONS(4383), 1, + ACTIONS(4371), 1, anon_sym_AMP, - ACTIONS(4385), 1, + ACTIONS(4373), 1, anon_sym_PIPE, - ACTIONS(4387), 1, + ACTIONS(4375), 1, anon_sym_AMP_AMP, - ACTIONS(4389), 1, + ACTIONS(4377), 1, anon_sym_PIPE_PIPE, ACTIONS(394), 2, anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4377), 2, + ACTIONS(4365), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4391), 2, + ACTIONS(4379), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4399), 2, + ACTIONS(4387), 2, anon_sym_GT, anon_sym_LT, - STATE(1829), 2, + STATE(1825), 2, sym_line_comment, sym_block_comment, - ACTIONS(4379), 3, + ACTIONS(4367), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4397), 4, + ACTIONS(4385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -160960,53 +159957,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [50229] = 21, + [50411] = 21, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, ACTIONS(352), 1, anon_sym_EQ, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4381), 1, + ACTIONS(4369), 1, anon_sym_CARET, - ACTIONS(4383), 1, + ACTIONS(4371), 1, anon_sym_AMP, - ACTIONS(4385), 1, + ACTIONS(4373), 1, anon_sym_PIPE, - ACTIONS(4387), 1, + ACTIONS(4375), 1, anon_sym_AMP_AMP, - ACTIONS(4389), 1, + ACTIONS(4377), 1, anon_sym_PIPE_PIPE, - ACTIONS(4457), 1, + ACTIONS(4445), 1, anon_sym_DOT_DOT, - ACTIONS(4377), 2, + ACTIONS(4365), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4391), 2, + ACTIONS(4379), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4399), 2, + ACTIONS(4387), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4459), 2, + ACTIONS(4391), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1830), 2, + STATE(1826), 2, sym_line_comment, sym_block_comment, - ACTIONS(4379), 3, + ACTIONS(4367), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4397), 4, + ACTIONS(4385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -161024,62 +160021,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50314] = 23, + [50496] = 23, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4381), 1, + ACTIONS(4369), 1, anon_sym_CARET, - ACTIONS(4383), 1, + ACTIONS(4371), 1, anon_sym_AMP, - ACTIONS(4385), 1, + ACTIONS(4373), 1, anon_sym_PIPE, - ACTIONS(4387), 1, + ACTIONS(4375), 1, anon_sym_AMP_AMP, - ACTIONS(4389), 1, + ACTIONS(4377), 1, anon_sym_PIPE_PIPE, - ACTIONS(4395), 1, + ACTIONS(4383), 1, anon_sym_EQ, - ACTIONS(4401), 1, + ACTIONS(4389), 1, anon_sym_DOT_DOT, - ACTIONS(4495), 1, + ACTIONS(4481), 1, anon_sym_LBRACE, - STATE(485), 1, + STATE(489), 1, sym_match_block, - ACTIONS(4377), 2, + ACTIONS(4365), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4391), 2, + ACTIONS(4379), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4399), 2, + ACTIONS(4387), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4403), 2, + ACTIONS(4391), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1831), 2, + STATE(1827), 2, sym_line_comment, sym_block_comment, - ACTIONS(4379), 3, + ACTIONS(4367), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4397), 4, + ACTIONS(4385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4393), 10, + ACTIONS(4381), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161090,58 +160087,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50403] = 21, + [50585] = 21, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4203), 1, + ACTIONS(4197), 1, anon_sym_EQ, - ACTIONS(4381), 1, + ACTIONS(4369), 1, anon_sym_CARET, - ACTIONS(4383), 1, + ACTIONS(4371), 1, anon_sym_AMP, - ACTIONS(4385), 1, + ACTIONS(4373), 1, anon_sym_PIPE, - ACTIONS(4387), 1, + ACTIONS(4375), 1, anon_sym_AMP_AMP, - ACTIONS(4389), 1, + ACTIONS(4377), 1, anon_sym_PIPE_PIPE, - ACTIONS(4457), 1, + ACTIONS(4445), 1, anon_sym_DOT_DOT, - ACTIONS(4377), 2, + ACTIONS(4365), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4391), 2, + ACTIONS(4379), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4399), 2, + ACTIONS(4387), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4459), 2, + ACTIONS(4391), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1832), 2, + STATE(1828), 2, sym_line_comment, sym_block_comment, - ACTIONS(4379), 3, + ACTIONS(4367), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4397), 4, + ACTIONS(4385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4201), 12, + ACTIONS(4195), 12, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PLUS_EQ, @@ -161154,58 +160151,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50488] = 21, + [50670] = 21, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4207), 1, + ACTIONS(4201), 1, anon_sym_EQ, - ACTIONS(4381), 1, + ACTIONS(4369), 1, anon_sym_CARET, - ACTIONS(4383), 1, + ACTIONS(4371), 1, anon_sym_AMP, - ACTIONS(4385), 1, + ACTIONS(4373), 1, anon_sym_PIPE, - ACTIONS(4387), 1, + ACTIONS(4375), 1, anon_sym_AMP_AMP, - ACTIONS(4389), 1, + ACTIONS(4377), 1, anon_sym_PIPE_PIPE, - ACTIONS(4457), 1, + ACTIONS(4445), 1, anon_sym_DOT_DOT, - ACTIONS(4377), 2, + ACTIONS(4365), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4391), 2, + ACTIONS(4379), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4399), 2, + ACTIONS(4387), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4459), 2, + ACTIONS(4391), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1833), 2, + STATE(1829), 2, sym_line_comment, sym_block_comment, - ACTIONS(4379), 3, + ACTIONS(4367), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4397), 4, + ACTIONS(4385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4205), 12, + ACTIONS(4199), 12, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PLUS_EQ, @@ -161218,128 +160215,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50573] = 23, + [50755] = 23, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, ACTIONS(308), 1, anon_sym_RBRACE, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, - anon_sym_EQ, - ACTIONS(4273), 1, - anon_sym_DOT_DOT, - ACTIONS(4439), 1, - anon_sym_SEMI, - ACTIONS(4149), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4163), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4169), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4275), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1834), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4151), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4167), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4189), 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, - [50662] = 23, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4153), 1, - anon_sym_CARET, - ACTIONS(4155), 1, - anon_sym_AMP, ACTIONS(4157), 1, - anon_sym_PIPE, - ACTIONS(4159), 1, - anon_sym_AMP_AMP, - ACTIONS(4161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4497), 1, + ACTIONS(4431), 1, anon_sym_SEMI, - ACTIONS(4499), 1, - anon_sym_else, - ACTIONS(4149), 2, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1835), 2, + STATE(1830), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161350,62 +160281,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50751] = 23, + [50844] = 22, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4369), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4371), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4373), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4375), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4377), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4383), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4445), 1, anon_sym_DOT_DOT, - ACTIONS(4501), 1, - anon_sym_RBRACE, - ACTIONS(4503), 1, - anon_sym_COMMA, - ACTIONS(4149), 2, + ACTIONS(3881), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4365), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4379), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4387), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4391), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1836), 2, + STATE(1831), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4367), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4381), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161416,149 +160346,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50840] = 21, + [50931] = 21, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4247), 1, + ACTIONS(4193), 1, + anon_sym_EQ, + ACTIONS(4369), 1, anon_sym_CARET, - ACTIONS(4249), 1, + ACTIONS(4371), 1, anon_sym_AMP, - ACTIONS(4251), 1, + ACTIONS(4373), 1, anon_sym_PIPE, - ACTIONS(4255), 1, + ACTIONS(4375), 1, + anon_sym_AMP_AMP, + ACTIONS(4377), 1, anon_sym_PIPE_PIPE, - ACTIONS(4261), 1, - anon_sym_EQ, - ACTIONS(4267), 1, + ACTIONS(4445), 1, anon_sym_DOT_DOT, - ACTIONS(4243), 2, + ACTIONS(4365), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4257), 2, + ACTIONS(4379), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4265), 2, + ACTIONS(4387), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4269), 2, + ACTIONS(4391), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1837), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4245), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4505), 3, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_SQUOTE, - ACTIONS(4263), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4259), 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, - [50925] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - STATE(1838), 2, + STATE(1832), 2, sym_line_comment, sym_block_comment, - ACTIONS(4041), 15, - anon_sym_PLUS, + ACTIONS(4367), 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(4039), 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(4385), 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, - [50978] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - STATE(1839), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3985), 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(3983), 23, + ACTIONS(4191), 12, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161569,22 +160410,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, - [51031] = 5, + [51016] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1840), 2, + STATE(1833), 2, sym_line_comment, sym_block_comment, - ACTIONS(3877), 15, + ACTIONS(3913), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -161600,7 +160434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3875), 23, + ACTIONS(3911), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -161624,62 +160458,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [51084] = 23, + [51069] = 23, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, ACTIONS(310), 1, anon_sym_RBRACE, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4439), 1, + ACTIONS(4431), 1, anon_sym_SEMI, - ACTIONS(4149), 2, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1841), 2, + STATE(1834), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161690,29 +160524,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51173] = 10, + [51158] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - STATE(1842), 2, + STATE(1835), 2, sym_line_comment, sym_block_comment, - ACTIONS(4379), 3, + ACTIONS(3917), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3989), 11, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -161721,10 +160546,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(3987), 20, + ACTIONS(3915), 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, @@ -161743,101 +160571,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [51236] = 13, + anon_sym_as, + [51211] = 23, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4383), 1, + ACTIONS(4143), 1, + anon_sym_CARET, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4377), 2, + ACTIONS(4147), 1, + anon_sym_PIPE, + ACTIONS(4149), 1, + anon_sym_AMP_AMP, + ACTIONS(4151), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4157), 1, + anon_sym_EQ, + ACTIONS(4269), 1, + anon_sym_DOT_DOT, + ACTIONS(4483), 1, + anon_sym_SEMI, + ACTIONS(4485), 1, + anon_sym_else, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4391), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1843), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4379), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3989), 6, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_EQ, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3987), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [51305] = 12, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4377), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4391), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1844), 2, + STATE(1836), 2, sym_line_comment, sym_block_comment, - ACTIONS(4379), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3989), 7, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3987), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4159), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161848,68 +160638,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, - [51372] = 23, + [51300] = 23, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4439), 1, - anon_sym_SEMI, - ACTIONS(4507), 1, + ACTIONS(4487), 1, anon_sym_RBRACE, - ACTIONS(4149), 2, + ACTIONS(4489), 1, + anon_sym_COMMA, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1845), 2, + STATE(1837), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -161920,15 +160704,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51461] = 5, + [51389] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1846), 2, + STATE(1838), 2, sym_line_comment, sym_block_comment, - ACTIONS(1604), 15, + ACTIONS(1508), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -161944,7 +160728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1606), 23, + ACTIONS(1506), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -161968,54 +160752,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [51514] = 17, + [51442] = 21, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4381), 1, + ACTIONS(4241), 1, anon_sym_CARET, - ACTIONS(4383), 1, + ACTIONS(4243), 1, anon_sym_AMP, - ACTIONS(4385), 1, + ACTIONS(4245), 1, anon_sym_PIPE, - ACTIONS(3989), 2, + ACTIONS(4249), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4255), 1, anon_sym_EQ, + ACTIONS(4261), 1, anon_sym_DOT_DOT, - ACTIONS(4377), 2, + ACTIONS(4237), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4391), 2, + ACTIONS(4251), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4399), 2, + ACTIONS(4259), 2, anon_sym_GT, anon_sym_LT, - STATE(1847), 2, + ACTIONS(4263), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1839), 2, sym_line_comment, sym_block_comment, - ACTIONS(4379), 3, + ACTIONS(4239), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4397), 4, + ACTIONS(4491), 3, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_SQUOTE, + ACTIONS(4257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3987), 16, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4253), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162026,57 +160816,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [51591] = 18, + [51527] = 23, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4381), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4383), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4385), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4387), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(3989), 2, + ACTIONS(4151), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4157), 1, anon_sym_EQ, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4377), 2, + ACTIONS(4431), 1, + anon_sym_SEMI, + ACTIONS(4493), 1, + anon_sym_RBRACE, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4391), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4399), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - STATE(1848), 2, + ACTIONS(4165), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1840), 2, sym_line_comment, sym_block_comment, - ACTIONS(4379), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4397), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3987), 15, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_PIPE, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162087,32 +160882,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [51670] = 11, + [51616] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4377), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1849), 2, + STATE(1841), 2, sym_line_comment, sym_block_comment, - ACTIONS(4379), 3, + ACTIONS(4083), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3989), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -162121,10 +160904,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(3987), 20, + ACTIONS(4081), 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, @@ -162143,124 +160929,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [51735] = 21, + anon_sym_as, + [51669] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4179), 1, - anon_sym_EQ, - ACTIONS(4381), 1, - anon_sym_CARET, - ACTIONS(4383), 1, - anon_sym_AMP, - ACTIONS(4385), 1, - anon_sym_PIPE, - ACTIONS(4387), 1, - anon_sym_AMP_AMP, - ACTIONS(4389), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4457), 1, - anon_sym_DOT_DOT, - ACTIONS(4377), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4391), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4399), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4459), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1850), 2, + STATE(1842), 2, sym_line_comment, sym_block_comment, - ACTIONS(4379), 3, + ACTIONS(3859), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4397), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4177), 12, - 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, - [51820] = 21, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4187), 1, - anon_sym_EQ, - ACTIONS(4381), 1, anon_sym_CARET, - ACTIONS(4383), 1, anon_sym_AMP, - ACTIONS(4385), 1, anon_sym_PIPE, - ACTIONS(4387), 1, - anon_sym_AMP_AMP, - ACTIONS(4389), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4457), 1, - anon_sym_DOT_DOT, - ACTIONS(4377), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4391), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4399), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4459), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1851), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4379), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4397), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4185), 12, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3857), 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, @@ -162271,62 +160971,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51905] = 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, + [51722] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(314), 1, - anon_sym_RBRACE, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4153), 1, + STATE(1843), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3871), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4155), 1, anon_sym_AMP, - ACTIONS(4157), 1, anon_sym_PIPE, - ACTIONS(4159), 1, - anon_sym_AMP_AMP, - ACTIONS(4161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, - anon_sym_EQ, - ACTIONS(4273), 1, - anon_sym_DOT_DOT, - ACTIONS(4439), 1, - anon_sym_SEMI, - ACTIONS(4149), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4163), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1852), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4151), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4167), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4189), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3869), 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, @@ -162337,62 +161019,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51994] = 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, + [51775] = 23, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(314), 1, + anon_sym_RBRACE, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4509), 1, + ACTIONS(4431), 1, anon_sym_SEMI, - ACTIONS(4511), 1, - anon_sym_else, - ACTIONS(4149), 2, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1853), 2, + STATE(1844), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162403,62 +161092,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52083] = 23, + [51864] = 23, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4381), 1, + ACTIONS(4369), 1, anon_sym_CARET, - ACTIONS(4383), 1, + ACTIONS(4371), 1, anon_sym_AMP, - ACTIONS(4385), 1, + ACTIONS(4373), 1, anon_sym_PIPE, - ACTIONS(4387), 1, + ACTIONS(4375), 1, anon_sym_AMP_AMP, - ACTIONS(4389), 1, + ACTIONS(4377), 1, anon_sym_PIPE_PIPE, - ACTIONS(4395), 1, + ACTIONS(4383), 1, anon_sym_EQ, - ACTIONS(4401), 1, + ACTIONS(4389), 1, anon_sym_DOT_DOT, - ACTIONS(4513), 1, + ACTIONS(4495), 1, anon_sym_LBRACE, - STATE(1739), 1, + STATE(1735), 1, sym_match_block, - ACTIONS(4377), 2, + ACTIONS(4365), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4391), 2, + ACTIONS(4379), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4399), 2, + ACTIONS(4387), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4403), 2, + ACTIONS(4391), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1854), 2, + STATE(1845), 2, sym_line_comment, sym_block_comment, - ACTIONS(4379), 3, + ACTIONS(4367), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4397), 4, + ACTIONS(4385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4393), 10, + ACTIONS(4381), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162469,62 +161158,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52172] = 23, + [51953] = 23, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, ACTIONS(316), 1, anon_sym_RBRACE, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4439), 1, + ACTIONS(4431), 1, anon_sym_SEMI, - ACTIONS(4149), 2, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1855), 2, + STATE(1846), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162535,44 +161224,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52261] = 15, + [52042] = 10, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4381), 1, - anon_sym_CARET, - ACTIONS(4383), 1, - anon_sym_AMP, - ACTIONS(4385), 1, - anon_sym_PIPE, - ACTIONS(4377), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4391), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1856), 2, + STATE(1847), 2, sym_line_comment, sym_block_comment, - ACTIONS(4379), 3, + ACTIONS(4367), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3989), 4, + ACTIONS(3997), 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_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3987), 20, + ACTIONS(3995), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_AMP_AMP, @@ -162593,56 +161277,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [52334] = 19, + [52105] = 13, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4381), 1, - anon_sym_CARET, - ACTIONS(4383), 1, + ACTIONS(4371), 1, anon_sym_AMP, - ACTIONS(4385), 1, - anon_sym_PIPE, - ACTIONS(4387), 1, - anon_sym_AMP_AMP, - ACTIONS(4389), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4165), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4377), 2, + ACTIONS(4365), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4391), 2, + ACTIONS(4379), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4399), 2, - anon_sym_GT, - anon_sym_LT, - STATE(1857), 2, + STATE(1848), 2, sym_line_comment, sym_block_comment, - ACTIONS(4379), 3, + ACTIONS(4367), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4397), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4147), 14, + ACTIONS(3997), 6, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3995), 20, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162653,37 +161327,49 @@ 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, - [52415] = 5, + [52174] = 12, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1858), 2, + ACTIONS(3925), 1, + anon_sym_LBRACK, + ACTIONS(3929), 1, + anon_sym_QMARK, + ACTIONS(3931), 1, + anon_sym_DOT, + ACTIONS(3999), 1, + anon_sym_as, + ACTIONS(4365), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4379), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1849), 2, sym_line_comment, sym_block_comment, - ACTIONS(1506), 15, - anon_sym_PLUS, + ACTIONS(4367), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3997), 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(1504), 23, + ACTIONS(3995), 20, 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, @@ -162702,36 +161388,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_as, - [52468] = 5, + [52241] = 14, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1859), 2, + ACTIONS(3925), 1, + anon_sym_LBRACK, + ACTIONS(3929), 1, + anon_sym_QMARK, + ACTIONS(3931), 1, + anon_sym_DOT, + ACTIONS(3999), 1, + anon_sym_as, + ACTIONS(4369), 1, + anon_sym_CARET, + ACTIONS(4371), 1, + anon_sym_AMP, + ACTIONS(4365), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4379), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1850), 2, sym_line_comment, sym_block_comment, - ACTIONS(3843), 15, - anon_sym_PLUS, + ACTIONS(4367), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(3997), 5, 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(3841), 23, + ACTIONS(3995), 20, 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, @@ -162750,102 +161445,52 @@ 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, - [52521] = 23, + [52312] = 17, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(318), 1, - anon_sym_RBRACE, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4369), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4371), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4373), 1, anon_sym_PIPE, - ACTIONS(4159), 1, - anon_sym_AMP_AMP, - ACTIONS(4161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(3997), 2, anon_sym_EQ, - ACTIONS(4273), 1, anon_sym_DOT_DOT, - ACTIONS(4439), 1, - anon_sym_SEMI, - ACTIONS(4149), 2, + ACTIONS(4365), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4379), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4387), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1860), 2, + STATE(1851), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4367), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 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, - [52610] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - STATE(1861), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3951), 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(3949), 23, + ACTIONS(3995), 16, 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, @@ -162858,69 +161503,57 @@ 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, - [52663] = 23, + [52389] = 18, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4369), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4371), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4373), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4375), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(3997), 2, anon_sym_EQ, - ACTIONS(4273), 1, anon_sym_DOT_DOT, - ACTIONS(4439), 1, - anon_sym_SEMI, - ACTIONS(4515), 1, - anon_sym_RBRACE, - ACTIONS(4149), 2, + ACTIONS(4365), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4379), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4387), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1862), 2, + STATE(1852), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4367), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(3995), 15, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -162931,20 +161564,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52752] = 5, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [52468] = 11, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1863), 2, + ACTIONS(3925), 1, + anon_sym_LBRACK, + ACTIONS(3929), 1, + anon_sym_QMARK, + ACTIONS(3931), 1, + anon_sym_DOT, + ACTIONS(3999), 1, + anon_sym_as, + ACTIONS(4365), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1853), 2, sym_line_comment, sym_block_comment, - ACTIONS(3955), 15, - anon_sym_PLUS, + ACTIONS(4367), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3997), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -162953,13 +161598,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(3953), 23, + ACTIONS(3995), 20, 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, @@ -162978,63 +161620,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [52805] = 23, + [52533] = 23, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4461), 1, - anon_sym_COMMA, - ACTIONS(4517), 1, - anon_sym_RPAREN, - ACTIONS(4149), 2, + ACTIONS(4497), 1, + anon_sym_SEMI, + ACTIONS(4499), 1, + anon_sym_else, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1864), 2, + STATE(1854), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163045,62 +161686,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52894] = 23, + [52622] = 21, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(322), 1, - anon_sym_RBRACE, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4169), 1, + anon_sym_EQ, + ACTIONS(4369), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4371), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4373), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4375), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4377), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, - anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4445), 1, anon_sym_DOT_DOT, - ACTIONS(4439), 1, - anon_sym_SEMI, - ACTIONS(4149), 2, + ACTIONS(4365), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4379), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4387), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4391), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1865), 2, + STATE(1855), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4367), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4167), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163111,62 +161750,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52983] = 23, + [52707] = 23, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(324), 1, + ACTIONS(318), 1, anon_sym_RBRACE, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4439), 1, + ACTIONS(4431), 1, anon_sym_SEMI, - ACTIONS(4149), 2, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1866), 2, + STATE(1856), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163177,62 +161816,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53072] = 23, + [52796] = 21, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1188), 1, - anon_sym_RPAREN, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4173), 1, + anon_sym_EQ, + ACTIONS(4369), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4371), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4373), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4375), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4377), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, - anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4445), 1, anon_sym_DOT_DOT, - ACTIONS(4461), 1, - anon_sym_COMMA, - ACTIONS(4149), 2, + ACTIONS(4365), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4379), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4387), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4391), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1867), 2, + STATE(1857), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4367), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4171), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163243,62 +161880,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53161] = 23, + [52881] = 15, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(326), 1, - anon_sym_RBRACE, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4369), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4371), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4373), 1, anon_sym_PIPE, - ACTIONS(4159), 1, - anon_sym_AMP_AMP, - ACTIONS(4161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, - anon_sym_EQ, - ACTIONS(4273), 1, - anon_sym_DOT_DOT, - ACTIONS(4439), 1, - anon_sym_SEMI, - ACTIONS(4149), 2, + ACTIONS(4365), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4379), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4275), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1868), 2, + STATE(1858), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4367), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(3997), 4, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3995), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163309,62 +161932,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53250] = 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, + [52954] = 23, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4439), 1, + ACTIONS(4431), 1, anon_sym_SEMI, - ACTIONS(4519), 1, + ACTIONS(4501), 1, anon_sym_RBRACE, - ACTIONS(4149), 2, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1869), 2, + STATE(1859), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163375,37 +162004,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53339] = 5, + [53043] = 19, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1870), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4119), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3925), 1, + anon_sym_LBRACK, + ACTIONS(3929), 1, + anon_sym_QMARK, + ACTIONS(3931), 1, + anon_sym_DOT, + ACTIONS(3999), 1, + anon_sym_as, + ACTIONS(4369), 1, anon_sym_CARET, + ACTIONS(4371), 1, anon_sym_AMP, + ACTIONS(4373), 1, anon_sym_PIPE, + ACTIONS(4375), 1, + anon_sym_AMP_AMP, + ACTIONS(4377), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4177), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4365), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4379), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4387), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(4117), 23, + STATE(1860), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4367), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4385), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4175), 14, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163416,69 +162064,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, - [53392] = 23, + [53124] = 23, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(330), 1, + ACTIONS(322), 1, anon_sym_RBRACE, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4439), 1, + ACTIONS(4431), 1, anon_sym_SEMI, - ACTIONS(4149), 2, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1871), 2, + STATE(1861), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163489,62 +162132,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53481] = 23, + [53213] = 23, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(332), 1, + ACTIONS(324), 1, anon_sym_RBRACE, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4439), 1, + ACTIONS(4431), 1, anon_sym_SEMI, - ACTIONS(4149), 2, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1872), 2, + STATE(1862), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163555,15 +162198,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53570] = 5, + [53302] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1873), 2, + STATE(1863), 2, sym_line_comment, sym_block_comment, - ACTIONS(3969), 15, + ACTIONS(4021), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -163579,7 +162222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3965), 23, + ACTIONS(4019), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -163603,15 +162246,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [53623] = 5, + [53355] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1874), 2, + STATE(1864), 2, sym_line_comment, sym_block_comment, - ACTIONS(3999), 15, + ACTIONS(4037), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -163627,7 +162270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3997), 23, + ACTIONS(4035), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -163651,62 +162294,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [53676] = 23, + [53408] = 23, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(334), 1, + ACTIONS(326), 1, anon_sym_RBRACE, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4439), 1, + ACTIONS(4431), 1, anon_sym_SEMI, - ACTIONS(4149), 2, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1875), 2, + STATE(1865), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163717,62 +162360,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53765] = 23, + [53497] = 23, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4439), 1, + ACTIONS(4431), 1, anon_sym_SEMI, - ACTIONS(4521), 1, + ACTIONS(4503), 1, anon_sym_RBRACE, - ACTIONS(4149), 2, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1876), 2, + STATE(1866), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163783,62 +162426,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53854] = 23, + [53586] = 23, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_RBRACE, - ACTIONS(3901), 1, + ACTIONS(1050), 1, + anon_sym_RPAREN, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4439), 1, - anon_sym_SEMI, - ACTIONS(4149), 2, + ACTIONS(4447), 1, + anon_sym_COMMA, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1877), 2, + STATE(1867), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163849,62 +162492,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53943] = 23, + [53675] = 23, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(340), 1, + ACTIONS(330), 1, anon_sym_RBRACE, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4439), 1, + ACTIONS(4431), 1, anon_sym_SEMI, - ACTIONS(4149), 2, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1878), 2, + STATE(1868), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163915,62 +162558,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54032] = 23, + [53764] = 23, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(125), 1, + ACTIONS(332), 1, anon_sym_RBRACE, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4439), 1, + ACTIONS(4431), 1, anon_sym_SEMI, - ACTIONS(4149), 2, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1879), 2, + STATE(1869), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163981,42 +162624,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54121] = 9, + [53853] = 23, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4407), 1, + ACTIONS(334), 1, + anon_sym_RBRACE, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(4413), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(4431), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(4437), 1, + ACTIONS(3999), 1, anon_sym_as, - STATE(1880), 2, + ACTIONS(4143), 1, + anon_sym_CARET, + ACTIONS(4145), 1, + anon_sym_AMP, + ACTIONS(4147), 1, + anon_sym_PIPE, + ACTIONS(4149), 1, + anon_sym_AMP_AMP, + ACTIONS(4151), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4157), 1, + anon_sym_EQ, + ACTIONS(4269), 1, + anon_sym_DOT_DOT, + ACTIONS(4431), 1, + anon_sym_SEMI, + ACTIONS(4139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4153), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4161), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4165), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1870), 2, sym_line_comment, sym_block_comment, - ACTIONS(3989), 14, - anon_sym_PLUS, + ACTIONS(4141), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4159), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4155), 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, + [53942] = 23, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3925), 1, + anon_sym_LBRACK, + ACTIONS(3929), 1, + anon_sym_QMARK, + ACTIONS(3931), 1, + anon_sym_DOT, + ACTIONS(3999), 1, + anon_sym_as, + ACTIONS(4143), 1, anon_sym_CARET, + ACTIONS(4145), 1, anon_sym_AMP, + ACTIONS(4147), 1, anon_sym_PIPE, + ACTIONS(4149), 1, + anon_sym_AMP_AMP, + ACTIONS(4151), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4157), 1, + anon_sym_EQ, + ACTIONS(4269), 1, + anon_sym_DOT_DOT, + ACTIONS(4431), 1, + anon_sym_SEMI, + ACTIONS(4505), 1, + anon_sym_RBRACE, + ACTIONS(4139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3987), 20, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4165), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1871), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4141), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4159), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164027,68 +162756,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, - [54182] = 23, + [54031] = 23, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(338), 1, + anon_sym_RBRACE, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4439), 1, + ACTIONS(4431), 1, anon_sym_SEMI, - ACTIONS(4523), 1, - anon_sym_RBRACE, - ACTIONS(4149), 2, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1881), 2, + STATE(1872), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164099,62 +162822,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54271] = 23, + [54120] = 23, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(340), 1, + anon_sym_RBRACE, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4525), 1, + ACTIONS(4431), 1, anon_sym_SEMI, - ACTIONS(4527), 1, - anon_sym_else, - ACTIONS(4149), 2, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1882), 2, + STATE(1873), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164165,61 +162888,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54360] = 22, + [54209] = 23, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(125), 1, + anon_sym_RBRACE, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4381), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4383), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4385), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4387), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4389), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4395), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4457), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4039), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4377), 2, + ACTIONS(4431), 1, + anon_sym_SEMI, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4391), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4399), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4459), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1883), 2, + STATE(1874), 2, sym_line_comment, sym_block_comment, - ACTIONS(4379), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4397), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4393), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164230,74 +162954,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54447] = 16, - ACTIONS(29), 1, - anon_sym_LT, + [54298] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4295), 1, - sym_identifier, - ACTIONS(4297), 1, - anon_sym_LBRACE, - ACTIONS(4301), 1, + STATE(1875), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4063), 15, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(4307), 1, - anon_sym_COLON_COLON, - ACTIONS(4311), 1, - sym_metavariable, - STATE(2606), 1, - sym_scoped_identifier, - STATE(3502), 1, - sym_bracketed_type, - STATE(3606), 1, - sym_generic_type_with_turbofish, - STATE(3731), 1, - sym__use_clause, - STATE(1884), 2, + 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(4061), 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, + [54351] = 23, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3925), 1, + anon_sym_LBRACK, + ACTIONS(3929), 1, + anon_sym_QMARK, + ACTIONS(3931), 1, + anon_sym_DOT, + ACTIONS(3999), 1, + anon_sym_as, + ACTIONS(4143), 1, + anon_sym_CARET, + ACTIONS(4145), 1, + anon_sym_AMP, + ACTIONS(4147), 1, + anon_sym_PIPE, + ACTIONS(4149), 1, + anon_sym_AMP_AMP, + ACTIONS(4151), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4157), 1, + anon_sym_EQ, + ACTIONS(4269), 1, + anon_sym_DOT_DOT, + ACTIONS(4431), 1, + anon_sym_SEMI, + ACTIONS(4507), 1, + anon_sym_RBRACE, + ACTIONS(4139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4153), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4161), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4165), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1876), 2, sym_line_comment, sym_block_comment, - ACTIONS(4309), 3, - sym_self, - sym_super, - sym_crate, - STATE(3144), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4303), 21, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_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, - anon_sym_raw, - [54522] = 5, + ACTIONS(4141), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4159), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4155), 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, + [54440] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1885), 2, + STATE(1877), 2, sym_line_comment, sym_block_comment, - ACTIONS(4017), 15, + ACTIONS(3883), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -164313,7 +163092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4015), 23, + ACTIONS(3881), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -164337,15 +163116,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [54575] = 5, + [54493] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1886), 2, + STATE(1878), 2, sym_line_comment, sym_block_comment, - ACTIONS(4029), 15, + ACTIONS(4075), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -164361,7 +163140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4027), 23, + ACTIONS(4073), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -164385,62 +163164,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [54628] = 23, + [54546] = 16, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(4283), 1, + sym_identifier, + ACTIONS(4285), 1, + anon_sym_LBRACE, + ACTIONS(4289), 1, + anon_sym_STAR, + ACTIONS(4295), 1, + anon_sym_COLON_COLON, + ACTIONS(4299), 1, + sym_metavariable, + STATE(2585), 1, + sym_scoped_identifier, + STATE(3568), 1, + sym__use_clause, + STATE(3605), 1, + sym_generic_type_with_turbofish, + STATE(3770), 1, + sym_bracketed_type, + STATE(1879), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4297), 3, + sym_self, + sym_super, + sym_crate, + STATE(3142), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4291), 21, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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, + anon_sym_raw, + [54621] = 22, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4369), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4371), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4373), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4375), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4377), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4383), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4445), 1, anon_sym_DOT_DOT, - ACTIONS(4439), 1, - anon_sym_SEMI, - ACTIONS(4529), 1, - anon_sym_RBRACE, - ACTIONS(4149), 2, + ACTIONS(4065), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4365), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4379), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4387), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4391), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1887), 2, + STATE(1880), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4367), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4385), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4381), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164451,133 +163288,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54717] = 5, + [54708] = 23, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1888), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4045), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3925), 1, + anon_sym_LBRACK, + ACTIONS(3929), 1, + anon_sym_QMARK, + ACTIONS(3931), 1, + anon_sym_DOT, + ACTIONS(3999), 1, + anon_sym_as, + ACTIONS(4143), 1, anon_sym_CARET, + ACTIONS(4145), 1, anon_sym_AMP, + ACTIONS(4147), 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(4043), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + ACTIONS(4149), 1, anon_sym_AMP_AMP, + ACTIONS(4151), 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, - [54770] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - STATE(1889), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3897), 15, + ACTIONS(4157), 1, + anon_sym_EQ, + ACTIONS(4269), 1, + anon_sym_DOT_DOT, + ACTIONS(4509), 1, + anon_sym_SEMI, + ACTIONS(4511), 1, + anon_sym_else, + ACTIONS(4139), 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(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3895), 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(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [54823] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - STATE(1890), 2, + STATE(1881), 2, sym_line_comment, sym_block_comment, - ACTIONS(4059), 15, - anon_sym_PLUS, + ACTIONS(4141), 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(4057), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4159), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -164588,51 +163354,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_as, - [54876] = 16, + [54797] = 16, ACTIONS(29), 1, anon_sym_LT, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4295), 1, + ACTIONS(4283), 1, sym_identifier, - ACTIONS(4297), 1, + ACTIONS(4285), 1, anon_sym_LBRACE, - ACTIONS(4301), 1, + ACTIONS(4289), 1, anon_sym_STAR, - ACTIONS(4307), 1, + ACTIONS(4295), 1, anon_sym_COLON_COLON, - ACTIONS(4311), 1, + ACTIONS(4299), 1, sym_metavariable, - STATE(2606), 1, + STATE(2585), 1, sym_scoped_identifier, - STATE(3502), 1, - sym_bracketed_type, - STATE(3606), 1, + STATE(3605), 1, sym_generic_type_with_turbofish, - STATE(3696), 1, + STATE(3613), 1, sym__use_clause, - STATE(1891), 2, + STATE(3770), 1, + sym_bracketed_type, + STATE(1882), 2, sym_line_comment, sym_block_comment, - ACTIONS(4309), 3, + ACTIONS(4297), 3, sym_self, sym_super, sym_crate, - STATE(3144), 4, + STATE(3142), 4, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(4303), 21, + ACTIONS(4291), 21, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -164654,15 +163413,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_gen, anon_sym_union, anon_sym_raw, - [54951] = 5, + [54872] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1892), 2, + STATE(1883), 2, sym_line_comment, sym_block_comment, - ACTIONS(4021), 15, + ACTIONS(4091), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -164678,7 +163437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4019), 23, + ACTIONS(4089), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -164702,15 +163461,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [55004] = 5, + [54925] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1893), 2, + STATE(1884), 2, sym_line_comment, sym_block_comment, - ACTIONS(3515), 15, + ACTIONS(3863), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -164726,7 +163485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3513), 23, + ACTIONS(3861), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -164750,15 +163509,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [55057] = 5, + [54978] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1894), 2, + STATE(1885), 2, sym_line_comment, sym_block_comment, - ACTIONS(1506), 15, + ACTIONS(3811), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -164774,7 +163533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1504), 23, + ACTIONS(3809), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -164798,15 +163557,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [55110] = 5, + [55031] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1895), 2, + STATE(1886), 2, sym_line_comment, sym_block_comment, - ACTIONS(3911), 15, + ACTIONS(3975), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -164822,7 +163581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3909), 23, + ACTIONS(3973), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -164846,15 +163605,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [55163] = 5, + [55084] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1896), 2, + STATE(1887), 2, sym_line_comment, sym_block_comment, - ACTIONS(1506), 15, + ACTIONS(3507), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -164870,7 +163629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1504), 23, + ACTIONS(3505), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -164894,15 +163653,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [55216] = 5, + [55137] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1897), 2, + STATE(1888), 2, sym_line_comment, sym_block_comment, - ACTIONS(3749), 15, + ACTIONS(1508), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -164918,7 +163677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3745), 23, + ACTIONS(1506), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -164942,15 +163701,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [55269] = 5, + [55190] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1898), 2, + STATE(1889), 2, sym_line_comment, sym_block_comment, - ACTIONS(4083), 15, + ACTIONS(3799), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -164966,7 +163725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4081), 23, + ACTIONS(3795), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -164990,15 +163749,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [55322] = 5, + [55243] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1899), 2, + STATE(1890), 2, sym_line_comment, sym_block_comment, - ACTIONS(3855), 15, + ACTIONS(4003), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -165014,7 +163773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3853), 23, + ACTIONS(4001), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -165038,15 +163797,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [55375] = 5, + [55296] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1900), 2, + STATE(1891), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3879), 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(3877), 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, + [55349] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1892), 2, sym_line_comment, sym_block_comment, - ACTIONS(4087), 15, + ACTIONS(3815), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -165062,7 +163869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4085), 23, + ACTIONS(3813), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -165086,15 +163893,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [55428] = 5, + [55402] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1901), 2, + STATE(1893), 2, sym_line_comment, sym_block_comment, - ACTIONS(1506), 15, + ACTIONS(1508), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -165110,7 +163917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1504), 23, + ACTIONS(1506), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -165134,15 +163941,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [55481] = 5, + [55455] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1902), 2, + STATE(1894), 2, sym_line_comment, sym_block_comment, - ACTIONS(3873), 15, + ACTIONS(3897), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -165158,7 +163965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3871), 23, + ACTIONS(3895), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -165182,15 +163989,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [55534] = 5, + [55508] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1903), 2, + STATE(1895), 2, sym_line_comment, sym_block_comment, - ACTIONS(3915), 15, + ACTIONS(3827), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -165206,7 +164013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3913), 23, + ACTIONS(3825), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -165230,21 +164037,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [55587] = 8, + [55561] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4407), 1, + ACTIONS(4393), 1, anon_sym_LBRACK, - ACTIONS(4413), 1, + ACTIONS(4399), 1, anon_sym_QMARK, - ACTIONS(4431), 1, + ACTIONS(4417), 1, anon_sym_DOT, - STATE(1904), 2, + STATE(1896), 2, sym_line_comment, sym_block_comment, - ACTIONS(3903), 14, + ACTIONS(3927), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -165259,7 +164066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3899), 21, + ACTIONS(3923), 21, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_AMP_AMP, @@ -165281,62 +164088,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [55646] = 23, + [55620] = 23, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, ACTIONS(292), 1, anon_sym_RBRACE, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4439), 1, + ACTIONS(4431), 1, anon_sym_SEMI, - ACTIONS(4149), 2, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1905), 2, + STATE(1897), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165347,15 +164154,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55735] = 5, + [55709] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1906), 2, + ACTIONS(4393), 1, + anon_sym_LBRACK, + ACTIONS(4399), 1, + anon_sym_QMARK, + ACTIONS(4417), 1, + anon_sym_DOT, + STATE(1898), 2, sym_line_comment, sym_block_comment, - ACTIONS(4103), 15, + ACTIONS(3947), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -165369,13 +164182,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(4101), 23, + ACTIONS(3945), 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, @@ -165395,21 +164205,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [55788] = 8, + [55768] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4407), 1, - anon_sym_LBRACK, - ACTIONS(4413), 1, - anon_sym_QMARK, - ACTIONS(4431), 1, - anon_sym_DOT, - STATE(1907), 2, + STATE(1899), 2, sym_line_comment, sym_block_comment, - ACTIONS(3923), 14, + ACTIONS(4111), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -165423,10 +164227,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(3921), 21, + ACTIONS(4109), 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, @@ -165446,15 +164253,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [55847] = 5, + [55821] = 23, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1908), 2, + ACTIONS(3925), 1, + anon_sym_LBRACK, + ACTIONS(3929), 1, + anon_sym_QMARK, + ACTIONS(3931), 1, + anon_sym_DOT, + ACTIONS(3999), 1, + anon_sym_as, + ACTIONS(4143), 1, + anon_sym_CARET, + ACTIONS(4145), 1, + anon_sym_AMP, + ACTIONS(4147), 1, + anon_sym_PIPE, + ACTIONS(4149), 1, + anon_sym_AMP_AMP, + ACTIONS(4151), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4157), 1, + anon_sym_EQ, + ACTIONS(4269), 1, + anon_sym_DOT_DOT, + ACTIONS(4431), 1, + anon_sym_SEMI, + ACTIONS(4513), 1, + anon_sym_RBRACE, + ACTIONS(4139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4153), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4161), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4165), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1900), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4141), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4159), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4155), 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, + [55910] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1901), 2, sym_line_comment, sym_block_comment, - ACTIONS(3947), 15, + ACTIONS(3855), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -165470,7 +164343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3945), 23, + ACTIONS(3853), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -165494,15 +164367,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [55900] = 5, + [55963] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1909), 2, + STATE(1902), 2, sym_line_comment, sym_block_comment, - ACTIONS(3831), 15, + ACTIONS(3901), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -165518,7 +164391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3829), 23, + ACTIONS(3899), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -165542,49 +164415,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [55953] = 19, + [56016] = 19, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4407), 1, + ACTIONS(4393), 1, anon_sym_LBRACK, - ACTIONS(4413), 1, + ACTIONS(4399), 1, anon_sym_QMARK, - ACTIONS(4415), 1, + ACTIONS(4401), 1, anon_sym_CARET, - ACTIONS(4417), 1, + ACTIONS(4403), 1, anon_sym_AMP, - ACTIONS(4419), 1, + ACTIONS(4405), 1, anon_sym_PIPE, - ACTIONS(4421), 1, + ACTIONS(4407), 1, anon_sym_AMP_AMP, - ACTIONS(4423), 1, + ACTIONS(4409), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(4417), 1, anon_sym_DOT, - ACTIONS(4437), 1, + ACTIONS(4423), 1, anon_sym_as, ACTIONS(394), 2, anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4409), 2, + ACTIONS(4395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4425), 2, + ACTIONS(4411), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4429), 2, + ACTIONS(4415), 2, anon_sym_GT, anon_sym_LT, - STATE(1910), 2, + STATE(1903), 2, sym_line_comment, sym_block_comment, - ACTIONS(4411), 3, + ACTIONS(4397), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4427), 4, + ACTIONS(4413), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -165604,21 +164477,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [56034] = 8, + [56097] = 21, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4407), 1, + ACTIONS(352), 1, + anon_sym_EQ, + ACTIONS(4393), 1, anon_sym_LBRACK, - ACTIONS(4413), 1, + ACTIONS(4399), 1, anon_sym_QMARK, - ACTIONS(4431), 1, + ACTIONS(4401), 1, + anon_sym_CARET, + ACTIONS(4403), 1, + anon_sym_AMP, + ACTIONS(4405), 1, + anon_sym_PIPE, + ACTIONS(4407), 1, + anon_sym_AMP_AMP, + ACTIONS(4409), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4417), 1, anon_sym_DOT, - STATE(1911), 2, + ACTIONS(4419), 1, + anon_sym_DOT_DOT, + ACTIONS(4423), 1, + anon_sym_as, + ACTIONS(4395), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4411), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4415), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4421), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1904), 2, sym_line_comment, sym_block_comment, - ACTIONS(4037), 14, + ACTIONS(4397), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4413), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(346), 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, + [56182] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1905), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3867), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -165632,10 +164563,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(4035), 21, + ACTIONS(3865), 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, @@ -165655,58 +164589,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [56093] = 21, + [56235] = 22, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(352), 1, + ACTIONS(3925), 1, + anon_sym_LBRACK, + ACTIONS(3929), 1, + anon_sym_QMARK, + ACTIONS(3931), 1, + anon_sym_DOT, + ACTIONS(3999), 1, + anon_sym_as, + ACTIONS(4143), 1, + anon_sym_CARET, + ACTIONS(4145), 1, + anon_sym_AMP, + ACTIONS(4147), 1, + anon_sym_PIPE, + ACTIONS(4149), 1, + anon_sym_AMP_AMP, + ACTIONS(4151), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4407), 1, + ACTIONS(4269), 1, + anon_sym_DOT_DOT, + ACTIONS(4139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4153), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4161), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4165), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4515), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1906), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4141), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4159), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4155), 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, + [56322] = 22, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(4413), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(4415), 1, + ACTIONS(3931), 1, + anon_sym_DOT, + ACTIONS(3999), 1, + anon_sym_as, + ACTIONS(4369), 1, anon_sym_CARET, - ACTIONS(4417), 1, + ACTIONS(4371), 1, anon_sym_AMP, - ACTIONS(4419), 1, + ACTIONS(4373), 1, anon_sym_PIPE, - ACTIONS(4421), 1, + ACTIONS(4375), 1, anon_sym_AMP_AMP, - ACTIONS(4423), 1, + ACTIONS(4377), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(4383), 1, + anon_sym_EQ, + ACTIONS(4445), 1, + anon_sym_DOT_DOT, + ACTIONS(4031), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4365), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4379), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4387), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4391), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1907), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4367), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4385), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4381), 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, + [56409] = 21, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4197), 1, + anon_sym_EQ, + ACTIONS(4393), 1, + anon_sym_LBRACK, + ACTIONS(4399), 1, + anon_sym_QMARK, + ACTIONS(4401), 1, + anon_sym_CARET, + ACTIONS(4403), 1, + anon_sym_AMP, + ACTIONS(4405), 1, + anon_sym_PIPE, + ACTIONS(4407), 1, + anon_sym_AMP_AMP, + ACTIONS(4409), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4417), 1, anon_sym_DOT, - ACTIONS(4433), 1, + ACTIONS(4419), 1, anon_sym_DOT_DOT, - ACTIONS(4437), 1, + ACTIONS(4423), 1, anon_sym_as, - ACTIONS(4409), 2, + ACTIONS(4395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4425), 2, + ACTIONS(4411), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4429), 2, + ACTIONS(4415), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4435), 2, + ACTIONS(4421), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1912), 2, + STATE(1908), 2, sym_line_comment, sym_block_comment, - ACTIONS(4411), 3, + ACTIONS(4397), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4427), 4, + ACTIONS(4413), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(346), 12, + ACTIONS(4195), 12, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_PLUS_EQ, @@ -165719,44 +164783,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56178] = 16, + [56494] = 16, ACTIONS(29), 1, anon_sym_LT, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4295), 1, + ACTIONS(4283), 1, sym_identifier, - ACTIONS(4297), 1, + ACTIONS(4285), 1, anon_sym_LBRACE, - ACTIONS(4301), 1, + ACTIONS(4289), 1, anon_sym_STAR, - ACTIONS(4307), 1, + ACTIONS(4295), 1, anon_sym_COLON_COLON, - ACTIONS(4311), 1, + ACTIONS(4299), 1, sym_metavariable, - STATE(2606), 1, + STATE(2585), 1, sym_scoped_identifier, - STATE(3502), 1, - sym_bracketed_type, - STATE(3552), 1, + STATE(3550), 1, sym__use_clause, - STATE(3606), 1, + STATE(3605), 1, sym_generic_type_with_turbofish, - STATE(1913), 2, + STATE(3770), 1, + sym_bracketed_type, + STATE(1909), 2, sym_line_comment, sym_block_comment, - ACTIONS(4309), 3, + ACTIONS(4297), 3, sym_self, sym_super, sym_crate, - STATE(3144), 4, + STATE(3142), 4, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(4303), 21, + ACTIONS(4291), 21, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -165778,109 +164842,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_gen, anon_sym_union, anon_sym_raw, - [56253] = 5, + [56569] = 21, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1914), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3847), 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, + ACTIONS(4201), 1, anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3845), 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, - [56306] = 22, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(4393), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(4399), 1, anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4381), 1, + ACTIONS(4401), 1, anon_sym_CARET, - ACTIONS(4383), 1, + ACTIONS(4403), 1, anon_sym_AMP, - ACTIONS(4385), 1, + ACTIONS(4405), 1, anon_sym_PIPE, - ACTIONS(4387), 1, + ACTIONS(4407), 1, anon_sym_AMP_AMP, - ACTIONS(4389), 1, + ACTIONS(4409), 1, anon_sym_PIPE_PIPE, - ACTIONS(4395), 1, - anon_sym_EQ, - ACTIONS(4457), 1, + ACTIONS(4417), 1, + anon_sym_DOT, + ACTIONS(4419), 1, anon_sym_DOT_DOT, - ACTIONS(4019), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4377), 2, + ACTIONS(4423), 1, + anon_sym_as, + ACTIONS(4395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4391), 2, + ACTIONS(4411), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4399), 2, + ACTIONS(4415), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4459), 2, + ACTIONS(4421), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1915), 2, + STATE(1910), 2, sym_line_comment, sym_block_comment, - ACTIONS(4379), 3, + ACTIONS(4397), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4397), 4, + ACTIONS(4413), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4393), 10, + ACTIONS(4199), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165891,125 +164906,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56393] = 22, + [56654] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4153), 1, - anon_sym_CARET, - ACTIONS(4155), 1, - anon_sym_AMP, - ACTIONS(4157), 1, - anon_sym_PIPE, - ACTIONS(4159), 1, - anon_sym_AMP_AMP, - ACTIONS(4161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, - anon_sym_EQ, - ACTIONS(4273), 1, - anon_sym_DOT_DOT, - ACTIONS(4149), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4163), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4169), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4275), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4531), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1916), 2, + STATE(1911), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4067), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4189), 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, - [56480] = 21, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(4203), 1, - anon_sym_EQ, - ACTIONS(4407), 1, - anon_sym_LBRACK, - ACTIONS(4413), 1, - anon_sym_QMARK, - ACTIONS(4415), 1, anon_sym_CARET, - ACTIONS(4417), 1, anon_sym_AMP, - ACTIONS(4419), 1, anon_sym_PIPE, - ACTIONS(4421), 1, - anon_sym_AMP_AMP, - ACTIONS(4423), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_DOT, - ACTIONS(4433), 1, - anon_sym_DOT_DOT, - ACTIONS(4437), 1, - anon_sym_as, - ACTIONS(4409), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4429), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4435), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1917), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4411), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4427), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4201), 12, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4065), 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, @@ -166020,79 +164947,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56565] = 21, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(4207), 1, - anon_sym_EQ, - ACTIONS(4407), 1, - anon_sym_LBRACK, - ACTIONS(4413), 1, - anon_sym_QMARK, - ACTIONS(4415), 1, - anon_sym_CARET, - ACTIONS(4417), 1, - anon_sym_AMP, - ACTIONS(4419), 1, - anon_sym_PIPE, - ACTIONS(4421), 1, - anon_sym_AMP_AMP, - ACTIONS(4423), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_DOT, - ACTIONS(4433), 1, - anon_sym_DOT_DOT, - ACTIONS(4437), 1, - anon_sym_as, - ACTIONS(4409), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4425), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4429), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4435), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1918), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4411), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4427), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4205), 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, - [56650] = 5, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [56707] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1919), 2, + STATE(1912), 2, sym_line_comment, sym_block_comment, - ACTIONS(4107), 15, + ACTIONS(3909), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -166108,7 +164978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4105), 23, + ACTIONS(3907), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -166132,15 +165002,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [56703] = 5, + [56760] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1920), 2, + STATE(1913), 2, sym_line_comment, sym_block_comment, - ACTIONS(3885), 15, + ACTIONS(3819), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -166156,7 +165026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3883), 23, + ACTIONS(3817), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -166180,15 +165050,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [56756] = 5, + [56813] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1921), 2, + STATE(1914), 2, sym_line_comment, sym_block_comment, - ACTIONS(4111), 15, + ACTIONS(3823), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -166204,7 +165074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4109), 23, + ACTIONS(3821), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -166228,15 +165098,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [56809] = 5, + [56866] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1922), 2, + STATE(1915), 2, sym_line_comment, sym_block_comment, - ACTIONS(3919), 15, + ACTIONS(3943), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -166252,7 +165122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3917), 23, + ACTIONS(3941), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -166276,15 +165146,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [56862] = 5, + [56919] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1923), 2, + STATE(1916), 2, sym_line_comment, sym_block_comment, - ACTIONS(3927), 15, + ACTIONS(3951), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -166300,7 +165170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3925), 23, + ACTIONS(3949), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -166324,61 +165194,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [56915] = 22, + [56972] = 22, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4149), 2, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4533), 2, + ACTIONS(4517), 2, anon_sym_RBRACE, anon_sym_COMMA, - STATE(1924), 2, + STATE(1917), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -166389,15 +165259,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57002] = 5, + [57059] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1925), 2, + STATE(1918), 2, sym_line_comment, sym_block_comment, - ACTIONS(3811), 15, + ACTIONS(3959), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -166413,7 +165283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3809), 23, + ACTIONS(3957), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -166437,15 +165307,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [57055] = 5, + [57112] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1926), 2, + STATE(1919), 2, sym_line_comment, sym_block_comment, - ACTIONS(3935), 15, + ACTIONS(3831), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -166461,7 +165331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3933), 23, + ACTIONS(3829), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -166485,15 +165355,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [57108] = 5, + [57165] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1927), 2, + STATE(1920), 2, sym_line_comment, sym_block_comment, - ACTIONS(3815), 15, + ACTIONS(3835), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -166509,7 +165379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3813), 23, + ACTIONS(3833), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -166533,15 +165403,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [57161] = 5, + [57218] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1928), 2, + STATE(1921), 2, sym_line_comment, sym_block_comment, - ACTIONS(4009), 15, + ACTIONS(3839), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -166557,7 +165427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4007), 23, + ACTIONS(3837), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -166581,15 +165451,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [57214] = 5, + [57271] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1929), 2, + STATE(1922), 2, sym_line_comment, sym_block_comment, - ACTIONS(3819), 15, + ACTIONS(3843), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -166605,7 +165475,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3817), 23, + ACTIONS(3841), 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, + [57324] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(1923), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4017), 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(4015), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -166629,15 +165547,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [57267] = 5, + [57377] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1930), 2, + STATE(1924), 2, sym_line_comment, sym_block_comment, - ACTIONS(1506), 15, + ACTIONS(1508), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -166653,7 +165571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1504), 23, + ACTIONS(1506), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -166677,15 +165595,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [57320] = 5, + [57430] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1931), 2, + STATE(1925), 2, sym_line_comment, sym_block_comment, - ACTIONS(4013), 15, + ACTIONS(1508), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -166701,7 +165619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4011), 23, + ACTIONS(1506), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -166725,15 +165643,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [57373] = 5, + [57483] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1932), 2, + STATE(1926), 2, sym_line_comment, sym_block_comment, - ACTIONS(3823), 15, + ACTIONS(4025), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -166749,7 +165667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3821), 23, + ACTIONS(4023), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -166773,15 +165691,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [57426] = 5, + [57536] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1933), 2, + STATE(1927), 2, sym_line_comment, sym_block_comment, - ACTIONS(3827), 15, + ACTIONS(3847), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -166797,7 +165715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3825), 23, + ACTIONS(3845), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -166821,15 +165739,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [57479] = 5, + [57589] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1934), 2, + STATE(1928), 2, sym_line_comment, sym_block_comment, - ACTIONS(4033), 15, + ACTIONS(4045), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -166845,7 +165763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4031), 23, + ACTIONS(4043), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -166869,86 +165787,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [57532] = 22, + [57642] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(4393), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(4399), 1, anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4247), 1, - anon_sym_CARET, - ACTIONS(4249), 1, - anon_sym_AMP, - ACTIONS(4251), 1, - anon_sym_PIPE, - ACTIONS(4255), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4261), 1, - anon_sym_EQ, - ACTIONS(4267), 1, - anon_sym_DOT_DOT, - ACTIONS(4537), 1, - anon_sym_AMP_AMP, - ACTIONS(4243), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4257), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4265), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4269), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4535), 2, - anon_sym_LBRACE, - anon_sym_SQUOTE, - STATE(1935), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4245), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4263), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4259), 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, - [57619] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(4407), 1, - anon_sym_LBRACK, - ACTIONS(4413), 1, - anon_sym_QMARK, - ACTIONS(4431), 1, + ACTIONS(4417), 1, anon_sym_DOT, - STATE(1936), 2, + STATE(1929), 2, sym_line_comment, sym_block_comment, - ACTIONS(4079), 14, + ACTIONS(4087), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -166963,7 +165816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(4077), 21, + ACTIONS(4085), 21, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_AMP_AMP, @@ -166985,15 +165838,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [57678] = 5, + [57701] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1937), 2, + STATE(1930), 2, sym_line_comment, sym_block_comment, - ACTIONS(3931), 15, + ACTIONS(3971), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -167009,7 +165862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3929), 23, + ACTIONS(3969), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -167033,85 +165886,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [57731] = 5, + [57754] = 23, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1938), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4063), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3925), 1, + anon_sym_LBRACK, + ACTIONS(3929), 1, + anon_sym_QMARK, + ACTIONS(3931), 1, + anon_sym_DOT, + ACTIONS(3999), 1, + anon_sym_as, + ACTIONS(4143), 1, anon_sym_CARET, + ACTIONS(4145), 1, anon_sym_AMP, + ACTIONS(4147), 1, anon_sym_PIPE, + ACTIONS(4149), 1, + anon_sym_AMP_AMP, + ACTIONS(4151), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4157), 1, + anon_sym_EQ, + ACTIONS(4269), 1, + anon_sym_DOT_DOT, + ACTIONS(4447), 1, + anon_sym_COMMA, + ACTIONS(4519), 1, + anon_sym_RPAREN, + ACTIONS(4139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(4061), 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(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [57784] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - STATE(1939), 2, + STATE(1931), 2, sym_line_comment, sym_block_comment, - ACTIONS(4067), 15, - anon_sym_PLUS, + ACTIONS(4141), 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(4065), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4159), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -167122,22 +165952,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, - [57837] = 5, + [57843] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1940), 2, + STATE(1932), 2, sym_line_comment, sym_block_comment, - ACTIONS(4075), 15, + ACTIONS(4095), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -167153,7 +165976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4073), 23, + ACTIONS(4093), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -167177,15 +166000,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [57890] = 5, + [57896] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1941), 2, + STATE(1933), 2, sym_line_comment, sym_block_comment, - ACTIONS(3939), 15, + ACTIONS(4099), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -167201,7 +166024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3937), 23, + ACTIONS(4097), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -167225,15 +166048,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [57943] = 5, + [57949] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1942), 2, + STATE(1934), 2, sym_line_comment, sym_block_comment, - ACTIONS(3943), 15, + ACTIONS(4103), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -167249,7 +166072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3941), 23, + ACTIONS(4101), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -167273,62 +166096,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [57996] = 23, + [58002] = 22, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4241), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4243), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4245), 1, anon_sym_PIPE, - ACTIONS(4159), 1, - anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4249), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4255), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4261), 1, anon_sym_DOT_DOT, - ACTIONS(4539), 1, - anon_sym_RPAREN, - ACTIONS(4541), 1, - anon_sym_COMMA, - ACTIONS(4149), 2, + ACTIONS(4523), 1, + anon_sym_AMP_AMP, + ACTIONS(4237), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4251), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4259), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4263), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1943), 2, + ACTIONS(4521), 2, + anon_sym_LBRACE, + anon_sym_SQUOTE, + STATE(1935), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4239), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4257), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4253), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -167339,74 +166161,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58085] = 16, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(4295), 1, - sym_identifier, - ACTIONS(4297), 1, - anon_sym_LBRACE, - ACTIONS(4301), 1, - anon_sym_STAR, - ACTIONS(4307), 1, - anon_sym_COLON_COLON, - ACTIONS(4311), 1, - sym_metavariable, - STATE(2606), 1, - sym_scoped_identifier, - STATE(3291), 1, - sym__use_clause, - STATE(3502), 1, - sym_bracketed_type, - STATE(3606), 1, - sym_generic_type_with_turbofish, - STATE(1944), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4309), 3, - sym_self, - sym_super, - sym_crate, - STATE(3144), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4303), 21, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_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, - anon_sym_raw, - [58160] = 5, + [58089] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1945), 2, + STATE(1936), 2, sym_line_comment, sym_block_comment, - ACTIONS(3859), 15, + ACTIONS(4033), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -167422,7 +166185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3857), 23, + ACTIONS(4031), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -167446,45 +166209,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [58213] = 14, + [58142] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4381), 1, - anon_sym_CARET, - ACTIONS(4383), 1, - anon_sym_AMP, - ACTIONS(4377), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4391), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1946), 2, + STATE(1937), 2, sym_line_comment, sym_block_comment, - ACTIONS(4379), 3, + ACTIONS(4011), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3989), 5, + anon_sym_CARET, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3987), 20, + ACTIONS(4009), 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, @@ -167503,60 +166256,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [58284] = 22, + anon_sym_as, + [58195] = 23, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4543), 1, - anon_sym_RBRACK, - ACTIONS(4149), 2, + ACTIONS(4525), 1, + anon_sym_RPAREN, + ACTIONS(4527), 1, + anon_sym_COMMA, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1947), 2, + STATE(1938), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -167567,119 +166323,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58370] = 17, - ACTIONS(29), 1, - anon_sym_LT, + [58284] = 22, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4055), 1, - anon_sym_where, - ACTIONS(4545), 1, - sym_identifier, - ACTIONS(4549), 1, - anon_sym_COLON_COLON, - ACTIONS(4555), 1, - sym_metavariable, - STATE(3180), 1, - sym_scoped_type_identifier, - STATE(3469), 1, - sym_generic_type, - STATE(3514), 1, - sym_scoped_identifier, - STATE(3646), 1, - sym_generic_type_with_turbofish, - STATE(3672), 1, - sym_bracketed_type, - STATE(1948), 2, + ACTIONS(3925), 1, + anon_sym_LBRACK, + ACTIONS(3929), 1, + anon_sym_QMARK, + ACTIONS(3931), 1, + anon_sym_DOT, + ACTIONS(3999), 1, + anon_sym_as, + ACTIONS(4143), 1, + anon_sym_CARET, + ACTIONS(4145), 1, + anon_sym_AMP, + ACTIONS(4147), 1, + anon_sym_PIPE, + ACTIONS(4149), 1, + anon_sym_AMP_AMP, + ACTIONS(4151), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4157), 1, + anon_sym_EQ, + ACTIONS(4269), 1, + anon_sym_DOT_DOT, + ACTIONS(4529), 1, + anon_sym_RBRACK, + ACTIONS(4139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4153), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4161), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4165), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1939), 2, sym_line_comment, sym_block_comment, - ACTIONS(4053), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - ACTIONS(4553), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4551), 4, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - anon_sym_raw, - ACTIONS(4547), 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, - [58446] = 22, + ACTIONS(4141), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4159), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4155), 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, + [58370] = 22, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4557), 1, - anon_sym_SEMI, - ACTIONS(4149), 2, + ACTIONS(4531), 1, + anon_sym_RBRACK, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1949), 2, + STATE(1940), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -167690,60 +166451,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58532] = 22, + [58456] = 22, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4559), 1, + ACTIONS(4533), 1, anon_sym_RBRACK, - ACTIONS(4149), 2, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1950), 2, + STATE(1941), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -167754,60 +166515,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [58618] = 22, + [58542] = 22, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4561), 1, - anon_sym_RBRACK, - ACTIONS(4149), 2, + ACTIONS(4535), 1, + anon_sym_SEMI, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1951), 2, + STATE(1942), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -167818,60 +166579,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + [58628] = 17, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4071), 1, + anon_sym_where, + ACTIONS(4537), 1, + sym_identifier, + ACTIONS(4541), 1, + anon_sym_COLON_COLON, + ACTIONS(4547), 1, + sym_metavariable, + STATE(3166), 1, + sym_scoped_type_identifier, + STATE(3438), 1, + sym_generic_type, + STATE(3505), 1, + sym_scoped_identifier, + STATE(3636), 1, + sym_generic_type_with_turbofish, + STATE(3662), 1, + sym_bracketed_type, + STATE(1943), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4069), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + ACTIONS(4545), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(4543), 4, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + anon_sym_raw, + ACTIONS(4539), 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, [58704] = 22, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4563), 1, - anon_sym_RBRACK, - ACTIONS(4149), 2, + ACTIONS(4549), 1, + anon_sym_SEMI, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1952), 2, + STATE(1944), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -167887,55 +166707,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4565), 1, - anon_sym_RBRACK, - ACTIONS(4149), 2, + ACTIONS(4551), 1, + anon_sym_SEMI, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1953), 2, + STATE(1945), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -167951,55 +166771,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4567), 1, - anon_sym_SEMI, - ACTIONS(4149), 2, + ACTIONS(4553), 1, + anon_sym_RBRACK, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1954), 2, + STATE(1946), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -168015,55 +166835,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4569), 1, + ACTIONS(4555), 1, anon_sym_SEMI, - ACTIONS(4149), 2, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1955), 2, + STATE(1947), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -168079,55 +166899,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4571), 1, + ACTIONS(4557), 1, anon_sym_SEMI, - ACTIONS(4149), 2, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1956), 2, + STATE(1948), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -168143,55 +166963,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4573), 1, + ACTIONS(4559), 1, anon_sym_SEMI, - ACTIONS(4149), 2, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1957), 2, + STATE(1949), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -168207,55 +167027,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4575), 1, + ACTIONS(4561), 1, anon_sym_SEMI, - ACTIONS(4149), 2, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1958), 2, + STATE(1950), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -168271,55 +167091,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4577), 1, - anon_sym_SEMI, - ACTIONS(4149), 2, + ACTIONS(4563), 1, + anon_sym_RBRACK, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1959), 2, + STATE(1951), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -168330,60 +167150,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59392] = 22, + [59392] = 21, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(4393), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(4399), 1, anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4401), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4403), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4405), 1, anon_sym_PIPE, - ACTIONS(4159), 1, - anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4409), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4417), 1, + anon_sym_DOT, + ACTIONS(4423), 1, + anon_sym_as, + ACTIONS(4429), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4565), 1, anon_sym_DOT_DOT, - ACTIONS(4579), 1, - anon_sym_COMMA, - ACTIONS(4149), 2, + ACTIONS(4395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4411), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4415), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4421), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1960), 2, + ACTIONS(4457), 2, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + STATE(1952), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4397), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4413), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4427), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -168394,60 +167213,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59478] = 22, + [59476] = 22, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4581), 1, - anon_sym_RBRACK, - ACTIONS(4149), 2, + ACTIONS(4567), 1, + anon_sym_COMMA, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1961), 2, + STATE(1953), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -168458,60 +167277,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59564] = 22, + [59562] = 22, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4583), 1, - anon_sym_SEMI, - ACTIONS(4149), 2, + ACTIONS(4569), 1, + anon_sym_RBRACK, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1962), 2, + STATE(1954), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -168522,60 +167341,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59650] = 22, + [59648] = 22, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4461), 1, - anon_sym_COMMA, - ACTIONS(4149), 2, + ACTIONS(4571), 1, + anon_sym_SEMI, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1963), 2, + STATE(1955), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -168586,59 +167405,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [59736] = 21, + [59734] = 22, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4407), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(4413), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(4415), 1, + ACTIONS(3931), 1, + anon_sym_DOT, + ACTIONS(3999), 1, + anon_sym_as, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4417), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4419), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4423), 1, + ACTIONS(4149), 1, + anon_sym_AMP_AMP, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_DOT, - ACTIONS(4437), 1, - anon_sym_as, - ACTIONS(4443), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4585), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4409), 2, + ACTIONS(4573), 1, + anon_sym_SEMI, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4425), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4429), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4505), 2, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - ACTIONS(4587), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1964), 2, + STATE(1956), 2, sym_line_comment, sym_block_comment, - ACTIONS(4411), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4427), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4441), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -168654,55 +167474,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4589), 1, - anon_sym_SEMI, - ACTIONS(4149), 2, + ACTIONS(4575), 1, + anon_sym_COMMA, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1965), 2, + STATE(1957), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -168718,55 +167538,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4591), 1, + ACTIONS(4577), 1, anon_sym_COMMA, - ACTIONS(4149), 2, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1966), 2, + STATE(1958), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -168782,55 +167602,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4593), 1, - anon_sym_COMMA, - ACTIONS(4149), 2, + ACTIONS(4579), 1, + anon_sym_RBRACK, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1967), 2, + STATE(1959), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -168846,55 +167666,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4595), 1, + ACTIONS(4581), 1, anon_sym_RBRACK, - ACTIONS(4149), 2, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1968), 2, + STATE(1960), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -168910,178 +167730,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, - anon_sym_EQ, - ACTIONS(4273), 1, - anon_sym_DOT_DOT, - ACTIONS(4597), 1, - anon_sym_SEMI, - ACTIONS(4149), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4163), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4169), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4275), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1969), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4151), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4167), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4189), 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, - [60250] = 17, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(4055), 1, - anon_sym_where, - ACTIONS(4549), 1, - anon_sym_COLON_COLON, - ACTIONS(4555), 1, - sym_metavariable, - ACTIONS(4599), 1, - sym_identifier, - STATE(3148), 1, - sym_scoped_type_identifier, - STATE(3410), 1, - sym_generic_type, - STATE(3514), 1, - sym_scoped_identifier, - STATE(3646), 1, - sym_generic_type_with_turbofish, - STATE(3672), 1, - sym_bracketed_type, - STATE(1970), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4053), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - ACTIONS(4553), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4551), 4, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - anon_sym_raw, - ACTIONS(4547), 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, - [60326] = 22, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3901), 1, - anon_sym_LBRACK, - ACTIONS(3905), 1, - anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4153), 1, - anon_sym_CARET, - ACTIONS(4155), 1, - anon_sym_AMP, ACTIONS(4157), 1, - anon_sym_PIPE, - ACTIONS(4159), 1, - anon_sym_AMP_AMP, - ACTIONS(4161), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4601), 1, + ACTIONS(4431), 1, anon_sym_SEMI, - ACTIONS(4149), 2, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1971), 2, + STATE(1961), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -169092,60 +167789,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [60412] = 22, + [60250] = 22, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4439), 1, + ACTIONS(4583), 1, anon_sym_SEMI, - ACTIONS(4149), 2, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1972), 2, + STATE(1962), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -169156,60 +167853,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [60498] = 22, + [60336] = 22, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4603), 1, + ACTIONS(4585), 1, anon_sym_COMMA, - ACTIONS(4149), 2, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1973), 2, + STATE(1963), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -169220,60 +167917,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [60584] = 22, + [60422] = 21, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(4393), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(4399), 1, anon_sym_QMARK, - ACTIONS(3907), 1, - anon_sym_DOT, - ACTIONS(3991), 1, - anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4401), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4403), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4405), 1, anon_sym_PIPE, - ACTIONS(4159), 1, - anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4409), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4417), 1, + anon_sym_DOT, + ACTIONS(4423), 1, + anon_sym_as, + ACTIONS(4429), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4565), 1, anon_sym_DOT_DOT, - ACTIONS(4605), 1, - anon_sym_RBRACK, - ACTIONS(4149), 2, + ACTIONS(4395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4411), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4415), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4421), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1974), 2, + ACTIONS(4491), 2, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + STATE(1964), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4397), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4413), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4427), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -169284,48 +167980,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [60670] = 17, + [60506] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4055), 1, + ACTIONS(4071), 1, anon_sym_where, - ACTIONS(4549), 1, + ACTIONS(4541), 1, anon_sym_COLON_COLON, - ACTIONS(4555), 1, + ACTIONS(4547), 1, sym_metavariable, - ACTIONS(4607), 1, + ACTIONS(4587), 1, sym_identifier, - STATE(3076), 1, + STATE(3167), 1, sym_scoped_type_identifier, - STATE(3284), 1, + STATE(3443), 1, sym_generic_type, - STATE(3514), 1, + STATE(3505), 1, sym_scoped_identifier, - STATE(3646), 1, + STATE(3636), 1, sym_generic_type_with_turbofish, - STATE(3672), 1, + STATE(3662), 1, sym_bracketed_type, - STATE(1975), 2, + STATE(1965), 2, sym_line_comment, sym_block_comment, - ACTIONS(4053), 3, + ACTIONS(4069), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4553), 3, + ACTIONS(4545), 3, sym_self, sym_super, sym_crate, - ACTIONS(4551), 4, + ACTIONS(4543), 4, anon_sym_default, anon_sym_gen, anon_sym_union, anon_sym_raw, - ACTIONS(4547), 17, + ACTIONS(4539), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -169343,60 +168039,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [60746] = 22, + [60582] = 22, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4609), 1, - anon_sym_SEMI, - ACTIONS(4149), 2, + ACTIONS(4447), 1, + anon_sym_COMMA, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1976), 2, + STATE(1966), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -169407,60 +168103,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [60832] = 22, + [60668] = 22, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4407), 1, + ACTIONS(4393), 1, anon_sym_LBRACK, - ACTIONS(4413), 1, + ACTIONS(4399), 1, anon_sym_QMARK, - ACTIONS(4415), 1, + ACTIONS(4401), 1, anon_sym_CARET, - ACTIONS(4417), 1, + ACTIONS(4403), 1, anon_sym_AMP, - ACTIONS(4419), 1, + ACTIONS(4405), 1, anon_sym_PIPE, - ACTIONS(4423), 1, + ACTIONS(4409), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, + ACTIONS(4417), 1, anon_sym_DOT, - ACTIONS(4437), 1, + ACTIONS(4423), 1, anon_sym_as, - ACTIONS(4443), 1, + ACTIONS(4429), 1, anon_sym_EQ, - ACTIONS(4535), 1, + ACTIONS(4521), 1, anon_sym_EQ_GT, - ACTIONS(4585), 1, + ACTIONS(4565), 1, anon_sym_DOT_DOT, - ACTIONS(4611), 1, + ACTIONS(4589), 1, anon_sym_AMP_AMP, - ACTIONS(4409), 2, + ACTIONS(4395), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4425), 2, + ACTIONS(4411), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4429), 2, + ACTIONS(4415), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4587), 2, + ACTIONS(4421), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1977), 2, + STATE(1967), 2, sym_line_comment, sym_block_comment, - ACTIONS(4411), 3, + ACTIONS(4397), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4427), 4, + ACTIONS(4413), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4441), 10, + ACTIONS(4427), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -169471,119 +168167,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [60918] = 17, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(4055), 1, - anon_sym_where, - ACTIONS(4549), 1, - anon_sym_COLON_COLON, - ACTIONS(4555), 1, - sym_metavariable, - ACTIONS(4613), 1, - sym_identifier, - STATE(3167), 1, - sym_scoped_type_identifier, - STATE(3438), 1, - sym_generic_type, - STATE(3514), 1, - sym_scoped_identifier, - STATE(3646), 1, - sym_generic_type_with_turbofish, - STATE(3672), 1, - sym_bracketed_type, - STATE(1978), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4053), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - ACTIONS(4553), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4551), 4, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - anon_sym_raw, - ACTIONS(4547), 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, - [60994] = 22, + [60754] = 22, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4615), 1, + ACTIONS(4591), 1, anon_sym_RBRACK, - ACTIONS(4149), 2, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1979), 2, + STATE(1968), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -169594,59 +168231,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [61080] = 21, + [60840] = 22, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4407), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(4413), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(4415), 1, + ACTIONS(3931), 1, + anon_sym_DOT, + ACTIONS(3999), 1, + anon_sym_as, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4417), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4419), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4423), 1, + ACTIONS(4149), 1, + anon_sym_AMP_AMP, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4431), 1, - anon_sym_DOT, - ACTIONS(4437), 1, - anon_sym_as, - ACTIONS(4443), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4585), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4409), 2, + ACTIONS(4593), 1, + anon_sym_RBRACK, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4425), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4429), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4467), 2, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - ACTIONS(4587), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1980), 2, + STATE(1969), 2, sym_line_comment, sym_block_comment, - ACTIONS(4411), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4427), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4441), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -169657,60 +168295,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [61164] = 22, + [60926] = 22, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4617), 1, + ACTIONS(4595), 1, anon_sym_RBRACK, - ACTIONS(4149), 2, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1981), 2, + STATE(1970), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -169721,60 +168359,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [61250] = 22, + [61012] = 17, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3901), 1, + ACTIONS(4071), 1, + anon_sym_where, + ACTIONS(4541), 1, + anon_sym_COLON_COLON, + ACTIONS(4547), 1, + sym_metavariable, + ACTIONS(4597), 1, + sym_identifier, + STATE(3121), 1, + sym_scoped_type_identifier, + STATE(3376), 1, + sym_generic_type, + STATE(3505), 1, + sym_scoped_identifier, + STATE(3636), 1, + sym_generic_type_with_turbofish, + STATE(3662), 1, + sym_bracketed_type, + STATE(1971), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4069), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + ACTIONS(4545), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(4543), 4, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + anon_sym_raw, + ACTIONS(4539), 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, + [61088] = 22, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3925), 1, anon_sym_LBRACK, - ACTIONS(3905), 1, + ACTIONS(3929), 1, anon_sym_QMARK, - ACTIONS(3907), 1, + ACTIONS(3931), 1, anon_sym_DOT, - ACTIONS(3991), 1, + ACTIONS(3999), 1, anon_sym_as, - ACTIONS(4153), 1, + ACTIONS(4143), 1, anon_sym_CARET, - ACTIONS(4155), 1, + ACTIONS(4145), 1, anon_sym_AMP, - ACTIONS(4157), 1, + ACTIONS(4147), 1, anon_sym_PIPE, - ACTIONS(4159), 1, + ACTIONS(4149), 1, anon_sym_AMP_AMP, - ACTIONS(4161), 1, + ACTIONS(4151), 1, anon_sym_PIPE_PIPE, - ACTIONS(4191), 1, + ACTIONS(4157), 1, anon_sym_EQ, - ACTIONS(4273), 1, + ACTIONS(4269), 1, anon_sym_DOT_DOT, - ACTIONS(4619), 1, - anon_sym_RBRACK, - ACTIONS(4149), 2, + ACTIONS(4599), 1, + anon_sym_SEMI, + ACTIONS(4139), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4163), 2, + ACTIONS(4153), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4169), 2, + ACTIONS(4161), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4275), 2, + ACTIONS(4165), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1982), 2, + STATE(1972), 2, sym_line_comment, sym_block_comment, - ACTIONS(4151), 3, + ACTIONS(4141), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4167), 4, + ACTIONS(4159), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4189), 10, + ACTIONS(4155), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -169785,48 +168482,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [61336] = 17, + [61174] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4055), 1, + ACTIONS(4071), 1, anon_sym_where, - ACTIONS(4549), 1, + ACTIONS(4541), 1, anon_sym_COLON_COLON, - ACTIONS(4555), 1, + ACTIONS(4547), 1, sym_metavariable, - ACTIONS(4621), 1, + ACTIONS(4601), 1, sym_identifier, - STATE(3191), 1, + STATE(3169), 1, sym_scoped_type_identifier, - STATE(3486), 1, + STATE(3449), 1, sym_generic_type, - STATE(3514), 1, + STATE(3505), 1, sym_scoped_identifier, - STATE(3646), 1, + STATE(3636), 1, sym_generic_type_with_turbofish, - STATE(3672), 1, + STATE(3662), 1, sym_bracketed_type, - STATE(1983), 2, + STATE(1973), 2, sym_line_comment, sym_block_comment, - ACTIONS(4053), 3, + ACTIONS(4069), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4553), 3, + ACTIONS(4545), 3, sym_self, sym_super, sym_crate, - ACTIONS(4551), 4, + ACTIONS(4543), 4, anon_sym_default, anon_sym_gen, anon_sym_union, anon_sym_raw, - ACTIONS(4547), 17, + ACTIONS(4539), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -169844,48 +168541,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [61412] = 17, + [61250] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4055), 1, + ACTIONS(4071), 1, anon_sym_where, - ACTIONS(4549), 1, + ACTIONS(4541), 1, anon_sym_COLON_COLON, - ACTIONS(4555), 1, + ACTIONS(4547), 1, sym_metavariable, - ACTIONS(4623), 1, + ACTIONS(4603), 1, sym_identifier, - STATE(3173), 1, + STATE(3174), 1, sym_scoped_type_identifier, - STATE(3456), 1, + STATE(3460), 1, sym_generic_type, - STATE(3514), 1, + STATE(3505), 1, sym_scoped_identifier, - STATE(3646), 1, + STATE(3636), 1, sym_generic_type_with_turbofish, - STATE(3672), 1, + STATE(3662), 1, sym_bracketed_type, - STATE(1984), 2, + STATE(1974), 2, sym_line_comment, sym_block_comment, - ACTIONS(4053), 3, + ACTIONS(4069), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4553), 3, + ACTIONS(4545), 3, sym_self, sym_super, sym_crate, - ACTIONS(4551), 4, + ACTIONS(4543), 4, anon_sym_default, anon_sym_gen, anon_sym_union, anon_sym_raw, - ACTIONS(4547), 17, + ACTIONS(4539), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -169903,48 +168600,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [61488] = 17, + [61326] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4055), 1, + ACTIONS(4071), 1, anon_sym_where, - ACTIONS(4549), 1, + ACTIONS(4541), 1, anon_sym_COLON_COLON, - ACTIONS(4555), 1, + ACTIONS(4547), 1, sym_metavariable, - ACTIONS(4625), 1, + ACTIONS(4605), 1, sym_identifier, - STATE(3178), 1, + STATE(3176), 1, sym_scoped_type_identifier, - STATE(3467), 1, + STATE(3461), 1, sym_generic_type, - STATE(3514), 1, + STATE(3505), 1, sym_scoped_identifier, - STATE(3646), 1, + STATE(3636), 1, sym_generic_type_with_turbofish, - STATE(3672), 1, + STATE(3662), 1, sym_bracketed_type, - STATE(1985), 2, + STATE(1975), 2, sym_line_comment, sym_block_comment, - ACTIONS(4053), 3, + ACTIONS(4069), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4553), 3, + ACTIONS(4545), 3, sym_self, sym_super, sym_crate, - ACTIONS(4551), 4, + ACTIONS(4543), 4, anon_sym_default, anon_sym_gen, anon_sym_union, anon_sym_raw, - ACTIONS(4547), 17, + ACTIONS(4539), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -169962,48 +168659,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [61564] = 17, + [61402] = 17, ACTIONS(29), 1, anon_sym_LT, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4055), 1, + ACTIONS(4071), 1, anon_sym_where, - ACTIONS(4549), 1, + ACTIONS(4541), 1, anon_sym_COLON_COLON, - ACTIONS(4555), 1, + ACTIONS(4547), 1, sym_metavariable, - ACTIONS(4627), 1, + ACTIONS(4607), 1, sym_identifier, - STATE(3185), 1, + STATE(3180), 1, sym_scoped_type_identifier, - STATE(3475), 1, + STATE(3469), 1, sym_generic_type, - STATE(3514), 1, + STATE(3505), 1, sym_scoped_identifier, - STATE(3646), 1, + STATE(3636), 1, sym_generic_type_with_turbofish, - STATE(3672), 1, + STATE(3662), 1, sym_bracketed_type, - STATE(1986), 2, + STATE(1976), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4069), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + ACTIONS(4545), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(4543), 4, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + anon_sym_raw, + ACTIONS(4539), 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, + [61478] = 17, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4071), 1, + anon_sym_where, + ACTIONS(4541), 1, + anon_sym_COLON_COLON, + ACTIONS(4547), 1, + sym_metavariable, + ACTIONS(4609), 1, + sym_identifier, + STATE(2933), 1, + sym_scoped_type_identifier, + STATE(3488), 1, + sym_generic_type, + STATE(3505), 1, + sym_scoped_identifier, + STATE(3636), 1, + sym_generic_type_with_turbofish, + STATE(3662), 1, + sym_bracketed_type, + STATE(1977), 2, sym_line_comment, sym_block_comment, - ACTIONS(4053), 3, + ACTIONS(4069), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4553), 3, + ACTIONS(4545), 3, sym_self, sym_super, sym_crate, - ACTIONS(4551), 4, + ACTIONS(4543), 4, anon_sym_default, anon_sym_gen, anon_sym_union, anon_sym_raw, - ACTIONS(4547), 17, + ACTIONS(4539), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -170021,19 +168777,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + [61554] = 22, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3925), 1, + anon_sym_LBRACK, + ACTIONS(3929), 1, + anon_sym_QMARK, + ACTIONS(3931), 1, + anon_sym_DOT, + ACTIONS(3999), 1, + anon_sym_as, + ACTIONS(4143), 1, + anon_sym_CARET, + ACTIONS(4145), 1, + anon_sym_AMP, + ACTIONS(4147), 1, + anon_sym_PIPE, + ACTIONS(4149), 1, + anon_sym_AMP_AMP, + ACTIONS(4151), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4157), 1, + anon_sym_EQ, + ACTIONS(4269), 1, + anon_sym_DOT_DOT, + ACTIONS(4611), 1, + anon_sym_SEMI, + ACTIONS(4139), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4153), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4161), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4165), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1978), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4141), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4159), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4155), 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, [61640] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1987), 2, + STATE(1979), 2, sym_line_comment, sym_block_comment, - ACTIONS(4631), 3, + ACTIONS(4615), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(4629), 30, + ACTIONS(4613), 30, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -170069,14 +168889,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1988), 2, + STATE(1980), 2, sym_line_comment, sym_block_comment, - ACTIONS(4635), 3, + ACTIONS(4619), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(4633), 30, + ACTIONS(4617), 30, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -170112,14 +168932,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(1989), 2, + STATE(1981), 2, sym_line_comment, sym_block_comment, - ACTIONS(4639), 3, + ACTIONS(4623), 3, anon_sym_LT, anon_sym_COLON_COLON, sym_metavariable, - ACTIONS(4637), 30, + ACTIONS(4621), 30, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -170157,28 +168977,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(2301), 1, + ACTIONS(2321), 1, anon_sym_COLON_COLON, - ACTIONS(4641), 1, + ACTIONS(4625), 1, sym_identifier, - ACTIONS(4647), 1, + ACTIONS(4631), 1, sym_metavariable, - STATE(2380), 1, + STATE(2391), 1, sym_scoped_identifier, - STATE(3740), 1, - sym_bracketed_type, - STATE(3798), 1, + STATE(3520), 1, sym_attribute, - STATE(3804), 1, + STATE(3723), 1, + sym_bracketed_type, + STATE(3791), 1, sym_generic_type_with_turbofish, - STATE(1990), 2, + STATE(1982), 2, sym_line_comment, sym_block_comment, - ACTIONS(4645), 3, + ACTIONS(4629), 3, sym_self, sym_super, sym_crate, - ACTIONS(4643), 21, + ACTIONS(4627), 21, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -170207,28 +169027,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(2301), 1, + ACTIONS(2321), 1, anon_sym_COLON_COLON, - ACTIONS(4641), 1, + ACTIONS(4625), 1, sym_identifier, - ACTIONS(4647), 1, + ACTIONS(4631), 1, sym_metavariable, - STATE(2380), 1, + STATE(2391), 1, sym_scoped_identifier, - STATE(3592), 1, - sym_attribute, - STATE(3740), 1, + STATE(3723), 1, sym_bracketed_type, - STATE(3804), 1, + STATE(3741), 1, + sym_attribute, + STATE(3791), 1, sym_generic_type_with_turbofish, - STATE(1991), 2, + STATE(1983), 2, sym_line_comment, sym_block_comment, - ACTIONS(4645), 3, + ACTIONS(4629), 3, sym_self, sym_super, sym_crate, - ACTIONS(4643), 21, + ACTIONS(4627), 21, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -170257,28 +169077,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(2301), 1, + ACTIONS(2321), 1, anon_sym_COLON_COLON, - ACTIONS(4641), 1, + ACTIONS(4625), 1, sym_identifier, - ACTIONS(4647), 1, + ACTIONS(4631), 1, sym_metavariable, - STATE(2380), 1, + STATE(2391), 1, sym_scoped_identifier, - STATE(3670), 1, + STATE(3585), 1, sym_attribute, - STATE(3740), 1, + STATE(3723), 1, sym_bracketed_type, - STATE(3804), 1, + STATE(3791), 1, sym_generic_type_with_turbofish, - STATE(1992), 2, + STATE(1984), 2, sym_line_comment, sym_block_comment, - ACTIONS(4645), 3, + ACTIONS(4629), 3, sym_self, sym_super, sym_crate, - ACTIONS(4643), 21, + ACTIONS(4627), 21, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -170307,28 +169127,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(2301), 1, + ACTIONS(2321), 1, anon_sym_COLON_COLON, - ACTIONS(4641), 1, + ACTIONS(4625), 1, sym_identifier, - ACTIONS(4647), 1, + ACTIONS(4631), 1, sym_metavariable, - STATE(2380), 1, + STATE(2391), 1, sym_scoped_identifier, - STATE(3740), 1, - sym_bracketed_type, - STATE(3753), 1, + STATE(3619), 1, sym_attribute, - STATE(3804), 1, + STATE(3723), 1, + sym_bracketed_type, + STATE(3791), 1, sym_generic_type_with_turbofish, - STATE(1993), 2, + STATE(1985), 2, sym_line_comment, sym_block_comment, - ACTIONS(4645), 3, + ACTIONS(4629), 3, sym_self, sym_super, sym_crate, - ACTIONS(4643), 21, + ACTIONS(4627), 21, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -170357,28 +169177,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(2301), 1, + ACTIONS(2321), 1, anon_sym_COLON_COLON, - ACTIONS(4641), 1, + ACTIONS(4625), 1, sym_identifier, - ACTIONS(4647), 1, + ACTIONS(4631), 1, sym_metavariable, - STATE(2380), 1, + STATE(2391), 1, sym_scoped_identifier, - STATE(3645), 1, + STATE(3576), 1, sym_attribute, - STATE(3740), 1, + STATE(3723), 1, sym_bracketed_type, - STATE(3804), 1, + STATE(3791), 1, sym_generic_type_with_turbofish, - STATE(1994), 2, + STATE(1986), 2, sym_line_comment, sym_block_comment, - ACTIONS(4645), 3, + ACTIONS(4629), 3, sym_self, sym_super, sym_crate, - ACTIONS(4643), 21, + ACTIONS(4627), 21, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -170407,28 +169227,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(2301), 1, + ACTIONS(2321), 1, anon_sym_COLON_COLON, - ACTIONS(4641), 1, + ACTIONS(4625), 1, sym_identifier, - ACTIONS(4647), 1, + ACTIONS(4631), 1, sym_metavariable, - STATE(2380), 1, + STATE(2391), 1, sym_scoped_identifier, - STATE(3536), 1, + STATE(3498), 1, sym_attribute, - STATE(3740), 1, + STATE(3723), 1, sym_bracketed_type, - STATE(3804), 1, + STATE(3791), 1, sym_generic_type_with_turbofish, - STATE(1995), 2, + STATE(1987), 2, sym_line_comment, sym_block_comment, - ACTIONS(4645), 3, + ACTIONS(4629), 3, sym_self, sym_super, sym_crate, - ACTIONS(4643), 21, + ACTIONS(4627), 21, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -170457,28 +169277,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(2301), 1, + ACTIONS(2321), 1, anon_sym_COLON_COLON, - ACTIONS(4641), 1, + ACTIONS(4625), 1, sym_identifier, - ACTIONS(4647), 1, + ACTIONS(4631), 1, sym_metavariable, - STATE(2380), 1, + STATE(2391), 1, sym_scoped_identifier, - STATE(3540), 1, + STATE(3649), 1, sym_attribute, - STATE(3740), 1, + STATE(3723), 1, sym_bracketed_type, - STATE(3804), 1, + STATE(3791), 1, sym_generic_type_with_turbofish, - STATE(1996), 2, + STATE(1988), 2, sym_line_comment, sym_block_comment, - ACTIONS(4645), 3, + ACTIONS(4629), 3, sym_self, sym_super, sym_crate, - ACTIONS(4643), 21, + ACTIONS(4627), 21, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -170507,28 +169327,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(2301), 1, + ACTIONS(2321), 1, anon_sym_COLON_COLON, - ACTIONS(4641), 1, + ACTIONS(4625), 1, sym_identifier, - ACTIONS(4647), 1, + ACTIONS(4631), 1, sym_metavariable, - STATE(2380), 1, + STATE(2391), 1, sym_scoped_identifier, - STATE(3603), 1, + STATE(3543), 1, sym_attribute, - STATE(3740), 1, + STATE(3723), 1, sym_bracketed_type, - STATE(3804), 1, + STATE(3791), 1, sym_generic_type_with_turbofish, - STATE(1997), 2, + STATE(1989), 2, sym_line_comment, sym_block_comment, - ACTIONS(4645), 3, + ACTIONS(4629), 3, sym_self, sym_super, sym_crate, - ACTIONS(4643), 21, + ACTIONS(4627), 21, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -170557,28 +169377,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(2301), 1, + ACTIONS(2321), 1, anon_sym_COLON_COLON, - ACTIONS(4641), 1, + ACTIONS(4625), 1, sym_identifier, - ACTIONS(4647), 1, + ACTIONS(4631), 1, sym_metavariable, - STATE(2380), 1, + STATE(2391), 1, sym_scoped_identifier, - STATE(3593), 1, + STATE(3570), 1, sym_attribute, - STATE(3740), 1, + STATE(3723), 1, sym_bracketed_type, - STATE(3804), 1, + STATE(3791), 1, sym_generic_type_with_turbofish, - STATE(1998), 2, + STATE(1990), 2, sym_line_comment, sym_block_comment, - ACTIONS(4645), 3, + ACTIONS(4629), 3, sym_self, sym_super, sym_crate, - ACTIONS(4643), 21, + ACTIONS(4627), 21, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -170607,26 +169427,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4649), 1, + ACTIONS(4633), 1, sym_identifier, - ACTIONS(4653), 1, + ACTIONS(4637), 1, anon_sym_COLON_COLON, - ACTIONS(4657), 1, + ACTIONS(4641), 1, sym_metavariable, - STATE(3493), 1, + STATE(3421), 1, sym_scoped_identifier, - STATE(3502), 1, - sym_bracketed_type, - STATE(3606), 1, + STATE(3605), 1, sym_generic_type_with_turbofish, - STATE(1999), 2, + STATE(3770), 1, + sym_bracketed_type, + STATE(1991), 2, sym_line_comment, sym_block_comment, - ACTIONS(4655), 3, + ACTIONS(4639), 3, sym_self, sym_super, sym_crate, - ACTIONS(4651), 21, + ACTIONS(4635), 21, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -170655,26 +169475,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4653), 1, + ACTIONS(4637), 1, anon_sym_COLON_COLON, - ACTIONS(4659), 1, + ACTIONS(4643), 1, sym_identifier, - ACTIONS(4665), 1, + ACTIONS(4649), 1, sym_metavariable, - STATE(3297), 1, + STATE(3203), 1, sym_scoped_identifier, - STATE(3502), 1, - sym_bracketed_type, - STATE(3606), 1, + STATE(3605), 1, sym_generic_type_with_turbofish, - STATE(2000), 2, + STATE(3770), 1, + sym_bracketed_type, + STATE(1992), 2, sym_line_comment, sym_block_comment, - ACTIONS(4663), 3, + ACTIONS(4647), 3, sym_self, sym_super, sym_crate, - ACTIONS(4661), 21, + ACTIONS(4645), 21, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -170701,12 +169521,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(958), 1, + ACTIONS(984), 1, anon_sym_DOT_DOT, - STATE(2001), 2, + STATE(1993), 2, sym_line_comment, sym_block_comment, - ACTIONS(960), 20, + ACTIONS(986), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170732,12 +169552,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1016), 1, + ACTIONS(958), 1, anon_sym_DOT_DOT, - STATE(2002), 2, + STATE(1994), 2, sym_line_comment, sym_block_comment, - ACTIONS(1018), 20, + ACTIONS(960), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170763,31 +169583,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4669), 1, + ACTIONS(4653), 1, anon_sym_LPAREN, - ACTIONS(4671), 1, + ACTIONS(4655), 1, anon_sym_LBRACE, - ACTIONS(4673), 1, + ACTIONS(4657), 1, anon_sym_COLON, - ACTIONS(4675), 1, + ACTIONS(4659), 1, anon_sym_BANG, - ACTIONS(4677), 1, + ACTIONS(4661), 1, anon_sym_AT, - ACTIONS(4679), 1, + ACTIONS(4663), 1, anon_sym_DOT_DOT, - ACTIONS(4683), 1, + ACTIONS(4667), 1, anon_sym_COLON_COLON, - ACTIONS(4685), 1, + ACTIONS(4669), 1, anon_sym_LT2, - STATE(2029), 1, + STATE(2022), 1, sym_type_arguments, - ACTIONS(4681), 2, + ACTIONS(4665), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2003), 2, + STATE(1995), 2, sym_line_comment, sym_block_comment, - ACTIONS(4667), 9, + ACTIONS(4651), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -170802,15 +169622,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3545), 1, + ACTIONS(3555), 1, anon_sym_COLON, - ACTIONS(3549), 2, + ACTIONS(3559), 2, anon_sym_BANG, anon_sym_COLON_COLON, - STATE(2004), 2, + STATE(1996), 2, sym_line_comment, sym_block_comment, - ACTIONS(3543), 17, + ACTIONS(3553), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -170833,15 +169653,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3579), 1, + ACTIONS(3511), 1, anon_sym_COLON, - ACTIONS(3583), 2, + ACTIONS(3515), 2, anon_sym_BANG, anon_sym_COLON_COLON, - STATE(2005), 2, + STATE(1997), 2, sym_line_comment, sym_block_comment, - ACTIONS(3577), 17, + ACTIONS(3509), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -170864,15 +169684,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3553), 1, + ACTIONS(3547), 1, anon_sym_COLON, - ACTIONS(3557), 2, + ACTIONS(3551), 2, anon_sym_BANG, anon_sym_COLON_COLON, - STATE(2006), 2, + STATE(1998), 2, sym_line_comment, sym_block_comment, - ACTIONS(3551), 17, + ACTIONS(3545), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -170895,15 +169715,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3565), 1, + ACTIONS(3563), 1, anon_sym_COLON, - ACTIONS(3569), 2, + ACTIONS(3567), 2, anon_sym_BANG, anon_sym_COLON_COLON, - STATE(2007), 2, + STATE(1999), 2, sym_line_comment, sym_block_comment, - ACTIONS(3563), 17, + ACTIONS(3561), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -170926,47 +169746,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3567), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(2008), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3563), 3, - anon_sym_LBRACE, - anon_sym_for, - anon_sym_LT2, - ACTIONS(3569), 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, - [62780] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3581), 2, + ACTIONS(3549), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2009), 2, + STATE(2000), 2, sym_line_comment, sym_block_comment, - ACTIONS(3577), 3, + ACTIONS(3545), 3, anon_sym_LBRACE, anon_sym_for, anon_sym_LT2, - ACTIONS(3583), 14, + ACTIONS(3551), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -170976,109 +169766,52 @@ static const uint16_t ts_small_parse_table[] = { 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, - [62816] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3771), 1, - anon_sym_COLON, - STATE(2010), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3769), 18, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_for, - anon_sym_where, - anon_sym_else, - anon_sym_in, - [62850] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3713), 1, - anon_sym_COLON, - STATE(2011), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3711), 18, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, + anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_for, - anon_sym_where, anon_sym_else, anon_sym_in, - [62884] = 5, + [62780] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3761), 1, + ACTIONS(3557), 2, anon_sym_COLON, - STATE(2012), 2, + anon_sym_DOT_DOT, + STATE(2001), 2, sym_line_comment, sym_block_comment, - ACTIONS(3759), 18, + ACTIONS(3553), 3, + anon_sym_LBRACE, + anon_sym_for, + anon_sym_LT2, + ACTIONS(3559), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_PLUS, + anon_sym_BANG, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_for, - anon_sym_where, anon_sym_else, anon_sym_in, - [62918] = 5, + [62816] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3705), 1, + ACTIONS(3697), 1, anon_sym_COLON, - STATE(2013), 2, + STATE(2002), 2, sym_line_comment, sym_block_comment, - ACTIONS(3703), 18, + ACTIONS(3695), 18, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -171097,28 +169830,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_in, - [62952] = 10, + [62850] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(4687), 1, - anon_sym_LPAREN, - ACTIONS(4689), 1, - anon_sym_COLON_COLON, - STATE(2029), 1, - sym_type_arguments, - STATE(2099), 1, - sym_parameters, - STATE(2014), 2, + ACTIONS(3769), 1, + anon_sym_COLON, + STATE(2003), 2, sym_line_comment, sym_block_comment, - ACTIONS(3433), 13, + ACTIONS(3767), 18, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, @@ -171128,25 +169852,29 @@ 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, - [62996] = 6, + anon_sym_in, + [62884] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3555), 2, + ACTIONS(3565), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2015), 2, + STATE(2004), 2, sym_line_comment, sym_block_comment, - ACTIONS(3551), 3, + ACTIONS(3561), 3, anon_sym_LBRACE, anon_sym_for, anon_sym_LT2, - ACTIONS(3557), 14, + ACTIONS(3567), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -171161,27 +169889,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [63032] = 10, + [62920] = 10, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4675), 1, + ACTIONS(4659), 1, anon_sym_BANG, - ACTIONS(4685), 1, + ACTIONS(4669), 1, anon_sym_LT2, - ACTIONS(4687), 1, + ACTIONS(4671), 1, anon_sym_LPAREN, - ACTIONS(4689), 1, + ACTIONS(4673), 1, anon_sym_COLON_COLON, - STATE(2029), 1, + STATE(2022), 1, sym_type_arguments, - STATE(2099), 1, + STATE(2095), 1, sym_parameters, - STATE(2016), 2, + STATE(2005), 2, sym_line_comment, sym_block_comment, - ACTIONS(3445), 13, + ACTIONS(3460), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171195,27 +169923,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [63076] = 10, + [62964] = 10, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4675), 1, + ACTIONS(4659), 1, anon_sym_BANG, - ACTIONS(4685), 1, + ACTIONS(4669), 1, anon_sym_LT2, - ACTIONS(4687), 1, + ACTIONS(4671), 1, anon_sym_LPAREN, - ACTIONS(4689), 1, + ACTIONS(4673), 1, anon_sym_COLON_COLON, - STATE(2029), 1, + STATE(2022), 1, sym_type_arguments, - STATE(2099), 1, + STATE(2095), 1, sym_parameters, - STATE(2017), 2, + STATE(2006), 2, sym_line_comment, sym_block_comment, - ACTIONS(3470), 13, + ACTIONS(3444), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171229,22 +169957,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [63120] = 6, + [63008] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3547), 2, + ACTIONS(3513), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2018), 2, + STATE(2007), 2, sym_line_comment, sym_block_comment, - ACTIONS(3543), 3, + ACTIONS(3509), 3, anon_sym_LBRACE, anon_sym_for, anon_sym_LT2, - ACTIONS(3549), 14, + ACTIONS(3515), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -171259,102 +169987,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [63156] = 5, + [63044] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3555), 2, + ACTIONS(3737), 1, anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(2019), 2, + STATE(2008), 2, sym_line_comment, sym_block_comment, - ACTIONS(3557), 16, + ACTIONS(3735), 18, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_BANG, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_GT, anon_sym_COMMA, anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_for, + anon_sym_where, anon_sym_else, anon_sym_in, - [63189] = 5, + [63078] = 10, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3547), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(2020), 2, + ACTIONS(4659), 1, + anon_sym_BANG, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(4671), 1, + anon_sym_LPAREN, + ACTIONS(4673), 1, + anon_sym_COLON_COLON, + STATE(2022), 1, + sym_type_arguments, + STATE(2095), 1, + sym_parameters, + STATE(2009), 2, sym_line_comment, sym_block_comment, - ACTIONS(3549), 16, + ACTIONS(3425), 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, - [63222] = 5, + [63122] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3567), 2, + ACTIONS(3751), 1, anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(2021), 2, + STATE(2010), 2, sym_line_comment, sym_block_comment, - ACTIONS(3569), 16, + ACTIONS(3749), 18, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_BANG, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_GT, anon_sym_COMMA, anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_for, + anon_sym_where, anon_sym_else, anon_sym_in, - [63255] = 5, + [63156] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3581), 2, + ACTIONS(3549), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2022), 2, + STATE(2011), 2, sym_line_comment, sym_block_comment, - ACTIONS(3583), 16, + ACTIONS(3551), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -171371,84 +170107,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [63288] = 14, + [63189] = 14, ACTIONS(37), 1, anon_sym_SQUOTE, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1072), 1, + ACTIONS(1066), 1, anon_sym_DASH, - ACTIONS(1122), 1, + ACTIONS(1116), 1, aux_sym_string_literal_token1, - ACTIONS(1132), 1, + ACTIONS(1126), 1, sym__raw_string_literal_start, - ACTIONS(1622), 1, + ACTIONS(1614), 1, anon_sym_LBRACE, - ACTIONS(4691), 1, + ACTIONS(4675), 1, sym_identifier, - STATE(3774), 1, + STATE(3764), 1, sym_label, - ACTIONS(1124), 2, + ACTIONS(1118), 2, anon_sym_true, anon_sym_false, - STATE(2023), 2, + STATE(2012), 2, sym_line_comment, sym_block_comment, - ACTIONS(1648), 3, + ACTIONS(1640), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - STATE(2884), 3, + STATE(3073), 3, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - STATE(3215), 3, + STATE(3286), 3, sym_block, sym__literal, sym_negative_literal, - [63339] = 9, + [63240] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(4687), 1, + ACTIONS(3565), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(2013), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3567), 16, + anon_sym_SEMI, anon_sym_LPAREN, - ACTIONS(4693), 1, + 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, - STATE(2029), 1, - sym_type_arguments, - STATE(2099), 1, - sym_parameters, - STATE(2024), 2, + anon_sym_else, + anon_sym_in, + [63273] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3513), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(2014), 2, sym_line_comment, sym_block_comment, - ACTIONS(3501), 13, + ACTIONS(3515), 16, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_PLUS, + anon_sym_BANG, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, + anon_sym_COLON_COLON, anon_sym_else, - [63380] = 4, + anon_sym_in, + [63306] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2025), 2, + STATE(2015), 2, sym_line_comment, sym_block_comment, - ACTIONS(3551), 18, + ACTIONS(3561), 18, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -171467,17 +170227,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_LT2, - [63411] = 5, + [63337] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3797), 1, + ACTIONS(3557), 2, anon_sym_COLON, - STATE(2026), 2, + anon_sym_DOT_DOT, + STATE(2016), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3559), 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, + [63370] = 9, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(4671), 1, + anon_sym_LPAREN, + ACTIONS(4677), 1, + anon_sym_COLON_COLON, + STATE(2022), 1, + sym_type_arguments, + STATE(2095), 1, + sym_parameters, + STATE(2017), 2, sym_line_comment, sym_block_comment, - ACTIONS(3795), 16, + ACTIONS(3488), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171488,29 +170284,26 @@ 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, - [63443] = 8, + [63411] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, + ACTIONS(4669), 1, anon_sym_LT2, - ACTIONS(4687), 1, + ACTIONS(4671), 1, anon_sym_LPAREN, - STATE(2026), 1, + STATE(2023), 1, sym_type_arguments, - STATE(2100), 1, + STATE(2096), 1, sym_parameters, - STATE(2027), 2, + STATE(2018), 2, sym_line_comment, sym_block_comment, - ACTIONS(3531), 13, + ACTIONS(3505), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171524,125 +170317,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [63481] = 12, + [63449] = 12, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, + ACTIONS(4669), 1, anon_sym_LT2, - ACTIONS(4697), 1, + ACTIONS(4681), 1, anon_sym_COLON, - ACTIONS(4699), 1, + ACTIONS(4683), 1, anon_sym_BANG, - ACTIONS(4701), 1, + ACTIONS(4685), 1, anon_sym_DOT_DOT, - ACTIONS(4705), 1, + ACTIONS(4689), 1, anon_sym_COLON_COLON, - STATE(2033), 1, + STATE(2024), 1, sym_type_arguments, - ACTIONS(4703), 2, + ACTIONS(4687), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2028), 2, + STATE(2019), 2, sym_line_comment, sym_block_comment, - ACTIONS(4695), 3, + ACTIONS(4679), 3, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_COMMA, - ACTIONS(3621), 6, + ACTIONS(3613), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [63527] = 5, + [63495] = 11, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3793), 1, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(4681), 1, anon_sym_COLON, - STATE(2029), 2, + ACTIONS(4683), 1, + anon_sym_BANG, + ACTIONS(4685), 1, + anon_sym_DOT_DOT, + ACTIONS(4691), 1, + anon_sym_COLON_COLON, + STATE(2024), 1, + sym_type_arguments, + ACTIONS(4687), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2020), 2, sym_line_comment, sym_block_comment, - ACTIONS(3791), 16, + ACTIONS(4679), 9, 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, - [63559] = 19, + anon_sym_in, + [63539] = 19, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4709), 1, + ACTIONS(4695), 1, anon_sym_const, - ACTIONS(4711), 1, + ACTIONS(4697), 1, anon_sym_enum, - ACTIONS(4713), 1, + ACTIONS(4699), 1, anon_sym_fn, - ACTIONS(4715), 1, + ACTIONS(4701), 1, anon_sym_mod, - ACTIONS(4717), 1, + ACTIONS(4703), 1, anon_sym_static, - ACTIONS(4719), 1, + ACTIONS(4705), 1, anon_sym_struct, - ACTIONS(4721), 1, + ACTIONS(4707), 1, anon_sym_trait, - ACTIONS(4723), 1, + ACTIONS(4709), 1, anon_sym_type, - ACTIONS(4725), 1, + ACTIONS(4711), 1, anon_sym_union, - ACTIONS(4727), 1, + ACTIONS(4713), 1, anon_sym_unsafe, - ACTIONS(4729), 1, + ACTIONS(4715), 1, anon_sym_use, - ACTIONS(4731), 1, + ACTIONS(4717), 1, anon_sym_extern, - STATE(2336), 1, + STATE(2329), 1, aux_sym_function_modifiers_repeat1, - STATE(2421), 1, + STATE(2431), 1, sym_extern_modifier, - STATE(3573), 1, + STATE(3580), 1, sym_function_modifiers, - ACTIONS(4707), 2, + ACTIONS(4693), 2, anon_sym_async, anon_sym_default, - STATE(2030), 2, + STATE(2021), 2, sym_line_comment, sym_block_comment, - [63619] = 8, + [63599] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(4687), 1, - anon_sym_LPAREN, - STATE(2026), 1, - sym_type_arguments, - STATE(2100), 1, - sym_parameters, - STATE(2031), 2, + ACTIONS(3793), 1, + anon_sym_COLON, + STATE(2022), 2, sym_line_comment, sym_block_comment, - ACTIONS(3509), 13, + ACTIONS(3791), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171653,26 +170446,23 @@ 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, - [63657] = 8, + [63631] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(4687), 1, - anon_sym_LPAREN, - STATE(2026), 1, - sym_type_arguments, - STATE(2100), 1, - sym_parameters, - STATE(2032), 2, + ACTIONS(3733), 1, + anon_sym_COLON, + STATE(2023), 2, sym_line_comment, sym_block_comment, - ACTIONS(3513), 13, + ACTIONS(3731), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171683,20 +170473,23 @@ 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, - [63695] = 5, + [63663] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3789), 1, + ACTIONS(3781), 1, anon_sym_COLON, - STATE(2033), 2, + STATE(2024), 2, sym_line_comment, sym_block_comment, - ACTIONS(3787), 16, + ACTIONS(3779), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171713,97 +170506,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_where, anon_sym_else, - [63727] = 11, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(4697), 1, - anon_sym_COLON, - ACTIONS(4699), 1, - anon_sym_BANG, - ACTIONS(4701), 1, - anon_sym_DOT_DOT, - ACTIONS(4733), 1, - anon_sym_COLON_COLON, - STATE(2033), 1, - sym_type_arguments, - ACTIONS(4703), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2034), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4695), 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, - [63771] = 19, + [63695] = 19, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4735), 1, + ACTIONS(4719), 1, anon_sym_const, - ACTIONS(4737), 1, + ACTIONS(4721), 1, anon_sym_enum, - ACTIONS(4739), 1, + ACTIONS(4723), 1, anon_sym_fn, - ACTIONS(4741), 1, + ACTIONS(4725), 1, anon_sym_mod, - ACTIONS(4743), 1, + ACTIONS(4727), 1, anon_sym_static, - ACTIONS(4745), 1, + ACTIONS(4729), 1, anon_sym_struct, - ACTIONS(4747), 1, + ACTIONS(4731), 1, anon_sym_trait, - ACTIONS(4749), 1, + ACTIONS(4733), 1, anon_sym_type, - ACTIONS(4751), 1, + ACTIONS(4735), 1, anon_sym_union, - ACTIONS(4753), 1, + ACTIONS(4737), 1, anon_sym_unsafe, - ACTIONS(4755), 1, + ACTIONS(4739), 1, anon_sym_use, - ACTIONS(4757), 1, + ACTIONS(4741), 1, anon_sym_extern, - STATE(2336), 1, + STATE(2329), 1, aux_sym_function_modifiers_repeat1, - STATE(2421), 1, + STATE(2431), 1, sym_extern_modifier, - STATE(3796), 1, + STATE(3786), 1, sym_function_modifiers, - ACTIONS(4707), 2, + ACTIONS(4693), 2, anon_sym_async, anon_sym_default, - STATE(2035), 2, + STATE(2025), 2, sym_line_comment, sym_block_comment, - [63831] = 8, + [63755] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, + ACTIONS(4669), 1, anon_sym_LT2, - ACTIONS(4687), 1, + ACTIONS(4671), 1, anon_sym_LPAREN, - STATE(2026), 1, + STATE(2023), 1, sym_type_arguments, - STATE(2100), 1, + STATE(2096), 1, sym_parameters, - STATE(2036), 2, + STATE(2026), 2, sym_line_comment, sym_block_comment, - ACTIONS(3523), 13, + ACTIONS(3531), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171817,56 +170577,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [63869] = 16, + [63793] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4671), 1, - anon_sym_LBRACE, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(4677), 1, - anon_sym_AT, - ACTIONS(4679), 1, - anon_sym_DOT_DOT, - ACTIONS(4685), 1, + ACTIONS(4669), 1, anon_sym_LT2, - ACTIONS(4759), 1, + ACTIONS(4671), 1, anon_sym_LPAREN, - ACTIONS(4761), 1, - anon_sym_RBRACK, - ACTIONS(4764), 1, - anon_sym_COLON_COLON, - STATE(2029), 1, + STATE(2023), 1, sym_type_arguments, - STATE(2099), 1, + STATE(2096), 1, sym_parameters, - ACTIONS(3445), 2, + STATE(2027), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3569), 13, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PLUS, - ACTIONS(4667), 2, anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, anon_sym_COMMA, - ACTIONS(4681), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2037), 2, - sym_line_comment, - sym_block_comment, - [63922] = 6, + anon_sym_SQUOTE, + anon_sym_where, + anon_sym_else, + [63831] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3511), 1, - anon_sym_COLON, - ACTIONS(4766), 1, - anon_sym_COLON_COLON, - STATE(2038), 2, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(4671), 1, + anon_sym_LPAREN, + STATE(2023), 1, + sym_type_arguments, + STATE(2096), 1, + sym_parameters, + STATE(2028), 2, sym_line_comment, sym_block_comment, - ACTIONS(3509), 14, + ACTIONS(3523), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171878,50 +170635,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, - [63955] = 5, + [63869] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4768), 1, - anon_sym_LPAREN, - STATE(2039), 2, + STATE(2029), 2, sym_line_comment, sym_block_comment, - ACTIONS(4135), 15, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_mod, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - [63986] = 4, + ACTIONS(1338), 16, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + anon_sym_in, + [63898] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2040), 2, + ACTIONS(3533), 1, + anon_sym_COLON, + ACTIONS(4743), 1, + anon_sym_COLON_COLON, + STATE(2030), 2, sym_line_comment, sym_block_comment, - ACTIONS(1136), 16, + ACTIONS(3531), 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, @@ -171931,16 +170689,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - anon_sym_in, - [64015] = 4, + [63931] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2041), 2, + STATE(2031), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 16, + ACTIONS(3739), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171957,19 +170714,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64044] = 6, + [63960] = 16, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3533), 1, + ACTIONS(4655), 1, + anon_sym_LBRACE, + ACTIONS(4659), 1, + anon_sym_BANG, + ACTIONS(4661), 1, + anon_sym_AT, + ACTIONS(4663), 1, + anon_sym_DOT_DOT, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(4745), 1, + anon_sym_LPAREN, + ACTIONS(4747), 1, + anon_sym_RBRACK, + ACTIONS(4750), 1, + anon_sym_COLON_COLON, + STATE(2022), 1, + sym_type_arguments, + STATE(2095), 1, + sym_parameters, + ACTIONS(3460), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(4651), 2, + anon_sym_PIPE, + anon_sym_COMMA, + ACTIONS(4665), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2032), 2, + sym_line_comment, + sym_block_comment, + [64013] = 11, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(4683), 1, + anon_sym_BANG, + ACTIONS(4685), 1, + anon_sym_DOT_DOT, + ACTIONS(4752), 1, + anon_sym_COLON_COLON, + STATE(2024), 1, + sym_type_arguments, + ACTIONS(4687), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2033), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4679), 3, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_COMMA, + ACTIONS(3613), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [64056] = 10, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4653), 1, + anon_sym_LPAREN, + ACTIONS(4657), 1, anon_sym_COLON, - ACTIONS(4770), 1, + ACTIONS(4659), 1, + anon_sym_BANG, + ACTIONS(4663), 1, + anon_sym_DOT_DOT, + ACTIONS(4754), 1, anon_sym_COLON_COLON, - STATE(2042), 2, + ACTIONS(4665), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2034), 2, sym_line_comment, sym_block_comment, - ACTIONS(3531), 14, + ACTIONS(4651), 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, + [64097] = 6, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3571), 1, + anon_sym_COLON, + ACTIONS(4743), 1, + anon_sym_COLON_COLON, + STATE(2035), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3569), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -171984,53 +170841,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64077] = 17, + [64130] = 16, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3445), 1, - anon_sym_PLUS, - ACTIONS(4667), 1, + ACTIONS(4651), 1, anon_sym_PIPE, - ACTIONS(4671), 1, + ACTIONS(4655), 1, anon_sym_LBRACE, - ACTIONS(4673), 1, + ACTIONS(4657), 1, anon_sym_COLON, - ACTIONS(4675), 1, + ACTIONS(4659), 1, anon_sym_BANG, - ACTIONS(4677), 1, + ACTIONS(4661), 1, anon_sym_AT, - ACTIONS(4679), 1, + ACTIONS(4663), 1, anon_sym_DOT_DOT, - ACTIONS(4685), 1, + ACTIONS(4669), 1, anon_sym_LT2, - ACTIONS(4772), 1, + ACTIONS(4756), 1, anon_sym_LPAREN, - ACTIONS(4774), 1, + ACTIONS(4758), 1, anon_sym_COLON_COLON, - STATE(2029), 1, + STATE(2022), 1, sym_type_arguments, - STATE(2099), 1, + STATE(2095), 1, sym_parameters, - ACTIONS(4681), 2, + ACTIONS(4665), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4761), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2043), 2, + STATE(2036), 2, sym_line_comment, sym_block_comment, - [64132] = 4, + ACTIONS(3460), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [64183] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2044), 2, + STATE(2037), 2, sym_line_comment, sym_block_comment, - ACTIONS(3799), 16, + ACTIONS(3775), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172047,21 +170903,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64161] = 4, + [64212] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2045), 2, + ACTIONS(3507), 1, + anon_sym_COLON, + ACTIONS(4743), 1, + anon_sym_COLON_COLON, + STATE(2038), 2, sym_line_comment, sym_block_comment, - ACTIONS(1056), 16, + ACTIONS(3505), 14, 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_as, + anon_sym_where, + anon_sym_else, + [64245] = 6, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3571), 1, anon_sym_COLON, + ACTIONS(4760), 1, + anon_sym_COLON_COLON, + STATE(2039), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3569), 14, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, @@ -172071,16 +170957,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - anon_sym_in, - [64190] = 4, + [64278] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2046), 2, + STATE(173), 1, + sym_fragment_specifier, + ACTIONS(4764), 2, + anon_sym_expr, + anon_sym_pat, + STATE(2040), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4762), 13, + anon_sym_block, + anon_sym_expr_2021, + anon_sym_ident, + anon_sym_item, + anon_sym_lifetime, + anon_sym_literal, + anon_sym_meta, + anon_sym_pat_param, + anon_sym_path, + anon_sym_stmt, + anon_sym_tt, + anon_sym_ty, + anon_sym_vis, + [64311] = 4, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(2041), 2, sym_line_comment, sym_block_comment, - ACTIONS(1528), 16, + ACTIONS(1470), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172097,46 +171009,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_in, - [64219] = 10, + [64340] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4669), 1, - anon_sym_LPAREN, - ACTIONS(4673), 1, + ACTIONS(3525), 1, anon_sym_COLON, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(4679), 1, - anon_sym_DOT_DOT, - ACTIONS(4776), 1, + ACTIONS(4743), 1, anon_sym_COLON_COLON, - ACTIONS(4681), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2047), 2, + STATE(2042), 2, sym_line_comment, sym_block_comment, - ACTIONS(4667), 9, + ACTIONS(3523), 14, 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_as, + anon_sym_where, anon_sym_else, - anon_sym_in, - [64260] = 4, + [64373] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2048), 2, + STATE(2043), 2, sym_line_comment, sym_block_comment, - ACTIONS(3763), 16, + ACTIONS(1546), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172148,20 +171056,20 @@ 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, - [64289] = 4, + anon_sym_in, + [64402] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2049), 2, + STATE(2044), 2, sym_line_comment, sym_block_comment, - ACTIONS(1512), 16, + ACTIONS(3701), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172173,84 +171081,109 @@ 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, - [64318] = 16, + [64431] = 17, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4667), 1, + ACTIONS(3460), 1, + anon_sym_PLUS, + ACTIONS(4651), 1, anon_sym_PIPE, - ACTIONS(4671), 1, + ACTIONS(4655), 1, anon_sym_LBRACE, - ACTIONS(4673), 1, + ACTIONS(4657), 1, anon_sym_COLON, - ACTIONS(4675), 1, + ACTIONS(4659), 1, anon_sym_BANG, - ACTIONS(4677), 1, + ACTIONS(4661), 1, anon_sym_AT, - ACTIONS(4679), 1, + ACTIONS(4663), 1, anon_sym_DOT_DOT, - ACTIONS(4685), 1, + ACTIONS(4669), 1, anon_sym_LT2, - ACTIONS(4778), 1, + ACTIONS(4766), 1, anon_sym_LPAREN, - ACTIONS(4780), 1, + ACTIONS(4768), 1, anon_sym_COLON_COLON, - STATE(2029), 1, + STATE(2022), 1, sym_type_arguments, - STATE(2099), 1, + STATE(2095), 1, sym_parameters, - ACTIONS(4681), 2, + ACTIONS(4665), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2050), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3445), 3, + ACTIONS(4747), 2, anon_sym_RPAREN, - anon_sym_PLUS, anon_sym_COMMA, - [64371] = 6, + STATE(2045), 2, + sym_line_comment, + sym_block_comment, + [64486] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3511), 1, - anon_sym_COLON, ACTIONS(4770), 1, - anon_sym_COLON_COLON, - STATE(2051), 2, + anon_sym_LPAREN, + STATE(2046), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4121), 15, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_mod, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + [64517] = 4, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(2047), 2, sym_line_comment, sym_block_comment, - ACTIONS(3509), 14, + ACTIONS(3753), 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, - [64404] = 4, + [64546] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2052), 2, + STATE(2048), 2, sym_line_comment, sym_block_comment, - ACTIONS(3781), 16, + ACTIONS(3687), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172267,42 +171200,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64433] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - STATE(183), 1, - sym_fragment_specifier, - ACTIONS(4784), 2, - anon_sym_expr, - anon_sym_pat, - STATE(2053), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4782), 13, - anon_sym_block, - anon_sym_expr_2021, - anon_sym_ident, - anon_sym_item, - anon_sym_lifetime, - anon_sym_literal, - anon_sym_meta, - anon_sym_pat_param, - anon_sym_path, - anon_sym_stmt, - anon_sym_tt, - anon_sym_ty, - anon_sym_vis, - [64466] = 4, + [64575] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2054), 2, + STATE(2049), 2, sym_line_comment, sym_block_comment, - ACTIONS(3721), 16, + ACTIONS(1296), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172314,61 +171220,53 @@ 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, - [64495] = 11, + anon_sym_in, + [64604] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(4699), 1, - anon_sym_BANG, - ACTIONS(4701), 1, - anon_sym_DOT_DOT, - ACTIONS(4786), 1, + ACTIONS(3571), 1, + anon_sym_COLON, + ACTIONS(4772), 1, anon_sym_COLON_COLON, - STATE(2033), 1, - sym_type_arguments, - ACTIONS(4703), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2055), 2, + STATE(2050), 2, sym_line_comment, sym_block_comment, - ACTIONS(4695), 3, + ACTIONS(3569), 14, + 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(3621), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [64538] = 6, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [64637] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3525), 1, - anon_sym_COLON, - ACTIONS(4770), 1, - anon_sym_COLON_COLON, - STATE(2056), 2, + STATE(2051), 2, sym_line_comment, sym_block_comment, - ACTIONS(3523), 14, + ACTIONS(4109), 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, @@ -172378,24 +171276,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64571] = 6, + [64665] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3511), 1, - anon_sym_COLON, - ACTIONS(4788), 1, - anon_sym_COLON_COLON, - STATE(2057), 2, + STATE(2052), 2, sym_line_comment, sym_block_comment, - ACTIONS(3509), 14, + ACTIONS(4097), 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, @@ -172405,24 +171300,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64604] = 6, + [64693] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3515), 1, - anon_sym_COLON, - ACTIONS(4770), 1, - anon_sym_COLON_COLON, - STATE(2058), 2, + STATE(2053), 2, sym_line_comment, sym_block_comment, - ACTIONS(3513), 14, + ACTIONS(3523), 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, @@ -172432,15 +171324,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64637] = 4, + [64721] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2059), 2, + STATE(2054), 2, sym_line_comment, sym_block_comment, - ACTIONS(3949), 15, + ACTIONS(4005), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172456,12 +171348,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64665] = 4, + [64749] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2060), 2, + STATE(2055), 2, sym_line_comment, sym_block_comment, ACTIONS(4131), 15, @@ -172480,42 +171372,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [64693] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(4121), 1, - anon_sym_COLON_COLON, - STATE(2061), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4137), 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, - [64723] = 5, + [64777] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4790), 1, - anon_sym_COLON_COLON, - STATE(2062), 2, + STATE(2056), 2, sym_line_comment, sym_block_comment, - ACTIONS(4137), 14, + ACTIONS(4135), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -172530,47 +171395,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - [64753] = 12, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(4695), 1, - anon_sym_PIPE, - ACTIONS(4697), 1, - anon_sym_COLON, - ACTIONS(4699), 1, - anon_sym_BANG, - ACTIONS(4701), 1, - anon_sym_DOT_DOT, - ACTIONS(4792), 1, - anon_sym_COLON_COLON, - STATE(2033), 1, - sym_type_arguments, - ACTIONS(4703), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2063), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3621), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [64797] = 4, + sym_identifier, + [64805] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2064), 2, + STATE(2057), 2, sym_line_comment, sym_block_comment, - ACTIONS(3809), 15, + ACTIONS(4101), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172586,39 +171420,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64825] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - STATE(2065), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4127), 15, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_mod, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - [64853] = 4, + [64833] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2066), 2, + STATE(2058), 2, sym_line_comment, sym_block_comment, - ACTIONS(4117), 15, + ACTIONS(4069), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172634,15 +171444,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64881] = 4, + [64861] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2067), 2, + STATE(2059), 2, sym_line_comment, sym_block_comment, - ACTIONS(4081), 15, + ACTIONS(3853), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172658,15 +171468,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64909] = 4, + [64889] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2068), 2, + STATE(2060), 2, sym_line_comment, sym_block_comment, - ACTIONS(4109), 15, + ACTIONS(3829), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172682,15 +171492,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64937] = 4, + [64917] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2069), 2, + STATE(2061), 2, sym_line_comment, sym_block_comment, - ACTIONS(3829), 15, + ACTIONS(4061), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172706,15 +171516,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64965] = 4, + [64945] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2070), 2, + STATE(2062), 2, sym_line_comment, sym_block_comment, - ACTIONS(4057), 15, + ACTIONS(3833), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172730,39 +171540,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [64993] = 4, + [64973] = 12, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2071), 2, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(4679), 1, + anon_sym_PIPE, + ACTIONS(4681), 1, + anon_sym_COLON, + ACTIONS(4683), 1, + anon_sym_BANG, + ACTIONS(4685), 1, + anon_sym_DOT_DOT, + ACTIONS(4774), 1, + anon_sym_COLON_COLON, + STATE(2024), 1, + sym_type_arguments, + ACTIONS(4687), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2063), 2, sym_line_comment, sym_block_comment, - ACTIONS(3821), 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, - [65021] = 4, + ACTIONS(3613), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [65017] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2072), 2, + STATE(2064), 2, sym_line_comment, sym_block_comment, - ACTIONS(4085), 15, + ACTIONS(4089), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172778,15 +171596,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [65049] = 4, + [65045] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2073), 2, + STATE(2065), 2, sym_line_comment, sym_block_comment, - ACTIONS(4093), 15, + ACTIONS(4105), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172802,12 +171620,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [65077] = 4, + [65073] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2074), 2, + STATE(2066), 2, sym_line_comment, sym_block_comment, ACTIONS(3531), 15, @@ -172826,15 +171644,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [65105] = 4, + [65101] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2075), 2, + STATE(2067), 2, sym_line_comment, sym_block_comment, - ACTIONS(4043), 15, + ACTIONS(4093), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172850,15 +171668,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [65133] = 4, + [65129] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2076), 2, + STATE(2068), 2, sym_line_comment, sym_block_comment, - ACTIONS(3825), 15, + ACTIONS(3569), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172874,15 +171692,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [65161] = 4, + [65157] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2077), 2, + STATE(2069), 2, sym_line_comment, sym_block_comment, - ACTIONS(4049), 15, + ACTIONS(3837), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172898,39 +171716,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [65189] = 4, + [65185] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2078), 2, + STATE(2070), 2, sym_line_comment, sym_block_comment, - ACTIONS(3953), 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, - [65217] = 4, + ACTIONS(4113), 15, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_mod, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + [65213] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2079), 2, + STATE(2071), 2, sym_line_comment, sym_block_comment, - ACTIONS(3509), 15, + ACTIONS(3805), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172946,12 +171764,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [65245] = 4, + [65241] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2080), 2, + ACTIONS(4117), 1, + anon_sym_COLON_COLON, + STATE(2072), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4126), 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, + [65271] = 4, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(2073), 2, sym_line_comment, sym_block_comment, ACTIONS(3849), 15, @@ -172970,15 +171813,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [65273] = 4, + [65299] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2081), 2, + STATE(2074), 2, sym_line_comment, sym_block_comment, - ACTIONS(3961), 15, + ACTIONS(4073), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -172994,15 +171837,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [65301] = 4, + [65327] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2082), 2, + STATE(2075), 2, sym_line_comment, sym_block_comment, - ACTIONS(4061), 15, + ACTIONS(3809), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173018,15 +171861,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [65329] = 4, + [65355] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2083), 2, + STATE(2076), 2, sym_line_comment, sym_block_comment, - ACTIONS(4065), 15, + ACTIONS(3505), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173042,15 +171885,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [65357] = 4, + [65383] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2084), 2, + STATE(2077), 2, sym_line_comment, sym_block_comment, - ACTIONS(4053), 15, + ACTIONS(4019), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173066,15 +171909,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [65385] = 4, + [65411] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2085), 2, + STATE(2078), 2, sym_line_comment, sym_block_comment, - ACTIONS(4073), 15, + ACTIONS(3817), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173090,15 +171933,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [65413] = 4, + [65439] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2086), 2, + STATE(2079), 2, sym_line_comment, sym_block_comment, - ACTIONS(3979), 15, + ACTIONS(4035), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173114,15 +171957,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [65441] = 4, + [65467] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2087), 2, + STATE(2080), 2, sym_line_comment, sym_block_comment, - ACTIONS(4105), 15, + ACTIONS(3841), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173138,15 +171981,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [65469] = 4, + [65495] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2088), 2, + STATE(2081), 2, sym_line_comment, sym_block_comment, - ACTIONS(3817), 15, + ACTIONS(4051), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173162,15 +172005,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [65497] = 4, + [65523] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2089), 2, + STATE(2082), 2, sym_line_comment, sym_block_comment, - ACTIONS(3523), 15, + ACTIONS(3813), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173186,15 +172029,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [65525] = 4, + [65551] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2090), 2, + STATE(2083), 2, sym_line_comment, sym_block_comment, - ACTIONS(4101), 15, + ACTIONS(4055), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173210,15 +172053,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [65553] = 4, + [65579] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2091), 2, + STATE(2084), 2, sym_line_comment, sym_block_comment, - ACTIONS(3997), 15, + ACTIONS(3845), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173234,15 +172077,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [65581] = 4, + [65607] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2092), 2, + STATE(2085), 2, sym_line_comment, sym_block_comment, - ACTIONS(4097), 15, + ACTIONS(3825), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173258,15 +172101,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [65609] = 4, + [65635] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2093), 2, + STATE(2086), 2, sym_line_comment, sym_block_comment, - ACTIONS(4089), 15, + ACTIONS(3873), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173282,15 +172125,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [65637] = 4, + [65663] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2094), 2, + STATE(2087), 2, sym_line_comment, sym_block_comment, - ACTIONS(3813), 15, + ACTIONS(3821), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173306,15 +172149,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [65665] = 4, + [65691] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2095), 2, + ACTIONS(4776), 1, + anon_sym_COLON_COLON, + STATE(2088), 2, sym_line_comment, sym_block_comment, - ACTIONS(4123), 15, + ACTIONS(4126), 14, anon_sym_async, anon_sym_const, anon_sym_default, @@ -173329,49 +172174,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - sym_identifier, - [65693] = 4, + [65721] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2096), 2, + ACTIONS(4778), 1, + anon_sym_DASH_GT, + STATE(2089), 2, sym_line_comment, sym_block_comment, - ACTIONS(3513), 15, + ACTIONS(3743), 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_COMMA, anon_sym_SQUOTE, - anon_sym_as, anon_sym_where, anon_sym_else, - [65721] = 8, + [65750] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4697), 1, + ACTIONS(4681), 1, anon_sym_COLON, - ACTIONS(4701), 1, + ACTIONS(4685), 1, anon_sym_DOT_DOT, - ACTIONS(4733), 1, + ACTIONS(4691), 1, anon_sym_COLON_COLON, - ACTIONS(4703), 2, + ACTIONS(4687), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2097), 2, + STATE(2090), 2, sym_line_comment, sym_block_comment, - ACTIONS(4695), 9, + ACTIONS(4679), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173381,89 +172225,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65756] = 5, + [65785] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4794), 1, - anon_sym_DASH_GT, - STATE(2098), 2, + ACTIONS(1042), 1, + anon_sym_DOT_DOT, + STATE(2091), 2, sym_line_comment, sym_block_comment, - ACTIONS(3753), 13, + ACTIONS(1044), 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, - [65785] = 5, + anon_sym_in, + [65814] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4796), 1, - anon_sym_DASH_GT, - STATE(2099), 2, + ACTIONS(4782), 1, + anon_sym_DOT_DOT, + STATE(2092), 2, sym_line_comment, sym_block_comment, - ACTIONS(3803), 13, + ACTIONS(4780), 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, - [65814] = 5, + anon_sym_in, + [65843] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4798), 1, - anon_sym_DASH_GT, - STATE(2100), 2, + ACTIONS(962), 1, + anon_sym_DOT_DOT, + STATE(2093), 2, sym_line_comment, sym_block_comment, - ACTIONS(3679), 13, + ACTIONS(964), 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, - [65843] = 5, + anon_sym_in, + [65872] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4800), 1, + ACTIONS(4784), 1, anon_sym_DASH_GT, - STATE(2101), 2, + STATE(2094), 2, sym_line_comment, sym_block_comment, - ACTIONS(3685), 13, + ACTIONS(3785), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173477,17 +172321,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [65872] = 5, + [65901] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4802), 1, + ACTIONS(4786), 1, anon_sym_DASH_GT, - STATE(2102), 2, + STATE(2095), 2, sym_line_comment, sym_block_comment, - ACTIONS(3691), 13, + ACTIONS(3681), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173501,17 +172345,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [65901] = 5, + [65930] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4804), 1, + ACTIONS(4788), 1, anon_sym_DASH_GT, - STATE(2103), 2, + STATE(2096), 2, sym_line_comment, sym_block_comment, - ACTIONS(3697), 13, + ACTIONS(3757), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173525,41 +172369,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [65930] = 5, + [65959] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1012), 1, - anon_sym_DOT_DOT, - STATE(2104), 2, + ACTIONS(4790), 1, + anon_sym_DASH_GT, + STATE(2097), 2, sym_line_comment, sym_block_comment, - ACTIONS(1014), 13, + ACTIONS(3707), 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, - [65959] = 5, + [65988] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4806), 1, + ACTIONS(4792), 1, anon_sym_DASH_GT, - STATE(2105), 2, + STATE(2098), 2, sym_line_comment, sym_block_comment, - ACTIONS(3731), 13, + ACTIONS(3713), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173573,41 +172417,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_where, anon_sym_else, - [65988] = 5, + [66017] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1042), 1, - anon_sym_DOT_DOT, - STATE(2106), 2, + ACTIONS(4794), 1, + anon_sym_DASH_GT, + STATE(2099), 2, sym_line_comment, sym_block_comment, - ACTIONS(1044), 13, + ACTIONS(3721), 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, - [66017] = 5, + [66046] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4810), 1, + ACTIONS(4798), 1, anon_sym_DOT_DOT, - STATE(2107), 2, + STATE(2100), 2, sym_line_comment, sym_block_comment, - ACTIONS(4808), 13, + ACTIONS(4796), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173615,80 +172459,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66046] = 7, + [66074] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3555), 1, + ACTIONS(3565), 1, anon_sym_DOT_DOT, - ACTIONS(4812), 2, + ACTIONS(4800), 2, anon_sym_LPAREN, anon_sym_RBRACK, - STATE(2108), 2, + STATE(2101), 2, sym_line_comment, sym_block_comment, - ACTIONS(3551), 4, + ACTIONS(3561), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3557), 6, + ACTIONS(3567), 6, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, - [66078] = 11, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(4815), 1, - anon_sym_move, - STATE(230), 1, - sym_closure_parameters, - STATE(408), 1, - sym_block, - STATE(3621), 1, - sym_label, - STATE(2109), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3621), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [66118] = 6, + [66106] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4679), 1, + ACTIONS(4663), 1, anon_sym_DOT_DOT, - ACTIONS(4681), 2, + ACTIONS(4665), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2110), 2, + STATE(2102), 2, sym_line_comment, sym_block_comment, - ACTIONS(4667), 10, + ACTIONS(4651), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -173699,367 +172513,373 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66148] = 14, + [66136] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(4687), 1, - anon_sym_LPAREN, - ACTIONS(4689), 1, - anon_sym_COLON_COLON, - ACTIONS(4817), 1, + ACTIONS(3513), 2, anon_sym_COLON, - ACTIONS(4819), 1, - anon_sym_EQ, - STATE(2029), 1, - sym_type_arguments, - STATE(2457), 1, - sym_parameters, - STATE(3160), 1, - sym_trait_bounds, - ACTIONS(3445), 2, - anon_sym_PLUS, - anon_sym_as, - ACTIONS(4821), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(2111), 2, - sym_line_comment, - sym_block_comment, - [66194] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3547), 1, anon_sym_DOT_DOT, - ACTIONS(4823), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - STATE(2112), 2, + STATE(2103), 2, sym_line_comment, sym_block_comment, - ACTIONS(3543), 4, - anon_sym_SEMI, + ACTIONS(3509), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3549), 6, + ACTIONS(4803), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3515), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_COLON_COLON, - [66226] = 7, + [66168] = 14, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3555), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(2113), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3551), 3, - anon_sym_LBRACE, - anon_sym_PLUS, + ACTIONS(4659), 1, + anon_sym_BANG, + ACTIONS(4669), 1, anon_sym_LT2, - ACTIONS(4812), 3, + ACTIONS(4671), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(4673), 1, + anon_sym_COLON_COLON, + ACTIONS(4806), 1, + anon_sym_COLON, + ACTIONS(4808), 1, + anon_sym_EQ, + STATE(2022), 1, + sym_type_arguments, + STATE(2466), 1, + sym_parameters, + STATE(3160), 1, + sym_trait_bounds, + ACTIONS(3460), 2, + anon_sym_PLUS, + anon_sym_as, + ACTIONS(4810), 2, + anon_sym_GT, anon_sym_COMMA, - ACTIONS(3557), 5, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - [66258] = 7, + STATE(2104), 2, + sym_line_comment, + sym_block_comment, + [66214] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4823), 1, + ACTIONS(4803), 1, anon_sym_LPAREN, - ACTIONS(3547), 2, + ACTIONS(3513), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2114), 2, + STATE(2105), 2, sym_line_comment, sym_block_comment, - ACTIONS(3543), 5, + ACTIONS(3509), 5, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3549), 5, + ACTIONS(3515), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [66290] = 7, + [66246] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3547), 2, + ACTIONS(3549), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2115), 2, + STATE(2106), 2, sym_line_comment, sym_block_comment, - ACTIONS(3543), 3, + ACTIONS(3545), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(4823), 3, + ACTIONS(4812), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3549), 5, + ACTIONS(3551), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [66322] = 5, + [66278] = 13, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4828), 1, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(4815), 1, + anon_sym_LPAREN, + ACTIONS(4817), 1, + anon_sym_LBRACE, + ACTIONS(4819), 1, + anon_sym_BANG, + ACTIONS(4821), 1, + anon_sym_AT, + ACTIONS(4823), 1, anon_sym_DOT_DOT, - STATE(2116), 2, + ACTIONS(4827), 1, + anon_sym_COLON_COLON, + STATE(2022), 1, + sym_type_arguments, + ACTIONS(4825), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2107), 2, sym_line_comment, sym_block_comment, - ACTIONS(4826), 12, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(4651), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [66322] = 7, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3513), 1, + anon_sym_DOT_DOT, + ACTIONS(4803), 2, + anon_sym_LPAREN, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, + STATE(2108), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3509), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(3515), 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, - [66350] = 7, + anon_sym_COLON_COLON, + [66354] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3581), 1, + ACTIONS(3557), 1, anon_sym_DOT_DOT, - ACTIONS(4830), 2, + ACTIONS(4829), 2, anon_sym_LPAREN, anon_sym_RBRACK, - STATE(2117), 2, + STATE(2109), 2, sym_line_comment, sym_block_comment, - ACTIONS(3577), 4, + ACTIONS(3553), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3583), 6, + ACTIONS(3559), 6, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, - [66382] = 12, + [66386] = 12, ACTIONS(19), 1, anon_sym_LBRACE, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, + ACTIONS(3456), 1, anon_sym_SQUOTE, - ACTIONS(4721), 1, + ACTIONS(4707), 1, anon_sym_trait, - ACTIONS(4833), 1, + ACTIONS(4832), 1, anon_sym_impl, - ACTIONS(4835), 1, + ACTIONS(4834), 1, anon_sym_extern, - STATE(415), 1, + STATE(414), 1, sym_block, - STATE(3082), 1, + STATE(3076), 1, sym_extern_modifier, - STATE(3621), 1, + STATE(3776), 1, sym_label, - STATE(2118), 2, + STATE(2110), 2, sym_line_comment, sym_block_comment, - ACTIONS(3621), 5, + ACTIONS(3613), 5, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, - [66424] = 7, + [66428] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4838), 1, - anon_sym_LPAREN, - ACTIONS(3567), 2, + ACTIONS(3565), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2119), 2, + STATE(2111), 2, sym_line_comment, sym_block_comment, - ACTIONS(3563), 5, - anon_sym_RPAREN, + ACTIONS(3561), 3, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3569), 5, + ACTIONS(4800), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3567), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [66456] = 7, + [66460] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3567), 2, + ACTIONS(4800), 1, + anon_sym_LPAREN, + ACTIONS(3565), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2120), 2, + STATE(2112), 2, sym_line_comment, sym_block_comment, - ACTIONS(3563), 3, + ACTIONS(3561), 5, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(4838), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3569), 5, + anon_sym_LT2, + ACTIONS(3567), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [66488] = 7, + [66492] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4812), 1, - anon_sym_LPAREN, - ACTIONS(3555), 2, - anon_sym_COLON, + ACTIONS(3549), 1, anon_sym_DOT_DOT, - STATE(2121), 2, + ACTIONS(4812), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + STATE(2113), 2, sym_line_comment, sym_block_comment, - ACTIONS(3551), 5, - anon_sym_RPAREN, + ACTIONS(3545), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3557), 5, + ACTIONS(3551), 6, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_COLON_COLON, - [66520] = 7, + [66524] = 11, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_PIPE, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + ACTIONS(4837), 1, + anon_sym_move, + STATE(245), 1, + sym_closure_parameters, + STATE(404), 1, + sym_block, + STATE(3776), 1, + sym_label, + STATE(2114), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3613), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [66564] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3581), 2, + ACTIONS(3557), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2122), 2, + STATE(2115), 2, sym_line_comment, sym_block_comment, - ACTIONS(3577), 3, + ACTIONS(3553), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(4830), 3, + ACTIONS(4829), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3583), 5, + ACTIONS(3559), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [66552] = 13, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(4841), 1, - anon_sym_LPAREN, - ACTIONS(4843), 1, - anon_sym_LBRACE, - ACTIONS(4845), 1, - anon_sym_BANG, - ACTIONS(4847), 1, - anon_sym_AT, - ACTIONS(4849), 1, - anon_sym_DOT_DOT, - ACTIONS(4853), 1, - anon_sym_COLON_COLON, - STATE(2029), 1, - sym_type_arguments, - ACTIONS(4851), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2123), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4667), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, [66596] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4830), 1, + ACTIONS(4812), 1, anon_sym_LPAREN, - ACTIONS(3581), 2, + ACTIONS(3549), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(2124), 2, + STATE(2116), 2, sym_line_comment, sym_block_comment, - ACTIONS(3577), 5, + ACTIONS(3545), 5, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3583), 5, + ACTIONS(3551), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, @@ -174070,53 +172890,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3567), 1, - anon_sym_DOT_DOT, - ACTIONS(4838), 2, + ACTIONS(4829), 1, anon_sym_LPAREN, - anon_sym_RBRACK, - STATE(2125), 2, + ACTIONS(3557), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(2117), 2, sym_line_comment, sym_block_comment, - ACTIONS(3563), 4, - anon_sym_SEMI, + ACTIONS(3553), 5, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, + anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3569), 6, + ACTIONS(3559), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_COLON_COLON, [66660] = 13, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, + ACTIONS(3065), 1, anon_sym_POUND, - ACTIONS(3089), 1, + ACTIONS(3067), 1, anon_sym_SQUOTE, - ACTIONS(4855), 1, + ACTIONS(4839), 1, sym_identifier, - ACTIONS(4857), 1, + ACTIONS(4841), 1, anon_sym_GT, - ACTIONS(4859), 1, + ACTIONS(4843), 1, anon_sym_const, - ACTIONS(4861), 1, + ACTIONS(4845), 1, sym_metavariable, - STATE(1386), 1, + STATE(1378), 1, sym_attribute_item, - STATE(2158), 1, + STATE(2166), 1, aux_sym_enum_variant_list_repeat1, - STATE(2801), 1, + STATE(2830), 1, sym_lifetime, - STATE(2126), 2, + STATE(2118), 2, sym_line_comment, sym_block_comment, - STATE(3437), 3, + STATE(3465), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, @@ -174125,28 +172945,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, + ACTIONS(3065), 1, anon_sym_POUND, - ACTIONS(3089), 1, + ACTIONS(3067), 1, anon_sym_SQUOTE, - ACTIONS(4855), 1, + ACTIONS(4839), 1, sym_identifier, - ACTIONS(4859), 1, + ACTIONS(4843), 1, anon_sym_const, - ACTIONS(4861), 1, + ACTIONS(4845), 1, sym_metavariable, - ACTIONS(4863), 1, + ACTIONS(4847), 1, anon_sym_GT, - STATE(1386), 1, + STATE(1378), 1, sym_attribute_item, - STATE(2158), 1, + STATE(2166), 1, aux_sym_enum_variant_list_repeat1, - STATE(2801), 1, + STATE(2830), 1, sym_lifetime, - STATE(2127), 2, + STATE(2119), 2, sym_line_comment, sym_block_comment, - STATE(3437), 3, + STATE(3465), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, @@ -174155,28 +172975,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, + ACTIONS(3065), 1, anon_sym_POUND, - ACTIONS(3089), 1, + ACTIONS(3067), 1, anon_sym_SQUOTE, - ACTIONS(4855), 1, + ACTIONS(4839), 1, sym_identifier, - ACTIONS(4859), 1, + ACTIONS(4843), 1, anon_sym_const, - ACTIONS(4861), 1, + ACTIONS(4845), 1, sym_metavariable, - ACTIONS(4865), 1, + ACTIONS(4849), 1, anon_sym_GT, - STATE(1386), 1, + STATE(1378), 1, sym_attribute_item, - STATE(2158), 1, + STATE(2166), 1, aux_sym_enum_variant_list_repeat1, - STATE(2801), 1, + STATE(2830), 1, sym_lifetime, - STATE(2128), 2, + STATE(2120), 2, sym_line_comment, sym_block_comment, - STATE(3437), 3, + STATE(3465), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, @@ -174185,28 +173005,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, + ACTIONS(3065), 1, anon_sym_POUND, - ACTIONS(3089), 1, + ACTIONS(3067), 1, anon_sym_SQUOTE, - ACTIONS(4855), 1, + ACTIONS(4839), 1, sym_identifier, - ACTIONS(4859), 1, + ACTIONS(4843), 1, anon_sym_const, - ACTIONS(4861), 1, + ACTIONS(4845), 1, sym_metavariable, - ACTIONS(4867), 1, + ACTIONS(4851), 1, anon_sym_GT, - STATE(1386), 1, + STATE(1378), 1, sym_attribute_item, - STATE(2158), 1, + STATE(2166), 1, aux_sym_enum_variant_list_repeat1, - STATE(2801), 1, + STATE(2830), 1, sym_lifetime, - STATE(2129), 2, + STATE(2121), 2, sym_line_comment, sym_block_comment, - STATE(3437), 3, + STATE(3465), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, @@ -174215,28 +173035,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, + ACTIONS(3065), 1, anon_sym_POUND, - ACTIONS(3089), 1, + ACTIONS(3067), 1, anon_sym_SQUOTE, - ACTIONS(4855), 1, + ACTIONS(4839), 1, sym_identifier, - ACTIONS(4859), 1, + ACTIONS(4843), 1, anon_sym_const, - ACTIONS(4861), 1, + ACTIONS(4845), 1, sym_metavariable, - ACTIONS(4869), 1, + ACTIONS(4853), 1, anon_sym_GT, - STATE(1386), 1, + STATE(1378), 1, sym_attribute_item, - STATE(2158), 1, + STATE(2166), 1, aux_sym_enum_variant_list_repeat1, - STATE(2801), 1, + STATE(2830), 1, sym_lifetime, - STATE(2130), 2, + STATE(2122), 2, sym_line_comment, sym_block_comment, - STATE(3437), 3, + STATE(3465), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, @@ -174245,28 +173065,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, + ACTIONS(3065), 1, anon_sym_POUND, - ACTIONS(3089), 1, + ACTIONS(3067), 1, anon_sym_SQUOTE, - ACTIONS(4855), 1, + ACTIONS(4839), 1, sym_identifier, - ACTIONS(4859), 1, + ACTIONS(4843), 1, anon_sym_const, - ACTIONS(4861), 1, + ACTIONS(4845), 1, sym_metavariable, - ACTIONS(4871), 1, + ACTIONS(4855), 1, anon_sym_GT, - STATE(1386), 1, + STATE(1378), 1, sym_attribute_item, - STATE(2158), 1, + STATE(2166), 1, aux_sym_enum_variant_list_repeat1, - STATE(2801), 1, + STATE(2830), 1, sym_lifetime, - STATE(2131), 2, + STATE(2123), 2, sym_line_comment, sym_block_comment, - STATE(3437), 3, + STATE(3465), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, @@ -174275,15 +173095,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4875), 1, + ACTIONS(4859), 1, anon_sym_COLON, - ACTIONS(4005), 2, + ACTIONS(4013), 2, anon_sym_LPAREN, anon_sym_COLON_COLON, - STATE(2132), 2, + STATE(2124), 2, sym_line_comment, sym_block_comment, - ACTIONS(4873), 9, + ACTIONS(4857), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -174298,15 +173118,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4875), 1, + ACTIONS(4859), 1, anon_sym_COLON, - ACTIONS(3967), 2, + ACTIONS(3979), 2, anon_sym_LPAREN, anon_sym_COLON_COLON, - STATE(2133), 2, + STATE(2125), 2, sym_line_comment, sym_block_comment, - ACTIONS(4873), 9, + ACTIONS(4857), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -174316,70 +173136,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66976] = 12, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3079), 1, - anon_sym_POUND, - ACTIONS(4877), 1, - sym_identifier, - ACTIONS(4879), 1, - anon_sym_RBRACE, - ACTIONS(4881), 1, - anon_sym_DOT_DOT, - ACTIONS(4883), 1, - anon_sym_COMMA, - ACTIONS(4885), 1, - sym_integer_literal, - STATE(1386), 1, - sym_attribute_item, - STATE(2601), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2134), 2, - sym_line_comment, - sym_block_comment, - STATE(3189), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [67016] = 11, + [66976] = 11, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4675), 1, + ACTIONS(3446), 1, + anon_sym_COLON, + ACTIONS(4659), 1, anon_sym_BANG, - ACTIONS(4685), 1, + ACTIONS(4669), 1, anon_sym_LT2, - ACTIONS(4687), 1, + ACTIONS(4671), 1, anon_sym_LPAREN, - ACTIONS(4689), 1, + ACTIONS(4673), 1, anon_sym_COLON_COLON, - ACTIONS(4887), 1, - anon_sym_for, - STATE(2029), 1, + STATE(2022), 1, sym_type_arguments, - STATE(2099), 1, + STATE(2466), 1, sym_parameters, - STATE(2135), 2, + STATE(2126), 2, sym_line_comment, sym_block_comment, - ACTIONS(3445), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3444), 4, anon_sym_PLUS, - anon_sym_where, - [67054] = 4, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [67014] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2136), 2, + STATE(2127), 2, sym_line_comment, sym_block_comment, - ACTIONS(1454), 11, + ACTIONS(1438), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -174391,158 +173183,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67078] = 12, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3447), 1, - anon_sym_COLON, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(4687), 1, - anon_sym_LPAREN, - ACTIONS(4689), 1, - anon_sym_COLON_COLON, - ACTIONS(4889), 1, - anon_sym_EQ, - STATE(2457), 1, - sym_parameters, - STATE(2497), 1, - sym_type_arguments, - STATE(2137), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3445), 3, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - [67118] = 12, + [67038] = 12, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, + ACTIONS(3065), 1, anon_sym_POUND, - ACTIONS(3089), 1, - anon_sym_SQUOTE, - ACTIONS(4855), 1, + ACTIONS(4861), 1, sym_identifier, - ACTIONS(4859), 1, - anon_sym_const, - ACTIONS(4891), 1, - sym_metavariable, - STATE(1386), 1, + ACTIONS(4863), 1, + anon_sym_RBRACE, + ACTIONS(4865), 1, + anon_sym_DOT_DOT, + ACTIONS(4867), 1, + anon_sym_COMMA, + ACTIONS(4869), 1, + sym_integer_literal, + STATE(1378), 1, sym_attribute_item, - STATE(2139), 1, + STATE(2550), 1, aux_sym_enum_variant_list_repeat1, - STATE(2801), 1, - sym_lifetime, - STATE(2138), 2, + STATE(2128), 2, sym_line_comment, sym_block_comment, - STATE(3146), 3, - sym_const_parameter, - sym_type_parameter, - sym_lifetime_parameter, - [67158] = 12, + STATE(3062), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [67078] = 12, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, + ACTIONS(3065), 1, anon_sym_POUND, - ACTIONS(3089), 1, + ACTIONS(3067), 1, anon_sym_SQUOTE, - ACTIONS(4855), 1, + ACTIONS(4839), 1, sym_identifier, - ACTIONS(4859), 1, + ACTIONS(4843), 1, anon_sym_const, - ACTIONS(4893), 1, + ACTIONS(4871), 1, sym_metavariable, - STATE(1086), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1386), 1, + STATE(1378), 1, sym_attribute_item, - STATE(2801), 1, + STATE(2130), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2830), 1, sym_lifetime, - STATE(2139), 2, + STATE(2129), 2, sym_line_comment, sym_block_comment, - STATE(2905), 3, + STATE(3094), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [67198] = 12, + [67118] = 12, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, + ACTIONS(3065), 1, anon_sym_POUND, - ACTIONS(3089), 1, + ACTIONS(3067), 1, anon_sym_SQUOTE, - ACTIONS(4855), 1, + ACTIONS(4839), 1, sym_identifier, - ACTIONS(4859), 1, + ACTIONS(4843), 1, anon_sym_const, - ACTIONS(4895), 1, + ACTIONS(4873), 1, sym_metavariable, - STATE(1086), 1, + STATE(1083), 1, aux_sym_enum_variant_list_repeat1, - STATE(1386), 1, + STATE(1378), 1, sym_attribute_item, - STATE(2801), 1, + STATE(2830), 1, sym_lifetime, - STATE(2140), 2, + STATE(2130), 2, sym_line_comment, sym_block_comment, - STATE(3164), 3, + STATE(2889), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [67238] = 11, + [67158] = 11, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3437), 1, - anon_sym_COLON, - ACTIONS(4675), 1, + ACTIONS(4659), 1, anon_sym_BANG, - ACTIONS(4685), 1, + ACTIONS(4669), 1, anon_sym_LT2, - ACTIONS(4687), 1, + ACTIONS(4671), 1, anon_sym_LPAREN, - ACTIONS(4689), 1, + ACTIONS(4673), 1, anon_sym_COLON_COLON, - STATE(2029), 1, + ACTIONS(4875), 1, + anon_sym_for, + STATE(2022), 1, sym_type_arguments, - STATE(2457), 1, + STATE(2095), 1, sym_parameters, - STATE(2141), 2, + STATE(2131), 2, sym_line_comment, sym_block_comment, - ACTIONS(3433), 4, + ACTIONS(3460), 4, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [67276] = 6, + anon_sym_where, + [67196] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4899), 1, - anon_sym_COLON, - ACTIONS(4901), 1, + ACTIONS(4776), 1, anon_sym_COLON_COLON, - STATE(2142), 2, + ACTIONS(4879), 1, + anon_sym_COLON, + STATE(2132), 2, sym_line_comment, sym_block_comment, - ACTIONS(4897), 9, + ACTIONS(4877), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -174552,63 +173316,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67304] = 6, + [67224] = 12, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3581), 1, - anon_sym_DOT_DOT, - ACTIONS(3577), 2, - anon_sym_LBRACE, - anon_sym_LT2, - STATE(2143), 2, + ACTIONS(3065), 1, + anon_sym_POUND, + ACTIONS(3067), 1, + anon_sym_SQUOTE, + ACTIONS(4839), 1, + sym_identifier, + ACTIONS(4843), 1, + anon_sym_const, + ACTIONS(4845), 1, + sym_metavariable, + STATE(1378), 1, + sym_attribute_item, + STATE(2166), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2830), 1, + sym_lifetime, + STATE(2133), 2, sym_line_comment, sym_block_comment, - ACTIONS(3583), 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, - [67332] = 6, + STATE(3465), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [67264] = 12, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4905), 1, + ACTIONS(3462), 1, anon_sym_COLON, - ACTIONS(4907), 1, + ACTIONS(4659), 1, + anon_sym_BANG, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(4671), 1, + anon_sym_LPAREN, + ACTIONS(4673), 1, anon_sym_COLON_COLON, - STATE(2144), 2, + ACTIONS(4881), 1, + anon_sym_EQ, + STATE(2403), 1, + sym_type_arguments, + STATE(2466), 1, + sym_parameters, + STATE(2134), 2, sym_line_comment, sym_block_comment, - ACTIONS(4903), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_EQ, + ACTIONS(3460), 3, + anon_sym_PLUS, + anon_sym_GT, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [67360] = 6, + [67304] = 11, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4901), 1, + ACTIONS(4659), 1, + anon_sym_BANG, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(4671), 1, + anon_sym_LPAREN, + ACTIONS(4673), 1, anon_sym_COLON_COLON, - ACTIONS(4911), 1, + ACTIONS(4883), 1, + anon_sym_for, + STATE(2022), 1, + sym_type_arguments, + STATE(2095), 1, + sym_parameters, + STATE(2135), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3460), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [67342] = 6, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4879), 1, anon_sym_COLON, - STATE(2145), 2, + ACTIONS(4885), 1, + anon_sym_COLON_COLON, + STATE(2136), 2, sym_line_comment, sym_block_comment, - ACTIONS(4909), 9, + ACTIONS(4877), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -174618,69 +173421,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67388] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3547), 1, - anon_sym_DOT_DOT, - ACTIONS(3543), 2, + [67370] = 9, + ACTIONS(19), 1, anon_sym_LBRACE, - anon_sym_LT2, - STATE(2146), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3549), 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, - [67416] = 12, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, - anon_sym_POUND, - ACTIONS(3089), 1, + ACTIONS(3456), 1, anon_sym_SQUOTE, - ACTIONS(4855), 1, + ACTIONS(4887), 1, sym_identifier, - ACTIONS(4859), 1, - anon_sym_const, - ACTIONS(4913), 1, - sym_metavariable, - STATE(1386), 1, - sym_attribute_item, - STATE(2140), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2521), 1, - sym_lifetime, - STATE(2147), 2, + STATE(407), 1, + sym_block, + STATE(3776), 1, + sym_label, + STATE(2137), 2, sym_line_comment, sym_block_comment, - STATE(2962), 3, - sym_const_parameter, - sym_type_parameter, - sym_lifetime_parameter, - [67456] = 6, + ACTIONS(4889), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [67404] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4790), 1, - anon_sym_COLON_COLON, - ACTIONS(4911), 1, + ACTIONS(4893), 1, anon_sym_COLON, - STATE(2148), 2, + ACTIONS(4895), 1, + anon_sym_COLON_COLON, + STATE(2138), 2, sym_line_comment, sym_block_comment, - ACTIONS(4909), 9, + ACTIONS(4891), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -174690,42 +173468,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67484] = 6, + [67432] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4911), 1, - anon_sym_COLON, - ACTIONS(4915), 1, - anon_sym_COLON_COLON, - STATE(2149), 2, + STATE(2139), 2, sym_line_comment, sym_block_comment, - ACTIONS(4909), 9, + ACTIONS(1430), 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, - [67512] = 6, + [67456] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3555), 1, + ACTIONS(3513), 1, anon_sym_DOT_DOT, - ACTIONS(3551), 2, + ACTIONS(3509), 2, anon_sym_LBRACE, anon_sym_LT2, - STATE(2150), 2, + STATE(2140), 2, sym_line_comment, sym_block_comment, - ACTIONS(3557), 8, + ACTIONS(3515), 8, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_BANG, @@ -174734,37 +173510,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_if, - [67540] = 6, + [67484] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3567), 1, - anon_sym_DOT_DOT, - ACTIONS(3563), 2, - anon_sym_LBRACE, - anon_sym_LT2, - STATE(2151), 2, + ACTIONS(4895), 1, + anon_sym_COLON_COLON, + ACTIONS(4899), 1, + anon_sym_COLON, + STATE(2141), 2, sym_line_comment, sym_block_comment, - ACTIONS(3569), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, + ACTIONS(4897), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, - [67568] = 4, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [67512] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2152), 2, + STATE(2142), 2, sym_line_comment, sym_block_comment, - ACTIONS(1438), 11, + ACTIONS(1446), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -174776,46 +173552,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67592] = 11, + [67536] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3472), 1, + ACTIONS(4879), 1, anon_sym_COLON, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(4687), 1, - anon_sym_LPAREN, - ACTIONS(4689), 1, + ACTIONS(4901), 1, anon_sym_COLON_COLON, - STATE(2029), 1, - sym_type_arguments, - STATE(2457), 1, - sym_parameters, - STATE(2153), 2, + STATE(2143), 2, sym_line_comment, sym_block_comment, - ACTIONS(3470), 4, - anon_sym_PLUS, - anon_sym_GT, + ACTIONS(4877), 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, - [67630] = 6, + anon_sym_else, + anon_sym_in, + [67564] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4790), 1, + ACTIONS(4885), 1, anon_sym_COLON_COLON, - ACTIONS(4899), 1, + ACTIONS(4905), 1, anon_sym_COLON, - STATE(2154), 2, + STATE(2144), 2, sym_line_comment, sym_block_comment, - ACTIONS(4897), 9, + ACTIONS(4903), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -174825,144 +173596,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67658] = 11, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(4687), 1, - anon_sym_LPAREN, - ACTIONS(4689), 1, - anon_sym_COLON_COLON, - ACTIONS(4917), 1, - anon_sym_for, - STATE(2029), 1, - sym_type_arguments, - STATE(2099), 1, - sym_parameters, - STATE(2155), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3445), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [67696] = 11, + [67592] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(4687), 1, - anon_sym_LPAREN, - ACTIONS(4689), 1, + ACTIONS(4776), 1, anon_sym_COLON_COLON, - ACTIONS(4919), 1, - anon_sym_for, - STATE(2029), 1, - sym_type_arguments, - STATE(2099), 1, - sym_parameters, - STATE(2156), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3445), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [67734] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - STATE(2157), 2, + ACTIONS(4905), 1, + anon_sym_COLON, + STATE(2145), 2, sym_line_comment, sym_block_comment, - ACTIONS(1442), 11, + ACTIONS(4903), 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, - [67758] = 12, + [67620] = 12, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, + ACTIONS(3065), 1, anon_sym_POUND, - ACTIONS(3089), 1, + ACTIONS(3067), 1, anon_sym_SQUOTE, - ACTIONS(4855), 1, + ACTIONS(4839), 1, sym_identifier, - ACTIONS(4859), 1, + ACTIONS(4843), 1, anon_sym_const, - ACTIONS(4921), 1, + ACTIONS(4907), 1, sym_metavariable, - STATE(1086), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1386), 1, + STATE(1378), 1, sym_attribute_item, - STATE(2801), 1, + STATE(2148), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2560), 1, sym_lifetime, - STATE(2158), 2, + STATE(2146), 2, sym_line_comment, sym_block_comment, - STATE(3350), 3, + STATE(2944), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [67798] = 11, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(4697), 1, - anon_sym_COLON, - ACTIONS(4699), 1, - anon_sym_BANG, - ACTIONS(4701), 1, - anon_sym_DOT_DOT, - ACTIONS(4705), 1, - anon_sym_COLON_COLON, - STATE(2033), 1, - sym_type_arguments, - ACTIONS(4703), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2159), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4695), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [67836] = 4, + [67660] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2160), 2, + STATE(2147), 2, sym_line_comment, sym_block_comment, - ACTIONS(1446), 11, + ACTIONS(1434), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -174974,115 +173666,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [67860] = 12, + [67684] = 12, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, + ACTIONS(3065), 1, anon_sym_POUND, - ACTIONS(3089), 1, + ACTIONS(3067), 1, anon_sym_SQUOTE, - ACTIONS(4855), 1, + ACTIONS(4839), 1, sym_identifier, - ACTIONS(4859), 1, + ACTIONS(4843), 1, anon_sym_const, - ACTIONS(4913), 1, + ACTIONS(4909), 1, sym_metavariable, - STATE(1386), 1, - sym_attribute_item, - STATE(2140), 1, + STATE(1083), 1, aux_sym_enum_variant_list_repeat1, - STATE(2801), 1, + STATE(1378), 1, + sym_attribute_item, + STATE(2830), 1, sym_lifetime, - STATE(2161), 2, + STATE(2148), 2, sym_line_comment, sym_block_comment, - STATE(2962), 3, + STATE(3165), 3, sym_const_parameter, sym_type_parameter, sym_lifetime_parameter, - [67900] = 6, + [67724] = 11, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4899), 1, - anon_sym_COLON, - ACTIONS(4915), 1, + ACTIONS(4659), 1, + anon_sym_BANG, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(4671), 1, + anon_sym_LPAREN, + ACTIONS(4673), 1, anon_sym_COLON_COLON, - STATE(2162), 2, + ACTIONS(4911), 1, + anon_sym_for, + STATE(2022), 1, + sym_type_arguments, + STATE(2095), 1, + sym_parameters, + STATE(2149), 2, sym_line_comment, sym_block_comment, - ACTIONS(4897), 9, + ACTIONS(3460), 4, anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [67762] = 11, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(4681), 1, + anon_sym_COLON, + ACTIONS(4683), 1, + anon_sym_BANG, + ACTIONS(4685), 1, + anon_sym_DOT_DOT, + ACTIONS(4689), 1, + anon_sym_COLON_COLON, + STATE(2024), 1, + sym_type_arguments, + ACTIONS(4687), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2150), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4679), 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, - [67928] = 6, + [67800] = 11, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4907), 1, - anon_sym_COLON_COLON, - ACTIONS(4925), 1, + ACTIONS(3429), 1, anon_sym_COLON, - STATE(2163), 2, + ACTIONS(4659), 1, + anon_sym_BANG, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(4671), 1, + anon_sym_LPAREN, + ACTIONS(4673), 1, + anon_sym_COLON_COLON, + STATE(2022), 1, + sym_type_arguments, + STATE(2466), 1, + sym_parameters, + STATE(2151), 2, sym_line_comment, sym_block_comment, - ACTIONS(4923), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_EQ, + ACTIONS(3425), 4, + anon_sym_PLUS, + anon_sym_GT, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [67956] = 6, + anon_sym_as, + [67838] = 11, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4907), 1, + ACTIONS(4659), 1, + anon_sym_BANG, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(4671), 1, + anon_sym_LPAREN, + ACTIONS(4673), 1, anon_sym_COLON_COLON, - ACTIONS(4929), 1, - anon_sym_COLON, - STATE(2164), 2, + ACTIONS(4913), 1, + anon_sym_for, + STATE(2022), 1, + sym_type_arguments, + STATE(2095), 1, + sym_parameters, + STATE(2152), 2, sym_line_comment, sym_block_comment, - ACTIONS(4927), 9, + ACTIONS(3460), 4, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [67984] = 7, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [67876] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1122), 1, + ACTIONS(1116), 1, aux_sym_string_literal_token1, - ACTIONS(4933), 1, + ACTIONS(4917), 1, sym_crate, - STATE(2288), 1, + STATE(2280), 1, sym_string_literal, - STATE(2165), 2, + STATE(2153), 2, sym_line_comment, sym_block_comment, - ACTIONS(4931), 8, + ACTIONS(4915), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -175091,43 +173825,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [68014] = 6, + [67906] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4901), 1, - anon_sym_COLON_COLON, - ACTIONS(4937), 1, - anon_sym_COLON, - STATE(2166), 2, + STATE(2154), 2, sym_line_comment, sym_block_comment, - ACTIONS(4935), 9, + ACTIONS(1442), 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, - [68042] = 7, + [67930] = 11, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3462), 1, + anon_sym_COLON, + ACTIONS(4659), 1, + anon_sym_BANG, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(4671), 1, + anon_sym_LPAREN, + ACTIONS(4673), 1, + anon_sym_COLON_COLON, + STATE(2022), 1, + sym_type_arguments, + STATE(2466), 1, + sym_parameters, + STATE(2155), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3460), 4, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [67968] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1122), 1, + ACTIONS(1116), 1, aux_sym_string_literal_token1, - ACTIONS(4939), 1, + ACTIONS(4919), 1, sym_crate, - STATE(2288), 1, + STATE(2280), 1, sym_string_literal, - STATE(2167), 2, + STATE(2156), 2, sym_line_comment, sym_block_comment, - ACTIONS(4931), 8, + ACTIONS(4915), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -175136,177 +173895,365 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [68072] = 6, + [67998] = 11, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4790), 1, + ACTIONS(4659), 1, + anon_sym_BANG, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(4671), 1, + anon_sym_LPAREN, + ACTIONS(4673), 1, anon_sym_COLON_COLON, - ACTIONS(4937), 1, - anon_sym_COLON, - STATE(2168), 2, + ACTIONS(4921), 1, + anon_sym_for, + STATE(2022), 1, + sym_type_arguments, + STATE(2095), 1, + sym_parameters, + STATE(2157), 2, sym_line_comment, sym_block_comment, - ACTIONS(4935), 9, + ACTIONS(3460), 4, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [68100] = 11, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [68036] = 11, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3447), 1, - anon_sym_COLON, - ACTIONS(4675), 1, + ACTIONS(4659), 1, anon_sym_BANG, - ACTIONS(4685), 1, + ACTIONS(4669), 1, anon_sym_LT2, - ACTIONS(4687), 1, + ACTIONS(4671), 1, anon_sym_LPAREN, - ACTIONS(4689), 1, + ACTIONS(4673), 1, anon_sym_COLON_COLON, - STATE(2029), 1, + ACTIONS(4923), 1, + anon_sym_for, + STATE(2022), 1, sym_type_arguments, - STATE(2457), 1, + STATE(2095), 1, sym_parameters, - STATE(2169), 2, + STATE(2158), 2, sym_line_comment, sym_block_comment, - ACTIONS(3445), 4, + ACTIONS(3460), 4, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [68138] = 11, + anon_sym_where, + [68074] = 11, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4675), 1, + ACTIONS(4659), 1, anon_sym_BANG, - ACTIONS(4685), 1, + ACTIONS(4669), 1, anon_sym_LT2, - ACTIONS(4687), 1, + ACTIONS(4671), 1, anon_sym_LPAREN, - ACTIONS(4689), 1, + ACTIONS(4673), 1, anon_sym_COLON_COLON, - ACTIONS(4941), 1, + ACTIONS(4925), 1, anon_sym_for, - STATE(2029), 1, + STATE(2022), 1, sym_type_arguments, - STATE(2099), 1, + STATE(2095), 1, sym_parameters, - STATE(2170), 2, + STATE(2159), 2, sym_line_comment, sym_block_comment, - ACTIONS(3445), 4, + ACTIONS(3460), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [68176] = 11, + [68112] = 12, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4675), 1, + ACTIONS(3065), 1, + anon_sym_POUND, + ACTIONS(3067), 1, + anon_sym_SQUOTE, + ACTIONS(4839), 1, + sym_identifier, + ACTIONS(4843), 1, + anon_sym_const, + ACTIONS(4907), 1, + sym_metavariable, + STATE(1378), 1, + sym_attribute_item, + STATE(2148), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2830), 1, + sym_lifetime, + STATE(2160), 2, + sym_line_comment, + sym_block_comment, + STATE(2944), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [68152] = 6, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4895), 1, + anon_sym_COLON_COLON, + ACTIONS(4929), 1, + anon_sym_COLON, + STATE(2161), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4927), 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, + [68180] = 11, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4659), 1, anon_sym_BANG, - ACTIONS(4685), 1, + ACTIONS(4669), 1, anon_sym_LT2, - ACTIONS(4687), 1, + ACTIONS(4671), 1, anon_sym_LPAREN, - ACTIONS(4689), 1, + ACTIONS(4673), 1, anon_sym_COLON_COLON, - ACTIONS(4943), 1, + ACTIONS(4931), 1, anon_sym_for, - STATE(2029), 1, + STATE(2022), 1, sym_type_arguments, - STATE(2099), 1, + STATE(2095), 1, sym_parameters, - STATE(2171), 2, + STATE(2162), 2, sym_line_comment, sym_block_comment, - ACTIONS(3445), 4, + ACTIONS(3460), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [68214] = 11, + [68218] = 12, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3065), 1, + anon_sym_POUND, + ACTIONS(4861), 1, + sym_identifier, + ACTIONS(4865), 1, + anon_sym_DOT_DOT, + ACTIONS(4869), 1, + sym_integer_literal, + ACTIONS(4933), 1, + anon_sym_RBRACE, + ACTIONS(4935), 1, + anon_sym_COMMA, + STATE(1378), 1, + sym_attribute_item, + STATE(2550), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2163), 2, + sym_line_comment, + sym_block_comment, + STATE(3139), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [68258] = 6, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4885), 1, + anon_sym_COLON_COLON, + ACTIONS(4939), 1, + anon_sym_COLON, + STATE(2164), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4937), 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, + [68286] = 6, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4776), 1, + anon_sym_COLON_COLON, + ACTIONS(4939), 1, + anon_sym_COLON, + STATE(2165), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4937), 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, + [68314] = 12, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3065), 1, + anon_sym_POUND, + ACTIONS(3067), 1, + anon_sym_SQUOTE, + ACTIONS(4839), 1, + sym_identifier, + ACTIONS(4843), 1, + anon_sym_const, + ACTIONS(4941), 1, + sym_metavariable, + STATE(1083), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1378), 1, + sym_attribute_item, + STATE(2830), 1, + sym_lifetime, + STATE(2166), 2, + sym_line_comment, + sym_block_comment, + STATE(3355), 3, + sym_const_parameter, + sym_type_parameter, + sym_lifetime_parameter, + [68354] = 6, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4901), 1, + anon_sym_COLON_COLON, + ACTIONS(4939), 1, + anon_sym_COLON, + STATE(2167), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4937), 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, + [68382] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(4685), 1, + ACTIONS(3549), 1, + anon_sym_DOT_DOT, + ACTIONS(3545), 2, + anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(4687), 1, + STATE(2168), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3551), 8, anon_sym_LPAREN, - ACTIONS(4689), 1, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - ACTIONS(4945), 1, - anon_sym_for, - STATE(2029), 1, - sym_type_arguments, - STATE(2099), 1, - sym_parameters, - STATE(2172), 2, + anon_sym_if, + [68410] = 6, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3557), 1, + anon_sym_DOT_DOT, + ACTIONS(3553), 2, + anon_sym_LBRACE, + anon_sym_LT2, + STATE(2169), 2, sym_line_comment, sym_block_comment, - ACTIONS(3445), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [68252] = 12, + ACTIONS(3559), 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, + [68438] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, - anon_sym_POUND, - ACTIONS(3089), 1, - anon_sym_SQUOTE, - ACTIONS(4855), 1, - sym_identifier, - ACTIONS(4859), 1, - anon_sym_const, - ACTIONS(4861), 1, - sym_metavariable, - STATE(1386), 1, - sym_attribute_item, - STATE(2158), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2801), 1, - sym_lifetime, - STATE(2173), 2, + ACTIONS(3565), 1, + anon_sym_DOT_DOT, + ACTIONS(3561), 2, + anon_sym_LBRACE, + anon_sym_LT2, + STATE(2170), 2, sym_line_comment, sym_block_comment, - STATE(3437), 3, - sym_const_parameter, - sym_type_parameter, - sym_lifetime_parameter, - [68292] = 6, + ACTIONS(3567), 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, + [68466] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, + ACTIONS(4901), 1, anon_sym_COLON_COLON, - ACTIONS(4937), 1, + ACTIONS(4905), 1, anon_sym_COLON, - STATE(2174), 2, + STATE(2171), 2, sym_line_comment, sym_block_comment, - ACTIONS(4935), 9, + ACTIONS(4903), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -175316,95 +174263,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68320] = 11, + [68494] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(4687), 1, - anon_sym_LPAREN, - ACTIONS(4689), 1, - anon_sym_COLON_COLON, - ACTIONS(4947), 1, - anon_sym_for, - STATE(2029), 1, - sym_type_arguments, - STATE(2099), 1, - sym_parameters, - STATE(2175), 2, + STATE(2172), 2, sym_line_comment, sym_block_comment, - ACTIONS(3445), 4, + ACTIONS(1510), 10, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [68358] = 9, - ACTIONS(19), 1, - anon_sym_LBRACE, + 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, + [68517] = 13, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(4949), 1, + ACTIONS(3065), 1, + anon_sym_POUND, + ACTIONS(4943), 1, sym_identifier, - STATE(411), 1, - sym_block, - STATE(3621), 1, - sym_label, - STATE(2176), 2, + ACTIONS(4945), 1, + anon_sym_RBRACE, + ACTIONS(4947), 1, + anon_sym_COMMA, + ACTIONS(4949), 1, + sym_crate, + STATE(1378), 1, + sym_attribute_item, + STATE(2281), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3001), 1, + sym_field_declaration, + STATE(3779), 1, + sym_visibility_modifier, + STATE(2173), 2, sym_line_comment, sym_block_comment, - ACTIONS(4951), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [68392] = 12, + [68558] = 13, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, + ACTIONS(3065), 1, anon_sym_POUND, - ACTIONS(4877), 1, + ACTIONS(4949), 1, + sym_crate, + ACTIONS(4951), 1, sym_identifier, - ACTIONS(4881), 1, - anon_sym_DOT_DOT, - ACTIONS(4885), 1, - sym_integer_literal, ACTIONS(4953), 1, anon_sym_RBRACE, ACTIONS(4955), 1, anon_sym_COMMA, - STATE(1386), 1, + STATE(1378), 1, sym_attribute_item, - STATE(2601), 1, + STATE(2321), 1, aux_sym_enum_variant_list_repeat1, - STATE(2177), 2, + STATE(2887), 1, + sym_enum_variant, + STATE(3564), 1, + sym_visibility_modifier, + STATE(2174), 2, sym_line_comment, sym_block_comment, - STATE(3163), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [68432] = 4, + [68599] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2178), 2, + STATE(2175), 2, sym_line_comment, sym_block_comment, - ACTIONS(1450), 11, + ACTIONS(4937), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -175412,46 +174354,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68456] = 11, + [68622] = 11, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(4687), 1, - anon_sym_LPAREN, - ACTIONS(4689), 1, - anon_sym_COLON_COLON, + ACTIONS(3065), 1, + anon_sym_POUND, + ACTIONS(4861), 1, + sym_identifier, + ACTIONS(4865), 1, + anon_sym_DOT_DOT, + ACTIONS(4869), 1, + sym_integer_literal, ACTIONS(4957), 1, - anon_sym_for, - STATE(2029), 1, - sym_type_arguments, - STATE(2099), 1, - sym_parameters, - STATE(2179), 2, + anon_sym_RBRACE, + STATE(1378), 1, + sym_attribute_item, + STATE(2550), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2176), 2, sym_line_comment, sym_block_comment, - ACTIONS(3445), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [68494] = 4, + STATE(3254), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [68659] = 11, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2180), 2, + ACTIONS(3065), 1, + anon_sym_POUND, + ACTIONS(4861), 1, + sym_identifier, + ACTIONS(4865), 1, + anon_sym_DOT_DOT, + ACTIONS(4869), 1, + sym_integer_literal, + ACTIONS(4959), 1, + anon_sym_RBRACE, + STATE(1378), 1, + sym_attribute_item, + STATE(2550), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2177), 2, + sym_line_comment, + sym_block_comment, + STATE(3254), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [68696] = 13, + ACTIONS(69), 1, + anon_sym_pub, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3065), 1, + anon_sym_POUND, + ACTIONS(4943), 1, + sym_identifier, + ACTIONS(4949), 1, + sym_crate, + ACTIONS(4961), 1, + anon_sym_RBRACE, + ACTIONS(4963), 1, + anon_sym_COMMA, + STATE(1378), 1, + sym_attribute_item, + STATE(2322), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2895), 1, + sym_field_declaration, + STATE(3779), 1, + sym_visibility_modifier, + STATE(2178), 2, + sym_line_comment, + sym_block_comment, + [68737] = 4, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(2179), 2, sym_line_comment, sym_block_comment, - ACTIONS(4959), 10, + ACTIONS(4965), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -175462,15 +174456,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68517] = 4, + [68760] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2181), 2, + STATE(2180), 2, sym_line_comment, sym_block_comment, - ACTIONS(4961), 10, + ACTIONS(4967), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -175481,15 +174475,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68540] = 4, + [68783] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2182), 2, + STATE(2181), 2, sym_line_comment, sym_block_comment, - ACTIONS(4667), 10, + ACTIONS(4969), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -175500,41 +174494,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68563] = 11, + [68806] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, - anon_sym_POUND, - ACTIONS(4877), 1, - sym_identifier, - ACTIONS(4881), 1, - anon_sym_DOT_DOT, - ACTIONS(4885), 1, - sym_integer_literal, - ACTIONS(4963), 1, - anon_sym_RBRACE, - STATE(1386), 1, - sym_attribute_item, - STATE(2601), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2183), 2, + ACTIONS(3435), 1, + anon_sym_LT2, + ACTIONS(3763), 1, + anon_sym_COLON_COLON, + ACTIONS(4971), 1, + anon_sym_BANG, + STATE(1422), 1, + sym_type_arguments, + STATE(2182), 2, sym_line_comment, sym_block_comment, - STATE(3395), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [68600] = 4, + ACTIONS(3613), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [68837] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2184), 2, + STATE(2183), 2, sym_line_comment, sym_block_comment, - ACTIONS(4965), 10, + ACTIONS(4973), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -175545,15 +174536,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68623] = 4, + [68860] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2185), 2, + STATE(2184), 2, sym_line_comment, sym_block_comment, - ACTIONS(4967), 10, + ACTIONS(4975), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -175564,77 +174555,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68646] = 11, + [68883] = 8, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(4683), 1, + anon_sym_BANG, + ACTIONS(4760), 1, + anon_sym_COLON_COLON, + STATE(2024), 1, + sym_type_arguments, + STATE(2185), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3613), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [68914] = 11, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, + ACTIONS(3065), 1, anon_sym_POUND, - ACTIONS(4877), 1, + ACTIONS(4861), 1, sym_identifier, - ACTIONS(4881), 1, + ACTIONS(4865), 1, anon_sym_DOT_DOT, - ACTIONS(4885), 1, + ACTIONS(4869), 1, sym_integer_literal, - ACTIONS(4969), 1, + ACTIONS(4977), 1, anon_sym_RBRACE, - STATE(1386), 1, + STATE(1378), 1, sym_attribute_item, - STATE(2601), 1, + STATE(2550), 1, aux_sym_enum_variant_list_repeat1, STATE(2186), 2, sym_line_comment, sym_block_comment, - STATE(3395), 3, + STATE(3254), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [68683] = 10, + [68951] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, + ACTIONS(3435), 1, anon_sym_LT2, - ACTIONS(4971), 1, - anon_sym_BANG, - ACTIONS(4973), 1, - anon_sym_DOT_DOT, - ACTIONS(4977), 1, + ACTIONS(3763), 1, anon_sym_COLON_COLON, - STATE(2033), 1, + ACTIONS(4683), 1, + anon_sym_BANG, + STATE(1422), 1, sym_type_arguments, - ACTIONS(4975), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, STATE(2187), 2, sym_line_comment, sym_block_comment, - ACTIONS(4695), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [68718] = 4, + ACTIONS(3613), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [68982] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(4183), 1, + anon_sym_LT2, + ACTIONS(4335), 1, + anon_sym_COLON_COLON, + ACTIONS(4683), 1, + anon_sym_BANG, + STATE(1665), 1, + sym_type_arguments, STATE(2188), 2, sym_line_comment, sym_block_comment, - ACTIONS(4897), 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, - [68741] = 4, + ACTIONS(3613), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [69013] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, @@ -175653,7 +174669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68764] = 4, + [69036] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, @@ -175672,7 +174688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68787] = 4, + [69059] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, @@ -175691,7 +174707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68810] = 4, + [69082] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, @@ -175710,26 +174726,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68833] = 4, + [69105] = 10, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(4653), 1, + anon_sym_LPAREN, + ACTIONS(4657), 1, + anon_sym_COLON, + ACTIONS(4659), 1, + anon_sym_BANG, + ACTIONS(4663), 1, + anon_sym_DOT_DOT, + ACTIONS(4987), 1, + anon_sym_COLON_COLON, + ACTIONS(4665), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2193), 2, sym_line_comment, sym_block_comment, - ACTIONS(4987), 10, - anon_sym_SEMI, + ACTIONS(4651), 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, - [68856] = 4, + [69140] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, @@ -175748,82 +174770,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68879] = 8, + [69163] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3443), 1, - anon_sym_LT2, - ACTIONS(3773), 1, - anon_sym_COLON_COLON, - ACTIONS(4699), 1, - anon_sym_BANG, - STATE(1428), 1, - sym_type_arguments, STATE(2195), 2, sym_line_comment, sym_block_comment, - ACTIONS(3621), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [68910] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(4175), 1, - anon_sym_LT2, - ACTIONS(4363), 1, - anon_sym_COLON_COLON, - ACTIONS(4699), 1, - anon_sym_BANG, - STATE(1717), 1, - sym_type_arguments, - STATE(2196), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3621), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [68941] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(4687), 1, - anon_sym_LPAREN, - ACTIONS(4991), 1, - anon_sym_LBRACE, - STATE(2026), 1, - sym_type_arguments, - STATE(2100), 1, - sym_parameters, - STATE(2197), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3509), 5, + ACTIONS(4991), 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, - [68974] = 4, + anon_sym_else, + anon_sym_in, + [69186] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2198), 2, + STATE(2196), 2, sym_line_comment, sym_block_comment, ACTIONS(4993), 10, @@ -175837,85 +174808,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [68997] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(4699), 1, - anon_sym_BANG, - ACTIONS(4788), 1, - anon_sym_COLON_COLON, - STATE(2033), 1, - sym_type_arguments, - STATE(2199), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3621), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [69028] = 10, + [69209] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4669), 1, - anon_sym_LPAREN, - ACTIONS(4673), 1, - anon_sym_COLON, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(4679), 1, - anon_sym_DOT_DOT, - ACTIONS(4995), 1, - anon_sym_COLON_COLON, - ACTIONS(4681), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2200), 2, + STATE(2197), 2, sym_line_comment, sym_block_comment, - ACTIONS(4667), 3, + ACTIONS(4995), 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, - [69063] = 10, + anon_sym_else, + anon_sym_in, + [69232] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3503), 1, - anon_sym_COLON, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(4687), 1, - anon_sym_LPAREN, - ACTIONS(4693), 1, - anon_sym_COLON_COLON, - STATE(2029), 1, - sym_type_arguments, - STATE(2457), 1, - sym_parameters, - STATE(2201), 2, + STATE(2198), 2, sym_line_comment, sym_block_comment, - ACTIONS(3501), 4, - anon_sym_PLUS, - anon_sym_GT, + ACTIONS(4651), 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_as, - [69098] = 4, + anon_sym_else, + anon_sym_in, + [69255] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2202), 2, + STATE(2199), 2, sym_line_comment, sym_block_comment, ACTIONS(4997), 10, @@ -175929,12 +174865,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [69121] = 4, + [69278] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2203), 2, + STATE(2200), 2, sym_line_comment, sym_block_comment, ACTIONS(4999), 10, @@ -175948,12 +174884,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [69144] = 4, + [69301] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2204), 2, + STATE(2201), 2, sym_line_comment, sym_block_comment, ACTIONS(5001), 10, @@ -175967,12 +174903,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [69167] = 4, + [69324] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2205), 2, + STATE(2202), 2, sym_line_comment, sym_block_comment, ACTIONS(5003), 10, @@ -175986,12 +174922,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [69190] = 4, + [69347] = 10, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2206), 2, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(4683), 1, + anon_sym_BANG, + ACTIONS(4685), 1, + anon_sym_DOT_DOT, + ACTIONS(4752), 1, + anon_sym_COLON_COLON, + STATE(2024), 1, + sym_type_arguments, + ACTIONS(4687), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2203), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4679), 3, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_COMMA, + [69382] = 4, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + STATE(2204), 2, sym_line_comment, sym_block_comment, ACTIONS(5005), 10, @@ -176005,12 +174966,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [69213] = 4, + [69405] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2207), 2, + STATE(2205), 2, sym_line_comment, sym_block_comment, ACTIONS(5007), 10, @@ -176024,60 +174985,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [69236] = 11, + [69428] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, - anon_sym_POUND, - ACTIONS(4877), 1, - sym_identifier, - ACTIONS(4881), 1, - anon_sym_DOT_DOT, - ACTIONS(4885), 1, - sym_integer_literal, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(4671), 1, + anon_sym_LPAREN, ACTIONS(5009), 1, - anon_sym_RBRACE, - STATE(1386), 1, - sym_attribute_item, - STATE(2601), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2208), 2, - sym_line_comment, - sym_block_comment, - STATE(3395), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [69273] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - STATE(2209), 2, + anon_sym_LBRACE, + STATE(2023), 1, + sym_type_arguments, + STATE(2096), 1, + sym_parameters, + STATE(2206), 2, sym_line_comment, sym_block_comment, - ACTIONS(5011), 10, + ACTIONS(3569), 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, - [69296] = 4, + [69461] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2210), 2, + STATE(2207), 2, sym_line_comment, sym_block_comment, - ACTIONS(5013), 10, + ACTIONS(5011), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -176088,40 +175028,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [69319] = 10, + [69484] = 10, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, + ACTIONS(4669), 1, anon_sym_LT2, - ACTIONS(4699), 1, + ACTIONS(5013), 1, anon_sym_BANG, - ACTIONS(4701), 1, + ACTIONS(5015), 1, anon_sym_DOT_DOT, - ACTIONS(4786), 1, + ACTIONS(5019), 1, anon_sym_COLON_COLON, - STATE(2033), 1, + STATE(2024), 1, sym_type_arguments, - ACTIONS(4703), 2, + ACTIONS(5017), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2211), 2, + STATE(2208), 2, sym_line_comment, sym_block_comment, - ACTIONS(4695), 3, - anon_sym_RBRACK, + ACTIONS(4679), 3, + anon_sym_EQ_GT, anon_sym_PIPE, + anon_sym_if, + [69519] = 10, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3490), 1, + anon_sym_COLON, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(4671), 1, + anon_sym_LPAREN, + ACTIONS(4677), 1, + anon_sym_COLON_COLON, + STATE(2022), 1, + sym_type_arguments, + STATE(2466), 1, + sym_parameters, + STATE(2209), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3488), 4, + anon_sym_PLUS, + anon_sym_GT, anon_sym_COMMA, - [69354] = 4, + anon_sym_as, + [69554] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2212), 2, + STATE(2210), 2, sym_line_comment, sym_block_comment, - ACTIONS(5015), 10, + ACTIONS(5021), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -176132,40 +175097,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [69377] = 13, - ACTIONS(69), 1, - anon_sym_pub, + [69577] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, - anon_sym_POUND, - ACTIONS(5017), 1, - sym_identifier, - ACTIONS(5019), 1, - anon_sym_RBRACE, - ACTIONS(5021), 1, - anon_sym_COMMA, - ACTIONS(5023), 1, - sym_crate, - STATE(1386), 1, - sym_attribute_item, - STATE(2289), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3094), 1, - sym_field_declaration, - STATE(3754), 1, - sym_visibility_modifier, - STATE(2213), 2, + STATE(2211), 2, sym_line_comment, sym_block_comment, - [69418] = 4, + ACTIONS(5023), 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, + [69600] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2214), 2, + STATE(2212), 2, sym_line_comment, sym_block_comment, ACTIONS(5025), 10, @@ -176179,12 +175135,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [69441] = 4, + [69623] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2215), 2, + STATE(2213), 2, sym_line_comment, sym_block_comment, ACTIONS(5027), 10, @@ -176198,38 +175154,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [69464] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3443), 1, - anon_sym_LT2, - ACTIONS(3773), 1, - anon_sym_COLON_COLON, - ACTIONS(5029), 1, - anon_sym_BANG, - STATE(1428), 1, - sym_type_arguments, - STATE(2216), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3621), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [69495] = 4, + [69646] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2217), 2, + STATE(2214), 2, sym_line_comment, sym_block_comment, - ACTIONS(5031), 10, + ACTIONS(5029), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -176240,15 +175173,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [69518] = 4, + [69669] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2218), 2, + STATE(2215), 2, sym_line_comment, sym_block_comment, - ACTIONS(1508), 10, + ACTIONS(5031), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -176259,76 +175192,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [69541] = 8, + [69692] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4175), 1, - anon_sym_LT2, - ACTIONS(4363), 1, - anon_sym_COLON_COLON, - ACTIONS(5033), 1, - anon_sym_BANG, - STATE(1717), 1, - sym_type_arguments, - STATE(2219), 2, + ACTIONS(1614), 1, + anon_sym_LBRACE, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + STATE(2172), 1, + sym_block, + STATE(3764), 1, + sym_label, + STATE(2216), 2, sym_line_comment, sym_block_comment, - ACTIONS(3621), 6, + ACTIONS(3613), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [69572] = 4, + [69723] = 11, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2220), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5035), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(3065), 1, + anon_sym_POUND, + ACTIONS(4861), 1, + sym_identifier, + ACTIONS(4865), 1, + anon_sym_DOT_DOT, + ACTIONS(4869), 1, + sym_integer_literal, + ACTIONS(5033), 1, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [69595] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - STATE(2221), 2, + STATE(1378), 1, + sym_attribute_item, + STATE(2550), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2217), 2, sym_line_comment, sym_block_comment, - ACTIONS(5037), 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, - [69618] = 4, + STATE(3254), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [69760] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2222), 2, + STATE(2218), 2, sym_line_comment, sym_block_comment, - ACTIONS(4909), 10, + ACTIONS(4877), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -176339,85 +175260,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [69641] = 13, + [69783] = 13, ACTIONS(69), 1, anon_sym_pub, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, + ACTIONS(3065), 1, anon_sym_POUND, - ACTIONS(5023), 1, + ACTIONS(4949), 1, sym_crate, - ACTIONS(5039), 1, + ACTIONS(4951), 1, sym_identifier, - ACTIONS(5041), 1, + ACTIONS(5035), 1, anon_sym_RBRACE, - ACTIONS(5043), 1, + ACTIONS(5037), 1, anon_sym_COMMA, - STATE(1386), 1, + STATE(1378), 1, sym_attribute_item, - STATE(2329), 1, + STATE(2323), 1, aux_sym_enum_variant_list_repeat1, - STATE(3125), 1, + STATE(3126), 1, sym_enum_variant, - STATE(3562), 1, + STATE(3564), 1, sym_visibility_modifier, - STATE(2223), 2, + STATE(2219), 2, sym_line_comment, sym_block_comment, - [69682] = 8, + [69824] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1622), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(2218), 1, - sym_block, - STATE(3774), 1, - sym_label, - STATE(2224), 2, + ACTIONS(4183), 1, + anon_sym_LT2, + ACTIONS(4335), 1, + anon_sym_COLON_COLON, + ACTIONS(5039), 1, + anon_sym_BANG, + STATE(1665), 1, + sym_type_arguments, + STATE(2220), 2, sym_line_comment, sym_block_comment, - ACTIONS(3621), 6, + ACTIONS(3613), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [69713] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - STATE(2225), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4935), 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, - [69736] = 4, + [69855] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2226), 2, + STATE(2221), 2, sym_line_comment, sym_block_comment, - ACTIONS(5045), 10, + ACTIONS(5041), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -176428,15 +175330,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [69759] = 4, + [69878] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2227), 2, + STATE(2222), 2, sym_line_comment, sym_block_comment, - ACTIONS(5047), 10, + ACTIONS(5043), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -176447,15 +175349,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [69782] = 4, + [69901] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2228), 2, + STATE(2223), 2, sym_line_comment, sym_block_comment, - ACTIONS(5049), 10, + ACTIONS(5045), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -176466,43 +175368,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [69805] = 13, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3079), 1, - anon_sym_POUND, - ACTIONS(5023), 1, - sym_crate, - ACTIONS(5039), 1, - sym_identifier, - ACTIONS(5051), 1, - anon_sym_RBRACE, - ACTIONS(5053), 1, - anon_sym_COMMA, - STATE(1386), 1, - sym_attribute_item, - STATE(2328), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2898), 1, - sym_enum_variant, - STATE(3562), 1, - sym_visibility_modifier, - STATE(2229), 2, - sym_line_comment, - sym_block_comment, - [69846] = 4, + [69924] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2230), 2, + STATE(2224), 2, sym_line_comment, sym_block_comment, - ACTIONS(5055), 10, + ACTIONS(5047), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -176513,15 +175387,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [69869] = 4, + [69947] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2231), 2, + STATE(2225), 2, sym_line_comment, sym_block_comment, - ACTIONS(5057), 10, + ACTIONS(5049), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -176532,69 +175406,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [69892] = 11, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3079), 1, - anon_sym_POUND, - ACTIONS(4877), 1, - sym_identifier, - ACTIONS(4881), 1, - anon_sym_DOT_DOT, - ACTIONS(4885), 1, - sym_integer_literal, - ACTIONS(5059), 1, - anon_sym_RBRACE, - STATE(1386), 1, - sym_attribute_item, - STATE(2601), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2232), 2, - sym_line_comment, - sym_block_comment, - STATE(3395), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [69929] = 13, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3079), 1, - anon_sym_POUND, - ACTIONS(5017), 1, - sym_identifier, - ACTIONS(5023), 1, - sym_crate, - ACTIONS(5061), 1, - anon_sym_RBRACE, - ACTIONS(5063), 1, - anon_sym_COMMA, - STATE(1386), 1, - sym_attribute_item, - STATE(2330), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2911), 1, - sym_field_declaration, - STATE(3754), 1, - sym_visibility_modifier, - STATE(2233), 2, - sym_line_comment, - sym_block_comment, [69970] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2234), 2, + STATE(2226), 2, sym_line_comment, sym_block_comment, - ACTIONS(5065), 10, + ACTIONS(4903), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -176605,798 +175425,803 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [69993] = 8, + [69993] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, + ACTIONS(4669), 1, anon_sym_LT2, - ACTIONS(4687), 1, + ACTIONS(4671), 1, anon_sym_LPAREN, - STATE(2026), 1, + ACTIONS(5051), 1, + anon_sym_for, + STATE(2023), 1, sym_type_arguments, - STATE(2465), 1, + STATE(2096), 1, sym_parameters, - STATE(2235), 2, + STATE(2227), 2, sym_line_comment, sym_block_comment, - ACTIONS(3513), 5, - anon_sym_COLON, + ACTIONS(3569), 4, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [70023] = 9, + anon_sym_where, + [70025] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4669), 1, + ACTIONS(4653), 1, anon_sym_LPAREN, - ACTIONS(4675), 1, + ACTIONS(4659), 1, anon_sym_BANG, - ACTIONS(4679), 1, + ACTIONS(4663), 1, anon_sym_DOT_DOT, - ACTIONS(5067), 1, + ACTIONS(5053), 1, anon_sym_COLON_COLON, - ACTIONS(4681), 2, + ACTIONS(4665), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2236), 2, + STATE(2228), 2, sym_line_comment, sym_block_comment, - ACTIONS(4667), 3, + ACTIONS(4651), 3, anon_sym_RBRACK, anon_sym_PIPE, anon_sym_COMMA, - [70055] = 5, + [70057] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3555), 1, - anon_sym_DOT_DOT, - STATE(2237), 2, + ACTIONS(5057), 1, + anon_sym_PLUS, + STATE(2260), 1, + aux_sym_trait_bounds_repeat1, + STATE(2229), 2, sym_line_comment, sym_block_comment, - ACTIONS(3557), 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, - [70079] = 12, + ACTIONS(5055), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + [70083] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, + ACTIONS(3065), 1, anon_sym_POUND, - ACTIONS(5023), 1, + ACTIONS(4943), 1, + sym_identifier, + ACTIONS(4949), 1, sym_crate, - ACTIONS(5039), 1, + ACTIONS(5059), 1, + anon_sym_RBRACE, + STATE(1378), 1, + sym_attribute_item, + STATE(2324), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3396), 1, + sym_field_declaration, + STATE(3779), 1, + sym_visibility_modifier, + STATE(2230), 2, + sym_line_comment, + sym_block_comment, + [70121] = 12, + ACTIONS(69), 1, + anon_sym_pub, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3065), 1, + anon_sym_POUND, + ACTIONS(4943), 1, sym_identifier, - ACTIONS(5069), 1, + ACTIONS(4949), 1, + sym_crate, + ACTIONS(5061), 1, anon_sym_RBRACE, - STATE(1386), 1, + STATE(1378), 1, sym_attribute_item, - STATE(2325), 1, + STATE(2324), 1, aux_sym_enum_variant_list_repeat1, - STATE(3316), 1, - sym_enum_variant, - STATE(3562), 1, + STATE(3396), 1, + sym_field_declaration, + STATE(3779), 1, sym_visibility_modifier, - STATE(2238), 2, + STATE(2231), 2, sym_line_comment, sym_block_comment, - [70117] = 7, + [70159] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, + ACTIONS(4183), 1, anon_sym_LT2, - ACTIONS(5071), 1, + ACTIONS(5063), 1, anon_sym_COLON_COLON, - STATE(2033), 1, + STATE(1665), 1, sym_type_arguments, - STATE(2239), 2, + STATE(2232), 2, sym_line_comment, sym_block_comment, - ACTIONS(3621), 6, + ACTIONS(3613), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [70145] = 9, + [70187] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4695), 1, - anon_sym_PIPE, - ACTIONS(4697), 1, - anon_sym_COLON, - ACTIONS(4701), 1, - anon_sym_DOT_DOT, - ACTIONS(4792), 1, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(5065), 1, anon_sym_COLON_COLON, - ACTIONS(4703), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2240), 2, + STATE(2024), 1, + sym_type_arguments, + STATE(2233), 2, sym_line_comment, sym_block_comment, - ACTIONS(3509), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [70177] = 12, + ACTIONS(3613), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [70215] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, + ACTIONS(3065), 1, anon_sym_POUND, - ACTIONS(5017), 1, + ACTIONS(4943), 1, sym_identifier, - ACTIONS(5023), 1, + ACTIONS(4949), 1, sym_crate, - ACTIONS(5073), 1, + ACTIONS(5067), 1, anon_sym_RBRACE, - STATE(1386), 1, + STATE(1378), 1, sym_attribute_item, - STATE(2331), 1, + STATE(2324), 1, aux_sym_enum_variant_list_repeat1, - STATE(3399), 1, + STATE(3396), 1, sym_field_declaration, - STATE(3754), 1, + STATE(3779), 1, sym_visibility_modifier, - STATE(2241), 2, + STATE(2234), 2, sym_line_comment, sym_block_comment, - [70215] = 9, + [70253] = 7, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(4687), 1, - anon_sym_LPAREN, - ACTIONS(5075), 1, - anon_sym_for, - STATE(2026), 1, - sym_type_arguments, - STATE(2100), 1, - sym_parameters, - STATE(2242), 2, + ACTIONS(5069), 1, + anon_sym_move, + STATE(222), 1, + sym_closure_parameters, + STATE(2235), 2, sym_line_comment, sym_block_comment, - ACTIONS(3509), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [70247] = 7, + ACTIONS(3613), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [70281] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3443), 1, - anon_sym_LT2, - ACTIONS(5077), 1, - anon_sym_COLON_COLON, - STATE(1428), 1, - sym_type_arguments, - STATE(2243), 2, + ACTIONS(5071), 1, + anon_sym_SEMI, + ACTIONS(5073), 1, + anon_sym_LBRACE, + STATE(633), 1, + sym_declaration_list, + STATE(2236), 2, sym_line_comment, sym_block_comment, - ACTIONS(3621), 6, + ACTIONS(3613), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [70275] = 9, + [70309] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5079), 1, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(4671), 1, anon_sym_LPAREN, - ACTIONS(5084), 1, - anon_sym_LBRACK, - ACTIONS(5087), 1, - anon_sym_LBRACE, - STATE(3512), 1, - sym_token_tree_pattern, - STATE(3660), 1, - sym_macro_rule, - ACTIONS(5082), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(2244), 3, + ACTIONS(5075), 1, + anon_sym_for, + STATE(2023), 1, + sym_type_arguments, + STATE(2096), 1, + sym_parameters, + STATE(2237), 2, sym_line_comment, sym_block_comment, - aux_sym_macro_definition_repeat1, - [70307] = 8, + ACTIONS(3569), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [70341] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4747), 1, - anon_sym_trait, - ACTIONS(4835), 1, - anon_sym_extern, - ACTIONS(5090), 1, - anon_sym_impl, - STATE(3098), 1, - sym_extern_modifier, - STATE(2245), 2, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(4671), 1, + anon_sym_LPAREN, + STATE(2023), 1, + sym_type_arguments, + STATE(2476), 1, + sym_parameters, + STATE(2238), 2, sym_line_comment, sym_block_comment, - ACTIONS(3621), 5, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - [70337] = 12, - ACTIONS(69), 1, - anon_sym_pub, + ACTIONS(3505), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [70371] = 12, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, - anon_sym_POUND, - ACTIONS(5017), 1, - sym_identifier, - ACTIONS(5023), 1, - sym_crate, - ACTIONS(5092), 1, - anon_sym_RBRACE, - STATE(1386), 1, - sym_attribute_item, - STATE(2331), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3399), 1, - sym_field_declaration, - STATE(3754), 1, - sym_visibility_modifier, - STATE(2246), 2, + ACTIONS(5077), 1, + anon_sym_SEMI, + ACTIONS(5079), 1, + anon_sym_LPAREN, + ACTIONS(5081), 1, + anon_sym_LBRACE, + ACTIONS(5083), 1, + anon_sym_LT, + ACTIONS(5085), 1, + anon_sym_where, + STATE(662), 1, + sym_field_declaration_list, + STATE(2365), 1, + sym_type_parameters, + STATE(3024), 1, + sym_ordered_field_declaration_list, + STATE(3259), 1, + sym_where_clause, + STATE(2239), 2, sym_line_comment, sym_block_comment, - [70375] = 12, - ACTIONS(69), 1, - anon_sym_pub, + [70409] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, - anon_sym_POUND, - ACTIONS(5017), 1, - sym_identifier, - ACTIONS(5023), 1, - sym_crate, - ACTIONS(5094), 1, - anon_sym_RBRACE, - STATE(1386), 1, - sym_attribute_item, - STATE(2331), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3399), 1, - sym_field_declaration, - STATE(3754), 1, - sym_visibility_modifier, - STATE(2247), 2, + ACTIONS(3565), 1, + anon_sym_DOT_DOT, + STATE(2240), 2, sym_line_comment, sym_block_comment, - [70413] = 9, + ACTIONS(3567), 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, + [70433] = 11, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4841), 1, - anon_sym_LPAREN, - ACTIONS(4845), 1, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(4679), 1, + anon_sym_PIPE, + ACTIONS(4681), 1, + anon_sym_COLON, + ACTIONS(4683), 1, anon_sym_BANG, - ACTIONS(4849), 1, + ACTIONS(4685), 1, anon_sym_DOT_DOT, - ACTIONS(5096), 1, + ACTIONS(4774), 1, anon_sym_COLON_COLON, - ACTIONS(4851), 2, + STATE(2024), 1, + sym_type_arguments, + ACTIONS(4687), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2248), 2, + STATE(2241), 2, sym_line_comment, sym_block_comment, - ACTIONS(4667), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [70445] = 12, - ACTIONS(69), 1, - anon_sym_pub, + [70469] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, - anon_sym_POUND, - ACTIONS(5017), 1, - sym_identifier, - ACTIONS(5023), 1, - sym_crate, - ACTIONS(5098), 1, - anon_sym_RBRACE, - STATE(1386), 1, - sym_attribute_item, - STATE(2331), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3399), 1, - sym_field_declaration, - STATE(3754), 1, - sym_visibility_modifier, - STATE(2249), 2, + ACTIONS(5087), 1, + anon_sym_SEMI, + ACTIONS(5089), 1, + anon_sym_LBRACE, + STATE(1381), 1, + sym_declaration_list, + STATE(2242), 2, sym_line_comment, sym_block_comment, - [70483] = 12, + ACTIONS(3613), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [70497] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, + ACTIONS(3065), 1, anon_sym_POUND, - ACTIONS(5023), 1, - sym_crate, - ACTIONS(5039), 1, + ACTIONS(4943), 1, sym_identifier, - ACTIONS(5100), 1, + ACTIONS(4949), 1, + sym_crate, + ACTIONS(5091), 1, anon_sym_RBRACE, - STATE(1386), 1, + STATE(1378), 1, sym_attribute_item, - STATE(2325), 1, + STATE(2324), 1, aux_sym_enum_variant_list_repeat1, - STATE(3316), 1, - sym_enum_variant, - STATE(3562), 1, + STATE(3396), 1, + sym_field_declaration, + STATE(3779), 1, sym_visibility_modifier, - STATE(2250), 2, - sym_line_comment, - sym_block_comment, - [70521] = 12, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(5102), 1, - anon_sym_SEMI, - ACTIONS(5104), 1, - anon_sym_LPAREN, - ACTIONS(5106), 1, - anon_sym_LBRACE, - ACTIONS(5108), 1, - anon_sym_LT, - ACTIONS(5110), 1, - anon_sym_where, - STATE(663), 1, - sym_field_declaration_list, - STATE(2357), 1, - sym_type_parameters, - STATE(2980), 1, - sym_ordered_field_declaration_list, - STATE(3338), 1, - sym_where_clause, - STATE(2251), 2, + STATE(2243), 2, sym_line_comment, sym_block_comment, - [70559] = 9, + [70535] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, + ACTIONS(4669), 1, anon_sym_LT2, - ACTIONS(4687), 1, + ACTIONS(4671), 1, anon_sym_LPAREN, - ACTIONS(5112), 1, + ACTIONS(5093), 1, anon_sym_for, - STATE(2026), 1, + STATE(2023), 1, sym_type_arguments, - STATE(2100), 1, + STATE(2096), 1, sym_parameters, - STATE(2252), 2, + STATE(2244), 2, sym_line_comment, sym_block_comment, - ACTIONS(3509), 4, + ACTIONS(3569), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [70591] = 7, + [70567] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1122), 1, + ACTIONS(1116), 1, aux_sym_string_literal_token1, - ACTIONS(5114), 1, + ACTIONS(5095), 1, sym_crate, - STATE(2288), 1, + STATE(2280), 1, sym_string_literal, - STATE(2253), 2, + STATE(2245), 2, sym_line_comment, sym_block_comment, - ACTIONS(4931), 6, + ACTIONS(4915), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [70619] = 7, + [70595] = 12, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4175), 1, - anon_sym_LT2, - ACTIONS(5116), 1, - anon_sym_COLON_COLON, - STATE(1717), 1, - sym_type_arguments, - STATE(2254), 2, + ACTIONS(5079), 1, + anon_sym_LPAREN, + ACTIONS(5083), 1, + anon_sym_LT, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(5097), 1, + anon_sym_SEMI, + ACTIONS(5099), 1, + anon_sym_LBRACE, + STATE(1148), 1, + sym_field_declaration_list, + STATE(2362), 1, + sym_type_parameters, + STATE(2902), 1, + sym_ordered_field_declaration_list, + STATE(3270), 1, + sym_where_clause, + STATE(2246), 2, sym_line_comment, sym_block_comment, - ACTIONS(3621), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [70647] = 7, + [70633] = 12, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5118), 1, - anon_sym_SEMI, - ACTIONS(5120), 1, + ACTIONS(5079), 1, + anon_sym_LPAREN, + ACTIONS(5083), 1, + anon_sym_LT, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(5099), 1, anon_sym_LBRACE, - STATE(634), 1, - sym_declaration_list, - STATE(2255), 2, + ACTIONS(5101), 1, + anon_sym_SEMI, + STATE(1108), 1, + sym_field_declaration_list, + STATE(2358), 1, + sym_type_parameters, + STATE(3112), 1, + sym_ordered_field_declaration_list, + STATE(3367), 1, + sym_where_clause, + STATE(2247), 2, sym_line_comment, sym_block_comment, - ACTIONS(3621), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [70675] = 12, - ACTIONS(69), 1, - anon_sym_pub, + [70671] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, - anon_sym_POUND, - ACTIONS(5023), 1, + ACTIONS(1116), 1, + aux_sym_string_literal_token1, + ACTIONS(5103), 1, sym_crate, - ACTIONS(5039), 1, - sym_identifier, - ACTIONS(5122), 1, - anon_sym_RBRACE, - STATE(1386), 1, - sym_attribute_item, - STATE(2325), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3316), 1, - sym_enum_variant, - STATE(3562), 1, - sym_visibility_modifier, - STATE(2256), 2, + STATE(2280), 1, + sym_string_literal, + STATE(2248), 2, sym_line_comment, sym_block_comment, - [70713] = 9, + ACTIONS(4915), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [70699] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, + ACTIONS(4669), 1, anon_sym_LT2, - ACTIONS(4687), 1, + ACTIONS(4671), 1, anon_sym_LPAREN, - ACTIONS(5124), 1, - anon_sym_for, - STATE(2026), 1, + STATE(2023), 1, sym_type_arguments, - STATE(2100), 1, + STATE(2476), 1, sym_parameters, - STATE(2257), 2, + STATE(2249), 2, sym_line_comment, sym_block_comment, - ACTIONS(3509), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3523), 5, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_where, - [70745] = 9, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [70729] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(4687), 1, + ACTIONS(5105), 1, anon_sym_LPAREN, - ACTIONS(5126), 1, - anon_sym_for, - STATE(2026), 1, - sym_type_arguments, - STATE(2100), 1, - sym_parameters, - STATE(2258), 2, + ACTIONS(5110), 1, + anon_sym_LBRACK, + ACTIONS(5113), 1, + anon_sym_LBRACE, + STATE(3663), 1, + sym_macro_rule, + STATE(3746), 1, + sym_token_tree_pattern, + ACTIONS(5108), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(2250), 3, sym_line_comment, sym_block_comment, - ACTIONS(3509), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [70777] = 7, + aux_sym_macro_definition_repeat1, + [70761] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5128), 1, - anon_sym_SEMI, - ACTIONS(5130), 1, - anon_sym_LBRACE, - STATE(1389), 1, - sym_declaration_list, - STATE(2259), 2, + ACTIONS(5118), 1, + anon_sym_PLUS, + STATE(2251), 3, sym_line_comment, sym_block_comment, - ACTIONS(3621), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [70805] = 9, + aux_sym_trait_bounds_repeat1, + ACTIONS(5116), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + [70785] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, + ACTIONS(4669), 1, anon_sym_LT2, - ACTIONS(4687), 1, + ACTIONS(4671), 1, anon_sym_LPAREN, - ACTIONS(5132), 1, + ACTIONS(5121), 1, anon_sym_for, - STATE(2026), 1, + STATE(2023), 1, sym_type_arguments, - STATE(2100), 1, + STATE(2096), 1, sym_parameters, - STATE(2260), 2, + STATE(2252), 2, sym_line_comment, sym_block_comment, - ACTIONS(3509), 4, + ACTIONS(3569), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [70837] = 12, + [70817] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, + ACTIONS(3065), 1, anon_sym_POUND, - ACTIONS(5023), 1, + ACTIONS(4949), 1, sym_crate, - ACTIONS(5039), 1, + ACTIONS(4951), 1, sym_identifier, - ACTIONS(5134), 1, + ACTIONS(5123), 1, anon_sym_RBRACE, - STATE(1386), 1, + STATE(1378), 1, sym_attribute_item, - STATE(2325), 1, + STATE(2318), 1, aux_sym_enum_variant_list_repeat1, - STATE(3316), 1, + STATE(3331), 1, sym_enum_variant, - STATE(3562), 1, + STATE(3564), 1, sym_visibility_modifier, - STATE(2261), 2, + STATE(2253), 2, sym_line_comment, sym_block_comment, - [70875] = 11, + [70855] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, + ACTIONS(4669), 1, anon_sym_LT2, - ACTIONS(4695), 1, - anon_sym_PIPE, - ACTIONS(4697), 1, - anon_sym_COLON, - ACTIONS(4699), 1, - anon_sym_BANG, - ACTIONS(4701), 1, - anon_sym_DOT_DOT, - ACTIONS(4792), 1, - anon_sym_COLON_COLON, - STATE(2033), 1, + ACTIONS(4671), 1, + anon_sym_LPAREN, + ACTIONS(5125), 1, + anon_sym_for, + STATE(2023), 1, sym_type_arguments, - ACTIONS(4703), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2262), 2, + STATE(2096), 1, + sym_parameters, + STATE(2254), 2, sym_line_comment, sym_block_comment, - [70911] = 8, + ACTIONS(3569), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [70887] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(4687), 1, - anon_sym_LPAREN, - STATE(2026), 1, - sym_type_arguments, - STATE(2465), 1, - sym_parameters, - STATE(2263), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3523), 5, - anon_sym_COLON, + anon_sym_DOT_DOT, + ACTIONS(4752), 1, + anon_sym_COLON_COLON, + ACTIONS(5127), 1, + anon_sym_RBRACK, + ACTIONS(3569), 2, + anon_sym_SEMI, anon_sym_PLUS, - anon_sym_GT, + ACTIONS(4679), 2, + anon_sym_PIPE, anon_sym_COMMA, - anon_sym_as, - [70941] = 12, + ACTIONS(4687), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2255), 2, + sym_line_comment, + sym_block_comment, + [70919] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, + ACTIONS(3065), 1, anon_sym_POUND, - ACTIONS(5017), 1, - sym_identifier, - ACTIONS(5023), 1, + ACTIONS(4949), 1, sym_crate, - ACTIONS(5136), 1, + ACTIONS(4951), 1, + sym_identifier, + ACTIONS(5130), 1, anon_sym_RBRACE, - STATE(1386), 1, + STATE(1378), 1, sym_attribute_item, - STATE(2331), 1, + STATE(2318), 1, aux_sym_enum_variant_list_repeat1, - STATE(3399), 1, - sym_field_declaration, - STATE(3754), 1, + STATE(3331), 1, + sym_enum_variant, + STATE(3564), 1, sym_visibility_modifier, - STATE(2264), 2, + STATE(2256), 2, sym_line_comment, sym_block_comment, - [70979] = 9, + [70957] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, + ACTIONS(4669), 1, anon_sym_LT2, - ACTIONS(4687), 1, + ACTIONS(4671), 1, anon_sym_LPAREN, - ACTIONS(5138), 1, + ACTIONS(5132), 1, anon_sym_for, - STATE(2026), 1, + STATE(2023), 1, sym_type_arguments, - STATE(2100), 1, + STATE(2096), 1, sym_parameters, - STATE(2265), 2, + STATE(2257), 2, sym_line_comment, sym_block_comment, - ACTIONS(3509), 4, + ACTIONS(3569), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [71011] = 12, + [70989] = 8, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(4671), 1, + anon_sym_LPAREN, + STATE(2023), 1, + sym_type_arguments, + STATE(2476), 1, + sym_parameters, + STATE(2258), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3569), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [71019] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, + ACTIONS(3065), 1, anon_sym_POUND, - ACTIONS(5017), 1, - sym_identifier, - ACTIONS(5023), 1, + ACTIONS(4949), 1, sym_crate, - ACTIONS(5140), 1, + ACTIONS(4951), 1, + sym_identifier, + ACTIONS(5134), 1, anon_sym_RBRACE, - STATE(1386), 1, + STATE(1378), 1, sym_attribute_item, - STATE(2331), 1, + STATE(2318), 1, aux_sym_enum_variant_list_repeat1, - STATE(3399), 1, - sym_field_declaration, - STATE(3754), 1, + STATE(3331), 1, + sym_enum_variant, + STATE(3564), 1, sym_visibility_modifier, - STATE(2266), 2, + STATE(2259), 2, sym_line_comment, sym_block_comment, - [71049] = 12, + [71057] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5104), 1, - anon_sym_LPAREN, - ACTIONS(5106), 1, - anon_sym_LBRACE, - ACTIONS(5108), 1, - anon_sym_LT, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5142), 1, - anon_sym_SEMI, - STATE(641), 1, - sym_field_declaration_list, - STATE(2398), 1, - sym_type_parameters, - STATE(2999), 1, - sym_ordered_field_declaration_list, - STATE(3420), 1, - sym_where_clause, - STATE(2267), 2, + ACTIONS(5057), 1, + anon_sym_PLUS, + STATE(2251), 1, + aux_sym_trait_bounds_repeat1, + STATE(2260), 2, sym_line_comment, sym_block_comment, - [71087] = 8, + ACTIONS(5136), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + [71083] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, + ACTIONS(4669), 1, anon_sym_LT2, - ACTIONS(4687), 1, + ACTIONS(4671), 1, anon_sym_LPAREN, - STATE(2026), 1, + STATE(2023), 1, sym_type_arguments, - STATE(2465), 1, + STATE(2476), 1, sym_parameters, - STATE(2268), 2, + STATE(2261), 2, sym_line_comment, sym_block_comment, ACTIONS(3531), 5, @@ -177405,60 +176230,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_COMMA, anon_sym_as, - [71117] = 5, + [71113] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3581), 1, - anon_sym_DOT_DOT, - STATE(2269), 2, + ACTIONS(3435), 1, + anon_sym_LT2, + ACTIONS(5138), 1, + anon_sym_COLON_COLON, + STATE(1422), 1, + sym_type_arguments, + STATE(2262), 2, sym_line_comment, sym_block_comment, - ACTIONS(3583), 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, - [71141] = 10, + ACTIONS(3613), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [71141] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3509), 1, - anon_sym_PLUS, - ACTIONS(4695), 1, - anon_sym_PIPE, - ACTIONS(4697), 1, - anon_sym_COLON, - ACTIONS(4701), 1, - anon_sym_DOT_DOT, - ACTIONS(4705), 1, - anon_sym_COLON_COLON, - ACTIONS(4703), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5144), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2270), 2, + ACTIONS(3065), 1, + anon_sym_POUND, + ACTIONS(4949), 1, + sym_crate, + ACTIONS(4951), 1, + sym_identifier, + ACTIONS(5140), 1, + anon_sym_RBRACE, + STATE(1378), 1, + sym_attribute_item, + STATE(2318), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3331), 1, + sym_enum_variant, + STATE(3564), 1, + sym_visibility_modifier, + STATE(2263), 2, sym_line_comment, sym_block_comment, - [71175] = 5, + [71179] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3567), 1, + ACTIONS(3065), 1, + anon_sym_POUND, + ACTIONS(4943), 1, + sym_identifier, + ACTIONS(4949), 1, + sym_crate, + ACTIONS(5142), 1, + anon_sym_RBRACE, + STATE(1378), 1, + sym_attribute_item, + STATE(2324), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3396), 1, + sym_field_declaration, + STATE(3779), 1, + sym_visibility_modifier, + STATE(2264), 2, + sym_line_comment, + sym_block_comment, + [71217] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3513), 1, anon_sym_DOT_DOT, - STATE(2271), 2, + STATE(2265), 2, sym_line_comment, sym_block_comment, - ACTIONS(3569), 8, + ACTIONS(3515), 8, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_BANG, @@ -177467,205 +176322,208 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_if, - [71199] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(5149), 1, - anon_sym_PLUS, - STATE(2279), 1, - aux_sym_trait_bounds_repeat1, - STATE(2272), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5147), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [71225] = 9, + [71241] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, + ACTIONS(4669), 1, anon_sym_LT2, - ACTIONS(4687), 1, + ACTIONS(4671), 1, anon_sym_LPAREN, - ACTIONS(5151), 1, + ACTIONS(5144), 1, anon_sym_for, - STATE(2026), 1, + STATE(2023), 1, sym_type_arguments, - STATE(2100), 1, + STATE(2096), 1, sym_parameters, - STATE(2273), 2, + STATE(2266), 2, sym_line_comment, sym_block_comment, - ACTIONS(3509), 4, + ACTIONS(3569), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [71257] = 12, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(5104), 1, - anon_sym_LPAREN, - ACTIONS(5108), 1, - anon_sym_LT, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5153), 1, - anon_sym_SEMI, - ACTIONS(5155), 1, - anon_sym_LBRACE, - STATE(1116), 1, - sym_field_declaration_list, - STATE(2396), 1, - sym_type_parameters, - STATE(3149), 1, - sym_ordered_field_declaration_list, - STATE(3412), 1, - sym_where_clause, - STATE(2274), 2, - sym_line_comment, - sym_block_comment, - [71295] = 12, + [71273] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, + ACTIONS(3065), 1, anon_sym_POUND, - ACTIONS(5023), 1, + ACTIONS(4949), 1, sym_crate, - ACTIONS(5039), 1, + ACTIONS(4951), 1, sym_identifier, - ACTIONS(5157), 1, + ACTIONS(5146), 1, anon_sym_RBRACE, - STATE(1386), 1, + STATE(1378), 1, sym_attribute_item, - STATE(2325), 1, + STATE(2318), 1, aux_sym_enum_variant_list_repeat1, - STATE(3316), 1, + STATE(3331), 1, sym_enum_variant, - STATE(3562), 1, + STATE(3564), 1, sym_visibility_modifier, - STATE(2275), 2, + STATE(2267), 2, + sym_line_comment, + sym_block_comment, + [71311] = 10, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3569), 1, + anon_sym_PLUS, + ACTIONS(4679), 1, + anon_sym_PIPE, + ACTIONS(4681), 1, + anon_sym_COLON, + ACTIONS(4685), 1, + anon_sym_DOT_DOT, + ACTIONS(4689), 1, + anon_sym_COLON_COLON, + ACTIONS(4687), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5127), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2268), 2, + sym_line_comment, + sym_block_comment, + [71345] = 9, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(4671), 1, + anon_sym_LPAREN, + ACTIONS(5148), 1, + anon_sym_for, + STATE(2023), 1, + sym_type_arguments, + STATE(2096), 1, + sym_parameters, + STATE(2269), 2, sym_line_comment, sym_block_comment, - [71333] = 12, + ACTIONS(3569), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [71377] = 12, ACTIONS(69), 1, anon_sym_pub, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, + ACTIONS(3065), 1, anon_sym_POUND, - ACTIONS(5023), 1, - sym_crate, - ACTIONS(5039), 1, + ACTIONS(4943), 1, sym_identifier, - ACTIONS(5159), 1, + ACTIONS(4949), 1, + sym_crate, + ACTIONS(5150), 1, anon_sym_RBRACE, - STATE(1386), 1, + STATE(1378), 1, sym_attribute_item, - STATE(2325), 1, + STATE(2324), 1, aux_sym_enum_variant_list_repeat1, - STATE(3316), 1, - sym_enum_variant, - STATE(3562), 1, + STATE(3396), 1, + sym_field_declaration, + STATE(3779), 1, sym_visibility_modifier, - STATE(2276), 2, + STATE(2270), 2, sym_line_comment, sym_block_comment, - [71371] = 12, + [71415] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5104), 1, - anon_sym_LPAREN, - ACTIONS(5108), 1, - anon_sym_LT, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5155), 1, - anon_sym_LBRACE, - ACTIONS(5161), 1, - anon_sym_SEMI, - STATE(1156), 1, - sym_field_declaration_list, - STATE(2343), 1, - sym_type_parameters, - STATE(2923), 1, - sym_ordered_field_declaration_list, - STATE(3207), 1, - sym_where_clause, - STATE(2277), 2, + ACTIONS(4679), 1, + anon_sym_PIPE, + ACTIONS(4681), 1, + anon_sym_COLON, + ACTIONS(4685), 1, + anon_sym_DOT_DOT, + ACTIONS(4774), 1, + anon_sym_COLON_COLON, + ACTIONS(4687), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2271), 2, sym_line_comment, sym_block_comment, - [71409] = 8, + ACTIONS(3569), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [71447] = 10, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(4687), 1, - anon_sym_LPAREN, - STATE(2026), 1, - sym_type_arguments, - STATE(2465), 1, - sym_parameters, - STATE(2278), 2, + ACTIONS(3065), 1, + anon_sym_POUND, + ACTIONS(4861), 1, + sym_identifier, + ACTIONS(4865), 1, + anon_sym_DOT_DOT, + ACTIONS(4869), 1, + sym_integer_literal, + STATE(1378), 1, + sym_attribute_item, + STATE(2550), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2272), 2, sym_line_comment, sym_block_comment, - ACTIONS(3509), 5, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [71439] = 5, + STATE(3254), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [71481] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5165), 1, - anon_sym_PLUS, - STATE(2279), 3, + ACTIONS(4731), 1, + anon_sym_trait, + ACTIONS(4834), 1, + anon_sym_extern, + ACTIONS(5152), 1, + anon_sym_impl, + STATE(2998), 1, + sym_extern_modifier, + STATE(2273), 2, sym_line_comment, sym_block_comment, - aux_sym_trait_bounds_repeat1, - ACTIONS(5163), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [71463] = 5, + ACTIONS(3613), 5, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + [71511] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3547), 1, + ACTIONS(3557), 1, anon_sym_DOT_DOT, - STATE(2280), 2, + STATE(2274), 2, sym_line_comment, sym_block_comment, - ACTIONS(3549), 8, + ACTIONS(3559), 8, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_BANG, @@ -177674,85 +176532,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_if, - [71487] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(4687), 1, - anon_sym_LPAREN, - ACTIONS(5168), 1, - anon_sym_for, - STATE(2026), 1, - sym_type_arguments, - STATE(2100), 1, - sym_parameters, - STATE(2281), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3509), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [71519] = 6, + [71535] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5149), 1, - anon_sym_PLUS, - STATE(2272), 1, - aux_sym_trait_bounds_repeat1, - STATE(2282), 2, + ACTIONS(3549), 1, + anon_sym_DOT_DOT, + STATE(2275), 2, sym_line_comment, sym_block_comment, - ACTIONS(5170), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [71545] = 9, + ACTIONS(3551), 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, + [71559] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4701), 1, - anon_sym_DOT_DOT, - ACTIONS(4786), 1, - anon_sym_COLON_COLON, - ACTIONS(5144), 1, - anon_sym_RBRACK, - ACTIONS(3509), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4695), 2, - anon_sym_PIPE, - anon_sym_COMMA, - ACTIONS(4703), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2283), 2, + ACTIONS(3065), 1, + anon_sym_POUND, + ACTIONS(4949), 1, + sym_crate, + ACTIONS(4951), 1, + sym_identifier, + ACTIONS(5154), 1, + anon_sym_RBRACE, + STATE(1378), 1, + sym_attribute_item, + STATE(2318), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3331), 1, + sym_enum_variant, + STATE(3564), 1, + sym_visibility_modifier, + STATE(2276), 2, sym_line_comment, sym_block_comment, - [71577] = 6, + [71597] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5172), 1, + ACTIONS(5156), 1, anon_sym_PLUS, - STATE(2272), 1, + STATE(2260), 1, aux_sym_trait_bounds_repeat1, - STATE(2284), 2, + STATE(2277), 2, sym_line_comment, sym_block_comment, - ACTIONS(5170), 7, + ACTIONS(5055), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, @@ -177760,81 +176597,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_where, - [71603] = 7, - ACTIONS(27), 1, - anon_sym_PIPE, + [71623] = 12, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5174), 1, - anon_sym_move, - STATE(243), 1, - sym_closure_parameters, - STATE(2285), 2, + ACTIONS(5079), 1, + anon_sym_LPAREN, + ACTIONS(5081), 1, + anon_sym_LBRACE, + ACTIONS(5083), 1, + anon_sym_LT, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(5158), 1, + anon_sym_SEMI, + STATE(640), 1, + sym_field_declaration_list, + STATE(2369), 1, + sym_type_parameters, + STATE(3145), 1, + sym_ordered_field_declaration_list, + STATE(3405), 1, + sym_where_clause, + STATE(2278), 2, sym_line_comment, sym_block_comment, - ACTIONS(3621), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [71631] = 10, + [71661] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, - anon_sym_POUND, - ACTIONS(4877), 1, - sym_identifier, - ACTIONS(4881), 1, + ACTIONS(4815), 1, + anon_sym_LPAREN, + ACTIONS(4819), 1, + anon_sym_BANG, + ACTIONS(4823), 1, anon_sym_DOT_DOT, - ACTIONS(4885), 1, - sym_integer_literal, - STATE(1386), 1, - sym_attribute_item, - STATE(2601), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2286), 2, - sym_line_comment, - sym_block_comment, - STATE(3395), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [71665] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(1122), 1, - aux_sym_string_literal_token1, - ACTIONS(5176), 1, - sym_crate, - STATE(2288), 1, - sym_string_literal, - STATE(2287), 2, + ACTIONS(5160), 1, + anon_sym_COLON_COLON, + ACTIONS(4825), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2279), 2, sym_line_comment, sym_block_comment, - ACTIONS(4931), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, + ACTIONS(4651), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, [71693] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2288), 2, + STATE(2280), 2, sym_line_comment, sym_block_comment, - ACTIONS(5178), 8, + ACTIONS(5162), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -177850,21 +176670,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, + ACTIONS(3065), 1, anon_sym_POUND, - ACTIONS(5017), 1, + ACTIONS(4943), 1, sym_identifier, - ACTIONS(5023), 1, + ACTIONS(4949), 1, sym_crate, - STATE(1086), 1, + STATE(1083), 1, aux_sym_enum_variant_list_repeat1, - STATE(1386), 1, + STATE(1378), 1, sym_attribute_item, - STATE(3092), 1, + STATE(3037), 1, sym_field_declaration, - STATE(3754), 1, + STATE(3779), 1, sym_visibility_modifier, - STATE(2289), 2, + STATE(2281), 2, sym_line_comment, sym_block_comment, [71749] = 11, @@ -177874,21 +176694,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, + ACTIONS(3065), 1, anon_sym_POUND, - ACTIONS(5023), 1, + ACTIONS(4949), 1, sym_crate, - ACTIONS(5039), 1, + ACTIONS(4951), 1, sym_identifier, - STATE(1386), 1, + STATE(1378), 1, sym_attribute_item, - STATE(2325), 1, + STATE(2318), 1, aux_sym_enum_variant_list_repeat1, - STATE(3316), 1, + STATE(3331), 1, sym_enum_variant, - STATE(3562), 1, + STATE(3564), 1, sym_visibility_modifier, - STATE(2290), 2, + STATE(2282), 2, sym_line_comment, sym_block_comment, [71784] = 11, @@ -177898,21 +176718,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, + ACTIONS(3065), 1, anon_sym_POUND, - ACTIONS(5017), 1, + ACTIONS(4943), 1, sym_identifier, - ACTIONS(5023), 1, + ACTIONS(4949), 1, sym_crate, - STATE(1386), 1, + STATE(1378), 1, sym_attribute_item, - STATE(2331), 1, + STATE(2324), 1, aux_sym_enum_variant_list_repeat1, - STATE(3399), 1, + STATE(3396), 1, sym_field_declaration, - STATE(3754), 1, + STATE(3779), 1, sym_visibility_modifier, - STATE(2291), 2, + STATE(2283), 2, sym_line_comment, sym_block_comment, [71819] = 11, @@ -177920,23 +176740,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3163), 1, anon_sym_PLUS, - ACTIONS(3459), 1, + ACTIONS(3456), 1, anon_sym_SQUOTE, - ACTIONS(5110), 1, + ACTIONS(5085), 1, anon_sym_where, - ACTIONS(5180), 1, + ACTIONS(5164), 1, anon_sym_SEMI, - ACTIONS(5182), 1, + ACTIONS(5166), 1, anon_sym_LBRACE, - STATE(574), 1, + STATE(573), 1, sym_block, - STATE(2562), 1, + STATE(2581), 1, sym_where_clause, - STATE(3778), 1, + STATE(3768), 1, sym_label, - STATE(2292), 2, + STATE(2284), 2, sym_line_comment, sym_block_comment, [71854] = 11, @@ -177944,23 +176764,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, + ACTIONS(3456), 1, anon_sym_SQUOTE, - ACTIONS(5110), 1, + ACTIONS(5085), 1, anon_sym_where, - ACTIONS(5182), 1, + ACTIONS(5166), 1, anon_sym_LBRACE, - ACTIONS(5184), 1, + ACTIONS(5168), 1, anon_sym_SEMI, - ACTIONS(5186), 1, + ACTIONS(5170), 1, anon_sym_DASH_GT, - STATE(706), 1, + STATE(705), 1, sym_block, - STATE(2543), 1, + STATE(2540), 1, sym_where_clause, - STATE(3778), 1, + STATE(3768), 1, sym_label, - STATE(2293), 2, + STATE(2285), 2, sym_line_comment, sym_block_comment, [71889] = 11, @@ -177968,23 +176788,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3163), 1, anon_sym_PLUS, - ACTIONS(3459), 1, + ACTIONS(3456), 1, anon_sym_SQUOTE, - ACTIONS(5110), 1, + ACTIONS(5085), 1, anon_sym_where, - ACTIONS(5182), 1, + ACTIONS(5166), 1, anon_sym_LBRACE, - ACTIONS(5188), 1, + ACTIONS(5172), 1, anon_sym_SEMI, - STATE(586), 1, + STATE(585), 1, sym_block, - STATE(2571), 1, + STATE(2503), 1, sym_where_clause, - STATE(3778), 1, + STATE(3768), 1, sym_label, - STATE(2294), 2, + STATE(2286), 2, sym_line_comment, sym_block_comment, [71924] = 11, @@ -177992,23 +176812,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5120), 1, + ACTIONS(5073), 1, anon_sym_LBRACE, - ACTIONS(5190), 1, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(5174), 1, anon_sym_COLON, - ACTIONS(5192), 1, + ACTIONS(5176), 1, anon_sym_LT, - STATE(715), 1, + STATE(714), 1, sym_declaration_list, - STATE(2422), 1, + STATE(2441), 1, sym_type_parameters, - STATE(2876), 1, + STATE(2724), 1, sym_trait_bounds, - STATE(3379), 1, + STATE(3416), 1, sym_where_clause, - STATE(2295), 2, + STATE(2287), 2, sym_line_comment, sym_block_comment, [71959] = 11, @@ -178016,23 +176836,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5120), 1, + ACTIONS(5073), 1, anon_sym_LBRACE, - ACTIONS(5190), 1, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(5174), 1, anon_sym_COLON, - ACTIONS(5192), 1, + ACTIONS(5176), 1, anon_sym_LT, - STATE(632), 1, + STATE(631), 1, sym_declaration_list, - STATE(2427), 1, + STATE(2410), 1, sym_type_parameters, - STATE(2826), 1, + STATE(2857), 1, sym_trait_bounds, - STATE(3409), 1, + STATE(3436), 1, sym_where_clause, - STATE(2296), 2, + STATE(2288), 2, sym_line_comment, sym_block_comment, [71994] = 6, @@ -178040,14 +176860,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1122), 1, + ACTIONS(1116), 1, aux_sym_string_literal_token1, - STATE(2288), 1, + STATE(2280), 1, sym_string_literal, - STATE(2297), 2, + STATE(2289), 2, sym_line_comment, sym_block_comment, - ACTIONS(4931), 6, + ACTIONS(4915), 6, anon_sym_async, anon_sym_const, anon_sym_default, @@ -178059,23 +176879,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3163), 1, anon_sym_PLUS, - ACTIONS(3459), 1, + ACTIONS(3456), 1, anon_sym_SQUOTE, - ACTIONS(5110), 1, + ACTIONS(5085), 1, anon_sym_where, - ACTIONS(5182), 1, + ACTIONS(5166), 1, anon_sym_LBRACE, - ACTIONS(5194), 1, + ACTIONS(5178), 1, anon_sym_SEMI, - STATE(597), 1, + STATE(596), 1, sym_block, - STATE(2593), 1, + STATE(2558), 1, sym_where_clause, - STATE(3778), 1, + STATE(3768), 1, sym_label, - STATE(2298), 2, + STATE(2290), 2, sym_line_comment, sym_block_comment, [72054] = 7, @@ -178083,17 +176903,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5199), 1, + ACTIONS(5183), 1, anon_sym_fn, - ACTIONS(5201), 1, + ACTIONS(5185), 1, anon_sym_extern, - STATE(2421), 1, + STATE(2431), 1, sym_extern_modifier, - STATE(2299), 3, + STATE(2291), 3, sym_line_comment, sym_block_comment, aux_sym_function_modifiers_repeat1, - ACTIONS(5196), 4, + ACTIONS(5180), 4, anon_sym_async, anon_sym_const, anon_sym_default, @@ -178103,14 +176923,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4907), 1, + ACTIONS(4895), 1, anon_sym_COLON_COLON, - ACTIONS(4971), 1, + ACTIONS(5013), 1, anon_sym_BANG, - STATE(2300), 2, + STATE(2292), 2, sym_line_comment, sym_block_comment, - ACTIONS(3621), 6, + ACTIONS(3613), 6, anon_sym_async, anon_sym_const, anon_sym_default, @@ -178122,23 +176942,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3163), 1, anon_sym_PLUS, - ACTIONS(3459), 1, + ACTIONS(3456), 1, anon_sym_SQUOTE, - ACTIONS(5110), 1, + ACTIONS(5085), 1, anon_sym_where, - ACTIONS(5182), 1, + ACTIONS(5166), 1, anon_sym_LBRACE, - ACTIONS(5204), 1, + ACTIONS(5188), 1, anon_sym_SEMI, - STATE(730), 1, + STATE(729), 1, sym_block, - STATE(2588), 1, + STATE(2541), 1, sym_where_clause, - STATE(3778), 1, + STATE(3768), 1, sym_label, - STATE(2301), 2, + STATE(2293), 2, sym_line_comment, sym_block_comment, [72141] = 11, @@ -178146,23 +176966,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, + ACTIONS(5085), 1, anon_sym_where, - ACTIONS(5130), 1, + ACTIONS(5089), 1, anon_sym_LBRACE, - ACTIONS(5190), 1, + ACTIONS(5174), 1, anon_sym_COLON, - ACTIONS(5192), 1, + ACTIONS(5176), 1, anon_sym_LT, - STATE(1117), 1, + STATE(1109), 1, sym_declaration_list, - STATE(2467), 1, + STATE(2405), 1, sym_type_parameters, - STATE(2863), 1, + STATE(2660), 1, sym_trait_bounds, - STATE(3414), 1, + STATE(3371), 1, sym_where_clause, - STATE(2302), 2, + STATE(2294), 2, sym_line_comment, sym_block_comment, [72176] = 11, @@ -178170,23 +176990,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, + ACTIONS(5085), 1, anon_sym_where, - ACTIONS(5190), 1, + ACTIONS(5174), 1, anon_sym_COLON, - ACTIONS(5192), 1, + ACTIONS(5176), 1, anon_sym_LT, - ACTIONS(5206), 1, + ACTIONS(5190), 1, anon_sym_SEMI, - ACTIONS(5208), 1, + ACTIONS(5192), 1, anon_sym_EQ, - STATE(2468), 1, + STATE(2406), 1, sym_type_parameters, - STATE(3156), 1, + STATE(3123), 1, sym_trait_bounds, - STATE(3418), 1, + STATE(3379), 1, sym_where_clause, - STATE(2303), 2, + STATE(2295), 2, sym_line_comment, sym_block_comment, [72211] = 10, @@ -178194,22 +177014,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5210), 1, + ACTIONS(5194), 1, sym_identifier, - ACTIONS(5212), 1, + ACTIONS(5196), 1, anon_sym_RBRACE, - ACTIONS(5214), 1, + ACTIONS(5198), 1, anon_sym_DOT_DOT, - ACTIONS(5216), 1, + ACTIONS(5200), 1, anon_sym_COMMA, - ACTIONS(5218), 1, + ACTIONS(5202), 1, anon_sym_ref, - ACTIONS(5220), 1, + ACTIONS(5204), 1, sym_mutable_specifier, - STATE(2304), 2, + STATE(2296), 2, sym_line_comment, sym_block_comment, - STATE(2885), 2, + STATE(2875), 2, sym_field_pattern, sym_remaining_field_pattern, [72244] = 10, @@ -178217,117 +177037,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5210), 1, - sym_identifier, - ACTIONS(5214), 1, - anon_sym_DOT_DOT, - ACTIONS(5218), 1, - anon_sym_ref, - ACTIONS(5220), 1, - sym_mutable_specifier, - ACTIONS(5222), 1, - anon_sym_RBRACE, - ACTIONS(5224), 1, - anon_sym_COMMA, - STATE(2305), 2, - sym_line_comment, - sym_block_comment, - STATE(2886), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [72277] = 10, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(5210), 1, + ACTIONS(5194), 1, sym_identifier, - ACTIONS(5214), 1, + ACTIONS(5198), 1, anon_sym_DOT_DOT, - ACTIONS(5218), 1, + ACTIONS(5202), 1, anon_sym_ref, - ACTIONS(5220), 1, + ACTIONS(5204), 1, sym_mutable_specifier, - ACTIONS(5226), 1, + ACTIONS(5206), 1, anon_sym_RBRACE, - ACTIONS(5228), 1, + ACTIONS(5208), 1, anon_sym_COMMA, - STATE(2306), 2, + STATE(2297), 2, sym_line_comment, sym_block_comment, - STATE(2970), 2, + STATE(2876), 2, sym_field_pattern, sym_remaining_field_pattern, - [72310] = 11, + [72277] = 11, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, + ACTIONS(3456), 1, anon_sym_SQUOTE, - ACTIONS(5110), 1, + ACTIONS(5085), 1, anon_sym_where, - ACTIONS(5230), 1, + ACTIONS(5210), 1, anon_sym_SEMI, - ACTIONS(5232), 1, + ACTIONS(5212), 1, anon_sym_LBRACE, - ACTIONS(5234), 1, + ACTIONS(5214), 1, anon_sym_DASH_GT, - STATE(1129), 1, + STATE(1121), 1, sym_block, - STATE(2522), 1, + STATE(2553), 1, sym_where_clause, - STATE(3781), 1, + STATE(3771), 1, sym_label, - STATE(2307), 2, + STATE(2298), 2, sym_line_comment, sym_block_comment, - [72345] = 11, + [72312] = 11, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, + ACTIONS(5085), 1, anon_sym_where, - ACTIONS(5130), 1, + ACTIONS(5089), 1, anon_sym_LBRACE, - ACTIONS(5190), 1, + ACTIONS(5174), 1, anon_sym_COLON, - ACTIONS(5192), 1, + ACTIONS(5176), 1, anon_sym_LT, - STATE(1149), 1, + STATE(1141), 1, sym_declaration_list, - STATE(2485), 1, + STATE(2418), 1, sym_type_parameters, - STATE(2799), 1, + STATE(2685), 1, sym_trait_bounds, - STATE(3439), 1, + STATE(3229), 1, sym_where_clause, - STATE(2308), 2, + STATE(2299), 2, + sym_line_comment, + sym_block_comment, + [72347] = 10, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5194), 1, + sym_identifier, + ACTIONS(5198), 1, + anon_sym_DOT_DOT, + ACTIONS(5202), 1, + anon_sym_ref, + ACTIONS(5204), 1, + sym_mutable_specifier, + ACTIONS(5216), 1, + anon_sym_RBRACE, + ACTIONS(5218), 1, + anon_sym_COMMA, + STATE(2300), 2, sym_line_comment, sym_block_comment, + STATE(2952), 2, + sym_field_pattern, + sym_remaining_field_pattern, [72380] = 11, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, + ACTIONS(3456), 1, anon_sym_SQUOTE, - ACTIONS(5110), 1, + ACTIONS(5085), 1, anon_sym_where, - ACTIONS(5232), 1, + ACTIONS(5212), 1, anon_sym_LBRACE, - ACTIONS(5236), 1, + ACTIONS(5220), 1, anon_sym_SEMI, - ACTIONS(5238), 1, + ACTIONS(5222), 1, anon_sym_DASH_GT, - STATE(1166), 1, + STATE(1158), 1, sym_block, - STATE(2534), 1, + STATE(2515), 1, sym_where_clause, - STATE(3781), 1, + STATE(3771), 1, sym_label, - STATE(2309), 2, + STATE(2301), 2, sym_line_comment, sym_block_comment, [72415] = 11, @@ -178335,23 +177155,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, + ACTIONS(3456), 1, anon_sym_SQUOTE, - ACTIONS(5110), 1, + ACTIONS(5085), 1, anon_sym_where, - ACTIONS(5232), 1, + ACTIONS(5212), 1, anon_sym_LBRACE, - ACTIONS(5240), 1, + ACTIONS(5224), 1, anon_sym_SEMI, - ACTIONS(5242), 1, + ACTIONS(5226), 1, anon_sym_DASH_GT, - STATE(1197), 1, + STATE(1189), 1, sym_block, - STATE(2511), 1, + STATE(2526), 1, sym_where_clause, - STATE(3781), 1, + STATE(3771), 1, sym_label, - STATE(2310), 2, + STATE(2302), 2, sym_line_comment, sym_block_comment, [72450] = 11, @@ -178359,23 +177179,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(5110), 1, + ACTIONS(5085), 1, anon_sym_where, - ACTIONS(5232), 1, + ACTIONS(5089), 1, anon_sym_LBRACE, - ACTIONS(5244), 1, - anon_sym_SEMI, - STATE(1214), 1, - sym_block, - STATE(2547), 1, + ACTIONS(5174), 1, + anon_sym_COLON, + ACTIONS(5176), 1, + anon_sym_LT, + STATE(1198), 1, + sym_declaration_list, + STATE(2429), 1, + sym_type_parameters, + STATE(2710), 1, + sym_trait_bounds, + STATE(3246), 1, sym_where_clause, - STATE(3781), 1, - sym_label, - STATE(2311), 2, + STATE(2303), 2, sym_line_comment, sym_block_comment, [72485] = 11, @@ -178383,23 +177203,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, + ACTIONS(3456), 1, anon_sym_SQUOTE, - ACTIONS(5110), 1, + ACTIONS(5085), 1, anon_sym_where, - ACTIONS(5182), 1, + ACTIONS(5166), 1, anon_sym_LBRACE, - ACTIONS(5246), 1, + ACTIONS(5228), 1, anon_sym_SEMI, - ACTIONS(5248), 1, + ACTIONS(5230), 1, anon_sym_DASH_GT, - STATE(762), 1, + STATE(495), 1, sym_block, STATE(2612), 1, sym_where_clause, - STATE(3778), 1, + STATE(3768), 1, sym_label, - STATE(2312), 2, + STATE(2304), 2, sym_line_comment, sym_block_comment, [72520] = 11, @@ -178407,23 +177227,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, + ACTIONS(3456), 1, anon_sym_SQUOTE, - ACTIONS(5110), 1, + ACTIONS(5085), 1, anon_sym_where, - ACTIONS(5232), 1, + ACTIONS(5212), 1, anon_sym_LBRACE, - ACTIONS(5250), 1, + ACTIONS(5232), 1, anon_sym_SEMI, - ACTIONS(5252), 1, + ACTIONS(5234), 1, anon_sym_DASH_GT, - STATE(1244), 1, + STATE(1236), 1, sym_block, - STATE(2553), 1, + STATE(2557), 1, sym_where_clause, - STATE(3781), 1, + STATE(3771), 1, sym_label, - STATE(2313), 2, + STATE(2305), 2, sym_line_comment, sym_block_comment, [72555] = 11, @@ -178431,23 +177251,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, + ACTIONS(3456), 1, anon_sym_SQUOTE, - ACTIONS(5110), 1, + ACTIONS(5085), 1, anon_sym_where, - ACTIONS(5232), 1, + ACTIONS(5212), 1, anon_sym_LBRACE, - ACTIONS(5254), 1, + ACTIONS(5236), 1, anon_sym_SEMI, - ACTIONS(5256), 1, + ACTIONS(5238), 1, anon_sym_DASH_GT, - STATE(1258), 1, + STATE(1250), 1, sym_block, - STATE(2556), 1, + STATE(2563), 1, sym_where_clause, - STATE(3781), 1, + STATE(3771), 1, sym_label, - STATE(2314), 2, + STATE(2306), 2, sym_line_comment, sym_block_comment, [72590] = 11, @@ -178455,286 +177275,286 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(5166), 1, + anon_sym_LBRACE, + ACTIONS(5240), 1, + anon_sym_SEMI, + ACTIONS(5242), 1, + anon_sym_DASH_GT, + STATE(761), 1, + sym_block, + STATE(2596), 1, + sym_where_clause, + STATE(3768), 1, + sym_label, + STATE(2307), 2, + sym_line_comment, + sym_block_comment, + [72625] = 11, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3163), 1, anon_sym_PLUS, - ACTIONS(3459), 1, + ACTIONS(3456), 1, anon_sym_SQUOTE, - ACTIONS(5110), 1, + ACTIONS(5085), 1, anon_sym_where, - ACTIONS(5232), 1, + ACTIONS(5212), 1, anon_sym_LBRACE, - ACTIONS(5258), 1, + ACTIONS(5244), 1, anon_sym_SEMI, - STATE(1264), 1, + STATE(1256), 1, sym_block, - STATE(2558), 1, + STATE(2571), 1, sym_where_clause, - STATE(3781), 1, + STATE(3771), 1, sym_label, - STATE(2315), 2, + STATE(2308), 2, sym_line_comment, sym_block_comment, - [72625] = 11, + [72660] = 11, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3163), 1, anon_sym_PLUS, - ACTIONS(3459), 1, + ACTIONS(3456), 1, anon_sym_SQUOTE, - ACTIONS(5110), 1, + ACTIONS(5085), 1, anon_sym_where, - ACTIONS(5232), 1, + ACTIONS(5212), 1, anon_sym_LBRACE, - ACTIONS(5260), 1, + ACTIONS(5246), 1, anon_sym_SEMI, - STATE(1299), 1, + STATE(1291), 1, sym_block, - STATE(2560), 1, + STATE(2586), 1, sym_where_clause, - STATE(3781), 1, + STATE(3771), 1, sym_label, - STATE(2316), 2, + STATE(2309), 2, sym_line_comment, sym_block_comment, - [72660] = 11, + [72695] = 11, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, + ACTIONS(3456), 1, anon_sym_SQUOTE, - ACTIONS(5110), 1, + ACTIONS(5085), 1, anon_sym_where, - ACTIONS(5232), 1, + ACTIONS(5212), 1, anon_sym_LBRACE, - ACTIONS(5262), 1, + ACTIONS(5248), 1, anon_sym_SEMI, - ACTIONS(5264), 1, + ACTIONS(5250), 1, anon_sym_DASH_GT, - STATE(1309), 1, + STATE(1301), 1, sym_block, - STATE(2561), 1, + STATE(2587), 1, sym_where_clause, - STATE(3781), 1, + STATE(3771), 1, sym_label, - STATE(2317), 2, + STATE(2310), 2, sym_line_comment, sym_block_comment, - [72695] = 11, + [72730] = 11, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3163), 1, anon_sym_PLUS, - ACTIONS(3459), 1, + ACTIONS(3456), 1, anon_sym_SQUOTE, - ACTIONS(5110), 1, + ACTIONS(5085), 1, anon_sym_where, - ACTIONS(5232), 1, + ACTIONS(5212), 1, anon_sym_LBRACE, - ACTIONS(5266), 1, + ACTIONS(5252), 1, anon_sym_SEMI, - STATE(1337), 1, + STATE(1329), 1, sym_block, - STATE(2563), 1, + STATE(2590), 1, sym_where_clause, - STATE(3781), 1, + STATE(3771), 1, sym_label, - STATE(2318), 2, + STATE(2311), 2, sym_line_comment, sym_block_comment, - [72730] = 11, + [72765] = 11, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3163), 1, anon_sym_PLUS, - ACTIONS(3459), 1, + ACTIONS(3456), 1, anon_sym_SQUOTE, - ACTIONS(5110), 1, + ACTIONS(5085), 1, anon_sym_where, - ACTIONS(5232), 1, + ACTIONS(5212), 1, anon_sym_LBRACE, - ACTIONS(5268), 1, + ACTIONS(5254), 1, anon_sym_SEMI, - STATE(1349), 1, + STATE(1341), 1, sym_block, - STATE(2564), 1, + STATE(2593), 1, sym_where_clause, - STATE(3781), 1, + STATE(3771), 1, sym_label, - STATE(2319), 2, + STATE(2312), 2, sym_line_comment, sym_block_comment, - [72765] = 11, + [72800] = 11, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(3456), 1, anon_sym_SQUOTE, - ACTIONS(5110), 1, + ACTIONS(5085), 1, anon_sym_where, - ACTIONS(5182), 1, + ACTIONS(5212), 1, anon_sym_LBRACE, - ACTIONS(5270), 1, + ACTIONS(5256), 1, anon_sym_SEMI, - ACTIONS(5272), 1, - anon_sym_DASH_GT, - STATE(776), 1, + STATE(1352), 1, sym_block, - STATE(2618), 1, + STATE(2594), 1, sym_where_clause, - STATE(3778), 1, + STATE(3771), 1, sym_label, - STATE(2320), 2, + STATE(2313), 2, sym_line_comment, sym_block_comment, - [72800] = 11, + [72835] = 11, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(3459), 1, + ACTIONS(3456), 1, anon_sym_SQUOTE, - ACTIONS(5110), 1, + ACTIONS(5085), 1, anon_sym_where, - ACTIONS(5232), 1, + ACTIONS(5166), 1, anon_sym_LBRACE, - ACTIONS(5274), 1, + ACTIONS(5258), 1, anon_sym_SEMI, - STATE(1360), 1, + ACTIONS(5260), 1, + anon_sym_DASH_GT, + STATE(775), 1, sym_block, - STATE(2566), 1, + STATE(2610), 1, sym_where_clause, - STATE(3781), 1, + STATE(3768), 1, sym_label, - STATE(2321), 2, + STATE(2314), 2, sym_line_comment, sym_block_comment, - [72835] = 10, + [72870] = 10, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5210), 1, + ACTIONS(5194), 1, sym_identifier, - ACTIONS(5214), 1, + ACTIONS(5198), 1, anon_sym_DOT_DOT, - ACTIONS(5218), 1, + ACTIONS(5202), 1, anon_sym_ref, - ACTIONS(5220), 1, + ACTIONS(5204), 1, sym_mutable_specifier, - ACTIONS(5276), 1, + ACTIONS(5262), 1, anon_sym_RBRACE, - ACTIONS(5278), 1, + ACTIONS(5264), 1, anon_sym_COMMA, - STATE(2322), 2, + STATE(2315), 2, sym_line_comment, sym_block_comment, - STATE(3015), 2, + STATE(2874), 2, sym_field_pattern, sym_remaining_field_pattern, - [72868] = 11, + [72903] = 11, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5120), 1, + ACTIONS(5073), 1, anon_sym_LBRACE, - ACTIONS(5190), 1, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(5174), 1, anon_sym_COLON, - ACTIONS(5192), 1, + ACTIONS(5176), 1, anon_sym_LT, - STATE(673), 1, + STATE(674), 1, sym_declaration_list, - STATE(2426), 1, + STATE(2440), 1, sym_type_parameters, - STATE(2880), 1, + STATE(2662), 1, sym_trait_bounds, - STATE(3367), 1, + STATE(3378), 1, sym_where_clause, - STATE(2323), 2, + STATE(2316), 2, sym_line_comment, sym_block_comment, - [72903] = 11, + [72938] = 11, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, + ACTIONS(5085), 1, anon_sym_where, - ACTIONS(5190), 1, + ACTIONS(5174), 1, anon_sym_COLON, - ACTIONS(5192), 1, + ACTIONS(5176), 1, anon_sym_LT, - ACTIONS(5280), 1, + ACTIONS(5266), 1, anon_sym_SEMI, - ACTIONS(5282), 1, + ACTIONS(5268), 1, anon_sym_EQ, - STATE(2430), 1, + STATE(2443), 1, sym_type_parameters, - STATE(3036), 1, + STATE(2891), 1, sym_trait_bounds, - STATE(3219), 1, + STATE(3287), 1, sym_where_clause, - STATE(2324), 2, + STATE(2317), 2, sym_line_comment, sym_block_comment, - [72938] = 11, + [72973] = 11, ACTIONS(69), 1, anon_sym_pub, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, + ACTIONS(3065), 1, anon_sym_POUND, - ACTIONS(5023), 1, + ACTIONS(4949), 1, sym_crate, - ACTIONS(5039), 1, + ACTIONS(4951), 1, sym_identifier, - STATE(1086), 1, + STATE(1083), 1, aux_sym_enum_variant_list_repeat1, - STATE(1386), 1, + STATE(1378), 1, sym_attribute_item, - STATE(3388), 1, + STATE(3380), 1, sym_enum_variant, - STATE(3562), 1, + STATE(3564), 1, sym_visibility_modifier, - STATE(2325), 2, - sym_line_comment, - sym_block_comment, - [72973] = 11, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5182), 1, - anon_sym_LBRACE, - ACTIONS(5284), 1, - anon_sym_SEMI, - STATE(782), 1, - sym_block, - STATE(2516), 1, - sym_where_clause, - STATE(3778), 1, - sym_label, - STATE(2326), 2, + STATE(2318), 2, sym_line_comment, sym_block_comment, [73008] = 10, @@ -178742,129 +177562,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4667), 1, + ACTIONS(4651), 1, anon_sym_PIPE, - ACTIONS(4669), 1, + ACTIONS(4653), 1, anon_sym_LPAREN, - ACTIONS(4673), 1, + ACTIONS(4657), 1, anon_sym_COLON, - ACTIONS(4675), 1, + ACTIONS(4659), 1, anon_sym_BANG, - ACTIONS(4679), 1, + ACTIONS(4663), 1, anon_sym_DOT_DOT, - ACTIONS(5286), 1, + ACTIONS(5270), 1, anon_sym_COLON_COLON, - ACTIONS(4681), 2, + ACTIONS(4665), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2327), 2, + STATE(2319), 2, sym_line_comment, sym_block_comment, [73041] = 11, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(5166), 1, + anon_sym_LBRACE, + ACTIONS(5272), 1, + anon_sym_SEMI, + STATE(498), 1, + sym_block, + STATE(2583), 1, + sym_where_clause, + STATE(3768), 1, + sym_label, + STATE(2320), 2, + sym_line_comment, + sym_block_comment, + [73076] = 11, ACTIONS(69), 1, anon_sym_pub, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, + ACTIONS(3065), 1, anon_sym_POUND, - ACTIONS(5023), 1, + ACTIONS(4949), 1, sym_crate, - ACTIONS(5039), 1, + ACTIONS(4951), 1, sym_identifier, - STATE(1086), 1, + STATE(1083), 1, aux_sym_enum_variant_list_repeat1, - STATE(1386), 1, + STATE(1378), 1, sym_attribute_item, - STATE(2951), 1, + STATE(2928), 1, sym_enum_variant, - STATE(3562), 1, + STATE(3564), 1, sym_visibility_modifier, - STATE(2328), 2, + STATE(2321), 2, sym_line_comment, sym_block_comment, - [73076] = 11, + [73111] = 11, ACTIONS(69), 1, anon_sym_pub, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, + ACTIONS(3065), 1, anon_sym_POUND, - ACTIONS(5023), 1, - sym_crate, - ACTIONS(5039), 1, + ACTIONS(4943), 1, sym_identifier, - STATE(1086), 1, + ACTIONS(4949), 1, + sym_crate, + STATE(1083), 1, aux_sym_enum_variant_list_repeat1, - STATE(1386), 1, + STATE(1378), 1, sym_attribute_item, - STATE(2987), 1, - sym_enum_variant, - STATE(3562), 1, + STATE(2937), 1, + sym_field_declaration, + STATE(3779), 1, sym_visibility_modifier, - STATE(2329), 2, + STATE(2322), 2, sym_line_comment, sym_block_comment, - [73111] = 11, + [73146] = 11, ACTIONS(69), 1, anon_sym_pub, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, + ACTIONS(3065), 1, anon_sym_POUND, - ACTIONS(5017), 1, - sym_identifier, - ACTIONS(5023), 1, + ACTIONS(4949), 1, sym_crate, - STATE(1086), 1, + ACTIONS(4951), 1, + sym_identifier, + STATE(1083), 1, aux_sym_enum_variant_list_repeat1, - STATE(1386), 1, + STATE(1378), 1, sym_attribute_item, - STATE(2959), 1, - sym_field_declaration, - STATE(3754), 1, + STATE(3008), 1, + sym_enum_variant, + STATE(3564), 1, sym_visibility_modifier, - STATE(2330), 2, + STATE(2323), 2, sym_line_comment, sym_block_comment, - [73146] = 11, + [73181] = 11, ACTIONS(69), 1, anon_sym_pub, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, + ACTIONS(3065), 1, anon_sym_POUND, - ACTIONS(5017), 1, + ACTIONS(4943), 1, sym_identifier, - ACTIONS(5023), 1, + ACTIONS(4949), 1, sym_crate, - STATE(1086), 1, + STATE(1083), 1, aux_sym_enum_variant_list_repeat1, - STATE(1386), 1, + STATE(1378), 1, sym_attribute_item, - STATE(3440), 1, + STATE(3462), 1, sym_field_declaration, - STATE(3754), 1, + STATE(3779), 1, sym_visibility_modifier, - STATE(2331), 2, + STATE(2324), 2, sym_line_comment, sym_block_comment, - [73181] = 4, + [73216] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2332), 2, + STATE(2325), 2, sym_line_comment, sym_block_comment, - ACTIONS(5163), 8, + ACTIONS(5116), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -178873,15 +177717,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_where, - [73202] = 4, + [73237] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2333), 2, + STATE(2326), 2, sym_line_comment, sym_block_comment, - ACTIONS(5163), 8, + ACTIONS(5116), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -178890,15 +177734,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_where, - [73223] = 4, + [73258] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2334), 2, + STATE(2327), 2, sym_line_comment, sym_block_comment, - ACTIONS(5163), 8, + ACTIONS(5116), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -178907,444 +177751,391 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_where, - [73244] = 11, + [73279] = 11, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, + ACTIONS(3456), 1, anon_sym_SQUOTE, - ACTIONS(5110), 1, + ACTIONS(5085), 1, anon_sym_where, - ACTIONS(5182), 1, + ACTIONS(5166), 1, anon_sym_LBRACE, - ACTIONS(5288), 1, + ACTIONS(5274), 1, anon_sym_SEMI, - ACTIONS(5290), 1, + ACTIONS(5276), 1, anon_sym_DASH_GT, - STATE(660), 1, + STATE(659), 1, sym_block, - STATE(2548), 1, + STATE(2512), 1, sym_where_clause, - STATE(3778), 1, + STATE(3768), 1, sym_label, - STATE(2335), 2, + STATE(2328), 2, sym_line_comment, sym_block_comment, - [73279] = 8, + [73314] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5292), 1, + ACTIONS(5278), 1, anon_sym_fn, - ACTIONS(5294), 1, + ACTIONS(5280), 1, anon_sym_extern, - STATE(2299), 1, + STATE(2291), 1, aux_sym_function_modifiers_repeat1, - STATE(2421), 1, + STATE(2431), 1, sym_extern_modifier, - STATE(2336), 2, + STATE(2329), 2, sym_line_comment, sym_block_comment, - ACTIONS(4707), 4, + ACTIONS(4693), 4, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_unsafe, - [73308] = 11, + [73343] = 11, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3163), 1, anon_sym_PLUS, - ACTIONS(3459), 1, + ACTIONS(3456), 1, anon_sym_SQUOTE, - ACTIONS(5110), 1, + ACTIONS(5085), 1, anon_sym_where, - ACTIONS(5182), 1, + ACTIONS(5166), 1, anon_sym_LBRACE, - ACTIONS(5296), 1, + ACTIONS(5282), 1, anon_sym_SEMI, - STATE(536), 1, + STATE(535), 1, sym_block, - STATE(2579), 1, + STATE(2525), 1, sym_where_clause, - STATE(3778), 1, + STATE(3768), 1, sym_label, - STATE(2337), 2, + STATE(2330), 2, sym_line_comment, sym_block_comment, - [73343] = 11, + [73378] = 11, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, + ACTIONS(3456), 1, anon_sym_SQUOTE, - ACTIONS(5110), 1, + ACTIONS(5085), 1, anon_sym_where, - ACTIONS(5182), 1, + ACTIONS(5166), 1, anon_sym_LBRACE, - ACTIONS(5298), 1, + ACTIONS(5284), 1, anon_sym_SEMI, - ACTIONS(5300), 1, + ACTIONS(5286), 1, anon_sym_DASH_GT, - STATE(608), 1, + STATE(607), 1, sym_block, - STATE(2608), 1, + STATE(2588), 1, sym_where_clause, - STATE(3778), 1, + STATE(3768), 1, sym_label, - STATE(2338), 2, + STATE(2331), 2, sym_line_comment, sym_block_comment, - [73378] = 11, + [73413] = 11, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(3456), 1, anon_sym_SQUOTE, - ACTIONS(5110), 1, + ACTIONS(5085), 1, anon_sym_where, - ACTIONS(5182), 1, + ACTIONS(5212), 1, anon_sym_LBRACE, - ACTIONS(5302), 1, + ACTIONS(5288), 1, anon_sym_SEMI, - ACTIONS(5304), 1, - anon_sym_DASH_GT, - STATE(546), 1, + STATE(1206), 1, sym_block, - STATE(2616), 1, + STATE(2545), 1, sym_where_clause, - STATE(3778), 1, + STATE(3771), 1, sym_label, - STATE(2339), 2, + STATE(2332), 2, sym_line_comment, sym_block_comment, - [73413] = 11, + [73448] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5130), 1, + ACTIONS(5079), 1, + anon_sym_LPAREN, + ACTIONS(5099), 1, anon_sym_LBRACE, - ACTIONS(5190), 1, - anon_sym_COLON, - ACTIONS(5192), 1, - anon_sym_LT, - STATE(1206), 1, - sym_declaration_list, - STATE(2409), 1, - sym_type_parameters, - STATE(2758), 1, - sym_trait_bounds, - STATE(3239), 1, - sym_where_clause, - STATE(2340), 2, + ACTIONS(5292), 1, + anon_sym_EQ, + ACTIONS(5290), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(2333), 2, sym_line_comment, sym_block_comment, - [73448] = 10, + STATE(3178), 2, + sym_field_declaration_list, + sym_ordered_field_declaration_list, + [73476] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, - anon_sym_LPAREN, - ACTIONS(5308), 1, - anon_sym_LBRACK, - ACTIONS(5310), 1, - anon_sym_RBRACK, - ACTIONS(5312), 1, - anon_sym_LBRACE, - STATE(2384), 1, - aux_sym_macro_definition_repeat1, - STATE(3380), 1, - sym_macro_rule, - STATE(3512), 1, - sym_token_tree_pattern, - STATE(2341), 2, + ACTIONS(5194), 1, + sym_identifier, + ACTIONS(5198), 1, + anon_sym_DOT_DOT, + ACTIONS(5202), 1, + anon_sym_ref, + ACTIONS(5204), 1, + sym_mutable_specifier, + ACTIONS(5294), 1, + anon_sym_RBRACE, + STATE(2334), 2, sym_line_comment, sym_block_comment, - [73480] = 7, + STATE(3262), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [73506] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4973), 1, + ACTIONS(5194), 1, + sym_identifier, + ACTIONS(5198), 1, anon_sym_DOT_DOT, - ACTIONS(4977), 1, - anon_sym_COLON_COLON, - ACTIONS(4975), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2342), 2, + ACTIONS(5202), 1, + anon_sym_ref, + ACTIONS(5204), 1, + sym_mutable_specifier, + ACTIONS(5296), 1, + anon_sym_RBRACE, + STATE(2335), 2, sym_line_comment, sym_block_comment, - ACTIONS(4695), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [73506] = 10, + STATE(3262), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [73536] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5104), 1, - anon_sym_LPAREN, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5155), 1, - anon_sym_LBRACE, - ACTIONS(5314), 1, - anon_sym_SEMI, - STATE(1203), 1, - sym_field_declaration_list, - STATE(2965), 1, - sym_ordered_field_declaration_list, - STATE(3235), 1, - sym_where_clause, - STATE(2343), 2, + ACTIONS(5298), 1, + sym_identifier, + STATE(2336), 2, sym_line_comment, sym_block_comment, - [73538] = 5, + ACTIONS(4889), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [73558] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5316), 1, - sym_identifier, - STATE(2344), 2, + ACTIONS(5300), 1, + anon_sym_trait, + STATE(2337), 2, sym_line_comment, sym_block_comment, - ACTIONS(4951), 6, + ACTIONS(3613), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [73560] = 9, + [73580] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5210), 1, - sym_identifier, - ACTIONS(5214), 1, + ACTIONS(4663), 1, anon_sym_DOT_DOT, - ACTIONS(5218), 1, - anon_sym_ref, - ACTIONS(5220), 1, - sym_mutable_specifier, - ACTIONS(5318), 1, - anon_sym_RBRACE, - STATE(2345), 2, + ACTIONS(5304), 1, + anon_sym_COLON, + ACTIONS(5306), 1, + anon_sym_COLON_COLON, + ACTIONS(4665), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5302), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2338), 2, sym_line_comment, sym_block_comment, - STATE(3258), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [73590] = 9, + [73608] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5210), 1, - sym_identifier, - ACTIONS(5214), 1, + ACTIONS(5015), 1, anon_sym_DOT_DOT, - ACTIONS(5218), 1, - anon_sym_ref, - ACTIONS(5220), 1, - sym_mutable_specifier, - ACTIONS(5320), 1, - anon_sym_RBRACE, - STATE(2346), 2, + ACTIONS(5019), 1, + anon_sym_COLON_COLON, + ACTIONS(5017), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2339), 2, sym_line_comment, sym_block_comment, - STATE(3258), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [73620] = 10, + ACTIONS(4679), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [73634] = 10, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, - anon_sym_LPAREN, ACTIONS(5308), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, + ACTIONS(5310), 1, + anon_sym_RPAREN, ACTIONS(5312), 1, + anon_sym_LBRACK, + ACTIONS(5314), 1, anon_sym_LBRACE, - ACTIONS(5322), 1, - anon_sym_RPAREN, - STATE(2359), 1, + STATE(2349), 1, aux_sym_macro_definition_repeat1, - STATE(3220), 1, + STATE(3459), 1, sym_macro_rule, - STATE(3512), 1, + STATE(3746), 1, sym_token_tree_pattern, - STATE(2347), 2, + STATE(2340), 2, sym_line_comment, sym_block_comment, - [73652] = 10, + [73666] = 10, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, - anon_sym_LPAREN, ACTIONS(5308), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, + ACTIONS(5310), 1, + anon_sym_RBRACK, ACTIONS(5312), 1, + anon_sym_LBRACK, + ACTIONS(5314), 1, anon_sym_LBRACE, - ACTIONS(5322), 1, - anon_sym_RBRACK, - STATE(2360), 1, + STATE(2350), 1, aux_sym_macro_definition_repeat1, - STATE(3225), 1, + STATE(3260), 1, sym_macro_rule, - STATE(3512), 1, + STATE(3746), 1, sym_token_tree_pattern, - STATE(2348), 2, + STATE(2341), 2, sym_line_comment, sym_block_comment, - [73684] = 10, + [73698] = 10, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, - anon_sym_LPAREN, ACTIONS(5308), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(5312), 1, + anon_sym_LBRACK, + ACTIONS(5314), 1, anon_sym_LBRACE, - ACTIONS(5324), 1, + ACTIONS(5316), 1, anon_sym_RBRACE, - STATE(2362), 1, + STATE(2352), 1, aux_sym_macro_definition_repeat1, - STATE(3231), 1, + STATE(3280), 1, sym_macro_rule, - STATE(3512), 1, + STATE(3746), 1, sym_token_tree_pattern, - STATE(2349), 2, + STATE(2342), 2, sym_line_comment, sym_block_comment, - [73716] = 10, + [73730] = 10, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, - anon_sym_LPAREN, ACTIONS(5308), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(5312), 1, + anon_sym_LBRACK, + ACTIONS(5314), 1, anon_sym_LBRACE, - ACTIONS(5326), 1, + ACTIONS(5318), 1, anon_sym_RPAREN, - STATE(2363), 1, + STATE(2353), 1, aux_sym_macro_definition_repeat1, - STATE(3236), 1, + STATE(3401), 1, sym_macro_rule, - STATE(3512), 1, + STATE(3746), 1, sym_token_tree_pattern, - STATE(2350), 2, - sym_line_comment, - sym_block_comment, - [73748] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(5210), 1, - sym_identifier, - ACTIONS(5214), 1, - anon_sym_DOT_DOT, - ACTIONS(5218), 1, - anon_sym_ref, - ACTIONS(5220), 1, - sym_mutable_specifier, - ACTIONS(5328), 1, - anon_sym_RBRACE, - STATE(2351), 2, - sym_line_comment, - sym_block_comment, - STATE(3258), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [73778] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(5210), 1, - sym_identifier, - ACTIONS(5214), 1, - anon_sym_DOT_DOT, - ACTIONS(5218), 1, - anon_sym_ref, - ACTIONS(5220), 1, - sym_mutable_specifier, - ACTIONS(5330), 1, - anon_sym_RBRACE, - STATE(2352), 2, + STATE(2343), 2, sym_line_comment, sym_block_comment, - STATE(3258), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [73808] = 10, + [73762] = 10, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, - anon_sym_LPAREN, ACTIONS(5308), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(5312), 1, + anon_sym_LBRACK, + ACTIONS(5314), 1, anon_sym_LBRACE, - ACTIONS(5326), 1, + ACTIONS(5318), 1, anon_sym_RBRACK, - STATE(2370), 1, + STATE(2354), 1, aux_sym_macro_definition_repeat1, - STATE(3241), 1, + STATE(3189), 1, sym_macro_rule, - STATE(3512), 1, + STATE(3746), 1, sym_token_tree_pattern, - STATE(2353), 2, + STATE(2344), 2, sym_line_comment, sym_block_comment, - [73840] = 10, + [73794] = 10, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, - anon_sym_LPAREN, ACTIONS(5308), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(5312), 1, + anon_sym_LBRACK, + ACTIONS(5314), 1, anon_sym_LBRACE, - ACTIONS(5332), 1, + ACTIONS(5320), 1, anon_sym_RBRACE, - STATE(2371), 1, + STATE(2355), 1, aux_sym_macro_definition_repeat1, - STATE(3243), 1, + STATE(3238), 1, sym_macro_rule, - STATE(3512), 1, + STATE(3746), 1, sym_token_tree_pattern, - STATE(2354), 2, + STATE(2345), 2, sym_line_comment, sym_block_comment, - [73872] = 10, + [73826] = 10, ACTIONS(27), 1, anon_sym_PIPE, ACTIONS(105), 1, @@ -179353,128 +178144,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(348), 1, anon_sym_LBRACE, - ACTIONS(3459), 1, + ACTIONS(3456), 1, anon_sym_SQUOTE, - ACTIONS(5334), 1, + ACTIONS(5322), 1, anon_sym_move, - STATE(230), 1, + STATE(245), 1, sym_closure_parameters, - STATE(1532), 1, + STATE(1531), 1, sym_block, - STATE(3719), 1, + STATE(3709), 1, sym_label, - STATE(2355), 2, + STATE(2346), 2, sym_line_comment, sym_block_comment, - [73904] = 8, + [73858] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5104), 1, + ACTIONS(5079), 1, anon_sym_LPAREN, - ACTIONS(5155), 1, + ACTIONS(5099), 1, anon_sym_LBRACE, - ACTIONS(5338), 1, + ACTIONS(5326), 1, anon_sym_EQ, - ACTIONS(5336), 2, + ACTIONS(5324), 2, anon_sym_RBRACE, anon_sym_COMMA, - STATE(2356), 2, + STATE(2347), 2, sym_line_comment, sym_block_comment, - STATE(3096), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [73932] = 10, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(5104), 1, - anon_sym_LPAREN, - ACTIONS(5106), 1, - anon_sym_LBRACE, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5340), 1, - anon_sym_SEMI, - STATE(621), 1, + STATE(3090), 2, sym_field_declaration_list, - STATE(2922), 1, sym_ordered_field_declaration_list, - STATE(3247), 1, - sym_where_clause, - STATE(2357), 2, - sym_line_comment, - sym_block_comment, - [73964] = 10, + [73886] = 10, ACTIONS(27), 1, anon_sym_PIPE, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5342), 1, + ACTIONS(5328), 1, sym_identifier, - ACTIONS(5344), 1, + ACTIONS(5330), 1, anon_sym_async, - ACTIONS(5346), 1, + ACTIONS(5332), 1, anon_sym_ref, - ACTIONS(5348), 1, + ACTIONS(5334), 1, sym_mutable_specifier, - ACTIONS(5350), 1, + ACTIONS(5336), 1, anon_sym_move, - STATE(230), 1, + STATE(245), 1, sym_closure_parameters, - STATE(2358), 2, + STATE(2348), 2, sym_line_comment, sym_block_comment, - [73996] = 10, + [73918] = 10, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, - anon_sym_LPAREN, ACTIONS(5308), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(5312), 1, + anon_sym_LBRACK, + ACTIONS(5314), 1, anon_sym_LBRACE, - ACTIONS(5352), 1, + ACTIONS(5338), 1, anon_sym_RPAREN, - STATE(2244), 1, + STATE(2250), 1, aux_sym_macro_definition_repeat1, - STATE(3336), 1, + STATE(3334), 1, sym_macro_rule, - STATE(3512), 1, + STATE(3746), 1, sym_token_tree_pattern, - STATE(2359), 2, + STATE(2349), 2, sym_line_comment, sym_block_comment, - [74028] = 10, + [73950] = 10, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, - anon_sym_LPAREN, ACTIONS(5308), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(5312), 1, + anon_sym_LBRACK, + ACTIONS(5314), 1, anon_sym_LBRACE, - ACTIONS(5352), 1, + ACTIONS(5338), 1, anon_sym_RBRACK, - STATE(2244), 1, + STATE(2250), 1, aux_sym_macro_definition_repeat1, - STATE(3354), 1, + STATE(3341), 1, sym_macro_rule, - STATE(3512), 1, + STATE(3746), 1, sym_token_tree_pattern, - STATE(2360), 2, + STATE(2350), 2, sym_line_comment, sym_block_comment, - [74060] = 10, + [73982] = 10, ACTIONS(27), 1, anon_sym_PIPE, ACTIONS(105), 1, @@ -179483,1484 +178252,1877 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(348), 1, anon_sym_LBRACE, - ACTIONS(3459), 1, + ACTIONS(3456), 1, anon_sym_SQUOTE, - ACTIONS(5354), 1, + ACTIONS(5340), 1, anon_sym_move, - STATE(229), 1, + STATE(209), 1, sym_closure_parameters, - STATE(1532), 1, + STATE(1531), 1, sym_block, - STATE(3719), 1, + STATE(3709), 1, sym_label, - STATE(2361), 2, + STATE(2351), 2, sym_line_comment, sym_block_comment, - [74092] = 10, + [74014] = 10, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, + ACTIONS(5308), 1, + anon_sym_LPAREN, + ACTIONS(5312), 1, + anon_sym_LBRACK, + ACTIONS(5314), 1, + anon_sym_LBRACE, + ACTIONS(5342), 1, + anon_sym_RBRACE, + STATE(2250), 1, + aux_sym_macro_definition_repeat1, + STATE(3342), 1, + sym_macro_rule, + STATE(3746), 1, + sym_token_tree_pattern, + STATE(2352), 2, + sym_line_comment, + sym_block_comment, + [74046] = 10, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5308), 1, anon_sym_LPAREN, + ACTIONS(5312), 1, + anon_sym_LBRACK, + ACTIONS(5314), 1, + anon_sym_LBRACE, + ACTIONS(5344), 1, + anon_sym_RPAREN, + STATE(2250), 1, + aux_sym_macro_definition_repeat1, + STATE(3364), 1, + sym_macro_rule, + STATE(3746), 1, + sym_token_tree_pattern, + STATE(2353), 2, + sym_line_comment, + sym_block_comment, + [74078] = 10, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, ACTIONS(5308), 1, + anon_sym_LPAREN, + ACTIONS(5312), 1, anon_sym_LBRACK, + ACTIONS(5314), 1, + anon_sym_LBRACE, + ACTIONS(5344), 1, + anon_sym_RBRACK, + STATE(2250), 1, + aux_sym_macro_definition_repeat1, + STATE(3366), 1, + sym_macro_rule, + STATE(3746), 1, + sym_token_tree_pattern, + STATE(2354), 2, + sym_line_comment, + sym_block_comment, + [74110] = 10, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5308), 1, + anon_sym_LPAREN, ACTIONS(5312), 1, + anon_sym_LBRACK, + ACTIONS(5314), 1, anon_sym_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5346), 1, anon_sym_RBRACE, - STATE(2244), 1, + STATE(2250), 1, aux_sym_macro_definition_repeat1, - STATE(3356), 1, + STATE(3377), 1, sym_macro_rule, - STATE(3512), 1, + STATE(3746), 1, sym_token_tree_pattern, - STATE(2362), 2, + STATE(2355), 2, sym_line_comment, sym_block_comment, - [74124] = 10, + [74142] = 10, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, + ACTIONS(5308), 1, + anon_sym_LPAREN, + ACTIONS(5312), 1, + anon_sym_LBRACK, + ACTIONS(5314), 1, + anon_sym_LBRACE, + ACTIONS(5348), 1, + anon_sym_RBRACE, + STATE(2359), 1, + aux_sym_macro_definition_repeat1, + STATE(3427), 1, + sym_macro_rule, + STATE(3746), 1, + sym_token_tree_pattern, + STATE(2356), 2, + sym_line_comment, + sym_block_comment, + [74174] = 10, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5308), 1, + anon_sym_LPAREN, + ACTIONS(5312), 1, + anon_sym_LBRACK, + ACTIONS(5314), 1, + anon_sym_LBRACE, + ACTIONS(5350), 1, + anon_sym_RBRACE, + STATE(2360), 1, + aux_sym_macro_definition_repeat1, + STATE(3437), 1, + sym_macro_rule, + STATE(3746), 1, + sym_token_tree_pattern, + STATE(2357), 2, + sym_line_comment, + sym_block_comment, + [74206] = 10, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5079), 1, anon_sym_LPAREN, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(5099), 1, + anon_sym_LBRACE, + ACTIONS(5352), 1, + anon_sym_SEMI, + STATE(1130), 1, + sym_field_declaration_list, + STATE(2896), 1, + sym_ordered_field_declaration_list, + STATE(3197), 1, + sym_where_clause, + STATE(2358), 2, + sym_line_comment, + sym_block_comment, + [74238] = 10, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, ACTIONS(5308), 1, + anon_sym_LPAREN, + ACTIONS(5312), 1, anon_sym_LBRACK, + ACTIONS(5314), 1, + anon_sym_LBRACE, + ACTIONS(5354), 1, + anon_sym_RBRACE, + STATE(2250), 1, + aux_sym_macro_definition_repeat1, + STATE(3336), 1, + sym_macro_rule, + STATE(3746), 1, + sym_token_tree_pattern, + STATE(2359), 2, + sym_line_comment, + sym_block_comment, + [74270] = 10, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5308), 1, + anon_sym_LPAREN, ACTIONS(5312), 1, + anon_sym_LBRACK, + ACTIONS(5314), 1, anon_sym_LBRACE, - ACTIONS(5358), 1, - anon_sym_RPAREN, - STATE(2244), 1, + ACTIONS(5356), 1, + anon_sym_RBRACE, + STATE(2250), 1, aux_sym_macro_definition_repeat1, - STATE(3372), 1, + STATE(3348), 1, sym_macro_rule, - STATE(3512), 1, + STATE(3746), 1, sym_token_tree_pattern, - STATE(2363), 2, + STATE(2360), 2, sym_line_comment, sym_block_comment, - [74156] = 10, - ACTIONS(27), 1, - anon_sym_PIPE, + [74302] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5358), 1, + sym_identifier, + STATE(2361), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4889), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [74324] = 10, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1386), 1, + ACTIONS(5079), 1, + anon_sym_LPAREN, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(5099), 1, anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, ACTIONS(5360), 1, - anon_sym_move, - STATE(230), 1, - sym_closure_parameters, - STATE(492), 1, - sym_block, - STATE(3782), 1, - sym_label, - STATE(2364), 2, + anon_sym_SEMI, + STATE(1195), 1, + sym_field_declaration_list, + STATE(2940), 1, + sym_ordered_field_declaration_list, + STATE(3237), 1, + sym_where_clause, + STATE(2362), 2, sym_line_comment, sym_block_comment, - [74188] = 9, + [74356] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5210), 1, + ACTIONS(5194), 1, sym_identifier, - ACTIONS(5214), 1, + ACTIONS(5198), 1, anon_sym_DOT_DOT, - ACTIONS(5218), 1, + ACTIONS(5202), 1, anon_sym_ref, - ACTIONS(5220), 1, + ACTIONS(5204), 1, sym_mutable_specifier, ACTIONS(5362), 1, anon_sym_RBRACE, - STATE(2365), 2, + STATE(2363), 2, sym_line_comment, sym_block_comment, - STATE(3258), 2, + STATE(3262), 2, sym_field_pattern, sym_remaining_field_pattern, - [74218] = 8, + [74386] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4679), 1, + ACTIONS(5194), 1, + sym_identifier, + ACTIONS(5198), 1, anon_sym_DOT_DOT, + ACTIONS(5202), 1, + anon_sym_ref, + ACTIONS(5204), 1, + sym_mutable_specifier, + ACTIONS(5364), 1, + anon_sym_RBRACE, + STATE(2364), 2, + sym_line_comment, + sym_block_comment, + STATE(3262), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [74416] = 10, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5079), 1, + anon_sym_LPAREN, + ACTIONS(5081), 1, + anon_sym_LBRACE, + ACTIONS(5085), 1, + anon_sym_where, ACTIONS(5366), 1, - anon_sym_COLON, - ACTIONS(5368), 1, - anon_sym_COLON_COLON, - ACTIONS(4681), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5364), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2366), 2, + anon_sym_SEMI, + STATE(620), 1, + sym_field_declaration_list, + STATE(2930), 1, + sym_ordered_field_declaration_list, + STATE(3213), 1, + sym_where_clause, + STATE(2365), 2, sym_line_comment, sym_block_comment, - [74246] = 7, + [74448] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4679), 1, + ACTIONS(5194), 1, + sym_identifier, + ACTIONS(5198), 1, anon_sym_DOT_DOT, + ACTIONS(5202), 1, + anon_sym_ref, + ACTIONS(5204), 1, + sym_mutable_specifier, ACTIONS(5368), 1, - anon_sym_COLON_COLON, - ACTIONS(4681), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2367), 2, + anon_sym_RBRACE, + STATE(2366), 2, sym_line_comment, sym_block_comment, - ACTIONS(3509), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [74272] = 9, + STATE(3262), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [74478] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5210), 1, + ACTIONS(5194), 1, sym_identifier, - ACTIONS(5214), 1, + ACTIONS(5198), 1, anon_sym_DOT_DOT, - ACTIONS(5218), 1, + ACTIONS(5202), 1, anon_sym_ref, - ACTIONS(5220), 1, + ACTIONS(5204), 1, sym_mutable_specifier, ACTIONS(5370), 1, anon_sym_RBRACE, - STATE(2368), 2, + STATE(2367), 2, sym_line_comment, sym_block_comment, - STATE(3258), 2, + STATE(3262), 2, sym_field_pattern, sym_remaining_field_pattern, - [74302] = 8, + [74508] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4679), 1, - anon_sym_DOT_DOT, - ACTIONS(5374), 1, - anon_sym_COLON, - ACTIONS(5376), 1, - anon_sym_COLON_COLON, - ACTIONS(4681), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5372), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2369), 2, + ACTIONS(5372), 1, + sym_identifier, + STATE(2368), 2, sym_line_comment, sym_block_comment, - [74330] = 10, + ACTIONS(4889), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [74530] = 10, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, + ACTIONS(5079), 1, anon_sym_LPAREN, - ACTIONS(5308), 1, - anon_sym_LBRACK, - ACTIONS(5312), 1, + ACTIONS(5081), 1, anon_sym_LBRACE, - ACTIONS(5358), 1, - anon_sym_RBRACK, - STATE(2244), 1, - aux_sym_macro_definition_repeat1, - STATE(3373), 1, - sym_macro_rule, - STATE(3512), 1, - sym_token_tree_pattern, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(5374), 1, + anon_sym_SEMI, + STATE(711), 1, + sym_field_declaration_list, + STATE(2967), 1, + sym_ordered_field_declaration_list, + STATE(3363), 1, + sym_where_clause, + STATE(2369), 2, + sym_line_comment, + sym_block_comment, + [74562] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5376), 1, + sym_identifier, STATE(2370), 2, sym_line_comment, sym_block_comment, - [74362] = 10, + ACTIONS(4889), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [74584] = 10, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, - anon_sym_LPAREN, - ACTIONS(5308), 1, - anon_sym_LBRACK, - ACTIONS(5312), 1, + ACTIONS(348), 1, anon_sym_LBRACE, + ACTIONS(3456), 1, + anon_sym_SQUOTE, ACTIONS(5378), 1, - anon_sym_RBRACE, - STATE(2244), 1, - aux_sym_macro_definition_repeat1, - STATE(3381), 1, - sym_macro_rule, - STATE(3512), 1, - sym_token_tree_pattern, + anon_sym_move, + STATE(226), 1, + sym_closure_parameters, + STATE(1531), 1, + sym_block, + STATE(3709), 1, + sym_label, STATE(2371), 2, sym_line_comment, sym_block_comment, - [74394] = 10, + [74616] = 10, ACTIONS(27), 1, anon_sym_PIPE, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(348), 1, + ACTIONS(1380), 1, anon_sym_LBRACE, - ACTIONS(3459), 1, + ACTIONS(3456), 1, anon_sym_SQUOTE, ACTIONS(5380), 1, anon_sym_move, - STATE(211), 1, + STATE(245), 1, sym_closure_parameters, - STATE(1532), 1, + STATE(478), 1, sym_block, - STATE(3719), 1, + STATE(3772), 1, sym_label, STATE(2372), 2, sym_line_comment, sym_block_comment, - [74426] = 10, + [74648] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, - anon_sym_LPAREN, - ACTIONS(5308), 1, - anon_sym_LBRACK, - ACTIONS(5312), 1, - anon_sym_LBRACE, + ACTIONS(5194), 1, + sym_identifier, + ACTIONS(5198), 1, + anon_sym_DOT_DOT, + ACTIONS(5202), 1, + anon_sym_ref, + ACTIONS(5204), 1, + sym_mutable_specifier, ACTIONS(5382), 1, - anon_sym_RPAREN, - STATE(2381), 1, - aux_sym_macro_definition_repeat1, - STATE(3374), 1, - sym_macro_rule, - STATE(3512), 1, - sym_token_tree_pattern, + anon_sym_RBRACE, STATE(2373), 2, sym_line_comment, sym_block_comment, - [74458] = 10, + STATE(3262), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [74678] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, - anon_sym_LPAREN, - ACTIONS(5308), 1, - anon_sym_LBRACK, - ACTIONS(5312), 1, - anon_sym_LBRACE, - ACTIONS(5382), 1, - anon_sym_RBRACK, - STATE(2382), 1, - aux_sym_macro_definition_repeat1, - STATE(3376), 1, - sym_macro_rule, - STATE(3512), 1, - sym_token_tree_pattern, + ACTIONS(4663), 1, + anon_sym_DOT_DOT, + ACTIONS(5386), 1, + anon_sym_COLON, + ACTIONS(5388), 1, + anon_sym_COLON_COLON, + ACTIONS(4665), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5384), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2374), 2, sym_line_comment, sym_block_comment, - [74490] = 10, + [74706] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, - anon_sym_LPAREN, - ACTIONS(5308), 1, - anon_sym_LBRACK, - ACTIONS(5310), 1, - anon_sym_RPAREN, - ACTIONS(5312), 1, - anon_sym_LBRACE, - STATE(2383), 1, - aux_sym_macro_definition_repeat1, - STATE(3378), 1, - sym_macro_rule, - STATE(3512), 1, - sym_token_tree_pattern, + ACTIONS(4663), 1, + anon_sym_DOT_DOT, + ACTIONS(5388), 1, + anon_sym_COLON_COLON, + ACTIONS(4665), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2375), 2, sym_line_comment, sym_block_comment, - [74522] = 10, + ACTIONS(3569), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [74732] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, - anon_sym_LPAREN, - ACTIONS(5308), 1, - anon_sym_LBRACK, - ACTIONS(5312), 1, - anon_sym_LBRACE, - ACTIONS(5384), 1, + ACTIONS(5194), 1, + sym_identifier, + ACTIONS(5198), 1, + anon_sym_DOT_DOT, + ACTIONS(5202), 1, + anon_sym_ref, + ACTIONS(5204), 1, + sym_mutable_specifier, + ACTIONS(5390), 1, anon_sym_RBRACE, - STATE(2244), 1, - aux_sym_macro_definition_repeat1, - STATE(3290), 1, - sym_macro_rule, - STATE(3512), 1, - sym_token_tree_pattern, STATE(2376), 2, sym_line_comment, sym_block_comment, - [74554] = 10, + STATE(3262), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [74762] = 10, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4907), 1, - anon_sym_COLON_COLON, - ACTIONS(5386), 1, - anon_sym_LPAREN, - ACTIONS(5388), 1, - anon_sym_LBRACK, - ACTIONS(5390), 1, - anon_sym_RBRACK, - ACTIONS(5392), 1, + ACTIONS(412), 1, anon_sym_LBRACE, - ACTIONS(5394), 1, - anon_sym_EQ, - STATE(3756), 1, - sym_delim_token_tree, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + ACTIONS(5392), 1, + anon_sym_move, + STATE(238), 1, + sym_closure_parameters, + STATE(1717), 1, + sym_block, + STATE(3773), 1, + sym_label, STATE(2377), 2, sym_line_comment, sym_block_comment, - [74586] = 10, + [74794] = 10, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4901), 1, - anon_sym_COLON_COLON, - ACTIONS(5386), 1, + ACTIONS(5308), 1, anon_sym_LPAREN, - ACTIONS(5388), 1, + ACTIONS(5312), 1, anon_sym_LBRACK, - ACTIONS(5392), 1, + ACTIONS(5314), 1, anon_sym_LBRACE, - ACTIONS(5396), 1, - anon_sym_RBRACK, - ACTIONS(5398), 1, - anon_sym_EQ, - STATE(3779), 1, - sym_delim_token_tree, + ACTIONS(5394), 1, + anon_sym_RPAREN, + STATE(2382), 1, + aux_sym_macro_definition_repeat1, + STATE(3369), 1, + sym_macro_rule, + STATE(3746), 1, + sym_token_tree_pattern, STATE(2378), 2, sym_line_comment, sym_block_comment, - [74618] = 10, + [74826] = 10, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4790), 1, - anon_sym_COLON_COLON, - ACTIONS(5386), 1, + ACTIONS(5308), 1, anon_sym_LPAREN, - ACTIONS(5388), 1, + ACTIONS(5312), 1, anon_sym_LBRACK, - ACTIONS(5392), 1, + ACTIONS(5314), 1, anon_sym_LBRACE, - ACTIONS(5396), 1, + ACTIONS(5394), 1, anon_sym_RBRACK, - ACTIONS(5398), 1, - anon_sym_EQ, - STATE(3779), 1, - sym_delim_token_tree, + STATE(2383), 1, + aux_sym_macro_definition_repeat1, + STATE(3370), 1, + sym_macro_rule, + STATE(3746), 1, + sym_token_tree_pattern, STATE(2379), 2, sym_line_comment, sym_block_comment, - [74650] = 10, + [74858] = 10, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_COLON_COLON, - ACTIONS(5386), 1, + ACTIONS(5308), 1, anon_sym_LPAREN, - ACTIONS(5388), 1, + ACTIONS(5312), 1, anon_sym_LBRACK, - ACTIONS(5392), 1, + ACTIONS(5314), 1, anon_sym_LBRACE, ACTIONS(5396), 1, - anon_sym_RBRACK, - ACTIONS(5398), 1, - anon_sym_EQ, - STATE(3779), 1, - sym_delim_token_tree, + anon_sym_RPAREN, + STATE(2384), 1, + aux_sym_macro_definition_repeat1, + STATE(3372), 1, + sym_macro_rule, + STATE(3746), 1, + sym_token_tree_pattern, STATE(2380), 2, sym_line_comment, sym_block_comment, - [74682] = 10, + [74890] = 10, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, - anon_sym_LPAREN, ACTIONS(5308), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(5312), 1, + anon_sym_LBRACK, + ACTIONS(5314), 1, anon_sym_LBRACE, - ACTIONS(5400), 1, - anon_sym_RPAREN, - STATE(2244), 1, + ACTIONS(5396), 1, + anon_sym_RBRACK, + STATE(2385), 1, aux_sym_macro_definition_repeat1, - STATE(3390), 1, + STATE(3373), 1, sym_macro_rule, - STATE(3512), 1, + STATE(3746), 1, sym_token_tree_pattern, STATE(2381), 2, sym_line_comment, sym_block_comment, - [74714] = 10, + [74922] = 10, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, - anon_sym_LPAREN, ACTIONS(5308), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(5312), 1, + anon_sym_LBRACK, + ACTIONS(5314), 1, anon_sym_LBRACE, - ACTIONS(5400), 1, - anon_sym_RBRACK, - STATE(2244), 1, + ACTIONS(5398), 1, + anon_sym_RPAREN, + STATE(2250), 1, aux_sym_macro_definition_repeat1, - STATE(3391), 1, + STATE(3384), 1, sym_macro_rule, - STATE(3512), 1, + STATE(3746), 1, sym_token_tree_pattern, STATE(2382), 2, sym_line_comment, sym_block_comment, - [74746] = 10, + [74954] = 10, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, - anon_sym_LPAREN, ACTIONS(5308), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(5312), 1, + anon_sym_LBRACK, + ACTIONS(5314), 1, anon_sym_LBRACE, - ACTIONS(5402), 1, - anon_sym_RPAREN, - STATE(2244), 1, + ACTIONS(5398), 1, + anon_sym_RBRACK, + STATE(2250), 1, aux_sym_macro_definition_repeat1, - STATE(3392), 1, + STATE(3385), 1, sym_macro_rule, - STATE(3512), 1, + STATE(3746), 1, sym_token_tree_pattern, STATE(2383), 2, sym_line_comment, sym_block_comment, - [74778] = 10, + [74986] = 10, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, - anon_sym_LPAREN, ACTIONS(5308), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(5312), 1, + anon_sym_LBRACK, + ACTIONS(5314), 1, anon_sym_LBRACE, - ACTIONS(5402), 1, - anon_sym_RBRACK, - STATE(2244), 1, + ACTIONS(5400), 1, + anon_sym_RPAREN, + STATE(2250), 1, aux_sym_macro_definition_repeat1, - STATE(3393), 1, + STATE(3386), 1, sym_macro_rule, - STATE(3512), 1, + STATE(3746), 1, sym_token_tree_pattern, STATE(2384), 2, sym_line_comment, sym_block_comment, - [74810] = 8, + [75018] = 10, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4679), 1, - anon_sym_DOT_DOT, - ACTIONS(5366), 1, - anon_sym_COLON, - ACTIONS(5404), 1, - anon_sym_COLON_COLON, - ACTIONS(4681), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5364), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5308), 1, + anon_sym_LPAREN, + ACTIONS(5312), 1, + anon_sym_LBRACK, + ACTIONS(5314), 1, + anon_sym_LBRACE, + ACTIONS(5400), 1, + anon_sym_RBRACK, + STATE(2250), 1, + aux_sym_macro_definition_repeat1, + STATE(3387), 1, + sym_macro_rule, + STATE(3746), 1, + sym_token_tree_pattern, STATE(2385), 2, sym_line_comment, sym_block_comment, - [74838] = 7, + [75050] = 10, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4679), 1, - anon_sym_DOT_DOT, - ACTIONS(5404), 1, + ACTIONS(4895), 1, anon_sym_COLON_COLON, - ACTIONS(4681), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(5402), 1, + anon_sym_LPAREN, + ACTIONS(5404), 1, + anon_sym_LBRACK, + ACTIONS(5406), 1, + anon_sym_RBRACK, + ACTIONS(5408), 1, + anon_sym_LBRACE, + ACTIONS(5410), 1, + anon_sym_EQ, + STATE(3803), 1, + sym_delim_token_tree, STATE(2386), 2, sym_line_comment, sym_block_comment, - ACTIONS(3509), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [74864] = 8, + [75082] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5104), 1, - anon_sym_LPAREN, - ACTIONS(5155), 1, - anon_sym_LBRACE, - ACTIONS(5408), 1, - anon_sym_EQ, - ACTIONS(5406), 2, - anon_sym_RBRACE, + ACTIONS(4663), 1, + anon_sym_DOT_DOT, + ACTIONS(5386), 1, + anon_sym_COLON, + ACTIONS(5412), 1, + anon_sym_COLON_COLON, + ACTIONS(4665), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5384), 2, + anon_sym_RPAREN, anon_sym_COMMA, STATE(2387), 2, sym_line_comment, sym_block_comment, - STATE(2985), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [74892] = 9, + [75110] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4297), 1, - anon_sym_LBRACE, - ACTIONS(4685), 1, - anon_sym_LT2, + ACTIONS(4663), 1, + anon_sym_DOT_DOT, ACTIONS(5412), 1, - anon_sym_STAR, - STATE(2916), 1, - sym_use_list, - STATE(3626), 1, - sym_type_arguments, - ACTIONS(5410), 2, - sym_identifier, - sym_super, + anon_sym_COLON_COLON, + ACTIONS(4665), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2388), 2, sym_line_comment, sym_block_comment, - [74922] = 9, + ACTIONS(3569), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [75136] = 10, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4297), 1, + ACTIONS(4885), 1, + anon_sym_COLON_COLON, + ACTIONS(5402), 1, + anon_sym_LPAREN, + ACTIONS(5404), 1, + anon_sym_LBRACK, + ACTIONS(5408), 1, anon_sym_LBRACE, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(5412), 1, - anon_sym_STAR, - STATE(2916), 1, - sym_use_list, - STATE(3735), 1, - sym_type_arguments, - ACTIONS(5410), 2, - sym_identifier, - sym_super, + ACTIONS(5414), 1, + anon_sym_RBRACK, + ACTIONS(5416), 1, + anon_sym_EQ, + STATE(3805), 1, + sym_delim_token_tree, STATE(2389), 2, sym_line_comment, sym_block_comment, - [74952] = 10, + [75168] = 10, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, + ACTIONS(4776), 1, + anon_sym_COLON_COLON, + ACTIONS(5402), 1, anon_sym_LPAREN, - ACTIONS(5308), 1, + ACTIONS(5404), 1, anon_sym_LBRACK, - ACTIONS(5312), 1, + ACTIONS(5408), 1, anon_sym_LBRACE, ACTIONS(5414), 1, - anon_sym_RBRACE, - STATE(2401), 1, - aux_sym_macro_definition_repeat1, - STATE(3458), 1, - sym_macro_rule, - STATE(3512), 1, - sym_token_tree_pattern, + anon_sym_RBRACK, + ACTIONS(5416), 1, + anon_sym_EQ, + STATE(3805), 1, + sym_delim_token_tree, STATE(2390), 2, sym_line_comment, sym_block_comment, - [74984] = 10, + [75200] = 10, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, + ACTIONS(4901), 1, + anon_sym_COLON_COLON, + ACTIONS(5402), 1, anon_sym_LPAREN, - ACTIONS(5308), 1, + ACTIONS(5404), 1, anon_sym_LBRACK, - ACTIONS(5312), 1, + ACTIONS(5408), 1, anon_sym_LBRACE, + ACTIONS(5414), 1, + anon_sym_RBRACK, ACTIONS(5416), 1, - anon_sym_RBRACE, - STATE(2376), 1, - aux_sym_macro_definition_repeat1, - STATE(3462), 1, - sym_macro_rule, - STATE(3512), 1, - sym_token_tree_pattern, + anon_sym_EQ, + STATE(3805), 1, + sym_delim_token_tree, STATE(2391), 2, sym_line_comment, sym_block_comment, - [75016] = 9, + [75232] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5210), 1, + ACTIONS(4285), 1, + anon_sym_LBRACE, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(5420), 1, + anon_sym_STAR, + STATE(2965), 1, + sym_use_list, + STATE(3680), 1, + sym_type_arguments, + ACTIONS(5418), 2, sym_identifier, - ACTIONS(5214), 1, - anon_sym_DOT_DOT, - ACTIONS(5218), 1, - anon_sym_ref, - ACTIONS(5220), 1, - sym_mutable_specifier, - ACTIONS(5418), 1, - anon_sym_RBRACE, + sym_super, STATE(2392), 2, sym_line_comment, sym_block_comment, - STATE(3258), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [75046] = 9, + [75262] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5210), 1, - sym_identifier, - ACTIONS(5214), 1, + ACTIONS(4663), 1, anon_sym_DOT_DOT, - ACTIONS(5218), 1, - anon_sym_ref, - ACTIONS(5220), 1, - sym_mutable_specifier, - ACTIONS(5420), 1, - anon_sym_RBRACE, + ACTIONS(5422), 1, + anon_sym_COLON_COLON, + ACTIONS(4665), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2393), 2, sym_line_comment, sym_block_comment, - STATE(3258), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [75076] = 5, + ACTIONS(3569), 3, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS, + [75288] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5422), 1, + ACTIONS(5424), 1, anon_sym_trait, STATE(2394), 2, sym_line_comment, sym_block_comment, - ACTIONS(3621), 6, + ACTIONS(3613), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [75098] = 5, + [75310] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5424), 1, + ACTIONS(4285), 1, + anon_sym_LBRACE, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(5420), 1, + anon_sym_STAR, + STATE(2965), 1, + sym_use_list, + STATE(3766), 1, + sym_type_arguments, + ACTIONS(5418), 2, sym_identifier, + sym_super, STATE(2395), 2, sym_line_comment, sym_block_comment, - ACTIONS(4951), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [75120] = 10, - ACTIONS(105), 1, + [75340] = 10, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5104), 1, - anon_sym_LPAREN, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5155), 1, - anon_sym_LBRACE, ACTIONS(5426), 1, - anon_sym_SEMI, - STATE(1138), 1, - sym_field_declaration_list, - STATE(2912), 1, - sym_ordered_field_declaration_list, - STATE(3353), 1, - sym_where_clause, + aux_sym_line_comment_token1, + ACTIONS(5428), 1, + aux_sym_line_comment_token3, + ACTIONS(5430), 1, + anon_sym_BANG2, + ACTIONS(5432), 1, + anon_sym_SLASH2, + STATE(3523), 1, + sym__outer_line_doc_comment_marker, + STATE(3589), 1, + sym__line_doc_comment_marker, + STATE(3602), 1, + sym__inner_line_doc_comment_marker, STATE(2396), 2, sym_line_comment, sym_block_comment, - [75152] = 7, + [75372] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4679), 1, - anon_sym_DOT_DOT, - ACTIONS(5428), 1, - anon_sym_COLON_COLON, - ACTIONS(4681), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(5089), 1, + anon_sym_LBRACE, + ACTIONS(5434), 1, + anon_sym_SEMI, + STATE(1321), 1, + sym_declaration_list, + STATE(2979), 1, + sym_where_clause, STATE(2397), 2, sym_line_comment, sym_block_comment, - ACTIONS(3509), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS, - [75178] = 10, + [75401] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5104), 1, - anon_sym_LPAREN, - ACTIONS(5106), 1, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(5073), 1, anon_sym_LBRACE, - ACTIONS(5110), 1, + ACTIONS(5085), 1, anon_sym_where, - ACTIONS(5430), 1, + ACTIONS(5436), 1, anon_sym_SEMI, - STATE(712), 1, - sym_field_declaration_list, - STATE(2882), 1, - sym_ordered_field_declaration_list, - STATE(3299), 1, + STATE(696), 1, + sym_declaration_list, + STATE(3172), 1, sym_where_clause, STATE(2398), 2, sym_line_comment, sym_block_comment, - [75210] = 10, - ACTIONS(3), 1, + [75430] = 6, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5432), 1, - aux_sym_line_comment_token1, - ACTIONS(5434), 1, - aux_sym_line_comment_token3, - ACTIONS(5436), 1, - anon_sym_BANG2, - ACTIONS(5438), 1, - anon_sym_SLASH2, - STATE(3507), 1, - sym__line_doc_comment_marker, - STATE(3558), 1, - sym__inner_line_doc_comment_marker, - STATE(3715), 1, - sym__outer_line_doc_comment_marker, + ACTIONS(4743), 1, + anon_sym_COLON_COLON, + ACTIONS(5075), 1, + anon_sym_for, STATE(2399), 2, sym_line_comment, sym_block_comment, - [75242] = 5, + ACTIONS(3569), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [75453] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5440), 1, - anon_sym_trait, + ACTIONS(5083), 1, + anon_sym_LT, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(5099), 1, + anon_sym_LBRACE, + STATE(1111), 1, + sym_field_declaration_list, + STATE(2661), 1, + sym_type_parameters, + STATE(3381), 1, + sym_where_clause, STATE(2400), 2, sym_line_comment, sym_block_comment, - ACTIONS(3621), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [75264] = 10, + [75482] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, - anon_sym_LPAREN, - ACTIONS(5308), 1, - anon_sym_LBRACK, - ACTIONS(5312), 1, + ACTIONS(5083), 1, + anon_sym_LT, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(5438), 1, anon_sym_LBRACE, - ACTIONS(5442), 1, - anon_sym_RBRACE, - STATE(2244), 1, - aux_sym_macro_definition_repeat1, - STATE(3280), 1, - sym_macro_rule, - STATE(3512), 1, - sym_token_tree_pattern, + STATE(644), 1, + sym_enum_variant_list, + STATE(2856), 1, + sym_type_parameters, + STATE(3440), 1, + sym_where_clause, STATE(2401), 2, sym_line_comment, sym_block_comment, - [75296] = 5, + [75511] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5444), 1, - sym_identifier, + ACTIONS(4743), 1, + anon_sym_COLON_COLON, + ACTIONS(5125), 1, + anon_sym_for, STATE(2402), 2, sym_line_comment, sym_block_comment, - ACTIONS(4951), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [75318] = 5, + ACTIONS(3569), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [75534] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5446), 1, - sym_identifier, + ACTIONS(3793), 1, + anon_sym_COLON, + ACTIONS(5440), 1, + anon_sym_EQ, STATE(2403), 2, sym_line_comment, sym_block_comment, - ACTIONS(4951), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [75340] = 10, - ACTIONS(27), 1, - anon_sym_PIPE, + ACTIONS(3791), 4, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_COLON_COLON, + [75557] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(412), 1, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(5089), 1, anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(5448), 1, - anon_sym_move, - STATE(224), 1, - sym_closure_parameters, - STATE(1724), 1, - sym_block, - STATE(3783), 1, - sym_label, + ACTIONS(5442), 1, + anon_sym_SEMI, + STATE(1123), 1, + sym_declaration_list, + STATE(2890), 1, + sym_where_clause, STATE(2404), 2, sym_line_comment, sym_block_comment, - [75372] = 9, + [75586] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5110), 1, + ACTIONS(5085), 1, anon_sym_where, - ACTIONS(5120), 1, + ACTIONS(5089), 1, anon_sym_LBRACE, - ACTIONS(5450), 1, - anon_sym_SEMI, - STATE(665), 1, + ACTIONS(5174), 1, + anon_sym_COLON, + STATE(1133), 1, sym_declaration_list, - STATE(3025), 1, + STATE(2683), 1, + sym_trait_bounds, + STATE(3187), 1, sym_where_clause, STATE(2405), 2, sym_line_comment, sym_block_comment, - [75401] = 9, + [75615] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5110), 1, + ACTIONS(5085), 1, anon_sym_where, - ACTIONS(5130), 1, - anon_sym_LBRACE, - ACTIONS(5452), 1, + ACTIONS(5174), 1, + anon_sym_COLON, + ACTIONS(5444), 1, anon_sym_SEMI, - STATE(1224), 1, - sym_declaration_list, - STATE(2982), 1, + ACTIONS(5446), 1, + anon_sym_EQ, + STATE(2897), 1, + sym_trait_bounds, + STATE(3214), 1, sym_where_clause, STATE(2406), 2, sym_line_comment, sym_block_comment, - [75430] = 5, + [75644] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4810), 1, - anon_sym_DOT_DOT, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(5089), 1, + anon_sym_LBRACE, + ACTIONS(5448), 1, + anon_sym_SEMI, + STATE(1140), 1, + sym_declaration_list, + STATE(2898), 1, + sym_where_clause, STATE(2407), 2, sym_line_comment, sym_block_comment, - ACTIONS(4808), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [75451] = 5, + [75673] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1012), 1, - anon_sym_DOT_DOT, + ACTIONS(5083), 1, + anon_sym_LT, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(5450), 1, + anon_sym_LBRACE, + STATE(1144), 1, + sym_enum_variant_list, + STATE(2687), 1, + sym_type_parameters, + STATE(3265), 1, + sym_where_clause, STATE(2408), 2, sym_line_comment, sym_block_comment, - ACTIONS(1014), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [75472] = 9, + [75702] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, + ACTIONS(5083), 1, + anon_sym_LT, + ACTIONS(5085), 1, anon_sym_where, - ACTIONS(5130), 1, + ACTIONS(5099), 1, anon_sym_LBRACE, - ACTIONS(5190), 1, - anon_sym_COLON, - STATE(1256), 1, - sym_declaration_list, - STATE(2851), 1, - sym_trait_bounds, - STATE(3498), 1, + STATE(1149), 1, + sym_field_declaration_list, + STATE(2688), 1, + sym_type_parameters, + STATE(3277), 1, sym_where_clause, STATE(2409), 2, sym_line_comment, sym_block_comment, - [75501] = 5, + [75731] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1016), 1, - anon_sym_DOT_DOT, + ACTIONS(5073), 1, + anon_sym_LBRACE, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(5174), 1, + anon_sym_COLON, + STATE(701), 1, + sym_declaration_list, + STATE(2696), 1, + sym_trait_bounds, + STATE(3256), 1, + sym_where_clause, STATE(2410), 2, sym_line_comment, sym_block_comment, - ACTIONS(1018), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [75522] = 5, + [75760] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1042), 1, - anon_sym_DOT_DOT, + ACTIONS(3169), 1, + anon_sym_PLUS, + ACTIONS(5174), 1, + anon_sym_COLON, + ACTIONS(5452), 1, + anon_sym_GT, + ACTIONS(5454), 1, + anon_sym_COMMA, + STATE(2912), 1, + sym_trait_bounds, + STATE(2913), 1, + aux_sym_type_arguments_repeat1, STATE(2411), 2, sym_line_comment, sym_block_comment, - ACTIONS(1044), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [75543] = 5, + [75789] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(958), 1, - anon_sym_DOT_DOT, + ACTIONS(3169), 1, + anon_sym_PLUS, + ACTIONS(5174), 1, + anon_sym_COLON, + ACTIONS(5456), 1, + anon_sym_GT, + ACTIONS(5458), 1, + anon_sym_COMMA, + STATE(3057), 1, + sym_trait_bounds, + STATE(3059), 1, + aux_sym_type_arguments_repeat1, STATE(2412), 2, sym_line_comment, sym_block_comment, - ACTIONS(960), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + [75818] = 8, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5194), 1, + sym_identifier, + ACTIONS(5198), 1, + anon_sym_DOT_DOT, + ACTIONS(5202), 1, + anon_sym_ref, + ACTIONS(5204), 1, + sym_mutable_specifier, + STATE(2413), 2, + sym_line_comment, + sym_block_comment, + STATE(3262), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [75845] = 8, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(348), 1, + anon_sym_LBRACE, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + ACTIONS(5460), 1, anon_sym_if, - [75564] = 9, + STATE(3709), 1, + sym_label, + STATE(1452), 2, + sym_if_expression, + sym_block, + STATE(2414), 2, + sym_line_comment, + sym_block_comment, + [75872] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3163), 1, anon_sym_PLUS, - ACTIONS(5110), 1, + ACTIONS(5085), 1, anon_sym_where, - ACTIONS(5120), 1, + ACTIONS(5089), 1, anon_sym_LBRACE, - ACTIONS(5454), 1, + ACTIONS(5462), 1, anon_sym_SEMI, - STATE(738), 1, + STATE(1162), 1, sym_declaration_list, - STATE(3118), 1, + STATE(2932), 1, sym_where_clause, - STATE(2413), 2, + STATE(2415), 2, sym_line_comment, sym_block_comment, - [75593] = 9, + [75901] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3163), 1, anon_sym_PLUS, - ACTIONS(5110), 1, + ACTIONS(5085), 1, anon_sym_where, - ACTIONS(5130), 1, + ACTIONS(5089), 1, anon_sym_LBRACE, - ACTIONS(5456), 1, + ACTIONS(5464), 1, anon_sym_SEMI, - STATE(1272), 1, + STATE(1165), 1, sym_declaration_list, - STATE(2990), 1, + STATE(2934), 1, sym_where_clause, - STATE(2414), 2, + STATE(2416), 2, sym_line_comment, sym_block_comment, - [75622] = 9, + [75930] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3163), 1, anon_sym_PLUS, - ACTIONS(5110), 1, + ACTIONS(5085), 1, anon_sym_where, - ACTIONS(5130), 1, + ACTIONS(5089), 1, anon_sym_LBRACE, - ACTIONS(5458), 1, + ACTIONS(5466), 1, anon_sym_SEMI, - STATE(1274), 1, + STATE(1182), 1, sym_declaration_list, - STATE(2991), 1, + STATE(2938), 1, sym_where_clause, - STATE(2415), 2, + STATE(2417), 2, sym_line_comment, sym_block_comment, - [75651] = 9, + [75959] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5110), 1, + ACTIONS(5085), 1, anon_sym_where, - ACTIONS(5130), 1, + ACTIONS(5089), 1, anon_sym_LBRACE, - ACTIONS(5460), 1, - anon_sym_SEMI, - STATE(1288), 1, + ACTIONS(5174), 1, + anon_sym_COLON, + STATE(1187), 1, sym_declaration_list, - STATE(2994), 1, + STATE(2706), 1, + sym_trait_bounds, + STATE(3231), 1, sym_where_clause, - STATE(2416), 2, + STATE(2418), 2, sym_line_comment, sym_block_comment, - [75680] = 9, + [75988] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3163), 1, anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5130), 1, + ACTIONS(5073), 1, anon_sym_LBRACE, - ACTIONS(5462), 1, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(5468), 1, anon_sym_SEMI, - STATE(1290), 1, + STATE(565), 1, sym_declaration_list, - STATE(2995), 1, + STATE(2946), 1, sym_where_clause, - STATE(2417), 2, + STATE(2419), 2, + sym_line_comment, + sym_block_comment, + [76017] = 7, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4663), 1, + anon_sym_DOT_DOT, + ACTIONS(5388), 1, + anon_sym_COLON_COLON, + ACTIONS(4665), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5302), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2420), 2, sym_line_comment, sym_block_comment, - [75709] = 9, + [76042] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3163), 1, anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5130), 1, + ACTIONS(5073), 1, anon_sym_LBRACE, - ACTIONS(5464), 1, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(5470), 1, anon_sym_SEMI, - STATE(1292), 1, + STATE(567), 1, sym_declaration_list, - STATE(2996), 1, + STATE(2954), 1, sym_where_clause, - STATE(2418), 2, + STATE(2421), 2, + sym_line_comment, + sym_block_comment, + [76071] = 6, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5472), 1, + anon_sym_RBRACK, + ACTIONS(4999), 2, + anon_sym_PIPE, + anon_sym_COMMA, + STATE(2422), 2, sym_line_comment, sym_block_comment, - [75738] = 9, + ACTIONS(3739), 3, + anon_sym_SEMI, + anon_sym_PLUS, + anon_sym_DASH_GT, + [76094] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(4772), 1, + anon_sym_COLON_COLON, + ACTIONS(5475), 1, + anon_sym_GT, + ACTIONS(5477), 1, + anon_sym_COMMA, + STATE(3163), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3569), 2, anon_sym_PLUS, - ACTIONS(5110), 1, + anon_sym_as, + STATE(2423), 2, + sym_line_comment, + sym_block_comment, + [76121] = 9, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(5085), 1, anon_sym_where, - ACTIONS(5130), 1, + ACTIONS(5089), 1, anon_sym_LBRACE, - ACTIONS(5466), 1, + ACTIONS(5479), 1, anon_sym_SEMI, - STATE(1294), 1, + STATE(1208), 1, sym_declaration_list, - STATE(2997), 1, + STATE(2955), 1, sym_where_clause, - STATE(2419), 2, + STATE(2424), 2, sym_line_comment, sym_block_comment, - [75767] = 9, + [76150] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3163), 1, anon_sym_PLUS, - ACTIONS(5110), 1, + ACTIONS(5085), 1, anon_sym_where, - ACTIONS(5120), 1, + ACTIONS(5089), 1, anon_sym_LBRACE, - ACTIONS(5468), 1, + ACTIONS(5481), 1, anon_sym_SEMI, - STATE(740), 1, + STATE(1210), 1, sym_declaration_list, - STATE(3120), 1, + STATE(2956), 1, sym_where_clause, - STATE(2420), 2, + STATE(2425), 2, sym_line_comment, sym_block_comment, - [75796] = 4, + [76179] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2421), 2, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(5089), 1, + anon_sym_LBRACE, + ACTIONS(5483), 1, + anon_sym_SEMI, + STATE(1214), 1, + sym_declaration_list, + STATE(2957), 1, + sym_where_clause, + STATE(2426), 2, sym_line_comment, sym_block_comment, - ACTIONS(3621), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [75815] = 9, + [76208] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(5085), 1, anon_sym_where, - ACTIONS(5120), 1, + ACTIONS(5089), 1, anon_sym_LBRACE, - ACTIONS(5190), 1, - anon_sym_COLON, - STATE(774), 1, + ACTIONS(5485), 1, + anon_sym_SEMI, + STATE(1216), 1, sym_declaration_list, - STATE(2859), 1, - sym_trait_bounds, - STATE(3455), 1, + STATE(2958), 1, sym_where_clause, - STATE(2422), 2, + STATE(2427), 2, sym_line_comment, sym_block_comment, - [75844] = 9, + [76237] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3163), 1, anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5130), 1, + ACTIONS(5073), 1, anon_sym_LBRACE, - ACTIONS(5470), 1, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(5487), 1, anon_sym_SEMI, - STATE(1329), 1, + STATE(648), 1, sym_declaration_list, - STATE(3000), 1, + STATE(2962), 1, sym_where_clause, - STATE(2423), 2, + STATE(2428), 2, sym_line_comment, sym_block_comment, - [75873] = 9, + [76266] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5110), 1, + ACTIONS(5085), 1, anon_sym_where, - ACTIONS(5130), 1, + ACTIONS(5089), 1, anon_sym_LBRACE, - ACTIONS(5472), 1, - anon_sym_SEMI, - STATE(1331), 1, + ACTIONS(5174), 1, + anon_sym_COLON, + STATE(1248), 1, sym_declaration_list, - STATE(3001), 1, + STATE(2717), 1, + sym_trait_bounds, + STATE(3353), 1, sym_where_clause, - STATE(2424), 2, + STATE(2429), 2, sym_line_comment, sym_block_comment, - [75902] = 6, + [76295] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4770), 1, + ACTIONS(4743), 1, anon_sym_COLON_COLON, - ACTIONS(5075), 1, + ACTIONS(5144), 1, anon_sym_for, - STATE(2425), 2, + STATE(2430), 2, sym_line_comment, sym_block_comment, - ACTIONS(3509), 4, + ACTIONS(3569), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [75925] = 9, + [76318] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, + STATE(2431), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3613), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [76337] = 9, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(5085), 1, anon_sym_where, - ACTIONS(5120), 1, + ACTIONS(5089), 1, anon_sym_LBRACE, - ACTIONS(5190), 1, - anon_sym_COLON, - STATE(624), 1, + ACTIONS(5489), 1, + anon_sym_SEMI, + STATE(1264), 1, sym_declaration_list, - STATE(2649), 1, - sym_trait_bounds, - STATE(3366), 1, + STATE(2968), 1, sym_where_clause, - STATE(2426), 2, + STATE(2432), 2, sym_line_comment, sym_block_comment, - [75954] = 9, + [76366] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(5085), 1, anon_sym_where, - ACTIONS(5120), 1, + ACTIONS(5089), 1, anon_sym_LBRACE, - ACTIONS(5190), 1, - anon_sym_COLON, - STATE(702), 1, + ACTIONS(5491), 1, + anon_sym_SEMI, + STATE(1266), 1, sym_declaration_list, - STATE(2622), 1, - sym_trait_bounds, - STATE(3429), 1, + STATE(2969), 1, sym_where_clause, - STATE(2427), 2, + STATE(2433), 2, sym_line_comment, sym_block_comment, - [75983] = 9, + [76395] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3163), 1, anon_sym_PLUS, - ACTIONS(5110), 1, + ACTIONS(5085), 1, anon_sym_where, - ACTIONS(5120), 1, + ACTIONS(5089), 1, anon_sym_LBRACE, - ACTIONS(5474), 1, + ACTIONS(5493), 1, anon_sym_SEMI, - STATE(610), 1, + STATE(1280), 1, sym_declaration_list, - STATE(3168), 1, + STATE(2970), 1, sym_where_clause, - STATE(2428), 2, + STATE(2434), 2, sym_line_comment, sym_block_comment, - [76012] = 7, + [76424] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4679), 1, - anon_sym_DOT_DOT, - ACTIONS(5368), 1, - anon_sym_COLON_COLON, - ACTIONS(4681), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5372), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2429), 2, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(5089), 1, + anon_sym_LBRACE, + ACTIONS(5495), 1, + anon_sym_SEMI, + STATE(1282), 1, + sym_declaration_list, + STATE(2971), 1, + sym_where_clause, + STATE(2435), 2, sym_line_comment, sym_block_comment, - [76037] = 9, + [76453] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(5085), 1, anon_sym_where, - ACTIONS(5190), 1, - anon_sym_COLON, - ACTIONS(5476), 1, + ACTIONS(5089), 1, + anon_sym_LBRACE, + ACTIONS(5497), 1, anon_sym_SEMI, - ACTIONS(5478), 1, - anon_sym_EQ, - STATE(3055), 1, - sym_trait_bounds, - STATE(3230), 1, + STATE(1284), 1, + sym_declaration_list, + STATE(2972), 1, sym_where_clause, - STATE(2430), 2, + STATE(2436), 2, sym_line_comment, sym_block_comment, - [76066] = 9, - ACTIONS(27), 1, - anon_sym_PIPE, + [76482] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(348), 1, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(5089), 1, anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(214), 1, - sym_closure_parameters, - STATE(1497), 1, - sym_block, - STATE(3719), 1, - sym_label, - STATE(2431), 2, + ACTIONS(5499), 1, + anon_sym_SEMI, + STATE(1286), 1, + sym_declaration_list, + STATE(2973), 1, + sym_where_clause, + STATE(2437), 2, sym_line_comment, sym_block_comment, - [76095] = 5, + [76511] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5480), 1, - anon_sym_DASH_GT, - STATE(2432), 2, + ACTIONS(4999), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2438), 2, sym_line_comment, sym_block_comment, - ACTIONS(3753), 5, - anon_sym_COLON, + ACTIONS(3739), 4, + anon_sym_RPAREN, anon_sym_PLUS, - anon_sym_GT, anon_sym_COMMA, - anon_sym_as, - [76116] = 9, + anon_sym_DASH_GT, + [76532] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3173), 1, + ACTIONS(3163), 1, anon_sym_PLUS, - ACTIONS(5190), 1, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(5089), 1, + anon_sym_LBRACE, + ACTIONS(5501), 1, + anon_sym_SEMI, + STATE(1323), 1, + sym_declaration_list, + STATE(2980), 1, + sym_where_clause, + STATE(2439), 2, + sym_line_comment, + sym_block_comment, + [76561] = 9, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5073), 1, + anon_sym_LBRACE, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(5174), 1, anon_sym_COLON, - ACTIONS(5482), 1, - anon_sym_GT, - ACTIONS(5484), 1, - anon_sym_COMMA, - STATE(3040), 1, + STATE(623), 1, + sym_declaration_list, + STATE(2718), 1, sym_trait_bounds, - STATE(3041), 1, - aux_sym_type_arguments_repeat1, - STATE(2433), 2, + STATE(3335), 1, + sym_where_clause, + STATE(2440), 2, sym_line_comment, sym_block_comment, - [76145] = 9, + [76590] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5108), 1, - anon_sym_LT, - ACTIONS(5110), 1, + ACTIONS(5073), 1, + anon_sym_LBRACE, + ACTIONS(5085), 1, anon_sym_where, - ACTIONS(5486), 1, + ACTIONS(5174), 1, + anon_sym_COLON, + STATE(773), 1, + sym_declaration_list, + STATE(2865), 1, + sym_trait_bounds, + STATE(3458), 1, + sym_where_clause, + STATE(2441), 2, + sym_line_comment, + sym_block_comment, + [76619] = 6, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5503), 1, + anon_sym_COMMA, + STATE(2464), 1, + aux_sym_where_clause_repeat1, + STATE(2442), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3494), 4, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(645), 1, - sym_enum_variant_list, - STATE(2850), 1, - sym_type_parameters, - STATE(3441), 1, + anon_sym_EQ, + anon_sym_SQUOTE, + [76642] = 9, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(5174), 1, + anon_sym_COLON, + ACTIONS(5505), 1, + anon_sym_SEMI, + ACTIONS(5507), 1, + anon_sym_EQ, + STATE(3064), 1, + sym_trait_bounds, + STATE(3261), 1, sym_where_clause, - STATE(2434), 2, + STATE(2443), 2, sym_line_comment, sym_block_comment, - [76174] = 9, + [76671] = 9, ACTIONS(27), 1, anon_sym_PIPE, ACTIONS(105), 1, @@ -180969,77 +180131,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(348), 1, anon_sym_LBRACE, - ACTIONS(3459), 1, + ACTIONS(3456), 1, anon_sym_SQUOTE, - STATE(213), 1, + STATE(200), 1, sym_closure_parameters, - STATE(1497), 1, + STATE(1526), 1, sym_block, - STATE(3719), 1, + STATE(3709), 1, sym_label, - STATE(2435), 2, + STATE(2444), 2, sym_line_comment, sym_block_comment, - [76203] = 8, + [76700] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1386), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(5488), 1, - anon_sym_if, - STATE(3782), 1, - sym_label, - STATE(498), 2, - sym_if_expression, - sym_block, - STATE(2436), 2, + ACTIONS(3169), 1, + anon_sym_PLUS, + ACTIONS(5174), 1, + anon_sym_COLON, + ACTIONS(5509), 1, + anon_sym_GT, + ACTIONS(5511), 1, + anon_sym_COMMA, + STATE(3018), 1, + sym_trait_bounds, + STATE(3019), 1, + aux_sym_type_arguments_repeat1, + STATE(2445), 2, sym_line_comment, sym_block_comment, - [76230] = 9, + [76729] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5106), 1, - anon_sym_LBRACE, - ACTIONS(5108), 1, - anon_sym_LT, - ACTIONS(5110), 1, - anon_sym_where, - STATE(679), 1, - sym_field_declaration_list, - STATE(2632), 1, - sym_type_parameters, - STATE(3246), 1, - sym_where_clause, - STATE(2437), 2, + ACTIONS(5513), 1, + anon_sym_DASH_GT, + STATE(2446), 2, sym_line_comment, sym_block_comment, - [76259] = 9, + ACTIONS(3785), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [76750] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5108), 1, - anon_sym_LT, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5490), 1, + ACTIONS(1380), 1, anon_sym_LBRACE, - STATE(1109), 1, - sym_enum_variant_list, - STATE(2856), 1, - sym_type_parameters, - STATE(3404), 1, - sym_where_clause, - STATE(2438), 2, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + ACTIONS(5515), 1, + anon_sym_if, + STATE(3772), 1, + sym_label, + STATE(468), 2, + sym_if_expression, + sym_block, + STATE(2447), 2, sym_line_comment, sym_block_comment, - [76288] = 9, + [76777] = 9, ACTIONS(27), 1, anon_sym_PIPE, ACTIONS(105), 1, @@ -181048,188 +180206,192 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(348), 1, anon_sym_LBRACE, - ACTIONS(3459), 1, + ACTIONS(3456), 1, anon_sym_SQUOTE, - STATE(234), 1, + STATE(230), 1, sym_closure_parameters, - STATE(1497), 1, + STATE(1526), 1, sym_block, - STATE(3719), 1, + STATE(3709), 1, sym_label, - STATE(2439), 2, + STATE(2448), 2, sym_line_comment, sym_block_comment, - [76317] = 9, + [76806] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5130), 1, + ACTIONS(5081), 1, anon_sym_LBRACE, - ACTIONS(5492), 1, - anon_sym_SEMI, - STATE(1111), 1, - sym_declaration_list, - STATE(3147), 1, + ACTIONS(5083), 1, + anon_sym_LT, + ACTIONS(5085), 1, + anon_sym_where, + STATE(678), 1, + sym_field_declaration_list, + STATE(2697), 1, + sym_type_parameters, + STATE(3389), 1, sym_where_clause, - STATE(2440), 2, + STATE(2449), 2, sym_line_comment, sym_block_comment, - [76346] = 5, + [76835] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4828), 1, - anon_sym_DOT_DOT, - STATE(2441), 2, + ACTIONS(3169), 1, + anon_sym_PLUS, + ACTIONS(5174), 1, + anon_sym_COLON, + ACTIONS(5517), 1, + anon_sym_GT, + ACTIONS(5519), 1, + anon_sym_COMMA, + STATE(3053), 1, + sym_trait_bounds, + STATE(3054), 1, + aux_sym_type_arguments_repeat1, + STATE(2450), 2, sym_line_comment, sym_block_comment, - ACTIONS(4826), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + [76864] = 8, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(412), 1, + anon_sym_LBRACE, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + ACTIONS(5521), 1, anon_sym_if, - [76367] = 9, + STATE(3773), 1, + sym_label, + STATE(1760), 2, + sym_if_expression, + sym_block, + STATE(2451), 2, + sym_line_comment, + sym_block_comment, + [76891] = 9, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3173), 1, - anon_sym_PLUS, - ACTIONS(5190), 1, - anon_sym_COLON, - ACTIONS(5494), 1, - anon_sym_GT, - ACTIONS(5496), 1, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + STATE(212), 1, + sym_closure_parameters, + STATE(408), 1, + sym_block, + STATE(3776), 1, + sym_label, + STATE(2452), 2, + sym_line_comment, + sym_block_comment, + [76920] = 6, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5523), 1, + anon_sym_RBRACK, + ACTIONS(5001), 2, + anon_sym_PIPE, anon_sym_COMMA, - STATE(3066), 1, - sym_trait_bounds, - STATE(3067), 1, - aux_sym_type_arguments_repeat1, - STATE(2442), 2, + STATE(2453), 2, sym_line_comment, sym_block_comment, - [76396] = 9, + ACTIONS(3687), 3, + anon_sym_SEMI, + anon_sym_PLUS, + anon_sym_DASH_GT, + [76943] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3163), 1, anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5120), 1, + ACTIONS(5073), 1, anon_sym_LBRACE, - ACTIONS(5498), 1, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(5526), 1, anon_sym_SEMI, - STATE(631), 1, + STATE(731), 1, sym_declaration_list, - STATE(3138), 1, + STATE(3105), 1, sym_where_clause, - STATE(2443), 2, + STATE(2454), 2, sym_line_comment, sym_block_comment, - [76425] = 9, + [76972] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5108), 1, - anon_sym_LT, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5155), 1, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(5073), 1, anon_sym_LBRACE, - STATE(1119), 1, - sym_field_declaration_list, - STATE(2879), 1, - sym_type_parameters, - STATE(3426), 1, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(5528), 1, + anon_sym_SEMI, + STATE(733), 1, + sym_declaration_list, + STATE(3106), 1, sym_where_clause, - STATE(2444), 2, + STATE(2455), 2, sym_line_comment, sym_block_comment, - [76454] = 8, + [77001] = 9, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(412), 1, + ACTIONS(1380), 1, anon_sym_LBRACE, - ACTIONS(3459), 1, + ACTIONS(3456), 1, anon_sym_SQUOTE, - ACTIONS(5500), 1, - anon_sym_if, - STATE(3783), 1, - sym_label, - STATE(1762), 2, - sym_if_expression, + STATE(212), 1, + sym_closure_parameters, + STATE(471), 1, sym_block, - STATE(2445), 2, + STATE(3772), 1, + sym_label, + STATE(2456), 2, sym_line_comment, sym_block_comment, - [76481] = 7, + [77030] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4679), 1, + ACTIONS(4663), 1, anon_sym_DOT_DOT, - ACTIONS(5368), 1, + ACTIONS(5388), 1, anon_sym_COLON_COLON, - ACTIONS(4681), 2, + ACTIONS(4665), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(5502), 2, + ACTIONS(5530), 2, anon_sym_RPAREN, anon_sym_COMMA, - STATE(2446), 2, - sym_line_comment, - sym_block_comment, - [76506] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(4849), 1, - anon_sym_DOT_DOT, - ACTIONS(4851), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2447), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4667), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [76529] = 9, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(1386), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(213), 1, - sym_closure_parameters, - STATE(480), 1, - sym_block, - STATE(3782), 1, - sym_label, - STATE(2448), 2, + STATE(2457), 2, sym_line_comment, sym_block_comment, - [76558] = 5, + [77055] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, @@ -181237,15 +180399,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5001), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(2449), 2, + STATE(2458), 2, sym_line_comment, sym_block_comment, - ACTIONS(3799), 4, + ACTIONS(3687), 4, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_COMMA, anon_sym_DASH_GT, - [76579] = 9, + [77076] = 9, ACTIONS(27), 1, anon_sym_PIPE, ACTIONS(105), 1, @@ -181254,1548 +180416,1340 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(412), 1, anon_sym_LBRACE, - ACTIONS(3459), 1, + ACTIONS(3456), 1, anon_sym_SQUOTE, - STATE(239), 1, + STATE(236), 1, sym_closure_parameters, - STATE(1735), 1, + STATE(1731), 1, sym_block, - STATE(3783), 1, + STATE(3773), 1, sym_label, - STATE(2450), 2, + STATE(2459), 2, sym_line_comment, sym_block_comment, - [76608] = 5, + [77105] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5504), 1, + ACTIONS(5532), 1, anon_sym_DASH_GT, - STATE(2451), 2, + STATE(2460), 2, sym_line_comment, sym_block_comment, - ACTIONS(3685), 5, + ACTIONS(3707), 5, anon_sym_COLON, anon_sym_PLUS, anon_sym_GT, anon_sym_COMMA, anon_sym_as, - [76629] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(5108), 1, - anon_sym_LT, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5486), 1, - anon_sym_LBRACE, - STATE(637), 1, - sym_enum_variant_list, - STATE(2857), 1, - sym_type_parameters, - STATE(3195), 1, - sym_where_clause, - STATE(2452), 2, - sym_line_comment, - sym_block_comment, - [76658] = 5, + [77126] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5506), 1, + ACTIONS(5534), 1, anon_sym_DASH_GT, - STATE(2453), 2, + STATE(2461), 2, sym_line_comment, sym_block_comment, - ACTIONS(3691), 5, + ACTIONS(3713), 5, anon_sym_COLON, anon_sym_PLUS, anon_sym_GT, anon_sym_COMMA, anon_sym_as, - [76679] = 5, + [77147] = 9, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(5073), 1, + anon_sym_LBRACE, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(5536), 1, + anon_sym_SEMI, + STATE(630), 1, + sym_declaration_list, + STATE(3161), 1, + sym_where_clause, + STATE(2462), 2, + sym_line_comment, + sym_block_comment, + [77176] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5508), 1, + ACTIONS(5538), 1, anon_sym_DASH_GT, - STATE(2454), 2, + STATE(2463), 2, sym_line_comment, sym_block_comment, - ACTIONS(3697), 5, + ACTIONS(3721), 5, anon_sym_COLON, anon_sym_PLUS, anon_sym_GT, anon_sym_COMMA, anon_sym_as, - [76700] = 5, + [77197] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5512), 1, + ACTIONS(5542), 1, anon_sym_COMMA, - STATE(2455), 3, + STATE(2464), 3, sym_line_comment, sym_block_comment, aux_sym_where_clause_repeat1, - ACTIONS(5510), 4, + ACTIONS(5540), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_SQUOTE, - [76721] = 9, + [77218] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5106), 1, - anon_sym_LBRACE, - ACTIONS(5108), 1, - anon_sym_LT, - ACTIONS(5110), 1, - anon_sym_where, - STATE(642), 1, - sym_field_declaration_list, - STATE(2753), 1, - sym_type_parameters, - STATE(3198), 1, - sym_where_clause, - STATE(2456), 2, + ACTIONS(4743), 1, + anon_sym_COLON_COLON, + ACTIONS(5148), 1, + anon_sym_for, + STATE(2465), 2, sym_line_comment, sym_block_comment, - [76750] = 5, + ACTIONS(3569), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [77241] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5515), 1, + ACTIONS(5545), 1, anon_sym_DASH_GT, - STATE(2457), 2, + STATE(2466), 2, sym_line_comment, sym_block_comment, - ACTIONS(3803), 5, + ACTIONS(3681), 5, anon_sym_COLON, anon_sym_PLUS, anon_sym_GT, anon_sym_COMMA, anon_sym_as, - [76771] = 5, + [77262] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5517), 1, - anon_sym_DASH_GT, - STATE(2458), 2, + ACTIONS(1042), 1, + anon_sym_DOT_DOT, + STATE(2467), 2, sym_line_comment, sym_block_comment, - ACTIONS(3731), 5, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [76792] = 6, + ACTIONS(1044), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [77283] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4770), 1, - anon_sym_COLON_COLON, - ACTIONS(5151), 1, - anon_sym_for, - STATE(2459), 2, + ACTIONS(958), 1, + anon_sym_DOT_DOT, + STATE(2468), 2, sym_line_comment, sym_block_comment, - ACTIONS(3509), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(960), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [77304] = 5, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(962), 1, + anon_sym_DOT_DOT, + STATE(2469), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(964), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [77325] = 9, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(3163), 1, anon_sym_PLUS, + ACTIONS(5073), 1, + anon_sym_LBRACE, + ACTIONS(5085), 1, anon_sym_where, - [76815] = 9, + ACTIONS(5547), 1, + anon_sym_SEMI, + STATE(506), 1, + sym_declaration_list, + STATE(2982), 1, + sym_where_clause, + STATE(2470), 2, + sym_line_comment, + sym_block_comment, + [77354] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3163), 1, anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5120), 1, + ACTIONS(5073), 1, anon_sym_LBRACE, - ACTIONS(5519), 1, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(5549), 1, anon_sym_SEMI, - STATE(566), 1, + STATE(508), 1, sym_declaration_list, - STATE(3080), 1, + STATE(3012), 1, sym_where_clause, - STATE(2460), 2, + STATE(2471), 2, sym_line_comment, sym_block_comment, - [76844] = 8, + [77383] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4766), 1, - anon_sym_COLON_COLON, - ACTIONS(5521), 1, - anon_sym_GT, - ACTIONS(5523), 1, - anon_sym_COMMA, - STATE(3162), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3509), 2, - anon_sym_PLUS, - anon_sym_as, - STATE(2461), 2, + ACTIONS(984), 1, + anon_sym_DOT_DOT, + STATE(2472), 2, sym_line_comment, sym_block_comment, - [76871] = 9, + ACTIONS(986), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [77404] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5120), 1, - anon_sym_LBRACE, - ACTIONS(5525), 1, - anon_sym_SEMI, - STATE(568), 1, - sym_declaration_list, - STATE(3086), 1, - sym_where_clause, - STATE(2462), 2, + ACTIONS(4782), 1, + anon_sym_DOT_DOT, + STATE(2473), 2, sym_line_comment, sym_block_comment, - [76900] = 9, + ACTIONS(4780), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [77425] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3163), 1, anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5120), 1, + ACTIONS(5073), 1, anon_sym_LBRACE, - ACTIONS(5527), 1, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(5551), 1, anon_sym_SEMI, - STATE(507), 1, + STATE(737), 1, sym_declaration_list, - STATE(3008), 1, + STATE(3117), 1, sym_where_clause, - STATE(2463), 2, + STATE(2474), 2, sym_line_comment, sym_block_comment, - [76929] = 9, + [77454] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3163), 1, anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5120), 1, + ACTIONS(5073), 1, anon_sym_LBRACE, - ACTIONS(5529), 1, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(5553), 1, anon_sym_SEMI, - STATE(509), 1, + STATE(739), 1, sym_declaration_list, - STATE(3029), 1, + STATE(3120), 1, sym_where_clause, - STATE(2464), 2, + STATE(2475), 2, sym_line_comment, sym_block_comment, - [76958] = 5, + [77483] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5531), 1, + ACTIONS(5555), 1, anon_sym_DASH_GT, - STATE(2465), 2, + STATE(2476), 2, sym_line_comment, sym_block_comment, - ACTIONS(3679), 5, + ACTIONS(3757), 5, anon_sym_COLON, anon_sym_PLUS, anon_sym_GT, anon_sym_COMMA, anon_sym_as, - [76979] = 6, + [77504] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3799), 2, + ACTIONS(3687), 2, anon_sym_PLUS, anon_sym_DASH_GT, ACTIONS(5001), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(5533), 2, + ACTIONS(5523), 2, anon_sym_RPAREN, anon_sym_COMMA, - STATE(2466), 2, - sym_line_comment, - sym_block_comment, - [77002] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5130), 1, - anon_sym_LBRACE, - ACTIONS(5190), 1, - anon_sym_COLON, - STATE(1141), 1, - sym_declaration_list, - STATE(2778), 1, - sym_trait_bounds, - STATE(3385), 1, - sym_where_clause, - STATE(2467), 2, - sym_line_comment, - sym_block_comment, - [77031] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5190), 1, - anon_sym_COLON, - ACTIONS(5536), 1, - anon_sym_SEMI, - ACTIONS(5538), 1, - anon_sym_EQ, - STATE(2915), 1, - sym_trait_bounds, - STATE(3397), 1, - sym_where_clause, - STATE(2468), 2, - sym_line_comment, - sym_block_comment, - [77060] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5130), 1, - anon_sym_LBRACE, - ACTIONS(5540), 1, - anon_sym_SEMI, - STATE(1148), 1, - sym_declaration_list, - STATE(2917), 1, - sym_where_clause, - STATE(2469), 2, + STATE(2477), 2, sym_line_comment, sym_block_comment, - [77089] = 4, + [77527] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2470), 2, + ACTIONS(4823), 1, + anon_sym_DOT_DOT, + ACTIONS(4825), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2478), 2, sym_line_comment, sym_block_comment, - ACTIONS(5082), 6, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [77108] = 9, + ACTIONS(4651), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [77550] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5108), 1, + ACTIONS(5083), 1, anon_sym_LT, - ACTIONS(5110), 1, + ACTIONS(5085), 1, anon_sym_where, - ACTIONS(5490), 1, + ACTIONS(5438), 1, anon_sym_LBRACE, - STATE(1152), 1, + STATE(636), 1, sym_enum_variant_list, - STATE(2824), 1, + STATE(2658), 1, sym_type_parameters, - STATE(3362), 1, + STATE(3337), 1, sym_where_clause, - STATE(2471), 2, + STATE(2479), 2, sym_line_comment, sym_block_comment, - [77137] = 6, + [77579] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4770), 1, - anon_sym_COLON_COLON, - ACTIONS(5168), 1, - anon_sym_for, - STATE(2472), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3509), 4, - anon_sym_SEMI, + ACTIONS(5081), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [77160] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(5108), 1, + ACTIONS(5083), 1, anon_sym_LT, - ACTIONS(5110), 1, + ACTIONS(5085), 1, anon_sym_where, - ACTIONS(5155), 1, - anon_sym_LBRACE, - STATE(1157), 1, + STATE(641), 1, sym_field_declaration_list, - STATE(2840), 1, + STATE(2676), 1, sym_type_parameters, - STATE(3211), 1, + STATE(3193), 1, sym_where_clause, - STATE(2473), 2, - sym_line_comment, - sym_block_comment, - [77189] = 5, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(4965), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2474), 2, + STATE(2480), 2, sym_line_comment, sym_block_comment, - ACTIONS(3721), 4, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH_GT, - [77210] = 9, + [77608] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3163), 1, anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5120), 1, + ACTIONS(5073), 1, anon_sym_LBRACE, - ACTIONS(5542), 1, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(5557), 1, anon_sym_SEMI, - STATE(696), 1, + STATE(609), 1, sym_declaration_list, - STATE(3169), 1, + STATE(3168), 1, sym_where_clause, - STATE(2475), 2, + STATE(2481), 2, sym_line_comment, sym_block_comment, - [77239] = 9, + [77637] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3173), 1, - anon_sym_PLUS, - ACTIONS(5190), 1, - anon_sym_COLON, - ACTIONS(5544), 1, - anon_sym_GT, - ACTIONS(5546), 1, + ACTIONS(4663), 1, + anon_sym_DOT_DOT, + ACTIONS(5412), 1, + anon_sym_COLON_COLON, + ACTIONS(4665), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5302), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(3177), 1, - sym_trait_bounds, - STATE(3184), 1, - aux_sym_type_arguments_repeat1, - STATE(2476), 2, + STATE(2482), 2, sym_line_comment, sym_block_comment, - [77268] = 9, + [77662] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3173), 1, - anon_sym_PLUS, - ACTIONS(5190), 1, - anon_sym_COLON, - ACTIONS(5548), 1, - anon_sym_GT, - ACTIONS(5550), 1, - anon_sym_COMMA, - STATE(2935), 1, - sym_trait_bounds, - STATE(2936), 1, - aux_sym_type_arguments_repeat1, - STATE(2477), 2, + STATE(2483), 2, sym_line_comment, sym_block_comment, - [77297] = 6, + ACTIONS(5108), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + [77681] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5533), 1, - anon_sym_RBRACK, - ACTIONS(5001), 2, - anon_sym_PIPE, + ACTIONS(5561), 1, anon_sym_COMMA, - STATE(2478), 2, + STATE(2442), 1, + aux_sym_where_clause_repeat1, + STATE(2484), 2, sym_line_comment, sym_block_comment, - ACTIONS(3799), 3, + ACTIONS(5559), 4, anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_DASH_GT, - [77320] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(348), 1, anon_sym_LBRACE, - ACTIONS(3459), 1, + anon_sym_EQ, anon_sym_SQUOTE, - ACTIONS(5552), 1, - anon_sym_if, - STATE(3719), 1, - sym_label, - STATE(1447), 2, - sym_if_expression, - sym_block, - STATE(2479), 2, - sym_line_comment, - sym_block_comment, - [77347] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5130), 1, - anon_sym_LBRACE, - ACTIONS(5554), 1, - anon_sym_SEMI, - STATE(1170), 1, - sym_declaration_list, - STATE(2955), 1, - sym_where_clause, - STATE(2480), 2, - sym_line_comment, - sym_block_comment, - [77376] = 7, + [77704] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4679), 1, + ACTIONS(4663), 1, anon_sym_DOT_DOT, - ACTIONS(5404), 1, + ACTIONS(5412), 1, anon_sym_COLON_COLON, - ACTIONS(4681), 2, + ACTIONS(4665), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(5372), 2, + ACTIONS(5530), 2, anon_sym_RPAREN, anon_sym_COMMA, - STATE(2481), 2, + STATE(2485), 2, sym_line_comment, sym_block_comment, - [77401] = 6, + [77729] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5558), 1, - anon_sym_COMMA, - STATE(2486), 1, - aux_sym_where_clause_repeat1, - STATE(2482), 2, + ACTIONS(5563), 1, + anon_sym_DASH_GT, + STATE(2486), 2, sym_line_comment, sym_block_comment, - ACTIONS(5556), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - [77424] = 9, + ACTIONS(3743), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [77750] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3163), 1, anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5130), 1, + ACTIONS(5073), 1, anon_sym_LBRACE, - ACTIONS(5560), 1, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(5565), 1, anon_sym_SEMI, - STATE(1174), 1, + STATE(524), 1, sym_declaration_list, - STATE(2956), 1, + STATE(2950), 1, sym_where_clause, - STATE(2483), 2, + STATE(2487), 2, sym_line_comment, sym_block_comment, - [77453] = 9, + [77779] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3163), 1, anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5130), 1, + ACTIONS(5073), 1, anon_sym_LBRACE, - ACTIONS(5562), 1, - anon_sym_SEMI, - STATE(1190), 1, - sym_declaration_list, - STATE(2961), 1, - sym_where_clause, - STATE(2484), 2, - sym_line_comment, - sym_block_comment, - [77482] = 9, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(5110), 1, + ACTIONS(5085), 1, anon_sym_where, - ACTIONS(5130), 1, - anon_sym_LBRACE, - ACTIONS(5190), 1, - anon_sym_COLON, - STATE(1195), 1, + ACTIONS(5567), 1, + anon_sym_SEMI, + STATE(779), 1, sym_declaration_list, - STATE(2749), 1, - sym_trait_bounds, - STATE(3228), 1, + STATE(2999), 1, sym_where_clause, - STATE(2485), 2, - sym_line_comment, - sym_block_comment, - [77511] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(5564), 1, - anon_sym_COMMA, - STATE(2455), 1, - aux_sym_where_clause_repeat1, - STATE(2486), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3507), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_SQUOTE, - [77534] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(4679), 1, - anon_sym_DOT_DOT, - ACTIONS(5404), 1, - anon_sym_COLON_COLON, - ACTIONS(4681), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5502), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2487), 2, - sym_line_comment, - sym_block_comment, - [77559] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(5566), 1, - anon_sym_RBRACK, - ACTIONS(4965), 2, - anon_sym_PIPE, - anon_sym_COMMA, STATE(2488), 2, sym_line_comment, sym_block_comment, - ACTIONS(3721), 3, - anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_DASH_GT, - [77582] = 9, + [77808] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3163), 1, anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5120), 1, + ACTIONS(5073), 1, anon_sym_LBRACE, + ACTIONS(5085), 1, + anon_sym_where, ACTIONS(5569), 1, anon_sym_SEMI, - STATE(525), 1, + STATE(528), 1, sym_declaration_list, - STATE(2908), 1, + STATE(3149), 1, sym_where_clause, STATE(2489), 2, sym_line_comment, sym_block_comment, - [77611] = 9, + [77837] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3163), 1, anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5120), 1, + ACTIONS(5073), 1, anon_sym_LBRACE, + ACTIONS(5085), 1, + anon_sym_where, ACTIONS(5571), 1, anon_sym_SEMI, - STATE(527), 1, + STATE(530), 1, sym_declaration_list, - STATE(2918), 1, + STATE(2882), 1, sym_where_clause, STATE(2490), 2, sym_line_comment, sym_block_comment, - [77640] = 9, + [77866] = 8, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5120), 1, - anon_sym_LBRACE, + ACTIONS(3456), 1, + anon_sym_SQUOTE, ACTIONS(5573), 1, - anon_sym_SEMI, - STATE(529), 1, - sym_declaration_list, - STATE(2933), 1, - sym_where_clause, + anon_sym_if, + STATE(3776), 1, + sym_label, + STATE(399), 2, + sym_if_expression, + sym_block, STATE(2491), 2, sym_line_comment, sym_block_comment, - [77669] = 9, + [77893] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3739), 2, anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5120), 1, - anon_sym_LBRACE, - ACTIONS(5575), 1, - anon_sym_SEMI, - STATE(531), 1, - sym_declaration_list, - STATE(2943), 1, - sym_where_clause, + anon_sym_DASH_GT, + ACTIONS(4999), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5472), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2492), 2, sym_line_comment, sym_block_comment, - [77698] = 9, - ACTIONS(19), 1, - anon_sym_LBRACE, + [77916] = 9, ACTIONS(27), 1, anon_sym_PIPE, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, + ACTIONS(348), 1, + anon_sym_LBRACE, + ACTIONS(3456), 1, anon_sym_SQUOTE, - STATE(213), 1, + STATE(212), 1, sym_closure_parameters, - STATE(427), 1, + STATE(1526), 1, sym_block, - STATE(3621), 1, + STATE(3709), 1, sym_label, STATE(2493), 2, sym_line_comment, sym_block_comment, - [77727] = 8, - ACTIONS(19), 1, - anon_sym_LBRACE, + [77945] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(5577), 1, - anon_sym_if, - STATE(3621), 1, - sym_label, - STATE(401), 2, - sym_if_expression, - sym_block, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(5073), 1, + anon_sym_LBRACE, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(5575), 1, + anon_sym_SEMI, + STATE(664), 1, + sym_declaration_list, + STATE(3128), 1, + sym_where_clause, STATE(2494), 2, sym_line_comment, sym_block_comment, - [77754] = 6, + [77974] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3721), 2, - anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(4965), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5566), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(4743), 1, + anon_sym_COLON_COLON, + ACTIONS(5093), 1, + anon_sym_for, STATE(2495), 2, sym_line_comment, sym_block_comment, - [77777] = 9, + ACTIONS(3569), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [77997] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5110), 1, + ACTIONS(5083), 1, + anon_sym_LT, + ACTIONS(5085), 1, anon_sym_where, - ACTIONS(5120), 1, + ACTIONS(5450), 1, anon_sym_LBRACE, - ACTIONS(5579), 1, - anon_sym_SEMI, - STATE(649), 1, - sym_declaration_list, - STATE(2988), 1, + STATE(1101), 1, + sym_enum_variant_list, + STATE(2657), 1, + sym_type_parameters, + STATE(3329), 1, sym_where_clause, STATE(2496), 2, sym_line_comment, sym_block_comment, - [77806] = 6, + [78026] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3793), 1, - anon_sym_COLON, - ACTIONS(5581), 1, - anon_sym_EQ, + ACTIONS(4743), 1, + anon_sym_COLON_COLON, + ACTIONS(5051), 1, + anon_sym_for, STATE(2497), 2, sym_line_comment, sym_block_comment, - ACTIONS(3791), 4, + ACTIONS(3569), 4, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_COLON_COLON, - [77829] = 8, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(5210), 1, - sym_identifier, - ACTIONS(5214), 1, - anon_sym_DOT_DOT, - ACTIONS(5218), 1, - anon_sym_ref, - ACTIONS(5220), 1, - sym_mutable_specifier, - STATE(2498), 2, - sym_line_comment, - sym_block_comment, - STATE(3258), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [77856] = 9, + anon_sym_where, + [78049] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3163), 1, anon_sym_PLUS, - ACTIONS(5110), 1, + ACTIONS(5085), 1, anon_sym_where, - ACTIONS(5120), 1, + ACTIONS(5089), 1, anon_sym_LBRACE, - ACTIONS(5583), 1, + ACTIONS(5577), 1, anon_sym_SEMI, - STATE(732), 1, + STATE(1103), 1, sym_declaration_list, - STATE(3105), 1, + STATE(3099), 1, sym_where_clause, - STATE(2499), 2, + STATE(2498), 2, sym_line_comment, sym_block_comment, - [77885] = 6, + [78078] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4770), 1, + ACTIONS(4743), 1, anon_sym_COLON_COLON, - ACTIONS(5112), 1, + ACTIONS(5121), 1, anon_sym_for, - STATE(2500), 2, + STATE(2499), 2, sym_line_comment, sym_block_comment, - ACTIONS(3509), 4, + ACTIONS(3569), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [77908] = 9, + [78101] = 9, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3163), 1, anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5120), 1, + ACTIONS(5073), 1, anon_sym_LBRACE, - ACTIONS(5585), 1, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(5579), 1, anon_sym_SEMI, STATE(670), 1, sym_declaration_list, - STATE(3032), 1, + STATE(3181), 1, sym_where_clause, - STATE(2501), 2, + STATE(2500), 2, sym_line_comment, sym_block_comment, - [77937] = 6, + [78130] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4770), 1, + ACTIONS(4743), 1, anon_sym_COLON_COLON, - ACTIONS(5124), 1, + ACTIONS(5132), 1, anon_sym_for, - STATE(2502), 2, + STATE(2501), 2, sym_line_comment, sym_block_comment, - ACTIONS(3509), 4, + ACTIONS(3569), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [77960] = 6, + [78153] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4770), 1, - anon_sym_COLON_COLON, - ACTIONS(5126), 1, - anon_sym_for, - STATE(2503), 2, + ACTIONS(4798), 1, + anon_sym_DOT_DOT, + STATE(2502), 2, sym_line_comment, sym_block_comment, - ACTIONS(3509), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [77983] = 9, + ACTIONS(4796), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [78174] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5120), 1, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + ACTIONS(5166), 1, anon_sym_LBRACE, - ACTIONS(5587), 1, + ACTIONS(5581), 1, anon_sym_SEMI, - STATE(734), 1, - sym_declaration_list, - STATE(3106), 1, - sym_where_clause, + STATE(598), 1, + sym_block, + STATE(3768), 1, + sym_label, + STATE(2503), 2, + sym_line_comment, + sym_block_comment, + [78200] = 7, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5583), 1, + anon_sym_RPAREN, + ACTIONS(5585), 1, + anon_sym_COMMA, + STATE(3021), 1, + aux_sym_parameters_repeat1, + ACTIONS(4651), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2504), 2, sym_line_comment, sym_block_comment, - [78012] = 6, + [78224] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4770), 1, + ACTIONS(4013), 2, + anon_sym_LPAREN, anon_sym_COLON_COLON, - ACTIONS(5132), 1, - anon_sym_for, STATE(2505), 2, sym_line_comment, sym_block_comment, - ACTIONS(3509), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [78035] = 6, + ACTIONS(4857), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [78244] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4770), 1, - anon_sym_COLON_COLON, - ACTIONS(5138), 1, - anon_sym_for, + ACTIONS(1378), 1, + anon_sym_RPAREN, + ACTIONS(5587), 1, + anon_sym_COMMA, + STATE(2949), 1, + aux_sym_parameters_repeat1, + ACTIONS(4651), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2506), 2, sym_line_comment, sym_block_comment, - ACTIONS(3509), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [78058] = 9, + [78268] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5130), 1, - anon_sym_LBRACE, - ACTIONS(5589), 1, - anon_sym_SEMI, - STATE(1216), 1, - sym_declaration_list, - STATE(2978), 1, - sym_where_clause, STATE(2507), 2, sym_line_comment, sym_block_comment, - [78087] = 9, + ACTIONS(5589), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [78286] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5130), 1, - anon_sym_LBRACE, ACTIONS(5591), 1, + anon_sym_RBRACK, + ACTIONS(3569), 2, anon_sym_SEMI, - STATE(1218), 1, - sym_declaration_list, - STATE(2979), 1, - sym_where_clause, + anon_sym_PLUS, + ACTIONS(4651), 2, + anon_sym_PIPE, + anon_sym_COMMA, STATE(2508), 2, sym_line_comment, sym_block_comment, - [78116] = 9, + [78308] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5130), 1, - anon_sym_LBRACE, - ACTIONS(5593), 1, - anon_sym_SEMI, - STATE(1222), 1, - sym_declaration_list, - STATE(2981), 1, - sym_where_clause, + ACTIONS(5594), 1, + anon_sym_RPAREN, + ACTIONS(5596), 1, + anon_sym_COMMA, + STATE(3119), 1, + aux_sym_parameters_repeat1, + ACTIONS(4651), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2509), 2, sym_line_comment, sym_block_comment, - [78145] = 9, + [78332] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5130), 1, - anon_sym_LBRACE, - ACTIONS(5595), 1, - anon_sym_SEMI, - STATE(1131), 1, - sym_declaration_list, - STATE(2907), 1, - sym_where_clause, + ACTIONS(1352), 1, + anon_sym_RPAREN, + ACTIONS(5598), 1, + anon_sym_COMMA, + STATE(3031), 1, + aux_sym_parameters_repeat1, + ACTIONS(4651), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2510), 2, sym_line_comment, sym_block_comment, - [78174] = 8, + [78356] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(5232), 1, - anon_sym_LBRACE, - ACTIONS(5597), 1, - anon_sym_SEMI, - STATE(1246), 1, - sym_block, - STATE(3781), 1, - sym_label, + ACTIONS(3169), 1, + anon_sym_PLUS, + ACTIONS(5174), 1, + anon_sym_COLON, + STATE(3350), 1, + sym_trait_bounds, + ACTIONS(5600), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2511), 2, sym_line_comment, sym_block_comment, - [78200] = 4, + [78380] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + ACTIONS(5166), 1, + anon_sym_LBRACE, + ACTIONS(5602), 1, + anon_sym_SEMI, + STATE(727), 1, + sym_block, + STATE(3768), 1, + sym_label, STATE(2512), 2, sym_line_comment, sym_block_comment, - ACTIONS(3395), 5, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [78218] = 7, + [78406] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1358), 1, - anon_sym_RPAREN, - ACTIONS(5599), 1, - anon_sym_COMMA, - STATE(3081), 1, - aux_sym_parameters_repeat1, - ACTIONS(4667), 2, - anon_sym_COLON, - anon_sym_PIPE, + ACTIONS(412), 1, + anon_sym_LBRACE, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + STATE(1884), 1, + sym_block, + STATE(3773), 1, + sym_label, STATE(2513), 2, sym_line_comment, sym_block_comment, - [78242] = 8, + [78432] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(412), 1, - anon_sym_LBRACE, - ACTIONS(3213), 1, + ACTIONS(3805), 1, anon_sym_PLUS, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(1903), 1, - sym_block, - STATE(3783), 1, - sym_label, + ACTIONS(5031), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5604), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2514), 2, sym_line_comment, sym_block_comment, - [78268] = 8, + [78454] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5601), 1, - anon_sym_STAR_SLASH, - ACTIONS(5603), 1, - sym__outer_block_doc_comment_marker, - ACTIONS(5605), 1, - sym__inner_block_doc_comment_marker, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + ACTIONS(5212), 1, + anon_sym_LBRACE, ACTIONS(5607), 1, - sym__block_comment_content, - STATE(3251), 1, - sym__block_doc_comment_marker, + anon_sym_SEMI, + STATE(1204), 1, + sym_block, + STATE(3771), 1, + sym_label, STATE(2515), 2, sym_line_comment, sym_block_comment, - [78294] = 8, + [78480] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, + ACTIONS(3081), 1, anon_sym_SQUOTE, - ACTIONS(5182), 1, - anon_sym_LBRACE, ACTIONS(5609), 1, - anon_sym_SEMI, - STATE(551), 1, - sym_block, - STATE(3778), 1, - sym_label, + sym_identifier, + ACTIONS(5611), 1, + anon_sym_GT, + ACTIONS(5613), 1, + anon_sym_COMMA, + STATE(3084), 1, + sym_lifetime, STATE(2516), 2, sym_line_comment, sym_block_comment, - [78320] = 8, + [78506] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5190), 1, - anon_sym_COLON, - ACTIONS(5544), 1, - anon_sym_GT, - ACTIONS(5546), 1, - anon_sym_COMMA, - STATE(3177), 1, - sym_trait_bounds, - STATE(3184), 1, - aux_sym_type_arguments_repeat1, STATE(2517), 2, sym_line_comment, sym_block_comment, - [78346] = 8, + ACTIONS(3735), 5, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_COLON_COLON, + anon_sym_if, + [78524] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5190), 1, + ACTIONS(5174), 1, anon_sym_COLON, - ACTIONS(5548), 1, + ACTIONS(5517), 1, anon_sym_GT, - ACTIONS(5550), 1, + ACTIONS(5519), 1, anon_sym_COMMA, - STATE(2935), 1, + STATE(3053), 1, sym_trait_bounds, - STATE(2936), 1, + STATE(3054), 1, aux_sym_type_arguments_repeat1, STATE(2518), 2, sym_line_comment, sym_block_comment, - [78372] = 7, + [78550] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5611), 1, - anon_sym_RPAREN, - ACTIONS(5613), 1, - anon_sym_COMMA, - STATE(2944), 1, - aux_sym_parameters_repeat1, - ACTIONS(4667), 2, - anon_sym_COLON, + ACTIONS(4965), 1, anon_sym_PIPE, + ACTIONS(5615), 1, + anon_sym_SEMI, + ACTIONS(5617), 1, + anon_sym_COLON, + ACTIONS(5619), 1, + anon_sym_EQ, + ACTIONS(5621), 1, + anon_sym_else, STATE(2519), 2, sym_line_comment, sym_block_comment, - [78396] = 8, + [78576] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(412), 1, + ACTIONS(348), 1, anon_sym_LBRACE, - ACTIONS(3213), 1, + ACTIONS(3163), 1, anon_sym_PLUS, - ACTIONS(3459), 1, + ACTIONS(3456), 1, anon_sym_SQUOTE, - STATE(1794), 1, + STATE(1454), 1, sym_block, - STATE(3783), 1, + STATE(3709), 1, sym_label, STATE(2520), 2, sym_line_comment, sym_block_comment, - [78422] = 7, + [78602] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5190), 1, + ACTIONS(5031), 2, anon_sym_COLON, - STATE(2952), 1, - aux_sym_for_lifetimes_repeat1, - STATE(3433), 1, - sym_trait_bounds, - ACTIONS(5615), 2, - anon_sym_GT, - anon_sym_COMMA, + anon_sym_PIPE, STATE(2521), 2, sym_line_comment, sym_block_comment, - [78446] = 8, + ACTIONS(3805), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [78622] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(5232), 1, - anon_sym_LBRACE, - ACTIONS(5617), 1, - anon_sym_SEMI, - STATE(1168), 1, - sym_block, - STATE(3781), 1, - sym_label, STATE(2522), 2, sym_line_comment, sym_block_comment, - [78472] = 8, + ACTIONS(5623), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [78640] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5108), 1, - anon_sym_LT, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5619), 1, - anon_sym_EQ, - STATE(3018), 1, - sym_type_parameters, - STATE(3675), 1, - sym_where_clause, + ACTIONS(5174), 1, + anon_sym_COLON, + ACTIONS(5452), 1, + anon_sym_GT, + ACTIONS(5454), 1, + anon_sym_COMMA, + STATE(2912), 1, + sym_trait_bounds, + STATE(2913), 1, + aux_sym_type_arguments_repeat1, STATE(2523), 2, sym_line_comment, sym_block_comment, - [78498] = 4, + [78666] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(5625), 1, + anon_sym_STAR_SLASH, + ACTIONS(5627), 1, + sym__outer_block_doc_comment_marker, + ACTIONS(5629), 1, + sym__inner_block_doc_comment_marker, + ACTIONS(5631), 1, + sym__block_comment_content, + STATE(3418), 1, + sym__block_doc_comment_marker, STATE(2524), 2, sym_line_comment, sym_block_comment, - ACTIONS(5621), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [78516] = 4, + [78692] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + ACTIONS(5166), 1, + anon_sym_LBRACE, + ACTIONS(5633), 1, + anon_sym_SEMI, + STATE(575), 1, + sym_block, + STATE(3768), 1, + sym_label, STATE(2525), 2, sym_line_comment, sym_block_comment, - ACTIONS(5623), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [78534] = 5, + [78718] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3967), 2, - anon_sym_LPAREN, - anon_sym_COLON_COLON, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + ACTIONS(5212), 1, + anon_sym_LBRACE, + ACTIONS(5635), 1, + anon_sym_SEMI, + STATE(1238), 1, + sym_block, + STATE(3771), 1, + sym_label, STATE(2526), 2, sym_line_comment, sym_block_comment, - ACTIONS(4873), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [78554] = 5, + [78744] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4005), 2, - anon_sym_LPAREN, - anon_sym_COLON_COLON, + ACTIONS(4651), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2527), 2, sym_line_comment, sym_block_comment, - ACTIONS(4873), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [78574] = 8, + ACTIONS(3569), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [78764] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(348), 1, - anon_sym_LBRACE, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(1451), 1, - sym_block, - STATE(3719), 1, - sym_label, STATE(2528), 2, sym_line_comment, sym_block_comment, - [78600] = 4, + ACTIONS(3543), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [78782] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(4965), 1, + anon_sym_PIPE, + ACTIONS(5637), 1, + anon_sym_SEMI, + ACTIONS(5639), 1, + anon_sym_COLON, + ACTIONS(5641), 1, + anon_sym_EQ, + ACTIONS(5643), 1, + anon_sym_else, STATE(2529), 2, sym_line_comment, sym_block_comment, - ACTIONS(3703), 5, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_COLON_COLON, - anon_sym_if, - [78618] = 7, + [78808] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5625), 1, - anon_sym_RPAREN, - ACTIONS(5628), 1, - anon_sym_COMMA, - STATE(2924), 1, - aux_sym_parameters_repeat1, - ACTIONS(4667), 2, + ACTIONS(3169), 1, + anon_sym_PLUS, + ACTIONS(5174), 1, anon_sym_COLON, - anon_sym_PIPE, + STATE(3432), 1, + sym_trait_bounds, + ACTIONS(5645), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2530), 2, sym_line_comment, sym_block_comment, - [78642] = 7, + [78832] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1366), 1, + ACTIONS(5647), 1, anon_sym_RPAREN, - ACTIONS(5631), 1, - anon_sym_COMMA, - STATE(2974), 1, - aux_sym_parameters_repeat1, - ACTIONS(4667), 2, + ACTIONS(5649), 1, anon_sym_COLON, + ACTIONS(5651), 1, anon_sym_PIPE, + ACTIONS(5653), 1, + anon_sym_COMMA, + STATE(3070), 1, + aux_sym_slice_pattern_repeat1, STATE(2531), 2, sym_line_comment, sym_block_comment, - [78666] = 8, + [78858] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(412), 1, - anon_sym_LBRACE, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(1859), 1, - sym_block, - STATE(3783), 1, - sym_label, + ACTIONS(5655), 1, + anon_sym_RPAREN, + ACTIONS(5657), 1, + anon_sym_COMMA, + STATE(2922), 1, + aux_sym_parameters_repeat1, + ACTIONS(4651), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2532), 2, sym_line_comment, sym_block_comment, - [78692] = 6, + [78882] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3509), 1, - anon_sym_PLUS, - ACTIONS(4667), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5633), 2, - anon_sym_RPAREN, - anon_sym_COMMA, STATE(2533), 2, sym_line_comment, sym_block_comment, - [78714] = 8, + ACTIONS(5659), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [78900] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(5232), 1, - anon_sym_LBRACE, - ACTIONS(5636), 1, - anon_sym_SEMI, - STATE(1212), 1, - sym_block, - STATE(3781), 1, - sym_label, + ACTIONS(5661), 1, + anon_sym_RPAREN, + ACTIONS(5664), 1, + anon_sym_COMMA, + STATE(3119), 1, + aux_sym_parameters_repeat1, + ACTIONS(4651), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2534), 2, sym_line_comment, sym_block_comment, - [78740] = 4, + [78924] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(3569), 1, + anon_sym_PLUS, + ACTIONS(4651), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5591), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2535), 2, sym_line_comment, sym_block_comment, - ACTIONS(5638), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [78758] = 4, + [78946] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, @@ -182803,13 +181757,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(2536), 2, sym_line_comment, sym_block_comment, - ACTIONS(5640), 5, + ACTIONS(5540), 5, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_COMMA, - anon_sym_where, - [78776] = 4, + anon_sym_SQUOTE, + [78964] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, @@ -182817,13 +181771,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(2537), 2, sym_line_comment, sym_block_comment, - ACTIONS(5642), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [78794] = 4, + ACTIONS(3767), 5, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_COLON_COLON, + anon_sym_if, + [78982] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, @@ -182831,1078 +181785,1078 @@ static const uint16_t ts_small_parse_table[] = { STATE(2538), 2, sym_line_comment, sym_block_comment, - ACTIONS(3711), 5, + ACTIONS(3749), 5, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_COLON_COLON, anon_sym_if, - [78812] = 6, + [79000] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5633), 1, - anon_sym_RBRACK, - ACTIONS(3509), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4667), 2, - anon_sym_PIPE, - anon_sym_COMMA, STATE(2539), 2, sym_line_comment, sym_block_comment, - [78834] = 4, + ACTIONS(3695), 5, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_COLON_COLON, + anon_sym_if, + [79018] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + ACTIONS(5166), 1, + anon_sym_LBRACE, + ACTIONS(5667), 1, + anon_sym_SEMI, + STATE(763), 1, + sym_block, + STATE(3768), 1, + sym_label, STATE(2540), 2, sym_line_comment, sym_block_comment, - ACTIONS(5644), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [78852] = 4, + [79044] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + ACTIONS(5166), 1, + anon_sym_LBRACE, + ACTIONS(5669), 1, + anon_sym_SEMI, + STATE(500), 1, + sym_block, + STATE(3768), 1, + sym_label, STATE(2541), 2, sym_line_comment, sym_block_comment, - ACTIONS(3759), 5, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_COLON_COLON, - anon_sym_if, - [78870] = 4, + [79070] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(5673), 1, + anon_sym_COLON_COLON, + ACTIONS(5675), 1, + anon_sym_as, STATE(2542), 2, sym_line_comment, sym_block_comment, - ACTIONS(3769), 5, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_COLON_COLON, - anon_sym_if, - [78888] = 8, + ACTIONS(5671), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [79092] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(5182), 1, + ACTIONS(348), 1, anon_sym_LBRACE, - ACTIONS(5646), 1, - anon_sym_SEMI, - STATE(764), 1, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + STATE(1478), 1, sym_block, - STATE(3778), 1, + STATE(3709), 1, sym_label, STATE(2543), 2, sym_line_comment, sym_block_comment, - [78914] = 5, + [79118] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5648), 1, - sym_identifier, + ACTIONS(5174), 1, + anon_sym_COLON, + ACTIONS(5456), 1, + anon_sym_GT, + ACTIONS(5458), 1, + anon_sym_COMMA, + STATE(3057), 1, + sym_trait_bounds, + STATE(3059), 1, + aux_sym_type_arguments_repeat1, STATE(2544), 2, sym_line_comment, sym_block_comment, - ACTIONS(5650), 4, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - anon_sym_raw, - [78934] = 4, + [79144] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + ACTIONS(5212), 1, + anon_sym_LBRACE, + ACTIONS(5677), 1, + anon_sym_SEMI, + STATE(1258), 1, + sym_block, + STATE(3771), 1, + sym_label, STATE(2545), 2, sym_line_comment, sym_block_comment, - ACTIONS(5652), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - [78952] = 4, + [79170] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(412), 1, + anon_sym_LBRACE, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + STATE(1819), 1, + sym_block, + STATE(3773), 1, + sym_label, STATE(2546), 2, sym_line_comment, sym_block_comment, - ACTIONS(5654), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - [78970] = 8, + [79196] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(5232), 1, + ACTIONS(4285), 1, anon_sym_LBRACE, - ACTIONS(5656), 1, - anon_sym_SEMI, - STATE(1266), 1, - sym_block, - STATE(3781), 1, - sym_label, + ACTIONS(5681), 1, + anon_sym_STAR, + STATE(2977), 1, + sym_use_list, + ACTIONS(5679), 2, + sym_identifier, + sym_super, STATE(2547), 2, sym_line_comment, sym_block_comment, - [78996] = 8, + [79220] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(5182), 1, - anon_sym_LBRACE, - ACTIONS(5658), 1, - anon_sym_SEMI, - STATE(728), 1, - sym_block, - STATE(3778), 1, - sym_label, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(4671), 1, + anon_sym_LPAREN, + ACTIONS(4677), 1, + anon_sym_COLON_COLON, + STATE(2022), 1, + sym_type_arguments, + STATE(2461), 1, + sym_parameters, STATE(2548), 2, sym_line_comment, sym_block_comment, - [79022] = 8, + [79246] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(412), 1, + ACTIONS(348), 1, anon_sym_LBRACE, - ACTIONS(3213), 1, + ACTIONS(3163), 1, anon_sym_PLUS, - ACTIONS(3459), 1, + ACTIONS(3456), 1, anon_sym_SQUOTE, - STATE(1908), 1, + STATE(1493), 1, sym_block, - STATE(3783), 1, + STATE(3709), 1, sym_label, STATE(2549), 2, sym_line_comment, sym_block_comment, - [79048] = 8, + [79272] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5660), 1, - anon_sym_SEMI, - ACTIONS(5662), 1, - anon_sym_COLON, - ACTIONS(5664), 1, - anon_sym_PIPE, - ACTIONS(5666), 1, - anon_sym_EQ, - ACTIONS(5668), 1, - anon_sym_else, + ACTIONS(3065), 1, + anon_sym_POUND, + ACTIONS(5683), 1, + sym_identifier, + ACTIONS(5685), 1, + sym_integer_literal, + STATE(1083), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1378), 1, + sym_attribute_item, STATE(2550), 2, sym_line_comment, sym_block_comment, - [79074] = 4, + [79298] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(412), 1, + anon_sym_LBRACE, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + STATE(1930), 1, + sym_block, + STATE(3773), 1, + sym_label, STATE(2551), 2, sym_line_comment, sym_block_comment, - ACTIONS(5670), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [79092] = 4, + [79324] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(5687), 1, + sym_identifier, STATE(2552), 2, sym_line_comment, sym_block_comment, - ACTIONS(5672), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [79110] = 8, + ACTIONS(5689), 4, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + anon_sym_raw, + [79344] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, + ACTIONS(3456), 1, anon_sym_SQUOTE, - ACTIONS(5232), 1, + ACTIONS(5212), 1, anon_sym_LBRACE, - ACTIONS(5674), 1, + ACTIONS(5691), 1, anon_sym_SEMI, - STATE(1297), 1, + STATE(1160), 1, sym_block, - STATE(3781), 1, + STATE(3771), 1, sym_label, STATE(2553), 2, sym_line_comment, sym_block_comment, - [79136] = 7, + [79370] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3173), 1, - anon_sym_PLUS, - ACTIONS(5190), 1, - anon_sym_COLON, - STATE(3433), 1, - sym_trait_bounds, - ACTIONS(5615), 2, - anon_sym_GT, - anon_sym_COMMA, STATE(2554), 2, sym_line_comment, sym_block_comment, - [79160] = 8, + ACTIONS(5693), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [79388] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(348), 1, - anon_sym_LBRACE, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(1473), 1, - sym_block, - STATE(3719), 1, - sym_label, STATE(2555), 2, sym_line_comment, sym_block_comment, - [79186] = 8, + ACTIONS(5695), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [79406] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, + ACTIONS(3081), 1, anon_sym_SQUOTE, - ACTIONS(5232), 1, - anon_sym_LBRACE, - ACTIONS(5676), 1, - anon_sym_SEMI, - STATE(1311), 1, - sym_block, - STATE(3781), 1, - sym_label, + ACTIONS(5697), 1, + sym_identifier, + ACTIONS(5699), 1, + anon_sym_GT, + ACTIONS(5701), 1, + anon_sym_COMMA, + STATE(2881), 1, + sym_lifetime, STATE(2556), 2, sym_line_comment, sym_block_comment, - [79212] = 4, + [79432] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + ACTIONS(5212), 1, + anon_sym_LBRACE, + ACTIONS(5703), 1, + anon_sym_SEMI, + STATE(1289), 1, + sym_block, + STATE(3771), 1, + sym_label, STATE(2557), 2, sym_line_comment, sym_block_comment, - ACTIONS(3529), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [79230] = 8, + [79458] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, + ACTIONS(3456), 1, anon_sym_SQUOTE, - ACTIONS(5232), 1, + ACTIONS(5166), 1, anon_sym_LBRACE, - ACTIONS(5678), 1, + ACTIONS(5705), 1, anon_sym_SEMI, - STATE(1314), 1, + STATE(602), 1, sym_block, - STATE(3781), 1, + STATE(3768), 1, sym_label, STATE(2558), 2, sym_line_comment, sym_block_comment, - [79256] = 6, + [79484] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5680), 1, - anon_sym_RBRACK, - ACTIONS(4089), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(5055), 2, - anon_sym_PIPE, - anon_sym_COMMA, STATE(2559), 2, sym_line_comment, sym_block_comment, - [79278] = 8, + ACTIONS(5707), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [79502] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(5232), 1, - anon_sym_LBRACE, - ACTIONS(5683), 1, - anon_sym_SEMI, - STATE(1339), 1, - sym_block, - STATE(3781), 1, - sym_label, + ACTIONS(5174), 1, + anon_sym_COLON, + STATE(3133), 1, + aux_sym_for_lifetimes_repeat1, + STATE(3432), 1, + sym_trait_bounds, + ACTIONS(5645), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2560), 2, sym_line_comment, sym_block_comment, - [79304] = 8, + [79526] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(5232), 1, - anon_sym_LBRACE, - ACTIONS(5685), 1, - anon_sym_SEMI, - STATE(1347), 1, - sym_block, - STATE(3781), 1, - sym_label, STATE(2561), 2, sym_line_comment, sym_block_comment, - [79330] = 8, + ACTIONS(5709), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [79544] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(5182), 1, - anon_sym_LBRACE, - ACTIONS(5687), 1, - anon_sym_SEMI, - STATE(594), 1, - sym_block, - STATE(3778), 1, - sym_label, + ACTIONS(5083), 1, + anon_sym_LT, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(5711), 1, + anon_sym_EQ, + STATE(2878), 1, + sym_type_parameters, + STATE(3788), 1, + sym_where_clause, STATE(2562), 2, sym_line_comment, sym_block_comment, - [79356] = 8, + [79570] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, + ACTIONS(3456), 1, anon_sym_SQUOTE, - ACTIONS(5232), 1, + ACTIONS(5212), 1, anon_sym_LBRACE, - ACTIONS(5689), 1, + ACTIONS(5713), 1, anon_sym_SEMI, - STATE(1357), 1, + STATE(1303), 1, sym_block, - STATE(3781), 1, + STATE(3771), 1, sym_label, STATE(2563), 2, sym_line_comment, sym_block_comment, - [79382] = 8, + [79596] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(5232), 1, - anon_sym_LBRACE, - ACTIONS(5691), 1, - anon_sym_SEMI, - STATE(1362), 1, - sym_block, - STATE(3781), 1, - sym_label, + ACTIONS(5717), 1, + anon_sym_COLON_COLON, + ACTIONS(5719), 1, + anon_sym_as, STATE(2564), 2, sym_line_comment, sym_block_comment, - [79408] = 7, + ACTIONS(5715), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [79618] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4297), 1, - anon_sym_LBRACE, - ACTIONS(5695), 1, - anon_sym_STAR, - STATE(2900), 1, - sym_use_list, - ACTIONS(5693), 2, - sym_identifier, - sym_super, STATE(2565), 2, sym_line_comment, sym_block_comment, - [79432] = 8, + ACTIONS(5721), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [79636] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(5232), 1, - anon_sym_LBRACE, - ACTIONS(5697), 1, - anon_sym_SEMI, - STATE(1366), 1, - sym_block, - STATE(3781), 1, - sym_label, + ACTIONS(5719), 1, + anon_sym_as, + ACTIONS(5723), 1, + anon_sym_COLON_COLON, STATE(2566), 2, sym_line_comment, sym_block_comment, - [79458] = 8, + ACTIONS(5715), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [79658] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, + ACTIONS(4669), 1, anon_sym_LT2, - ACTIONS(4687), 1, + ACTIONS(4671), 1, anon_sym_LPAREN, - ACTIONS(4693), 1, + ACTIONS(4677), 1, anon_sym_COLON_COLON, - STATE(2029), 1, + STATE(2022), 1, sym_type_arguments, - STATE(2102), 1, + STATE(2098), 1, sym_parameters, STATE(2567), 2, sym_line_comment, sym_block_comment, - [79484] = 8, + [79684] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4171), 1, - anon_sym_LPAREN, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(4693), 1, - anon_sym_COLON_COLON, - STATE(1663), 1, - sym_parameters, - STATE(2029), 1, - sym_type_arguments, STATE(2568), 2, sym_line_comment, sym_block_comment, - [79510] = 8, + ACTIONS(3529), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [79702] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5190), 1, + ACTIONS(5651), 1, + anon_sym_PIPE, + ACTIONS(5725), 1, + anon_sym_SEMI, + ACTIONS(5727), 1, anon_sym_COLON, - ACTIONS(5482), 1, - anon_sym_GT, - ACTIONS(5484), 1, - anon_sym_COMMA, - STATE(3040), 1, - sym_trait_bounds, - STATE(3041), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(5729), 1, + anon_sym_EQ, + ACTIONS(5731), 1, + anon_sym_else, STATE(2569), 2, sym_line_comment, sym_block_comment, - [79536] = 7, + [79728] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5699), 1, - anon_sym_RPAREN, - ACTIONS(5701), 1, - anon_sym_COMMA, - STATE(3045), 1, - aux_sym_parameters_repeat1, - ACTIONS(4667), 2, - anon_sym_COLON, - anon_sym_PIPE, + ACTIONS(348), 1, + anon_sym_LBRACE, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + STATE(1487), 1, + sym_block, + STATE(3709), 1, + sym_label, STATE(2570), 2, sym_line_comment, sym_block_comment, - [79560] = 8, + [79754] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, + ACTIONS(3456), 1, anon_sym_SQUOTE, - ACTIONS(5182), 1, + ACTIONS(5212), 1, anon_sym_LBRACE, - ACTIONS(5703), 1, + ACTIONS(5733), 1, anon_sym_SEMI, - STATE(599), 1, + STATE(1306), 1, sym_block, - STATE(3778), 1, + STATE(3771), 1, sym_label, STATE(2571), 2, sym_line_comment, sym_block_comment, - [79586] = 7, + [79780] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5705), 1, - anon_sym_RPAREN, - ACTIONS(5707), 1, - anon_sym_COMMA, - STATE(2924), 1, - aux_sym_parameters_repeat1, - ACTIONS(4667), 2, - anon_sym_COLON, - anon_sym_PIPE, STATE(2572), 2, sym_line_comment, sym_block_comment, - [79610] = 7, + ACTIONS(3575), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [79798] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4297), 1, - anon_sym_LBRACE, - ACTIONS(5412), 1, - anon_sym_STAR, - STATE(2916), 1, - sym_use_list, - ACTIONS(5410), 2, - sym_identifier, - sym_super, + ACTIONS(4808), 1, + anon_sym_EQ, + ACTIONS(5174), 1, + anon_sym_COLON, + STATE(3160), 1, + sym_trait_bounds, + ACTIONS(4810), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2573), 2, sym_line_comment, sym_block_comment, - [79634] = 7, + [79822] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3173), 1, - anon_sym_PLUS, - ACTIONS(5190), 1, - anon_sym_COLON, - STATE(3496), 1, - sym_trait_bounds, - ACTIONS(5709), 2, - anon_sym_GT, - anon_sym_COMMA, STATE(2574), 2, sym_line_comment, sym_block_comment, - [79658] = 7, + ACTIONS(5735), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [79840] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1372), 1, - anon_sym_RPAREN, - ACTIONS(5711), 1, - anon_sym_COMMA, - STATE(3052), 1, - aux_sym_parameters_repeat1, - ACTIONS(4667), 2, - anon_sym_COLON, - anon_sym_PIPE, STATE(2575), 2, sym_line_comment, sym_block_comment, - [79682] = 6, + ACTIONS(5737), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [79858] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4089), 1, - anon_sym_PLUS, - ACTIONS(5055), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5680), 2, - anon_sym_RPAREN, - anon_sym_COMMA, STATE(2576), 2, sym_line_comment, sym_block_comment, - [79704] = 8, + ACTIONS(5739), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [79876] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3081), 1, - anon_sym_SQUOTE, - ACTIONS(5713), 1, - sym_identifier, - ACTIONS(5715), 1, - anon_sym_GT, - ACTIONS(5717), 1, - anon_sym_COMMA, - STATE(3090), 1, - sym_lifetime, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(4677), 1, + anon_sym_COLON_COLON, + ACTIONS(4806), 1, + anon_sym_COLON, + STATE(2022), 1, + sym_type_arguments, + STATE(2592), 1, + sym_trait_bounds, STATE(2577), 2, sym_line_comment, sym_block_comment, - [79730] = 8, + [79902] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5027), 1, - anon_sym_PIPE, - ACTIONS(5719), 1, - anon_sym_SEMI, - ACTIONS(5721), 1, + ACTIONS(1348), 1, + anon_sym_RPAREN, + ACTIONS(5741), 1, + anon_sym_COMMA, + STATE(3075), 1, + aux_sym_parameters_repeat1, + ACTIONS(4651), 2, anon_sym_COLON, - ACTIONS(5723), 1, - anon_sym_EQ, - ACTIONS(5725), 1, - anon_sym_else, + anon_sym_PIPE, STATE(2578), 2, sym_line_comment, sym_block_comment, - [79756] = 8, + [79926] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(5182), 1, - anon_sym_LBRACE, - ACTIONS(5727), 1, + ACTIONS(5604), 1, + anon_sym_RBRACK, + ACTIONS(3805), 2, anon_sym_SEMI, - STATE(576), 1, - sym_block, - STATE(3778), 1, - sym_label, + anon_sym_PLUS, + ACTIONS(5031), 2, + anon_sym_PIPE, + anon_sym_COMMA, STATE(2579), 2, sym_line_comment, sym_block_comment, - [79782] = 8, + [79948] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5190), 1, + ACTIONS(4981), 1, + anon_sym_RPAREN, + ACTIONS(5743), 1, anon_sym_COLON, - ACTIONS(5494), 1, - anon_sym_GT, - ACTIONS(5496), 1, + ACTIONS(5745), 1, + anon_sym_PIPE, + ACTIONS(5747), 1, anon_sym_COMMA, - STATE(3066), 1, - sym_trait_bounds, - STATE(3067), 1, - aux_sym_type_arguments_repeat1, + STATE(2966), 1, + aux_sym_closure_parameters_repeat1, STATE(2580), 2, sym_line_comment, sym_block_comment, - [79808] = 4, + [79974] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + ACTIONS(5166), 1, + anon_sym_LBRACE, + ACTIONS(5749), 1, + anon_sym_SEMI, + STATE(593), 1, + sym_block, + STATE(3768), 1, + sym_label, STATE(2581), 2, sym_line_comment, sym_block_comment, - ACTIONS(5729), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [79826] = 5, + [80000] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4667), 2, - anon_sym_COLON, - anon_sym_PIPE, + ACTIONS(4285), 1, + anon_sym_LBRACE, + ACTIONS(5753), 1, + anon_sym_STAR, + STATE(2908), 1, + sym_use_list, + ACTIONS(5751), 2, + sym_identifier, + sym_super, STATE(2582), 2, sym_line_comment, sym_block_comment, - ACTIONS(3509), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [79846] = 4, + [80024] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + ACTIONS(5166), 1, + anon_sym_LBRACE, + ACTIONS(5755), 1, + anon_sym_SEMI, + STATE(549), 1, + sym_block, + STATE(3768), 1, + sym_label, STATE(2583), 2, sym_line_comment, sym_block_comment, - ACTIONS(3561), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [79864] = 8, + [80050] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5664), 1, - anon_sym_PIPE, - ACTIONS(5731), 1, - anon_sym_RPAREN, - ACTIONS(5733), 1, - anon_sym_COLON, - ACTIONS(5735), 1, - anon_sym_COMMA, - STATE(3193), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(3427), 1, + anon_sym_LPAREN, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(4677), 1, + anon_sym_COLON_COLON, + STATE(1401), 1, + sym_parameters, + STATE(2022), 1, + sym_type_arguments, STATE(2584), 2, sym_line_comment, sym_block_comment, - [79890] = 4, + [80076] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(5719), 1, + anon_sym_as, + ACTIONS(5757), 1, + anon_sym_COLON_COLON, STATE(2585), 2, sym_line_comment, sym_block_comment, - ACTIONS(5737), 5, + ACTIONS(5715), 3, anon_sym_SEMI, anon_sym_RBRACE, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_where, - [79908] = 4, + [80098] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + ACTIONS(5212), 1, + anon_sym_LBRACE, + ACTIONS(5759), 1, + anon_sym_SEMI, + STATE(1331), 1, + sym_block, + STATE(3771), 1, + sym_label, STATE(2586), 2, sym_line_comment, sym_block_comment, - ACTIONS(5510), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - [79926] = 4, + [80124] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + ACTIONS(5212), 1, + anon_sym_LBRACE, + ACTIONS(5761), 1, + anon_sym_SEMI, + STATE(1339), 1, + sym_block, + STATE(3771), 1, + sym_label, STATE(2587), 2, sym_line_comment, sym_block_comment, - ACTIONS(5739), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [79944] = 8, + [80150] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, + ACTIONS(3456), 1, anon_sym_SQUOTE, - ACTIONS(5182), 1, + ACTIONS(5166), 1, anon_sym_LBRACE, - ACTIONS(5741), 1, + ACTIONS(5763), 1, anon_sym_SEMI, - STATE(784), 1, + STATE(661), 1, sym_block, - STATE(3778), 1, + STATE(3768), 1, sym_label, STATE(2588), 2, sym_line_comment, sym_block_comment, - [79970] = 6, + [80176] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5745), 1, - anon_sym_COLON_COLON, - ACTIONS(5747), 1, - anon_sym_as, STATE(2589), 2, sym_line_comment, sym_block_comment, - ACTIONS(5743), 3, + ACTIONS(5765), 5, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COMMA, - [79992] = 7, + anon_sym_SQUOTE, + [80194] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4297), 1, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + ACTIONS(5212), 1, anon_sym_LBRACE, - ACTIONS(5751), 1, - anon_sym_STAR, - STATE(3126), 1, - sym_use_list, - ACTIONS(5749), 2, - sym_identifier, - sym_super, + ACTIONS(5767), 1, + anon_sym_SEMI, + STATE(1349), 1, + sym_block, + STATE(3771), 1, + sym_label, STATE(2590), 2, sym_line_comment, sym_block_comment, - [80016] = 8, + [80220] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(4687), 1, - anon_sym_LPAREN, - ACTIONS(4693), 1, - anon_sym_COLON_COLON, - STATE(2029), 1, - sym_type_arguments, - STATE(2453), 1, - sym_parameters, STATE(2591), 2, sym_line_comment, sym_block_comment, - [80042] = 8, + ACTIONS(5769), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [80238] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(348), 1, - anon_sym_LBRACE, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(1495), 1, - sym_block, - STATE(3719), 1, - sym_label, STATE(2592), 2, sym_line_comment, sym_block_comment, - [80068] = 8, + ACTIONS(5771), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + [80256] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, + ACTIONS(3456), 1, anon_sym_SQUOTE, - ACTIONS(5182), 1, + ACTIONS(5212), 1, anon_sym_LBRACE, - ACTIONS(5753), 1, + ACTIONS(5773), 1, anon_sym_SEMI, - STATE(603), 1, + STATE(1354), 1, sym_block, - STATE(3778), 1, + STATE(3771), 1, sym_label, STATE(2593), 2, sym_line_comment, sym_block_comment, - [80094] = 8, + [80282] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5664), 1, - anon_sym_PIPE, - ACTIONS(5755), 1, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + ACTIONS(5212), 1, + anon_sym_LBRACE, + ACTIONS(5775), 1, anon_sym_SEMI, - ACTIONS(5757), 1, - anon_sym_COLON, - ACTIONS(5759), 1, - anon_sym_EQ, - ACTIONS(5761), 1, - anon_sym_else, + STATE(1358), 1, + sym_block, + STATE(3771), 1, + sym_label, STATE(2594), 2, sym_line_comment, sym_block_comment, - [80120] = 6, + [80308] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5765), 1, + ACTIONS(4663), 1, + anon_sym_DOT_DOT, + ACTIONS(5306), 1, anon_sym_COLON_COLON, - ACTIONS(5767), 1, - anon_sym_as, + ACTIONS(5386), 1, + anon_sym_COLON, + ACTIONS(4665), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2595), 2, sym_line_comment, sym_block_comment, - ACTIONS(5763), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [80142] = 6, + [80332] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5767), 1, - anon_sym_as, - ACTIONS(5769), 1, - anon_sym_COLON_COLON, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + ACTIONS(5166), 1, + anon_sym_LBRACE, + ACTIONS(5777), 1, + anon_sym_SEMI, + STATE(533), 1, + sym_block, + STATE(3768), 1, + sym_label, STATE(2596), 2, sym_line_comment, sym_block_comment, - ACTIONS(5763), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [80164] = 4, + [80358] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(4285), 1, + anon_sym_LBRACE, + ACTIONS(5420), 1, + anon_sym_STAR, + STATE(2965), 1, + sym_use_list, + ACTIONS(5418), 2, + sym_identifier, + sym_super, STATE(2597), 2, sym_line_comment, sym_block_comment, - ACTIONS(3537), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [80182] = 8, + [80382] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5057), 1, - anon_sym_RPAREN, - ACTIONS(5771), 1, - anon_sym_COLON, - ACTIONS(5773), 1, - anon_sym_PIPE, - ACTIONS(5775), 1, - anon_sym_COMMA, - STATE(2973), 1, - aux_sym_closure_parameters_repeat1, STATE(2598), 2, sym_line_comment, sym_block_comment, - [80208] = 8, + ACTIONS(3503), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [80400] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(348), 1, - anon_sym_LBRACE, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(1486), 1, - sym_block, - STATE(3719), 1, - sym_label, + ACTIONS(5779), 1, + sym_identifier, STATE(2599), 2, sym_line_comment, sym_block_comment, - [80234] = 7, + ACTIONS(5781), 4, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + anon_sym_raw, + [80420] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4819), 1, - anon_sym_EQ, - ACTIONS(5190), 1, + ACTIONS(4663), 1, + anon_sym_DOT_DOT, + ACTIONS(5304), 1, anon_sym_COLON, - STATE(3160), 1, - sym_trait_bounds, - ACTIONS(4821), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(5306), 1, + anon_sym_COLON_COLON, + ACTIONS(4665), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2600), 2, sym_line_comment, sym_block_comment, - [80258] = 8, + [80444] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3079), 1, - anon_sym_POUND, - ACTIONS(5777), 1, - sym_identifier, - ACTIONS(5779), 1, - sym_integer_literal, - STATE(1086), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1386), 1, - sym_attribute_item, + ACTIONS(412), 1, + anon_sym_LBRACE, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + STATE(1726), 1, + sym_block, + STATE(3773), 1, + sym_label, STATE(2601), 2, sym_line_comment, sym_block_comment, - [80284] = 4, + [80470] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(3979), 2, + anon_sym_LPAREN, + anon_sym_COLON_COLON, STATE(2602), 2, sym_line_comment, sym_block_comment, - ACTIONS(5781), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [80302] = 4, + ACTIONS(4857), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [80490] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, @@ -183916,7 +182870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [80320] = 4, + [80508] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, @@ -183930,4486 +182884,4469 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [80338] = 8, + [80526] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(4693), 1, - anon_sym_COLON_COLON, - ACTIONS(4817), 1, - anon_sym_COLON, - STATE(2029), 1, - sym_type_arguments, - STATE(2546), 1, - sym_trait_bounds, + ACTIONS(3081), 1, + anon_sym_SQUOTE, + ACTIONS(5787), 1, + sym_identifier, + ACTIONS(5789), 1, + anon_sym_GT, + ACTIONS(5791), 1, + anon_sym_COMMA, + STATE(3016), 1, + sym_lifetime, STATE(2605), 2, sym_line_comment, sym_block_comment, - [80364] = 6, + [80552] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5767), 1, - anon_sym_as, - ACTIONS(5787), 1, + ACTIONS(4179), 1, + anon_sym_LPAREN, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(4677), 1, anon_sym_COLON_COLON, + STATE(1701), 1, + sym_parameters, + STATE(2022), 1, + sym_type_arguments, STATE(2606), 2, sym_line_comment, sym_block_comment, - ACTIONS(5763), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [80386] = 8, + [80578] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3081), 1, - anon_sym_SQUOTE, - ACTIONS(5789), 1, - sym_identifier, - ACTIONS(5791), 1, - anon_sym_GT, + ACTIONS(5083), 1, + anon_sym_LT, + ACTIONS(5085), 1, + anon_sym_where, ACTIONS(5793), 1, - anon_sym_COMMA, - STATE(2894), 1, - sym_lifetime, + anon_sym_EQ, + STATE(3177), 1, + sym_type_parameters, + STATE(3749), 1, + sym_where_clause, STATE(2607), 2, sym_line_comment, sym_block_comment, - [80412] = 8, + [80604] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(5182), 1, - anon_sym_LBRACE, - ACTIONS(5795), 1, - anon_sym_SEMI, - STATE(662), 1, - sym_block, - STATE(3778), 1, - sym_label, STATE(2608), 2, sym_line_comment, sym_block_comment, - [80438] = 7, + ACTIONS(3387), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [80622] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4679), 1, - anon_sym_DOT_DOT, - ACTIONS(5374), 1, + ACTIONS(5174), 1, anon_sym_COLON, - ACTIONS(5376), 1, - anon_sym_COLON_COLON, - ACTIONS(4681), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(5509), 1, + anon_sym_GT, + ACTIONS(5511), 1, + anon_sym_COMMA, + STATE(3018), 1, + sym_trait_bounds, + STATE(3019), 1, + aux_sym_type_arguments_repeat1, STATE(2609), 2, sym_line_comment, sym_block_comment, - [80462] = 8, + [80648] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3435), 1, - anon_sym_LPAREN, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(4693), 1, - anon_sym_COLON_COLON, - STATE(1396), 1, - sym_parameters, - STATE(2029), 1, - sym_type_arguments, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + ACTIONS(5166), 1, + anon_sym_LBRACE, + ACTIONS(5795), 1, + anon_sym_SEMI, + STATE(546), 1, + sym_block, + STATE(3768), 1, + sym_label, STATE(2610), 2, sym_line_comment, sym_block_comment, - [80488] = 7, + [80674] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4679), 1, - anon_sym_DOT_DOT, - ACTIONS(5366), 1, + ACTIONS(5651), 1, + anon_sym_PIPE, + ACTIONS(5797), 1, + anon_sym_SEMI, + ACTIONS(5799), 1, anon_sym_COLON, - ACTIONS(5376), 1, - anon_sym_COLON_COLON, - ACTIONS(4681), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(5801), 1, + anon_sym_EQ, + ACTIONS(5803), 1, + anon_sym_else, STATE(2611), 2, sym_line_comment, sym_block_comment, - [80512] = 8, + [80700] = 8, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, + ACTIONS(3456), 1, anon_sym_SQUOTE, - ACTIONS(5182), 1, + ACTIONS(5166), 1, anon_sym_LBRACE, - ACTIONS(5797), 1, + ACTIONS(5805), 1, anon_sym_SEMI, - STATE(534), 1, + STATE(583), 1, sym_block, - STATE(3778), 1, + STATE(3768), 1, sym_label, STATE(2612), 2, sym_line_comment, sym_block_comment, - [80538] = 4, + [80726] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + ACTIONS(5212), 1, + anon_sym_LBRACE, + STATE(3004), 1, + sym_block, + STATE(3771), 1, + sym_label, STATE(2613), 2, sym_line_comment, sym_block_comment, - ACTIONS(3541), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [80556] = 5, + [80749] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5799), 1, - sym_identifier, + ACTIONS(348), 1, + anon_sym_LBRACE, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + STATE(1535), 1, + sym_block, + STATE(3709), 1, + sym_label, STATE(2614), 2, sym_line_comment, sym_block_comment, - ACTIONS(5801), 4, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - anon_sym_raw, - [80576] = 8, + [80772] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5027), 1, - anon_sym_PIPE, - ACTIONS(5803), 1, - anon_sym_SEMI, - ACTIONS(5805), 1, - anon_sym_COLON, - ACTIONS(5807), 1, - anon_sym_EQ, - ACTIONS(5809), 1, - anon_sym_else, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + STATE(405), 1, + sym_block, + STATE(3776), 1, + sym_label, STATE(2615), 2, sym_line_comment, sym_block_comment, - [80602] = 8, + [80795] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(5182), 1, - anon_sym_LBRACE, - ACTIONS(5811), 1, - anon_sym_SEMI, - STATE(584), 1, - sym_block, - STATE(3778), 1, - sym_label, + ACTIONS(5807), 1, + anon_sym_COLON_COLON, STATE(2616), 2, sym_line_comment, sym_block_comment, - [80628] = 8, + ACTIONS(4891), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [80814] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5108), 1, - anon_sym_LT, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5813), 1, - anon_sym_EQ, - STATE(3182), 1, - sym_type_parameters, - STATE(3759), 1, - sym_where_clause, + ACTIONS(5809), 1, + anon_sym_COLON_COLON, STATE(2617), 2, sym_line_comment, sym_block_comment, - [80654] = 8, + ACTIONS(4877), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [80833] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(5182), 1, - anon_sym_LBRACE, - ACTIONS(5815), 1, - anon_sym_SEMI, - STATE(548), 1, - sym_block, - STATE(3778), 1, - sym_label, + ACTIONS(5811), 1, + anon_sym_COLON_COLON, STATE(2618), 2, sym_line_comment, sym_block_comment, - [80680] = 5, + ACTIONS(4877), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [80852] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5055), 2, - anon_sym_COLON, - anon_sym_PIPE, + ACTIONS(5813), 1, + anon_sym_COLON_COLON, STATE(2619), 2, sym_line_comment, sym_block_comment, - ACTIONS(4089), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [80700] = 8, + ACTIONS(4877), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [80871] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3081), 1, - anon_sym_SQUOTE, + ACTIONS(5651), 1, + anon_sym_PIPE, + ACTIONS(5815), 1, + anon_sym_RPAREN, ACTIONS(5817), 1, - sym_identifier, - ACTIONS(5819), 1, - anon_sym_GT, - ACTIONS(5821), 1, anon_sym_COMMA, - STATE(3035), 1, - sym_lifetime, + STATE(3079), 1, + aux_sym_tuple_pattern_repeat1, STATE(2620), 2, sym_line_comment, sym_block_comment, - [80726] = 7, + [80894] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(348), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(1537), 1, - sym_block, - STATE(3719), 1, - sym_label, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(5819), 1, + anon_sym_SEMI, + ACTIONS(5821), 1, + anon_sym_EQ, + ACTIONS(5823), 1, + anon_sym_else, STATE(2621), 2, sym_line_comment, sym_block_comment, - [80749] = 7, + [80917] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5120), 1, + ACTIONS(348), 1, anon_sym_LBRACE, - STATE(759), 1, - sym_declaration_list, - STATE(3424), 1, - sym_where_clause, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + STATE(3551), 1, + sym_block, + STATE(3709), 1, + sym_label, STATE(2622), 2, sym_line_comment, sym_block_comment, - [80772] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [80940] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, + ACTIONS(348), 1, + anon_sym_LBRACE, + ACTIONS(3456), 1, anon_sym_SQUOTE, - STATE(409), 1, + STATE(1534), 1, sym_block, - STATE(3621), 1, + STATE(3709), 1, sym_label, STATE(2623), 2, sym_line_comment, sym_block_comment, - [80795] = 7, + [80963] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5823), 1, - anon_sym_LPAREN, - ACTIONS(5825), 1, - anon_sym_LBRACK, - ACTIONS(5827), 1, + ACTIONS(348), 1, anon_sym_LBRACE, - STATE(2653), 1, - sym_token_tree, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + STATE(1536), 1, + sym_block, + STATE(3709), 1, + sym_label, STATE(2624), 2, sym_line_comment, sym_block_comment, - [80818] = 5, + [80986] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5829), 1, - anon_sym_COLON_COLON, + ACTIONS(5825), 1, + anon_sym_DQUOTE, + STATE(2640), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5827), 2, + sym_string_content, + sym_escape_sequence, STATE(2625), 2, sym_line_comment, sym_block_comment, - ACTIONS(4923), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [80837] = 7, + [81007] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, ACTIONS(348), 1, anon_sym_LBRACE, - ACTIONS(3459), 1, + ACTIONS(3456), 1, anon_sym_SQUOTE, - STATE(1546), 1, + STATE(3552), 1, sym_block, - STATE(3719), 1, + STATE(3709), 1, sym_label, STATE(2626), 2, sym_line_comment, sym_block_comment, - [80860] = 6, + [81030] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - STATE(3626), 1, - sym_type_arguments, - ACTIONS(5831), 2, - sym_identifier, - sym_super, + ACTIONS(1614), 1, + anon_sym_LBRACE, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + STATE(2172), 1, + sym_block, + STATE(3764), 1, + sym_label, STATE(2627), 2, sym_line_comment, sym_block_comment, - [80881] = 7, + [81053] = 7, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5833), 1, - anon_sym_SEMI, - STATE(3634), 1, - sym_where_clause, + ACTIONS(5829), 1, + anon_sym_async, + ACTIONS(5831), 1, + anon_sym_move, + STATE(209), 1, + sym_closure_parameters, STATE(2628), 2, sym_line_comment, sym_block_comment, - [80904] = 6, + [81076] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - STATE(3735), 1, - sym_type_arguments, - ACTIONS(5831), 2, - sym_identifier, - sym_super, + ACTIONS(1380), 1, + anon_sym_LBRACE, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + STATE(483), 1, + sym_block, + STATE(3772), 1, + sym_label, STATE(2629), 2, sym_line_comment, sym_block_comment, - [80925] = 7, + [81099] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(5835), 1, - sym_identifier, - ACTIONS(5837), 1, - sym_super, - STATE(2133), 1, - sym_type_arguments, + ACTIONS(4823), 1, + anon_sym_DOT_DOT, + ACTIONS(5833), 1, + anon_sym_COLON_COLON, + ACTIONS(4825), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2630), 2, sym_line_comment, sym_block_comment, - [80948] = 5, + [81120] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5839), 1, - anon_sym_COLON_COLON, + ACTIONS(5651), 1, + anon_sym_PIPE, + ACTIONS(5835), 1, + anon_sym_RBRACK, + ACTIONS(5837), 1, + anon_sym_COMMA, + STATE(3140), 1, + aux_sym_slice_pattern_repeat1, STATE(2631), 2, sym_line_comment, sym_block_comment, - ACTIONS(4897), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [80967] = 7, + [81143] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5106), 1, - anon_sym_LBRACE, - ACTIONS(5110), 1, - anon_sym_where, - STATE(629), 1, - sym_field_declaration_list, - STATE(3273), 1, - sym_where_clause, + ACTIONS(3435), 1, + anon_sym_LT2, + ACTIONS(3763), 1, + anon_sym_COLON_COLON, + ACTIONS(4971), 1, + anon_sym_BANG, + STATE(1422), 1, + sym_type_arguments, STATE(2632), 2, sym_line_comment, sym_block_comment, - [80990] = 5, + [81166] = 6, + ACTIONS(101), 1, + aux_sym_string_literal_token1, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5841), 1, - anon_sym_COLON_COLON, + STATE(2280), 1, + sym_string_literal, + ACTIONS(4915), 2, + anon_sym_SEMI, + anon_sym_LBRACE, STATE(2633), 2, sym_line_comment, sym_block_comment, - ACTIONS(4897), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [81009] = 4, + [81187] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(5402), 1, + anon_sym_LPAREN, + ACTIONS(5404), 1, + anon_sym_LBRACK, + ACTIONS(5408), 1, + anon_sym_LBRACE, + STATE(1450), 1, + sym_delim_token_tree, STATE(2634), 2, sym_line_comment, sym_block_comment, - ACTIONS(988), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [81026] = 7, + [81210] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(4699), 1, - anon_sym_BANG, - ACTIONS(4788), 1, - anon_sym_COLON_COLON, - STATE(2033), 1, - sym_type_arguments, + ACTIONS(348), 1, + anon_sym_LBRACE, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + STATE(1495), 1, + sym_block, + STATE(3709), 1, + sym_label, STATE(2635), 2, sym_line_comment, sym_block_comment, - [81049] = 7, + [81233] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5664), 1, - anon_sym_PIPE, - ACTIONS(5731), 1, - anon_sym_RPAREN, - ACTIONS(5735), 1, - anon_sym_COMMA, - STATE(3193), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(348), 1, + anon_sym_LBRACE, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + STATE(1387), 1, + sym_block, + STATE(3709), 1, + sym_label, STATE(2636), 2, sym_line_comment, sym_block_comment, - [81072] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [81256] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(414), 1, - sym_block, - STATE(3621), 1, - sym_label, + ACTIONS(5839), 1, + anon_sym_LPAREN, + ACTIONS(5841), 1, + anon_sym_LBRACK, + ACTIONS(5843), 1, + anon_sym_LBRACE, + STATE(418), 1, + sym_delim_token_tree, STATE(2637), 2, sym_line_comment, sym_block_comment, - [81095] = 7, + [81279] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1386), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(494), 1, - sym_block, - STATE(3782), 1, - sym_label, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(5845), 1, + anon_sym_RPAREN, + ACTIONS(5847), 1, + anon_sym_COMMA, + STATE(3129), 1, + aux_sym_ordered_field_declaration_list_repeat1, STATE(2638), 2, sym_line_comment, sym_block_comment, - [81118] = 7, + [81302] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1386), 1, + ACTIONS(348), 1, anon_sym_LBRACE, - ACTIONS(3459), 1, + ACTIONS(3456), 1, anon_sym_SQUOTE, - STATE(482), 1, + STATE(1445), 1, sym_block, - STATE(3782), 1, + STATE(3709), 1, sym_label, STATE(2639), 2, sym_line_comment, sym_block_comment, - [81141] = 6, + [81325] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5843), 1, + ACTIONS(5849), 1, anon_sym_DQUOTE, - STATE(2655), 1, + STATE(2873), 1, aux_sym_string_literal_repeat1, - ACTIONS(5845), 2, + ACTIONS(5827), 2, sym_string_content, sym_escape_sequence, STATE(2640), 2, sym_line_comment, sym_block_comment, - [81162] = 5, + [81346] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5847), 1, - anon_sym_COLON_COLON, + ACTIONS(5402), 1, + anon_sym_LPAREN, + ACTIONS(5404), 1, + anon_sym_LBRACK, + ACTIONS(5408), 1, + anon_sym_LBRACE, + STATE(1446), 1, + sym_delim_token_tree, STATE(2641), 2, sym_line_comment, sym_block_comment, - ACTIONS(4897), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [81181] = 7, + [81369] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - ACTIONS(5232), 1, - anon_sym_LBRACE, - STATE(3016), 1, - sym_block, - STATE(3781), 1, - sym_label, + ACTIONS(3435), 1, + anon_sym_LT2, + ACTIONS(5418), 1, + sym_super, + ACTIONS(5851), 1, + sym_identifier, + STATE(1638), 1, + sym_type_arguments, STATE(2642), 2, sym_line_comment, sym_block_comment, - [81204] = 7, - ACTIONS(27), 1, - anon_sym_PIPE, + [81392] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5849), 1, - anon_sym_async, - ACTIONS(5851), 1, - anon_sym_move, - STATE(229), 1, - sym_closure_parameters, + ACTIONS(4671), 1, + anon_sym_LPAREN, + ACTIONS(5083), 1, + anon_sym_LT, + STATE(2331), 1, + sym_parameters, + STATE(3451), 1, + sym_type_parameters, STATE(2643), 2, sym_line_comment, sym_block_comment, - [81227] = 7, + [81415] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(412), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(1728), 1, - sym_block, - STATE(3783), 1, - sym_label, + ACTIONS(3435), 1, + anon_sym_LT2, + ACTIONS(5418), 1, + sym_super, + ACTIONS(5851), 1, + sym_identifier, + STATE(1625), 1, + sym_type_arguments, STATE(2644), 2, sym_line_comment, sym_block_comment, - [81250] = 7, + [81438] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5664), 1, - anon_sym_PIPE, ACTIONS(5853), 1, - anon_sym_RPAREN, - ACTIONS(5855), 1, anon_sym_COMMA, - STATE(2899), 1, - aux_sym_slice_pattern_repeat1, - STATE(2645), 2, + ACTIONS(4355), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(2645), 3, sym_line_comment, sym_block_comment, - [81273] = 7, + aux_sym_arguments_repeat1, + [81457] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5857), 1, + ACTIONS(5651), 1, + anon_sym_PIPE, + ACTIONS(5856), 1, anon_sym_RPAREN, - ACTIONS(5859), 1, + ACTIONS(5858), 1, anon_sym_COMMA, - STATE(3026), 1, - aux_sym_tuple_type_repeat1, + STATE(3175), 1, + aux_sym_tuple_pattern_repeat1, STATE(2646), 2, sym_line_comment, sym_block_comment, - [81296] = 7, + [81480] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4175), 1, - anon_sym_LT2, - ACTIONS(4363), 1, - anon_sym_COLON_COLON, - ACTIONS(5033), 1, - anon_sym_BANG, - STATE(1717), 1, - sym_type_arguments, + ACTIONS(5651), 1, + anon_sym_PIPE, + ACTIONS(5860), 1, + anon_sym_RBRACK, + ACTIONS(5862), 1, + anon_sym_COMMA, + STATE(3179), 1, + aux_sym_slice_pattern_repeat1, STATE(2647), 2, sym_line_comment, sym_block_comment, - [81319] = 5, + [81503] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5861), 1, - anon_sym_in, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(5864), 1, + anon_sym_SEMI, + STATE(3561), 1, + sym_where_clause, STATE(2648), 2, sym_line_comment, sym_block_comment, - ACTIONS(5863), 3, - sym_self, - sym_super, - sym_crate, - [81338] = 7, + [81526] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5120), 1, - anon_sym_LBRACE, - STATE(688), 1, - sym_declaration_list, - STATE(3369), 1, - sym_where_clause, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(5866), 1, + sym_identifier, + ACTIONS(5868), 1, + sym_super, + STATE(2125), 1, + sym_type_arguments, STATE(2649), 2, sym_line_comment, sym_block_comment, - [81361] = 7, + [81549] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5865), 1, - anon_sym_LPAREN, - ACTIONS(5867), 1, - anon_sym_LBRACK, - ACTIONS(5869), 1, - anon_sym_LBRACE, - STATE(2046), 1, - sym_delim_token_tree, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(5866), 1, + sym_identifier, + ACTIONS(5868), 1, + sym_super, + STATE(2124), 1, + sym_type_arguments, STATE(2650), 2, sym_line_comment, sym_block_comment, - [81384] = 7, + [81572] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1386), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(497), 1, - sym_block, - STATE(3782), 1, - sym_label, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(5870), 1, + anon_sym_RPAREN, + ACTIONS(5872), 1, + anon_sym_COMMA, + STATE(2877), 1, + aux_sym_tuple_type_repeat1, STATE(2651), 2, sym_line_comment, sym_block_comment, - [81407] = 7, + [81595] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1386), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, + ACTIONS(3456), 1, anon_sym_SQUOTE, - STATE(463), 1, + STATE(416), 1, sym_block, - STATE(3782), 1, + STATE(3776), 1, sym_label, STATE(2652), 2, sym_line_comment, sym_block_comment, - [81430] = 4, + [81618] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(5418), 1, + sym_super, + ACTIONS(5874), 1, + sym_identifier, + STATE(3680), 1, + sym_type_arguments, STATE(2653), 2, sym_line_comment, sym_block_comment, - ACTIONS(5871), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [81447] = 7, + [81641] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1386), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(477), 1, - sym_block, - STATE(3782), 1, - sym_label, + ACTIONS(3427), 1, + anon_sym_LPAREN, + ACTIONS(4669), 1, + anon_sym_LT2, + STATE(1403), 1, + sym_parameters, + STATE(2023), 1, + sym_type_arguments, STATE(2654), 2, sym_line_comment, sym_block_comment, - [81470] = 6, + [81664] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5873), 1, - anon_sym_DQUOTE, - STATE(2725), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5845), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(5418), 1, + sym_super, + ACTIONS(5874), 1, + sym_identifier, + STATE(3766), 1, + sym_type_arguments, STATE(2655), 2, sym_line_comment, sym_block_comment, - [81491] = 7, + [81687] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5865), 1, - anon_sym_LPAREN, - ACTIONS(5867), 1, - anon_sym_LBRACK, - ACTIONS(5869), 1, - anon_sym_LBRACE, - STATE(2049), 1, - sym_delim_token_tree, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(5876), 1, + anon_sym_SEMI, + STATE(3609), 1, + sym_where_clause, STATE(2656), 2, sym_line_comment, sym_block_comment, - [81514] = 7, + [81710] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4175), 1, - anon_sym_LT2, - ACTIONS(5875), 1, - sym_identifier, - ACTIONS(5877), 1, - sym_super, - STATE(1628), 1, - sym_type_arguments, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(5450), 1, + anon_sym_LBRACE, + STATE(1119), 1, + sym_enum_variant_list, + STATE(3268), 1, + sym_where_clause, STATE(2657), 2, sym_line_comment, sym_block_comment, - [81537] = 7, + [81733] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4175), 1, - anon_sym_LT2, - ACTIONS(5875), 1, - sym_identifier, - ACTIONS(5877), 1, - sym_super, - STATE(1631), 1, - sym_type_arguments, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(5438), 1, + anon_sym_LBRACE, + STATE(707), 1, + sym_enum_variant_list, + STATE(3300), 1, + sym_where_clause, STATE(2658), 2, sym_line_comment, sym_block_comment, - [81560] = 7, + [81756] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5831), 1, - sym_super, - ACTIONS(5879), 1, - sym_identifier, - ACTIONS(5881), 1, - anon_sym_LT2, - STATE(2526), 1, - sym_type_arguments, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(5878), 1, + anon_sym_SEMI, + STATE(3612), 1, + sym_where_clause, STATE(2659), 2, sym_line_comment, sym_block_comment, - [81583] = 7, + [81779] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5831), 1, - sym_super, - ACTIONS(5879), 1, - sym_identifier, - ACTIONS(5881), 1, - anon_sym_LT2, - STATE(2527), 1, - sym_type_arguments, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(5089), 1, + anon_sym_LBRACE, + STATE(1132), 1, + sym_declaration_list, + STATE(3198), 1, + sym_where_clause, STATE(2660), 2, sym_line_comment, sym_block_comment, - [81606] = 7, + [81802] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5883), 1, - anon_sym_RPAREN, - ACTIONS(5885), 1, - anon_sym_COMMA, - STATE(3031), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(5099), 1, + anon_sym_LBRACE, + STATE(1138), 1, + sym_field_declaration_list, + STATE(3217), 1, + sym_where_clause, STATE(2661), 2, sym_line_comment, sym_block_comment, - [81629] = 6, + [81825] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - STATE(3626), 1, - sym_type_arguments, - ACTIONS(5837), 2, - sym_identifier, - sym_super, + ACTIONS(5073), 1, + anon_sym_LBRACE, + ACTIONS(5085), 1, + anon_sym_where, + STATE(622), 1, + sym_declaration_list, + STATE(3295), 1, + sym_where_clause, STATE(2662), 2, sym_line_comment, sym_block_comment, - [81650] = 7, + [81848] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(5410), 1, - sym_super, - ACTIONS(5835), 1, - sym_identifier, - STATE(3626), 1, - sym_type_arguments, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + STATE(290), 1, + sym_block, + STATE(3776), 1, + sym_label, STATE(2663), 2, sym_line_comment, sym_block_comment, - [81673] = 7, + [81871] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5664), 1, - anon_sym_PIPE, - ACTIONS(5887), 1, - anon_sym_RPAREN, - ACTIONS(5889), 1, - anon_sym_COMMA, - STATE(2937), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(5880), 1, + anon_sym_COLON, STATE(2664), 2, sym_line_comment, sym_block_comment, - [81696] = 7, + ACTIONS(4965), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [81890] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4171), 1, - anon_sym_LPAREN, - ACTIONS(4685), 1, - anon_sym_LT2, - STATE(1664), 1, - sym_parameters, - STATE(2026), 1, - sym_type_arguments, + ACTIONS(348), 1, + anon_sym_LBRACE, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + STATE(1530), 1, + sym_block, + STATE(3709), 1, + sym_label, STATE(2665), 2, sym_line_comment, sym_block_comment, - [81719] = 7, - ACTIONS(105), 1, + [81913] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(5410), 1, - sym_super, - ACTIONS(5835), 1, - sym_identifier, - STATE(3735), 1, - sym_type_arguments, + ACTIONS(5882), 1, + aux_sym_token_repetition_pattern_token1, STATE(2666), 2, sym_line_comment, sym_block_comment, - [81742] = 7, + ACTIONS(5884), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [81932] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5891), 1, - anon_sym_SEMI, - STATE(3549), 1, - sym_where_clause, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(5886), 1, + anon_sym_COLON_COLON, + ACTIONS(5888), 1, + anon_sym_for, + STATE(2022), 1, + sym_type_arguments, STATE(2667), 2, sym_line_comment, sym_block_comment, - [81765] = 7, + [81955] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1386), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(475), 1, - sym_block, - STATE(3782), 1, - sym_label, STATE(2668), 2, sym_line_comment, sym_block_comment, - [81788] = 7, + ACTIONS(1030), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [81972] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5664), 1, - anon_sym_PIPE, - ACTIONS(5893), 1, - anon_sym_RPAREN, - ACTIONS(5895), 1, - anon_sym_COMMA, - STATE(3119), 1, - aux_sym_tuple_pattern_repeat1, + ACTIONS(4669), 1, + anon_sym_LT2, + STATE(3680), 1, + sym_type_arguments, + ACTIONS(5868), 2, + sym_identifier, + sym_super, STATE(2669), 2, sym_line_comment, sym_block_comment, - [81811] = 7, + [81993] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5664), 1, - anon_sym_PIPE, - ACTIONS(5897), 1, - anon_sym_RPAREN, - ACTIONS(5899), 1, - anon_sym_COMMA, - STATE(2939), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(4669), 1, + anon_sym_LT2, + STATE(3766), 1, + sym_type_arguments, + ACTIONS(5868), 2, + sym_identifier, + sym_super, STATE(2670), 2, sym_line_comment, sym_block_comment, - [81834] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [82014] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(421), 1, - sym_block, - STATE(3621), 1, - sym_label, + ACTIONS(4669), 1, + anon_sym_LT2, + STATE(3680), 1, + sym_type_arguments, + ACTIONS(5890), 2, + sym_identifier, + sym_super, STATE(2671), 2, sym_line_comment, sym_block_comment, - [81857] = 7, + [82035] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1366), 1, - anon_sym_RPAREN, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5631), 1, - anon_sym_COMMA, - STATE(2974), 1, - aux_sym_parameters_repeat1, + ACTIONS(4669), 1, + anon_sym_LT2, + STATE(3766), 1, + sym_type_arguments, + ACTIONS(5890), 2, + sym_identifier, + sym_super, STATE(2672), 2, sym_line_comment, sym_block_comment, - [81880] = 7, + [82056] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5699), 1, + ACTIONS(5651), 1, + anon_sym_PIPE, + ACTIONS(5892), 1, anon_sym_RPAREN, - ACTIONS(5701), 1, + ACTIONS(5894), 1, anon_sym_COMMA, - STATE(3045), 1, - aux_sym_parameters_repeat1, + STATE(2915), 1, + aux_sym_slice_pattern_repeat1, STATE(2673), 2, sym_line_comment, sym_block_comment, - [81903] = 7, + [82079] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3081), 1, - anon_sym_SQUOTE, - ACTIONS(5901), 1, - sym_identifier, - ACTIONS(5903), 1, - anon_sym_GT, - STATE(3307), 1, - sym_lifetime, + ACTIONS(5651), 1, + anon_sym_PIPE, + ACTIONS(5896), 1, + anon_sym_RPAREN, + ACTIONS(5898), 1, + anon_sym_COMMA, + STATE(2918), 1, + aux_sym_slice_pattern_repeat1, STATE(2674), 2, sym_line_comment, sym_block_comment, - [81926] = 5, + [82102] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3173), 1, + ACTIONS(3163), 1, anon_sym_PLUS, + ACTIONS(5655), 1, + anon_sym_RPAREN, + ACTIONS(5657), 1, + anon_sym_COMMA, + STATE(2922), 1, + aux_sym_parameters_repeat1, STATE(2675), 2, sym_line_comment, sym_block_comment, - ACTIONS(5905), 3, - anon_sym_COLON, - anon_sym_GT, - anon_sym_COMMA, - [81945] = 7, + [82125] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5907), 1, - anon_sym_SEMI, - ACTIONS(5909), 1, - anon_sym_EQ, - ACTIONS(5911), 1, - anon_sym_else, + ACTIONS(5081), 1, + anon_sym_LBRACE, + ACTIONS(5085), 1, + anon_sym_where, + STATE(713), 1, + sym_field_declaration_list, + STATE(3406), 1, + sym_where_clause, STATE(2676), 2, sym_line_comment, sym_block_comment, - [81968] = 7, + [82148] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3081), 1, - anon_sym_SQUOTE, - ACTIONS(5901), 1, - sym_identifier, - ACTIONS(5913), 1, - anon_sym_GT, - STATE(3307), 1, - sym_lifetime, + ACTIONS(5807), 1, + anon_sym_COLON_COLON, STATE(2677), 2, sym_line_comment, sym_block_comment, - [81991] = 5, + ACTIONS(4927), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [82167] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5847), 1, + ACTIONS(5809), 1, anon_sym_COLON_COLON, STATE(2678), 2, sym_line_comment, sym_block_comment, - ACTIONS(4935), 3, + ACTIONS(4937), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [82010] = 5, - ACTIONS(3), 1, + [82186] = 5, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5915), 1, - aux_sym_token_repetition_pattern_token1, + ACTIONS(5811), 1, + anon_sym_COLON_COLON, STATE(2679), 2, sym_line_comment, sym_block_comment, - ACTIONS(5917), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [82029] = 7, + ACTIONS(4937), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [82205] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1386), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(487), 1, - sym_block, - STATE(3782), 1, - sym_label, + ACTIONS(4671), 1, + anon_sym_LPAREN, + ACTIONS(5083), 1, + anon_sym_LT, + STATE(2314), 1, + sym_parameters, + STATE(3445), 1, + sym_type_parameters, STATE(2680), 2, sym_line_comment, sym_block_comment, - [82052] = 6, + [82228] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5190), 1, - anon_sym_COLON, - STATE(3496), 1, - sym_trait_bounds, - ACTIONS(5709), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(5900), 1, + anon_sym_SEMI, + ACTIONS(5902), 1, + anon_sym_EQ, + ACTIONS(5904), 1, + anon_sym_else, STATE(2681), 2, sym_line_comment, sym_block_comment, - [82073] = 7, + [82251] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5611), 1, - anon_sym_RPAREN, - ACTIONS(5613), 1, - anon_sym_COMMA, - STATE(2944), 1, - aux_sym_parameters_repeat1, + ACTIONS(5813), 1, + anon_sym_COLON_COLON, STATE(2682), 2, sym_line_comment, sym_block_comment, - [82096] = 7, + ACTIONS(4937), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [82270] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1372), 1, - anon_sym_RPAREN, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5711), 1, - anon_sym_COMMA, - STATE(3052), 1, - aux_sym_parameters_repeat1, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(5089), 1, + anon_sym_LBRACE, + STATE(1175), 1, + sym_declaration_list, + STATE(3224), 1, + sym_where_clause, STATE(2683), 2, sym_line_comment, sym_block_comment, - [82119] = 7, + [82293] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3081), 1, - anon_sym_SQUOTE, - ACTIONS(5901), 1, - sym_identifier, - ACTIONS(5919), 1, - anon_sym_GT, - STATE(3307), 1, - sym_lifetime, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(5906), 1, + anon_sym_SEMI, + STATE(3666), 1, + sym_where_clause, STATE(2684), 2, sym_line_comment, sym_block_comment, - [82142] = 7, + [82316] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3081), 1, - anon_sym_SQUOTE, - ACTIONS(5901), 1, - sym_identifier, - ACTIONS(5921), 1, - anon_sym_GT, - STATE(3307), 1, - sym_lifetime, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(5089), 1, + anon_sym_LBRACE, + STATE(1186), 1, + sym_declaration_list, + STATE(3230), 1, + sym_where_clause, STATE(2685), 2, sym_line_comment, sym_block_comment, - [82165] = 7, + [82339] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, ACTIONS(348), 1, anon_sym_LBRACE, - ACTIONS(3459), 1, + ACTIONS(3456), 1, anon_sym_SQUOTE, - STATE(1510), 1, - sym_block, - STATE(3719), 1, + STATE(3709), 1, sym_label, + STATE(3734), 1, + sym_block, STATE(2686), 2, sym_line_comment, sym_block_comment, - [82188] = 7, + [82362] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3081), 1, - anon_sym_SQUOTE, - ACTIONS(5901), 1, - sym_identifier, - ACTIONS(5923), 1, - anon_sym_GT, - STATE(3307), 1, - sym_lifetime, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(5450), 1, + anon_sym_LBRACE, + STATE(1191), 1, + sym_enum_variant_list, + STATE(3233), 1, + sym_where_clause, STATE(2687), 2, sym_line_comment, sym_block_comment, - [82211] = 7, + [82385] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3081), 1, - anon_sym_SQUOTE, - ACTIONS(5901), 1, - sym_identifier, - ACTIONS(5925), 1, - anon_sym_GT, - STATE(3307), 1, - sym_lifetime, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(5099), 1, + anon_sym_LBRACE, + STATE(1197), 1, + sym_field_declaration_list, + STATE(3242), 1, + sym_where_clause, STATE(2688), 2, sym_line_comment, sym_block_comment, - [82234] = 5, - ACTIONS(3), 1, + [82408] = 6, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5927), 1, - aux_sym_token_repetition_pattern_token1, + ACTIONS(4669), 1, + anon_sym_LT2, + STATE(3680), 1, + sym_type_arguments, + ACTIONS(5418), 2, + sym_identifier, + sym_super, STATE(2689), 2, sym_line_comment, sym_block_comment, - ACTIONS(5929), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [82253] = 7, + [82429] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(412), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(1727), 1, - sym_block, - STATE(3783), 1, - sym_label, + ACTIONS(4669), 1, + anon_sym_LT2, + STATE(3766), 1, + sym_type_arguments, + ACTIONS(5418), 2, + sym_identifier, + sym_super, STATE(2690), 2, sym_line_comment, sym_block_comment, - [82276] = 7, + [82450] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(412), 1, + ACTIONS(348), 1, anon_sym_LBRACE, - ACTIONS(3459), 1, + ACTIONS(3456), 1, anon_sym_SQUOTE, - STATE(1729), 1, + STATE(1431), 1, sym_block, - STATE(3783), 1, + STATE(3709), 1, sym_label, STATE(2691), 2, sym_line_comment, sym_block_comment, - [82299] = 6, + [82473] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5931), 1, - anon_sym_DQUOTE, - STATE(2702), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5845), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(5807), 1, + anon_sym_COLON_COLON, STATE(2692), 2, sym_line_comment, sym_block_comment, - [82320] = 7, + ACTIONS(4897), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [82492] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(348), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(3553), 1, - sym_block, - STATE(3719), 1, - sym_label, + ACTIONS(5809), 1, + anon_sym_COLON_COLON, STATE(2693), 2, sym_line_comment, sym_block_comment, - [82343] = 7, + ACTIONS(4903), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [82511] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1386), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(481), 1, - sym_block, - STATE(3782), 1, - sym_label, + ACTIONS(5811), 1, + anon_sym_COLON_COLON, STATE(2694), 2, sym_line_comment, sym_block_comment, - [82366] = 7, - ACTIONS(27), 1, + ACTIONS(4903), 3, + anon_sym_EQ_GT, anon_sym_PIPE, + anon_sym_if, + [82530] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5174), 1, - anon_sym_move, - ACTIONS(5933), 1, - anon_sym_async, - STATE(243), 1, - sym_closure_parameters, + ACTIONS(5813), 1, + anon_sym_COLON_COLON, STATE(2695), 2, sym_line_comment, sym_block_comment, - [82389] = 6, + ACTIONS(4903), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [82549] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - STATE(3626), 1, - sym_type_arguments, - ACTIONS(5410), 2, - sym_identifier, - sym_super, + ACTIONS(5073), 1, + anon_sym_LBRACE, + ACTIONS(5085), 1, + anon_sym_where, + STATE(758), 1, + sym_declaration_list, + STATE(3420), 1, + sym_where_clause, STATE(2696), 2, sym_line_comment, sym_block_comment, - [82410] = 7, + [82572] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(348), 1, + ACTIONS(5081), 1, anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(3554), 1, - sym_block, - STATE(3719), 1, - sym_label, + ACTIONS(5085), 1, + anon_sym_where, + STATE(628), 1, + sym_field_declaration_list, + STATE(3360), 1, + sym_where_clause, STATE(2697), 2, sym_line_comment, sym_block_comment, - [82433] = 7, + [82595] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5935), 1, - anon_sym_LPAREN, - ACTIONS(5937), 1, - anon_sym_LBRACK, - ACTIONS(5939), 1, - anon_sym_LBRACE, - STATE(1079), 1, - sym_delim_token_tree, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(4683), 1, + anon_sym_BANG, + ACTIONS(4760), 1, + anon_sym_COLON_COLON, + STATE(2024), 1, + sym_type_arguments, STATE(2698), 2, sym_line_comment, sym_block_comment, - [82456] = 7, + [82618] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(412), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(1738), 1, - sym_block, - STATE(3783), 1, - sym_label, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(5868), 1, + sym_super, + ACTIONS(5908), 1, + sym_identifier, + STATE(2125), 1, + sym_type_arguments, STATE(2699), 2, sym_line_comment, sym_block_comment, - [82479] = 7, + [82641] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(412), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(1650), 1, - sym_block, - STATE(3783), 1, - sym_label, + ACTIONS(1378), 1, + anon_sym_RPAREN, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(5587), 1, + anon_sym_COMMA, + STATE(2949), 1, + aux_sym_parameters_repeat1, STATE(2700), 2, sym_line_comment, sym_block_comment, - [82502] = 7, + [82664] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(412), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, + ACTIONS(3081), 1, anon_sym_SQUOTE, - STATE(1740), 1, - sym_block, - STATE(3783), 1, - sym_label, + ACTIONS(5910), 1, + sym_identifier, + ACTIONS(5912), 1, + anon_sym_GT, + STATE(3302), 1, + sym_lifetime, STATE(2701), 2, sym_line_comment, sym_block_comment, - [82525] = 6, + [82687] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5941), 1, - anon_sym_DQUOTE, - STATE(2725), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5845), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(3081), 1, + anon_sym_SQUOTE, + ACTIONS(5910), 1, + sym_identifier, + ACTIONS(5914), 1, + anon_sym_GT, + STATE(3302), 1, + sym_lifetime, STATE(2702), 2, sym_line_comment, sym_block_comment, - [82546] = 7, + [82710] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5935), 1, - anon_sym_LPAREN, - ACTIONS(5937), 1, - anon_sym_LBRACK, - ACTIONS(5939), 1, - anon_sym_LBRACE, - STATE(1073), 1, - sym_delim_token_tree, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(5916), 1, + anon_sym_SEMI, + ACTIONS(5918), 1, + anon_sym_EQ, + ACTIONS(5920), 1, + anon_sym_else, STATE(2703), 2, sym_line_comment, sym_block_comment, - [82569] = 7, + [82733] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(5837), 1, - sym_super, - ACTIONS(5943), 1, - sym_identifier, - STATE(2133), 1, - sym_type_arguments, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(5922), 1, + anon_sym_SEMI, + STATE(3713), 1, + sym_where_clause, STATE(2704), 2, sym_line_comment, sym_block_comment, - [82592] = 7, + [82756] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(5837), 1, - sym_super, - ACTIONS(5943), 1, - sym_identifier, - STATE(2132), 1, - sym_type_arguments, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(5924), 1, + anon_sym_SEMI, + STATE(3714), 1, + sym_where_clause, STATE(2705), 2, sym_line_comment, sym_block_comment, - [82615] = 7, + [82779] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(5837), 1, - sym_super, - ACTIONS(5945), 1, - sym_identifier, - STATE(3626), 1, - sym_type_arguments, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(5089), 1, + anon_sym_LBRACE, + STATE(1233), 1, + sym_declaration_list, + STATE(3338), 1, + sym_where_clause, STATE(2706), 2, sym_line_comment, sym_block_comment, - [82638] = 7, + [82802] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(5837), 1, - sym_super, - ACTIONS(5945), 1, - sym_identifier, - STATE(3735), 1, - sym_type_arguments, + ACTIONS(5647), 1, + anon_sym_RPAREN, + ACTIONS(5651), 1, + anon_sym_PIPE, + ACTIONS(5653), 1, + anon_sym_COMMA, + STATE(3070), 1, + aux_sym_slice_pattern_repeat1, STATE(2707), 2, sym_line_comment, sym_block_comment, - [82661] = 6, + [82825] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - STATE(3735), 1, - sym_type_arguments, - ACTIONS(5410), 2, - sym_identifier, - sym_super, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + STATE(394), 1, + sym_block, + STATE(3776), 1, + sym_label, STATE(2708), 2, sym_line_comment, sym_block_comment, - [82682] = 7, + [82848] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3443), 1, - anon_sym_LT2, - ACTIONS(5410), 1, - sym_super, - ACTIONS(5947), 1, - sym_identifier, - STATE(1505), 1, - sym_type_arguments, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(5926), 1, + anon_sym_SEMI, + STATE(3760), 1, + sym_where_clause, STATE(2709), 2, sym_line_comment, sym_block_comment, - [82705] = 7, + [82871] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(412), 1, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(5089), 1, anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(1757), 1, - sym_block, - STATE(3783), 1, - sym_label, + STATE(1247), 1, + sym_declaration_list, + STATE(3490), 1, + sym_where_clause, STATE(2710), 2, sym_line_comment, sym_block_comment, - [82728] = 7, + [82894] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(348), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, + ACTIONS(3081), 1, anon_sym_SQUOTE, - STATE(1533), 1, - sym_block, - STATE(3719), 1, - sym_label, + ACTIONS(5910), 1, + sym_identifier, + ACTIONS(5928), 1, + anon_sym_GT, + STATE(3302), 1, + sym_lifetime, STATE(2711), 2, sym_line_comment, sym_block_comment, - [82751] = 7, - ACTIONS(27), 1, - anon_sym_PIPE, + [82917] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5949), 1, - anon_sym_async, - ACTIONS(5951), 1, - anon_sym_move, - STATE(230), 1, - sym_closure_parameters, + ACTIONS(3081), 1, + anon_sym_SQUOTE, + ACTIONS(5910), 1, + sym_identifier, + ACTIONS(5930), 1, + anon_sym_GT, + STATE(3302), 1, + sym_lifetime, STATE(2712), 2, sym_line_comment, sym_block_comment, - [82774] = 7, + [82940] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5953), 1, - anon_sym_SEMI, - ACTIONS(5955), 1, - anon_sym_EQ, - ACTIONS(5957), 1, - anon_sym_else, + ACTIONS(5932), 1, + anon_sym_LPAREN, + ACTIONS(5934), 1, + anon_sym_LBRACK, + ACTIONS(5936), 1, + anon_sym_LBRACE, + STATE(2751), 1, + sym_token_tree, STATE(2713), 2, sym_line_comment, sym_block_comment, - [82797] = 7, + [82963] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(348), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(1535), 1, - sym_block, - STATE(3719), 1, - sym_label, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(5938), 1, + anon_sym_SEMI, + STATE(3542), 1, + sym_where_clause, STATE(2714), 2, sym_line_comment, sym_block_comment, - [82820] = 5, + [82986] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4667), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5959), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(5940), 1, + anon_sym_SEMI, + STATE(3584), 1, + sym_where_clause, STATE(2715), 2, sym_line_comment, sym_block_comment, - [82839] = 7, + [83009] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3163), 1, anon_sym_PLUS, - ACTIONS(5705), 1, - anon_sym_RPAREN, - ACTIONS(5707), 1, - anon_sym_COMMA, - STATE(2924), 1, - aux_sym_parameters_repeat1, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(5942), 1, + anon_sym_SEMI, + STATE(3586), 1, + sym_where_clause, STATE(2716), 2, sym_line_comment, sym_block_comment, - [82862] = 7, + [83032] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(412), 1, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(5089), 1, anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(1765), 1, - sym_block, - STATE(3783), 1, - sym_label, + STATE(1298), 1, + sym_declaration_list, + STATE(3397), 1, + sym_where_clause, STATE(2717), 2, sym_line_comment, sym_block_comment, - [82885] = 6, + [83055] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5961), 1, - anon_sym_DQUOTE, - STATE(2784), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5845), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(5073), 1, + anon_sym_LBRACE, + ACTIONS(5085), 1, + anon_sym_where, + STATE(688), 1, + sym_declaration_list, + STATE(3303), 1, + sym_where_clause, STATE(2718), 2, sym_line_comment, sym_block_comment, - [82906] = 7, + [83078] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1358), 1, - anon_sym_RPAREN, - ACTIONS(3213), 1, + ACTIONS(3163), 1, anon_sym_PLUS, - ACTIONS(5599), 1, - anon_sym_COMMA, - STATE(3081), 1, - aux_sym_parameters_repeat1, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(5944), 1, + anon_sym_SEMI, + STATE(3719), 1, + sym_where_clause, STATE(2719), 2, sym_line_comment, sym_block_comment, - [82929] = 5, + [83101] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4667), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5963), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(5946), 1, + anon_sym_SEMI, + STATE(3631), 1, + sym_where_clause, STATE(2720), 2, sym_line_comment, sym_block_comment, - [82948] = 6, + [83124] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5965), 1, - anon_sym_DQUOTE, - STATE(2727), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5845), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(5868), 1, + sym_super, + ACTIONS(5908), 1, + sym_identifier, + STATE(2124), 1, + sym_type_arguments, STATE(2721), 2, sym_line_comment, sym_block_comment, - [82969] = 7, + [83147] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5664), 1, - anon_sym_PIPE, - ACTIONS(5967), 1, - anon_sym_RBRACK, - ACTIONS(5969), 1, - anon_sym_COMMA, - STATE(3129), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(5948), 1, + anon_sym_SEMI, + STATE(3608), 1, + sym_where_clause, STATE(2722), 2, sym_line_comment, sym_block_comment, - [82992] = 7, + [83170] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(412), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(1771), 1, - sym_block, - STATE(3783), 1, - sym_label, + ACTIONS(3163), 1, + anon_sym_PLUS, STATE(2723), 2, sym_line_comment, sym_block_comment, - [83015] = 7, - ACTIONS(27), 1, + ACTIONS(5950), 3, + anon_sym_RPAREN, anon_sym_PIPE, + anon_sym_COMMA, + [83189] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5971), 1, - anon_sym_async, - ACTIONS(5973), 1, - anon_sym_move, - STATE(224), 1, - sym_closure_parameters, + ACTIONS(5073), 1, + anon_sym_LBRACE, + ACTIONS(5085), 1, + anon_sym_where, + STATE(772), 1, + sym_declaration_list, + STATE(3456), 1, + sym_where_clause, STATE(2724), 2, sym_line_comment, sym_block_comment, - [83038] = 5, + [83212] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5975), 1, - anon_sym_DQUOTE, - ACTIONS(5977), 2, - sym_string_content, - sym_escape_sequence, - STATE(2725), 3, + ACTIONS(1380), 1, + anon_sym_LBRACE, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + STATE(485), 1, + sym_block, + STATE(3772), 1, + sym_label, + STATE(2725), 2, sym_line_comment, sym_block_comment, - aux_sym_string_literal_repeat1, - [83057] = 7, + [83235] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5980), 1, - anon_sym_LPAREN, - ACTIONS(5982), 1, - anon_sym_LBRACK, - ACTIONS(5984), 1, + ACTIONS(1380), 1, anon_sym_LBRACE, - STATE(1777), 1, - sym_delim_token_tree, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + STATE(480), 1, + sym_block, + STATE(3772), 1, + sym_label, STATE(2726), 2, sym_line_comment, sym_block_comment, - [83080] = 6, + [83258] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5986), 1, + ACTIONS(5952), 1, anon_sym_DQUOTE, - STATE(2725), 1, + STATE(2739), 1, aux_sym_string_literal_repeat1, - ACTIONS(5845), 2, + ACTIONS(5827), 2, sym_string_content, sym_escape_sequence, STATE(2727), 2, sym_line_comment, sym_block_comment, - [83101] = 7, - ACTIONS(105), 1, + [83279] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5980), 1, - anon_sym_LPAREN, - ACTIONS(5982), 1, - anon_sym_LBRACK, - ACTIONS(5984), 1, - anon_sym_LBRACE, - STATE(1779), 1, - sym_delim_token_tree, + ACTIONS(5954), 1, + aux_sym_token_repetition_pattern_token1, STATE(2728), 2, sym_line_comment, sym_block_comment, - [83124] = 7, + ACTIONS(5956), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [83298] = 7, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(5837), 1, - sym_super, - ACTIONS(5988), 1, - sym_identifier, - STATE(2133), 1, - sym_type_arguments, + ACTIONS(5958), 1, + anon_sym_async, + ACTIONS(5960), 1, + anon_sym_move, + STATE(226), 1, + sym_closure_parameters, STATE(2729), 2, sym_line_comment, sym_block_comment, - [83147] = 7, + [83321] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(5837), 1, - sym_super, - ACTIONS(5988), 1, - sym_identifier, - STATE(2132), 1, - sym_type_arguments, + ACTIONS(412), 1, + anon_sym_LBRACE, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + STATE(1721), 1, + sym_block, + STATE(3773), 1, + sym_label, STATE(2730), 2, sym_line_comment, sym_block_comment, - [83170] = 7, + [83344] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, + ACTIONS(4183), 1, anon_sym_LT2, - ACTIONS(5410), 1, - sym_super, - ACTIONS(5945), 1, - sym_identifier, - STATE(3626), 1, + ACTIONS(4335), 1, + anon_sym_COLON_COLON, + ACTIONS(5039), 1, + anon_sym_BANG, + STATE(1665), 1, sym_type_arguments, STATE(2731), 2, sym_line_comment, sym_block_comment, - [83193] = 7, + [83367] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(5410), 1, - sym_super, - ACTIONS(5945), 1, - sym_identifier, - STATE(3735), 1, - sym_type_arguments, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + STATE(410), 1, + sym_block, + STATE(3776), 1, + sym_label, STATE(2732), 2, sym_line_comment, sym_block_comment, - [83216] = 7, + [83390] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5990), 1, - anon_sym_SEMI, - STATE(3713), 1, - sym_where_clause, + ACTIONS(5651), 1, + anon_sym_PIPE, + ACTIONS(5962), 1, + anon_sym_RPAREN, + ACTIONS(5964), 1, + anon_sym_COMMA, + STATE(3097), 1, + aux_sym_slice_pattern_repeat1, STATE(2733), 2, sym_line_comment, sym_block_comment, - [83239] = 7, + [83413] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1622), 1, + ACTIONS(5966), 1, + anon_sym_LPAREN, + ACTIONS(5968), 1, + anon_sym_LBRACK, + ACTIONS(5970), 1, anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(2218), 1, - sym_block, - STATE(3774), 1, - sym_label, + STATE(2043), 1, + sym_delim_token_tree, STATE(2734), 2, sym_line_comment, sym_block_comment, - [83262] = 7, + [83436] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5992), 1, - anon_sym_SEMI, - STATE(3714), 1, - sym_where_clause, + ACTIONS(1380), 1, + anon_sym_LBRACE, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + STATE(484), 1, + sym_block, + STATE(3772), 1, + sym_label, STATE(2735), 2, sym_line_comment, sym_block_comment, - [83285] = 6, + [83459] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5994), 1, - anon_sym_DQUOTE, - STATE(2738), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5845), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(1380), 1, + anon_sym_LBRACE, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + STATE(457), 1, + sym_block, + STATE(3772), 1, + sym_label, STATE(2736), 2, sym_line_comment, sym_block_comment, - [83306] = 7, - ACTIONS(27), 1, - anon_sym_PIPE, + [83482] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5996), 1, - anon_sym_async, - ACTIONS(5998), 1, - anon_sym_move, - STATE(211), 1, - sym_closure_parameters, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(5972), 1, + anon_sym_RPAREN, + ACTIONS(5974), 1, + anon_sym_COMMA, + STATE(3011), 1, + aux_sym_tuple_type_repeat1, STATE(2737), 2, sym_line_comment, sym_block_comment, - [83329] = 6, + [83505] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6000), 1, - anon_sym_DQUOTE, - STATE(2725), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5845), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(1380), 1, + anon_sym_LBRACE, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + STATE(481), 1, + sym_block, + STATE(3772), 1, + sym_label, STATE(2738), 2, sym_line_comment, sym_block_comment, - [83350] = 6, + [83528] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6002), 1, + ACTIONS(5976), 1, anon_sym_DQUOTE, - STATE(2838), 1, + STATE(2873), 1, aux_sym_string_literal_repeat1, - ACTIONS(5845), 2, + ACTIONS(5827), 2, sym_string_content, sym_escape_sequence, STATE(2739), 2, sym_line_comment, sym_block_comment, - [83371] = 7, + [83549] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(5837), 1, - sym_super, - ACTIONS(6004), 1, - sym_identifier, - STATE(3626), 1, - sym_type_arguments, + ACTIONS(5966), 1, + anon_sym_LPAREN, + ACTIONS(5968), 1, + anon_sym_LBRACK, + ACTIONS(5970), 1, + anon_sym_LBRACE, + STATE(2041), 1, + sym_delim_token_tree, STATE(2740), 2, sym_line_comment, sym_block_comment, - [83394] = 7, + [83572] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, + ACTIONS(4183), 1, anon_sym_LT2, - ACTIONS(5837), 1, - sym_super, - ACTIONS(6004), 1, + ACTIONS(5978), 1, sym_identifier, - STATE(3735), 1, + ACTIONS(5980), 1, + sym_super, + STATE(1646), 1, sym_type_arguments, STATE(2741), 2, sym_line_comment, sym_block_comment, - [83417] = 7, + [83595] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3081), 1, - anon_sym_SQUOTE, - ACTIONS(5901), 1, + ACTIONS(4183), 1, + anon_sym_LT2, + ACTIONS(5978), 1, sym_identifier, - ACTIONS(6006), 1, - anon_sym_GT, - STATE(3307), 1, - sym_lifetime, + ACTIONS(5980), 1, + sym_super, + STATE(1622), 1, + sym_type_arguments, STATE(2742), 2, sym_line_comment, sym_block_comment, - [83440] = 7, + [83618] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3081), 1, - anon_sym_SQUOTE, - ACTIONS(5901), 1, + ACTIONS(5890), 1, + sym_super, + ACTIONS(5982), 1, sym_identifier, - ACTIONS(6008), 1, - anon_sym_GT, - STATE(3307), 1, - sym_lifetime, + ACTIONS(5984), 1, + anon_sym_LT2, + STATE(2602), 1, + sym_type_arguments, STATE(2743), 2, sym_line_comment, sym_block_comment, - [83463] = 7, + [83641] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1386), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(493), 1, - sym_block, - STATE(3782), 1, - sym_label, + ACTIONS(5890), 1, + sym_super, + ACTIONS(5982), 1, + sym_identifier, + ACTIONS(5984), 1, + anon_sym_LT2, + STATE(2505), 1, + sym_type_arguments, STATE(2744), 2, sym_line_comment, sym_block_comment, - [83486] = 7, + [83664] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(5837), 1, - sym_super, - ACTIONS(6010), 1, - sym_identifier, - STATE(3626), 1, - sym_type_arguments, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(5986), 1, + anon_sym_RPAREN, + ACTIONS(5988), 1, + anon_sym_COMMA, + STATE(3010), 1, + aux_sym_tuple_type_repeat1, STATE(2745), 2, sym_line_comment, sym_block_comment, - [83509] = 7, + [83687] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, + ACTIONS(3435), 1, anon_sym_LT2, - ACTIONS(5410), 1, + ACTIONS(5418), 1, sym_super, - ACTIONS(6004), 1, + ACTIONS(5990), 1, sym_identifier, - STATE(3626), 1, + STATE(1502), 1, sym_type_arguments, STATE(2746), 2, sym_line_comment, sym_block_comment, - [83532] = 7, + [83710] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(5410), 1, - sym_super, - ACTIONS(6004), 1, - sym_identifier, - STATE(3735), 1, - sym_type_arguments, + ACTIONS(5992), 1, + anon_sym_in, STATE(2747), 2, sym_line_comment, sym_block_comment, - [83555] = 7, + ACTIONS(5994), 3, + sym_self, + sym_super, + sym_crate, + [83729] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6012), 1, - anon_sym_LPAREN, - ACTIONS(6014), 1, - anon_sym_LBRACK, - ACTIONS(6016), 1, - anon_sym_LBRACE, - STATE(417), 1, - sym_delim_token_tree, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(5418), 1, + sym_super, + ACTIONS(5908), 1, + sym_identifier, + STATE(3680), 1, + sym_type_arguments, STATE(2748), 2, sym_line_comment, sym_block_comment, - [83578] = 7, + [83752] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5130), 1, - anon_sym_LBRACE, - STATE(1241), 1, - sym_declaration_list, - STATE(3342), 1, - sym_where_clause, + ACTIONS(4179), 1, + anon_sym_LPAREN, + ACTIONS(4669), 1, + anon_sym_LT2, + STATE(1702), 1, + sym_parameters, + STATE(2023), 1, + sym_type_arguments, STATE(2749), 2, sym_line_comment, sym_block_comment, - [83601] = 6, + [83775] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, + ACTIONS(4669), 1, anon_sym_LT2, - STATE(3735), 1, - sym_type_arguments, - ACTIONS(5837), 2, - sym_identifier, + ACTIONS(5418), 1, sym_super, + ACTIONS(5908), 1, + sym_identifier, + STATE(3766), 1, + sym_type_arguments, STATE(2750), 2, sym_line_comment, sym_block_comment, - [83622] = 7, + [83798] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(6018), 1, - anon_sym_RPAREN, - ACTIONS(6020), 1, - anon_sym_COMMA, - STATE(3130), 1, - aux_sym_ordered_field_declaration_list_repeat1, STATE(2751), 2, sym_line_comment, sym_block_comment, - [83645] = 6, + ACTIONS(5996), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [83815] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4849), 1, - anon_sym_DOT_DOT, - ACTIONS(6022), 1, - anon_sym_COLON_COLON, - ACTIONS(4851), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(1380), 1, + anon_sym_LBRACE, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + STATE(482), 1, + sym_block, + STATE(3772), 1, + sym_label, STATE(2752), 2, sym_line_comment, sym_block_comment, - [83666] = 7, + [83838] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5106), 1, - anon_sym_LBRACE, - ACTIONS(5110), 1, - anon_sym_where, - STATE(714), 1, - sym_field_declaration_list, - STATE(3370), 1, - sym_where_clause, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(5583), 1, + anon_sym_RPAREN, + ACTIONS(5585), 1, + anon_sym_COMMA, + STATE(3021), 1, + aux_sym_parameters_repeat1, STATE(2753), 2, sym_line_comment, sym_block_comment, - [83689] = 5, + [83861] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5664), 1, - anon_sym_PIPE, + ACTIONS(1380), 1, + anon_sym_LBRACE, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + STATE(475), 1, + sym_block, + STATE(3772), 1, + sym_label, STATE(2754), 2, sym_line_comment, sym_block_comment, - ACTIONS(6024), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [83708] = 7, + [83884] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(6026), 1, - anon_sym_SEMI, - STATE(3812), 1, - sym_where_clause, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + STATE(393), 1, + sym_block, + STATE(3776), 1, + sym_label, STATE(2755), 2, sym_line_comment, sym_block_comment, - [83731] = 6, + [83907] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4679), 1, - anon_sym_DOT_DOT, - ACTIONS(5368), 1, - anon_sym_COLON_COLON, - ACTIONS(4681), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(3169), 1, + anon_sym_PLUS, STATE(2756), 2, sym_line_comment, sym_block_comment, - [83752] = 7, + ACTIONS(5998), 3, + anon_sym_COLON, + anon_sym_GT, + anon_sym_COMMA, + [83926] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4687), 1, - anon_sym_LPAREN, - ACTIONS(5108), 1, - anon_sym_LT, - STATE(2338), 1, - sym_parameters, - STATE(3449), 1, - sym_type_parameters, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(4913), 1, + anon_sym_for, + ACTIONS(5886), 1, + anon_sym_COLON_COLON, + STATE(2022), 1, + sym_type_arguments, STATE(2757), 2, sym_line_comment, sym_block_comment, - [83775] = 7, + [83949] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5130), 1, - anon_sym_LBRACE, - STATE(1255), 1, - sym_declaration_list, - STATE(3358), 1, - sym_where_clause, + ACTIONS(1352), 1, + anon_sym_RPAREN, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(5598), 1, + anon_sym_COMMA, + STATE(3031), 1, + aux_sym_parameters_repeat1, STATE(2758), 2, sym_line_comment, sym_block_comment, - [83798] = 7, + [83972] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4687), 1, - anon_sym_LPAREN, - ACTIONS(5108), 1, - anon_sym_LT, - STATE(2307), 1, - sym_parameters, - STATE(3364), 1, - sym_type_parameters, + ACTIONS(3081), 1, + anon_sym_SQUOTE, + ACTIONS(5910), 1, + sym_identifier, + ACTIONS(6000), 1, + anon_sym_GT, + STATE(3302), 1, + sym_lifetime, STATE(2759), 2, sym_line_comment, sym_block_comment, - [83821] = 5, + [83995] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6028), 1, - anon_sym_in, + ACTIONS(3081), 1, + anon_sym_SQUOTE, + ACTIONS(5910), 1, + sym_identifier, + ACTIONS(6002), 1, + anon_sym_GT, + STATE(3302), 1, + sym_lifetime, STATE(2760), 2, sym_line_comment, sym_block_comment, - ACTIONS(6030), 3, - sym_self, - sym_super, - sym_crate, - [83840] = 6, + [84018] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(6032), 1, - anon_sym_EQ, - ACTIONS(6034), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(5651), 1, + anon_sym_PIPE, STATE(2761), 2, sym_line_comment, sym_block_comment, - [83861] = 5, + ACTIONS(6004), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [84037] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5829), 1, - anon_sym_COLON_COLON, + ACTIONS(3081), 1, + anon_sym_SQUOTE, + ACTIONS(5910), 1, + sym_identifier, + ACTIONS(6006), 1, + anon_sym_GT, + STATE(3302), 1, + sym_lifetime, STATE(2762), 2, sym_line_comment, sym_block_comment, - ACTIONS(4927), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83880] = 7, + [84060] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 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(3081), 1, + anon_sym_SQUOTE, + ACTIONS(5910), 1, + sym_identifier, + ACTIONS(6008), 1, + anon_sym_GT, + STATE(3302), 1, + sym_lifetime, STATE(2763), 2, sym_line_comment, sym_block_comment, - [83903] = 7, + [84083] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3443), 1, - anon_sym_LT2, - ACTIONS(3773), 1, - anon_sym_COLON_COLON, - ACTIONS(5029), 1, - anon_sym_BANG, - STATE(1428), 1, - sym_type_arguments, + ACTIONS(412), 1, + anon_sym_LBRACE, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + STATE(1720), 1, + sym_block, + STATE(3773), 1, + sym_label, STATE(2764), 2, sym_line_comment, sym_block_comment, - [83926] = 5, + [84106] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6044), 1, - anon_sym_COLON, + ACTIONS(412), 1, + anon_sym_LBRACE, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + STATE(1722), 1, + sym_block, + STATE(3773), 1, + sym_label, STATE(2765), 2, sym_line_comment, sym_block_comment, - ACTIONS(5027), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [83945] = 5, + [84129] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6046), 1, - anon_sym_COMMA, - ACTIONS(4357), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2766), 3, + ACTIONS(6010), 1, + anon_sym_DQUOTE, + STATE(2775), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5827), 2, + sym_string_content, + sym_escape_sequence, + STATE(2766), 2, sym_line_comment, sym_block_comment, - aux_sym_arguments_repeat1, - [83964] = 5, + [84150] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6049), 1, - anon_sym_COMMA, - ACTIONS(6024), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2767), 3, + ACTIONS(1380), 1, + anon_sym_LBRACE, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + STATE(479), 1, + sym_block, + STATE(3772), 1, + sym_label, + STATE(2767), 2, sym_line_comment, sym_block_comment, - aux_sym_slice_pattern_repeat1, - [83983] = 5, + [84173] = 7, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5839), 1, - anon_sym_COLON_COLON, + ACTIONS(6012), 1, + anon_sym_async, + ACTIONS(6014), 1, + anon_sym_move, + STATE(238), 1, + sym_closure_parameters, STATE(2768), 2, sym_line_comment, sym_block_comment, - ACTIONS(4935), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84002] = 7, + [84196] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(4687), 1, - anon_sym_LPAREN, - STATE(2026), 1, - sym_type_arguments, - STATE(2454), 1, - sym_parameters, + ACTIONS(5174), 1, + anon_sym_COLON, + STATE(3350), 1, + sym_trait_bounds, + ACTIONS(5600), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2769), 2, sym_line_comment, sym_block_comment, - [84025] = 7, + [84217] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(6052), 1, - anon_sym_SEMI, - ACTIONS(6054), 1, - anon_sym_EQ, - ACTIONS(6056), 1, - anon_sym_else, + ACTIONS(6016), 1, + anon_sym_LPAREN, + ACTIONS(6018), 1, + anon_sym_LBRACK, + ACTIONS(6020), 1, + anon_sym_LBRACE, + STATE(1070), 1, + sym_delim_token_tree, STATE(2770), 2, sym_line_comment, sym_block_comment, - [84048] = 7, + [84240] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5386), 1, - anon_sym_LPAREN, - ACTIONS(5388), 1, - anon_sym_LBRACK, - ACTIONS(5392), 1, + ACTIONS(412), 1, anon_sym_LBRACE, - STATE(1475), 1, - sym_delim_token_tree, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + STATE(1734), 1, + sym_block, + STATE(3773), 1, + sym_label, STATE(2771), 2, sym_line_comment, sym_block_comment, - [84071] = 7, + [84263] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(348), 1, + ACTIONS(412), 1, anon_sym_LBRACE, - ACTIONS(3459), 1, + ACTIONS(3456), 1, anon_sym_SQUOTE, - STATE(3719), 1, - sym_label, - STATE(3758), 1, + STATE(1619), 1, sym_block, + STATE(3773), 1, + sym_label, STATE(2772), 2, sym_line_comment, sym_block_comment, - [84094] = 7, + [84286] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(5837), 1, - sym_super, - ACTIONS(6010), 1, - sym_identifier, - STATE(3735), 1, - sym_type_arguments, - STATE(2773), 2, + ACTIONS(6022), 1, + anon_sym_COMMA, + ACTIONS(6004), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(2773), 3, sym_line_comment, sym_block_comment, - [84117] = 7, + aux_sym_slice_pattern_repeat1, + [84305] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(348), 1, + ACTIONS(412), 1, anon_sym_LBRACE, - ACTIONS(3459), 1, + ACTIONS(3456), 1, anon_sym_SQUOTE, - STATE(1500), 1, + STATE(1736), 1, sym_block, - STATE(3719), 1, + STATE(3773), 1, sym_label, STATE(2774), 2, sym_line_comment, sym_block_comment, - [84140] = 7, + [84328] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(348), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(1427), 1, - sym_block, - STATE(3719), 1, - sym_label, + ACTIONS(6025), 1, + anon_sym_DQUOTE, + STATE(2873), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5827), 2, + sym_string_content, + sym_escape_sequence, STATE(2775), 2, sym_line_comment, sym_block_comment, - [84163] = 7, + [84349] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(348), 1, + ACTIONS(6016), 1, + anon_sym_LPAREN, + ACTIONS(6018), 1, + anon_sym_LBRACK, + ACTIONS(6020), 1, anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(3528), 1, - sym_block, - STATE(3719), 1, - sym_label, + STATE(1062), 1, + sym_delim_token_tree, STATE(2776), 2, sym_line_comment, sym_block_comment, - [84186] = 5, + [84372] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5829), 1, - anon_sym_COLON_COLON, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(5868), 1, + sym_super, + ACTIONS(6027), 1, + sym_identifier, + STATE(2125), 1, + sym_type_arguments, STATE(2777), 2, sym_line_comment, sym_block_comment, - ACTIONS(4903), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84205] = 7, + [84395] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5130), 1, - anon_sym_LBRACE, - STATE(1183), 1, - sym_declaration_list, - STATE(3213), 1, - sym_where_clause, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(5868), 1, + sym_super, + ACTIONS(6027), 1, + sym_identifier, + STATE(2124), 1, + sym_type_arguments, STATE(2778), 2, sym_line_comment, sym_block_comment, - [84228] = 4, + [84418] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(5868), 1, + sym_super, + ACTIONS(6029), 1, + sym_identifier, + STATE(3680), 1, + sym_type_arguments, STATE(2779), 2, sym_line_comment, sym_block_comment, - ACTIONS(3395), 4, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - [84245] = 7, + [84441] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4687), 1, - anon_sym_LPAREN, - ACTIONS(5108), 1, - anon_sym_LT, - STATE(2310), 1, - sym_parameters, - STATE(3387), 1, - sym_type_parameters, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(5868), 1, + sym_super, + ACTIONS(6029), 1, + sym_identifier, + STATE(3766), 1, + sym_type_arguments, STATE(2780), 2, sym_line_comment, sym_block_comment, - [84268] = 7, + [84464] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(6058), 1, - anon_sym_SEMI, - STATE(3551), 1, - sym_where_clause, STATE(2781), 2, sym_line_comment, sym_block_comment, - [84291] = 5, - ACTIONS(3), 1, + ACTIONS(3387), 4, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + [84481] = 7, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6060), 1, - aux_sym_token_repetition_pattern_token1, + ACTIONS(412), 1, + anon_sym_LBRACE, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + STATE(1756), 1, + sym_block, + STATE(3773), 1, + sym_label, STATE(2782), 2, sym_line_comment, sym_block_comment, - ACTIONS(6062), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [84310] = 7, + [84504] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(348), 1, + ACTIONS(412), 1, anon_sym_LBRACE, - ACTIONS(3459), 1, + ACTIONS(3456), 1, anon_sym_SQUOTE, - STATE(1509), 1, + STATE(1763), 1, sym_block, - STATE(3719), 1, + STATE(3773), 1, sym_label, STATE(2783), 2, sym_line_comment, sym_block_comment, - [84333] = 6, - ACTIONS(105), 1, + [84527] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6064), 1, - anon_sym_DQUOTE, - STATE(2725), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5845), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(6031), 1, + aux_sym_token_repetition_pattern_token1, STATE(2784), 2, sym_line_comment, sym_block_comment, - [84354] = 7, + ACTIONS(6033), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [84546] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5386), 1, - anon_sym_LPAREN, - ACTIONS(5388), 1, - anon_sym_LBRACK, - ACTIONS(5392), 1, - anon_sym_LBRACE, - STATE(1529), 1, - sym_delim_token_tree, + ACTIONS(6035), 1, + anon_sym_DQUOTE, + STATE(2790), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5827), 2, + sym_string_content, + sym_escape_sequence, STATE(2785), 2, sym_line_comment, sym_block_comment, - [84377] = 7, + [84567] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(348), 1, + ACTIONS(412), 1, anon_sym_LBRACE, - ACTIONS(3459), 1, + ACTIONS(3456), 1, anon_sym_SQUOTE, - STATE(3647), 1, + STATE(1768), 1, sym_block, - STATE(3719), 1, + STATE(3773), 1, sym_label, STATE(2786), 2, sym_line_comment, sym_block_comment, - [84400] = 7, + [84590] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3163), 1, anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(6066), 1, - anon_sym_SEMI, - STATE(3525), 1, - sym_where_clause, + ACTIONS(5594), 1, + anon_sym_RPAREN, + ACTIONS(5596), 1, + anon_sym_COMMA, + STATE(3119), 1, + aux_sym_parameters_repeat1, STATE(2787), 2, sym_line_comment, sym_block_comment, - [84423] = 7, + [84613] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(348), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(3709), 1, - sym_block, - STATE(3719), 1, - sym_label, + ACTIONS(3163), 1, + anon_sym_PLUS, STATE(2788), 2, sym_line_comment, sym_block_comment, - [84446] = 7, + ACTIONS(6037), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [84632] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3081), 1, - anon_sym_SQUOTE, - ACTIONS(5901), 1, - sym_identifier, - ACTIONS(6068), 1, - anon_sym_GT, - STATE(3307), 1, - sym_lifetime, + ACTIONS(6039), 1, + anon_sym_LPAREN, + ACTIONS(6041), 1, + anon_sym_LBRACK, + ACTIONS(6043), 1, + anon_sym_LBRACE, + STATE(1774), 1, + sym_delim_token_tree, STATE(2789), 2, sym_line_comment, sym_block_comment, - [84469] = 7, + [84655] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3443), 1, - anon_sym_LT2, - ACTIONS(5410), 1, - sym_super, - ACTIONS(6070), 1, - sym_identifier, - STATE(1633), 1, - sym_type_arguments, + ACTIONS(6045), 1, + anon_sym_DQUOTE, + STATE(2873), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5827), 2, + sym_string_content, + sym_escape_sequence, STATE(2790), 2, sym_line_comment, sym_block_comment, - [84492] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [84676] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(416), 1, - sym_block, - STATE(3621), 1, - sym_label, + ACTIONS(6039), 1, + anon_sym_LPAREN, + ACTIONS(6041), 1, + anon_sym_LBRACK, + ACTIONS(6043), 1, + anon_sym_LBRACE, + STATE(1776), 1, + sym_delim_token_tree, STATE(2791), 2, sym_line_comment, sym_block_comment, - [84515] = 7, + [84699] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3443), 1, + ACTIONS(4669), 1, anon_sym_LT2, - ACTIONS(5410), 1, + ACTIONS(5868), 1, sym_super, - ACTIONS(6070), 1, + ACTIONS(6047), 1, sym_identifier, - STATE(1655), 1, + STATE(2125), 1, sym_type_arguments, STATE(2792), 2, sym_line_comment, sym_block_comment, - [84538] = 7, + [84722] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3081), 1, - anon_sym_SQUOTE, - ACTIONS(5901), 1, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(5868), 1, + sym_super, + ACTIONS(6047), 1, sym_identifier, - ACTIONS(6072), 1, - anon_sym_GT, - STATE(3307), 1, - sym_lifetime, + STATE(2124), 1, + sym_type_arguments, STATE(2793), 2, sym_line_comment, sym_block_comment, - [84561] = 7, + [84745] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(348), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(1536), 1, - sym_block, - STATE(3719), 1, - sym_label, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(5418), 1, + sym_super, + ACTIONS(6029), 1, + sym_identifier, + STATE(3680), 1, + sym_type_arguments, STATE(2794), 2, sym_line_comment, sym_block_comment, - [84584] = 7, + [84768] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3081), 1, - anon_sym_SQUOTE, - ACTIONS(5901), 1, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(5418), 1, + sym_super, + ACTIONS(6029), 1, sym_identifier, - ACTIONS(6074), 1, - anon_sym_GT, - STATE(3307), 1, - sym_lifetime, + STATE(3766), 1, + sym_type_arguments, STATE(2795), 2, sym_line_comment, sym_block_comment, - [84607] = 5, + [84791] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, + ACTIONS(4651), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(6049), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2796), 2, sym_line_comment, sym_block_comment, - ACTIONS(6076), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [84626] = 7, + [84810] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(348), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(3685), 1, - sym_block, - STATE(3719), 1, - sym_label, + ACTIONS(6051), 1, + anon_sym_DQUOTE, + STATE(2798), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5827), 2, + sym_string_content, + sym_escape_sequence, STATE(2797), 2, sym_line_comment, sym_block_comment, - [84649] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [84831] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(423), 1, - sym_block, - STATE(3621), 1, - sym_label, + ACTIONS(6053), 1, + anon_sym_DQUOTE, + STATE(2873), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5827), 2, + sym_string_content, + sym_escape_sequence, STATE(2798), 2, sym_line_comment, sym_block_comment, - [84672] = 7, + [84852] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5130), 1, - anon_sym_LBRACE, - STATE(1194), 1, - sym_declaration_list, - STATE(3226), 1, - sym_where_clause, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(5868), 1, + sym_super, + ACTIONS(6055), 1, + sym_identifier, + STATE(3680), 1, + sym_type_arguments, STATE(2799), 2, sym_line_comment, sym_block_comment, - [84695] = 7, + [84875] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(6078), 1, - anon_sym_SEMI, - STATE(3710), 1, - sym_where_clause, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(5868), 1, + sym_super, + ACTIONS(6055), 1, + sym_identifier, + STATE(3766), 1, + sym_type_arguments, STATE(2800), 2, sym_line_comment, sym_block_comment, - [84718] = 6, + [84898] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5190), 1, - anon_sym_COLON, - STATE(3433), 1, - sym_trait_bounds, - ACTIONS(5615), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(6057), 1, + anon_sym_DQUOTE, + STATE(2849), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5827), 2, + sym_string_content, + sym_escape_sequence, STATE(2801), 2, sym_line_comment, sym_block_comment, - [84739] = 7, + [84919] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, ACTIONS(3081), 1, anon_sym_SQUOTE, - ACTIONS(5901), 1, + ACTIONS(5910), 1, sym_identifier, - ACTIONS(6080), 1, + ACTIONS(6059), 1, anon_sym_GT, - STATE(3307), 1, + STATE(3302), 1, sym_lifetime, STATE(2802), 2, sym_line_comment, sym_block_comment, - [84762] = 7, + [84942] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4687), 1, - anon_sym_LPAREN, - ACTIONS(5108), 1, - anon_sym_LT, - STATE(2314), 1, - sym_parameters, - STATE(3402), 1, - sym_type_parameters, + ACTIONS(3081), 1, + anon_sym_SQUOTE, + ACTIONS(5910), 1, + sym_identifier, + ACTIONS(6061), 1, + anon_sym_GT, + STATE(3302), 1, + sym_lifetime, STATE(2803), 2, sym_line_comment, sym_block_comment, - [84785] = 7, + [84965] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5664), 1, - anon_sym_PIPE, - ACTIONS(6082), 1, - anon_sym_RPAREN, - ACTIONS(6084), 1, - anon_sym_COMMA, - STATE(3186), 1, - aux_sym_tuple_pattern_repeat1, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(5418), 1, + sym_super, + ACTIONS(6055), 1, + sym_identifier, + STATE(3680), 1, + sym_type_arguments, STATE(2804), 2, sym_line_comment, sym_block_comment, - [84808] = 5, + [84988] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5839), 1, - anon_sym_COLON_COLON, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(5418), 1, + sym_super, + ACTIONS(6055), 1, + sym_identifier, + STATE(3766), 1, + sym_type_arguments, STATE(2805), 2, sym_line_comment, sym_block_comment, - ACTIONS(4909), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84827] = 7, + [85011] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(6086), 1, - anon_sym_SEMI, - STATE(3582), 1, - sym_where_clause, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(5868), 1, + sym_super, + ACTIONS(5874), 1, + sym_identifier, + STATE(3680), 1, + sym_type_arguments, STATE(2806), 2, sym_line_comment, sym_block_comment, - [84850] = 7, + [85034] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(6088), 1, - anon_sym_RPAREN, - ACTIONS(6090), 1, - anon_sym_COMMA, - STATE(3166), 1, - aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(6063), 1, + anon_sym_LBRACE, + ACTIONS(6065), 1, + anon_sym_for, + ACTIONS(6067), 1, + anon_sym_loop, + ACTIONS(6069), 1, + anon_sym_while, STATE(2807), 2, sym_line_comment, sym_block_comment, - [84873] = 7, + [85057] = 7, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(348), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(3617), 1, - sym_block, - STATE(3719), 1, - sym_label, + ACTIONS(5069), 1, + anon_sym_move, + ACTIONS(6071), 1, + anon_sym_async, + STATE(222), 1, + sym_closure_parameters, STATE(2808), 2, sym_line_comment, sym_block_comment, - [84896] = 7, + [85080] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(348), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(3619), 1, - sym_block, - STATE(3719), 1, - sym_label, + ACTIONS(4663), 1, + anon_sym_DOT_DOT, + ACTIONS(5388), 1, + anon_sym_COLON_COLON, + ACTIONS(4665), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2809), 2, sym_line_comment, sym_block_comment, - [84919] = 7, + [85101] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5664), 1, - anon_sym_PIPE, - ACTIONS(6092), 1, - anon_sym_RBRACK, - ACTIONS(6094), 1, - anon_sym_COMMA, - STATE(3190), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(348), 1, + anon_sym_LBRACE, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + STATE(3709), 1, + sym_label, + STATE(3780), 1, + sym_block, STATE(2810), 2, sym_line_comment, sym_block_comment, - [84942] = 7, + [85124] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6096), 1, - anon_sym_LBRACE, - ACTIONS(6098), 1, - anon_sym_for, - ACTIONS(6100), 1, - anon_sym_loop, - ACTIONS(6102), 1, - anon_sym_while, + ACTIONS(4671), 1, + anon_sym_LPAREN, + ACTIONS(5083), 1, + anon_sym_LT, + STATE(2298), 1, + sym_parameters, + STATE(3359), 1, + sym_type_parameters, STATE(2811), 2, sym_line_comment, sym_block_comment, - [84965] = 7, + [85147] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(5190), 1, - anon_sym_COLON, - STATE(2026), 1, - sym_type_arguments, - STATE(2545), 1, - sym_trait_bounds, + ACTIONS(4671), 1, + anon_sym_LPAREN, + ACTIONS(5083), 1, + anon_sym_LT, + STATE(2285), 1, + sym_parameters, + STATE(3192), 1, + sym_type_parameters, STATE(2812), 2, sym_line_comment, sym_block_comment, - [84988] = 7, + [85170] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(5837), 1, - sym_super, - ACTIONS(6104), 1, - sym_identifier, - STATE(2133), 1, - sym_type_arguments, + ACTIONS(6073), 1, + anon_sym_in, STATE(2813), 2, sym_line_comment, sym_block_comment, - [85011] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(5837), 1, + ACTIONS(6075), 3, + sym_self, sym_super, - ACTIONS(6104), 1, - sym_identifier, - STATE(2132), 1, - sym_type_arguments, - STATE(2814), 2, - sym_line_comment, - sym_block_comment, - [85034] = 7, + sym_crate, + [85189] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(348), 1, + ACTIONS(6077), 1, anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(3527), 1, - sym_block, - STATE(3719), 1, - sym_label, - STATE(2815), 2, + ACTIONS(6079), 1, + anon_sym_for, + ACTIONS(6081), 1, + anon_sym_loop, + ACTIONS(6083), 1, + anon_sym_while, + STATE(2814), 2, sym_line_comment, sym_block_comment, - [85057] = 7, + [85212] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3163), 1, anon_sym_PLUS, - ACTIONS(6106), 1, - anon_sym_RPAREN, - ACTIONS(6108), 1, + ACTIONS(6085), 1, + anon_sym_EQ, + ACTIONS(6087), 2, + anon_sym_GT, anon_sym_COMMA, - STATE(2888), 1, - aux_sym_tuple_type_repeat1, - STATE(2816), 2, + STATE(2815), 2, sym_line_comment, sym_block_comment, - [85080] = 7, + [85233] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, ACTIONS(348), 1, anon_sym_LBRACE, - ACTIONS(3459), 1, + ACTIONS(3456), 1, anon_sym_SQUOTE, - STATE(3565), 1, + STATE(3533), 1, sym_block, - STATE(3719), 1, + STATE(3709), 1, sym_label, + STATE(2816), 2, + sym_line_comment, + sym_block_comment, + [85256] = 7, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(4671), 1, + anon_sym_LPAREN, + STATE(2023), 1, + sym_type_arguments, + STATE(2463), 1, + sym_parameters, STATE(2817), 2, sym_line_comment, sym_block_comment, - [85103] = 7, + [85279] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, ACTIONS(348), 1, anon_sym_LBRACE, - ACTIONS(3459), 1, + ACTIONS(3456), 1, anon_sym_SQUOTE, - STATE(3568), 1, + STATE(3596), 1, sym_block, - STATE(3719), 1, + STATE(3709), 1, sym_label, STATE(2818), 2, sym_line_comment, sym_block_comment, - [85126] = 7, + [85302] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(6110), 1, - anon_sym_SEMI, - STATE(3611), 1, - sym_where_clause, + ACTIONS(4671), 1, + anon_sym_LPAREN, + ACTIONS(5083), 1, + anon_sym_LT, + STATE(2302), 1, + sym_parameters, + STATE(3382), 1, + sym_type_parameters, STATE(2819), 2, sym_line_comment, sym_block_comment, - [85149] = 7, + [85325] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4687), 1, - anon_sym_LPAREN, - ACTIONS(5108), 1, - anon_sym_LT, - STATE(2320), 1, - sym_parameters, - STATE(3401), 1, - sym_type_parameters, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(5868), 1, + sym_super, + ACTIONS(5874), 1, + sym_identifier, + STATE(3766), 1, + sym_type_arguments, STATE(2820), 2, sym_line_comment, sym_block_comment, - [85172] = 7, + [85348] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(6112), 1, - anon_sym_SEMI, - STATE(3742), 1, - sym_where_clause, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(5886), 1, + anon_sym_COLON_COLON, + ACTIONS(6089), 1, + anon_sym_for, + STATE(2022), 1, + sym_type_arguments, STATE(2821), 2, sym_line_comment, sym_block_comment, - [85195] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [85371] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(402), 1, - sym_block, - STATE(3621), 1, - sym_label, + ACTIONS(6091), 1, + anon_sym_COLON, STATE(2822), 2, sym_line_comment, sym_block_comment, - [85218] = 7, + ACTIONS(4965), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [85390] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(6114), 1, - anon_sym_SEMI, - STATE(3613), 1, - sym_where_clause, + ACTIONS(348), 1, + anon_sym_LBRACE, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + STATE(3709), 1, + sym_label, + STATE(3781), 1, + sym_block, STATE(2823), 2, sym_line_comment, sym_block_comment, - [85241] = 7, + [85413] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5490), 1, - anon_sym_LBRACE, - STATE(1199), 1, - sym_enum_variant_list, - STATE(3233), 1, - sym_where_clause, + ACTIONS(5743), 1, + anon_sym_COLON, + ACTIONS(5745), 1, + anon_sym_PIPE, + ACTIONS(5747), 1, + anon_sym_COMMA, + STATE(2966), 1, + aux_sym_closure_parameters_repeat1, STATE(2824), 2, sym_line_comment, sym_block_comment, - [85264] = 7, + [85436] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, ACTIONS(348), 1, anon_sym_LBRACE, - ACTIONS(3459), 1, + ACTIONS(3456), 1, anon_sym_SQUOTE, - STATE(3622), 1, + STATE(3492), 1, sym_block, - STATE(3719), 1, + STATE(3709), 1, sym_label, STATE(2825), 2, sym_line_comment, sym_block_comment, - [85287] = 7, + [85459] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5120), 1, + ACTIONS(348), 1, anon_sym_LBRACE, - STATE(700), 1, - sym_declaration_list, - STATE(3465), 1, - sym_where_clause, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + STATE(3535), 1, + sym_block, + STATE(3709), 1, + sym_label, STATE(2826), 2, sym_line_comment, sym_block_comment, - [85310] = 7, + [85482] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(348), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(3648), 1, - sym_block, - STATE(3719), 1, - sym_label, + ACTIONS(1348), 1, + anon_sym_RPAREN, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(5741), 1, + anon_sym_COMMA, + STATE(3075), 1, + aux_sym_parameters_repeat1, STATE(2827), 2, sym_line_comment, sym_block_comment, - [85333] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [85505] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(290), 1, - sym_block, - STATE(3621), 1, - sym_label, + ACTIONS(4671), 1, + anon_sym_LPAREN, + ACTIONS(5083), 1, + anon_sym_LT, + STATE(2306), 1, + sym_parameters, + STATE(3398), 1, + sym_type_parameters, STATE(2828), 2, sym_line_comment, sym_block_comment, - [85356] = 7, + [85528] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3443), 1, - anon_sym_LT2, - ACTIONS(3773), 1, - anon_sym_COLON_COLON, - ACTIONS(4699), 1, - anon_sym_BANG, - STATE(1428), 1, - sym_type_arguments, + ACTIONS(4651), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(6093), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2829), 2, sym_line_comment, sym_block_comment, - [85379] = 7, + [85547] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4175), 1, - anon_sym_LT2, - ACTIONS(4363), 1, - anon_sym_COLON_COLON, - ACTIONS(4699), 1, - anon_sym_BANG, - STATE(1717), 1, - sym_type_arguments, + ACTIONS(5174), 1, + anon_sym_COLON, + STATE(3432), 1, + sym_trait_bounds, + ACTIONS(5645), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2830), 2, sym_line_comment, sym_block_comment, - [85402] = 7, + [85568] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(6116), 1, - anon_sym_RPAREN, - ACTIONS(6118), 1, - anon_sym_COMMA, - STATE(3070), 1, - aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(348), 1, + anon_sym_LBRACE, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + STATE(3591), 1, + sym_block, + STATE(3709), 1, + sym_label, STATE(2831), 2, sym_line_comment, sym_block_comment, - [85425] = 4, + [85591] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(348), 1, + anon_sym_LBRACE, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + STATE(3599), 1, + sym_block, + STATE(3709), 1, + sym_label, STATE(2832), 2, sym_line_comment, sym_block_comment, - ACTIONS(4467), 4, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_SQUOTE, - [85442] = 7, + [85614] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(5410), 1, - sym_super, - ACTIONS(6010), 1, - sym_identifier, - STATE(3626), 1, - sym_type_arguments, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(6095), 1, + anon_sym_RPAREN, + ACTIONS(6097), 1, + anon_sym_COMMA, + STATE(3170), 1, + aux_sym_ordered_field_declaration_list_repeat1, STATE(2833), 2, sym_line_comment, sym_block_comment, - [85465] = 6, + [85637] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4679), 1, - anon_sym_DOT_DOT, - ACTIONS(5404), 1, - anon_sym_COLON_COLON, - ACTIONS(4681), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(348), 1, + anon_sym_LBRACE, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + STATE(3531), 1, + sym_block, + STATE(3709), 1, + sym_label, STATE(2834), 2, sym_line_comment, sym_block_comment, - [85486] = 5, + [85660] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5841), 1, - anon_sym_COLON_COLON, + ACTIONS(348), 1, + anon_sym_LBRACE, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + STATE(3491), 1, + sym_block, + STATE(3709), 1, + sym_label, STATE(2835), 2, sym_line_comment, sym_block_comment, - ACTIONS(4935), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85505] = 7, + [85683] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3435), 1, - anon_sym_LPAREN, - ACTIONS(4685), 1, + ACTIONS(4669), 1, anon_sym_LT2, - STATE(1398), 1, - sym_parameters, - STATE(2026), 1, + ACTIONS(5174), 1, + anon_sym_COLON, + STATE(2023), 1, sym_type_arguments, + STATE(2589), 1, + sym_trait_bounds, STATE(2836), 2, sym_line_comment, sym_block_comment, - [85528] = 7, + [85706] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6120), 1, + ACTIONS(348), 1, anon_sym_LBRACE, - ACTIONS(6122), 1, - anon_sym_for, - ACTIONS(6124), 1, - anon_sym_loop, - ACTIONS(6126), 1, - anon_sym_while, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + STATE(3598), 1, + sym_block, + STATE(3709), 1, + sym_label, STATE(2837), 2, sym_line_comment, sym_block_comment, - [85551] = 6, + [85729] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6128), 1, - anon_sym_DQUOTE, - STATE(2725), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5845), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(3081), 1, + anon_sym_SQUOTE, + ACTIONS(5910), 1, + sym_identifier, + ACTIONS(6099), 1, + anon_sym_GT, + STATE(3302), 1, + sym_lifetime, STATE(2838), 2, sym_line_comment, sym_block_comment, - [85572] = 7, + [85752] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(5410), 1, - sym_super, - ACTIONS(6010), 1, - sym_identifier, - STATE(3735), 1, - sym_type_arguments, + ACTIONS(348), 1, + anon_sym_LBRACE, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + STATE(3615), 1, + sym_block, + STATE(3709), 1, + sym_label, STATE(2839), 2, sym_line_comment, sym_block_comment, - [85595] = 7, + [85775] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5155), 1, - anon_sym_LBRACE, - STATE(1205), 1, - sym_field_declaration_list, - STATE(3237), 1, - sym_where_clause, + ACTIONS(3435), 1, + anon_sym_LT2, + ACTIONS(3763), 1, + anon_sym_COLON_COLON, + ACTIONS(4683), 1, + anon_sym_BANG, + STATE(1422), 1, + sym_type_arguments, STATE(2840), 2, sym_line_comment, sym_block_comment, - [85618] = 7, + [85798] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6012), 1, - anon_sym_LPAREN, - ACTIONS(6014), 1, - anon_sym_LBRACK, - ACTIONS(6016), 1, - anon_sym_LBRACE, - STATE(412), 1, - sym_delim_token_tree, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(6101), 1, + anon_sym_SEMI, + STATE(3593), 1, + sym_where_clause, STATE(2841), 2, sym_line_comment, sym_block_comment, - [85641] = 7, + [85821] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(6130), 1, - anon_sym_SEMI, - STATE(3600), 1, - sym_where_clause, + ACTIONS(4183), 1, + anon_sym_LT2, + ACTIONS(4335), 1, + anon_sym_COLON_COLON, + ACTIONS(4683), 1, + anon_sym_BANG, + STATE(1665), 1, + sym_type_arguments, STATE(2842), 2, sym_line_comment, sym_block_comment, - [85664] = 5, + [85844] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6132), 1, - anon_sym_COLON, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + STATE(397), 1, + sym_block, + STATE(3776), 1, + sym_label, STATE(2843), 2, sym_line_comment, sym_block_comment, - ACTIONS(5027), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [85683] = 7, + [85867] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(6134), 1, - anon_sym_SEMI, - STATE(3601), 1, - sym_where_clause, + ACTIONS(3081), 1, + anon_sym_SQUOTE, + ACTIONS(5910), 1, + sym_identifier, + ACTIONS(6103), 1, + anon_sym_GT, + STATE(3302), 1, + sym_lifetime, STATE(2844), 2, sym_line_comment, sym_block_comment, - [85706] = 6, + [85890] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4679), 1, + ACTIONS(4663), 1, anon_sym_DOT_DOT, - ACTIONS(5428), 1, + ACTIONS(5412), 1, anon_sym_COLON_COLON, - ACTIONS(4681), 2, + ACTIONS(4665), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(2845), 2, sym_line_comment, sym_block_comment, - [85727] = 7, + [85911] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4687), 1, - anon_sym_LPAREN, - ACTIONS(5108), 1, - anon_sym_LT, - STATE(2293), 1, - sym_parameters, - STATE(3292), 1, - sym_type_parameters, STATE(2846), 2, sym_line_comment, sym_block_comment, - [85750] = 7, + ACTIONS(4457), 4, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_SQUOTE, + [85928] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6136), 1, + ACTIONS(6105), 1, anon_sym_LBRACE, - ACTIONS(6138), 1, + ACTIONS(6107), 1, anon_sym_for, - ACTIONS(6140), 1, + ACTIONS(6109), 1, anon_sym_loop, - ACTIONS(6142), 1, + ACTIONS(6111), 1, anon_sym_while, STATE(2847), 2, sym_line_comment, sym_block_comment, - [85773] = 7, + [85951] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(6144), 1, - anon_sym_COLON_COLON, - ACTIONS(6146), 1, - anon_sym_for, - STATE(2029), 1, - sym_type_arguments, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(6113), 1, + anon_sym_RPAREN, + ACTIONS(6115), 1, + anon_sym_COMMA, + STATE(3006), 1, + aux_sym_ordered_field_declaration_list_repeat1, STATE(2848), 2, sym_line_comment, sym_block_comment, - [85796] = 7, + [85974] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3443), 1, - anon_sym_LT2, - ACTIONS(5410), 1, - sym_super, - ACTIONS(5947), 1, - sym_identifier, - STATE(1493), 1, - sym_type_arguments, + ACTIONS(6117), 1, + anon_sym_DQUOTE, + STATE(2873), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5827), 2, + sym_string_content, + sym_escape_sequence, STATE(2849), 2, sym_line_comment, sym_block_comment, - [85819] = 7, + [85995] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5486), 1, - anon_sym_LBRACE, - STATE(606), 1, - sym_enum_variant_list, - STATE(3405), 1, - sym_where_clause, + ACTIONS(4663), 1, + anon_sym_DOT_DOT, + ACTIONS(5422), 1, + anon_sym_COLON_COLON, + ACTIONS(4665), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2850), 2, sym_line_comment, sym_block_comment, - [85842] = 7, + [86016] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5130), 1, + ACTIONS(6119), 1, anon_sym_LBRACE, - STATE(1306), 1, - sym_declaration_list, - STATE(3408), 1, - sym_where_clause, + ACTIONS(6121), 1, + anon_sym_for, + ACTIONS(6123), 1, + anon_sym_loop, + ACTIONS(6125), 1, + anon_sym_while, STATE(2851), 2, sym_line_comment, sym_block_comment, - [85865] = 7, + [86039] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(6148), 1, - anon_sym_SEMI, - STATE(3579), 1, - sym_where_clause, + ACTIONS(5839), 1, + anon_sym_LPAREN, + ACTIONS(5841), 1, + anon_sym_LBRACK, + ACTIONS(5843), 1, + anon_sym_LBRACE, + STATE(398), 1, + sym_delim_token_tree, STATE(2852), 2, sym_line_comment, sym_block_comment, - [85888] = 7, + [86062] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3169), 1, anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(6150), 1, - anon_sym_SEMI, - STATE(3628), 1, - sym_where_clause, STATE(2853), 2, sym_line_comment, sym_block_comment, - [85911] = 7, + ACTIONS(6127), 3, + anon_sym_COLON, + anon_sym_GT, + anon_sym_COMMA, + [86081] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, + ACTIONS(4669), 1, anon_sym_LT2, - ACTIONS(6144), 1, + ACTIONS(5886), 1, anon_sym_COLON_COLON, - ACTIONS(6152), 1, + ACTIONS(6129), 1, anon_sym_for, - STATE(2029), 1, + STATE(2022), 1, sym_type_arguments, STATE(2854), 2, sym_line_comment, sym_block_comment, - [85934] = 6, + [86104] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4679), 1, - anon_sym_DOT_DOT, - ACTIONS(5376), 1, - anon_sym_COLON_COLON, - ACTIONS(4681), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(3435), 1, + anon_sym_LT2, + ACTIONS(5418), 1, + sym_super, + ACTIONS(5990), 1, + sym_identifier, + STATE(1490), 1, + sym_type_arguments, STATE(2855), 2, sym_line_comment, sym_block_comment, - [85955] = 7, + [86127] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, + ACTIONS(5085), 1, anon_sym_where, - ACTIONS(5490), 1, + ACTIONS(5438), 1, anon_sym_LBRACE, - STATE(1127), 1, + STATE(605), 1, sym_enum_variant_list, - STATE(3386), 1, + STATE(3403), 1, sym_where_clause, STATE(2856), 2, sym_line_comment, sym_block_comment, - [85978] = 7, + [86150] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5486), 1, + ACTIONS(5073), 1, anon_sym_LBRACE, - STATE(708), 1, - sym_enum_variant_list, - STATE(3266), 1, + ACTIONS(5085), 1, + anon_sym_where, + STATE(700), 1, + sym_declaration_list, + STATE(3362), 1, sym_where_clause, STATE(2857), 2, sym_line_comment, sym_block_comment, - [86001] = 7, + [86173] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(6144), 1, - anon_sym_COLON_COLON, - ACTIONS(6154), 1, - anon_sym_for, - STATE(2029), 1, - sym_type_arguments, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(6131), 1, + anon_sym_SEMI, + STATE(3606), 1, + sym_where_clause, STATE(2858), 2, sym_line_comment, sym_block_comment, - [86024] = 7, + [86196] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(5085), 1, anon_sym_where, - ACTIONS(5120), 1, - anon_sym_LBRACE, - STATE(543), 1, - sym_declaration_list, - STATE(3352), 1, + ACTIONS(6133), 1, + anon_sym_SEMI, + STATE(3730), 1, sym_where_clause, STATE(2859), 2, sym_line_comment, sym_block_comment, - [86047] = 7, + [86219] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, + ACTIONS(4669), 1, anon_sym_LT2, - ACTIONS(4945), 1, + ACTIONS(4925), 1, anon_sym_for, - ACTIONS(6144), 1, + ACTIONS(5886), 1, anon_sym_COLON_COLON, - STATE(2029), 1, + STATE(2022), 1, sym_type_arguments, STATE(2860), 2, sym_line_comment, sym_block_comment, - [86070] = 7, + [86242] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(348), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(3598), 1, - sym_block, - STATE(3719), 1, - sym_label, + ACTIONS(4663), 1, + anon_sym_DOT_DOT, + ACTIONS(5306), 1, + anon_sym_COLON_COLON, + ACTIONS(4665), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2861), 2, sym_line_comment, sym_block_comment, - [86093] = 5, + [86263] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5841), 1, - anon_sym_COLON_COLON, + ACTIONS(348), 1, + anon_sym_LBRACE, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + STATE(1532), 1, + sym_block, + STATE(3709), 1, + sym_label, STATE(2862), 2, sym_line_comment, sym_block_comment, - ACTIONS(4909), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86112] = 7, + [86286] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5130), 1, - anon_sym_LBRACE, - STATE(1140), 1, - sym_declaration_list, - STATE(3368), 1, - sym_where_clause, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(5886), 1, + anon_sym_COLON_COLON, + ACTIONS(6135), 1, + anon_sym_for, + STATE(2022), 1, + sym_type_arguments, STATE(2863), 2, sym_line_comment, sym_block_comment, - [86135] = 5, + [86309] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5847), 1, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(5886), 1, anon_sym_COLON_COLON, + ACTIONS(6137), 1, + anon_sym_for, + STATE(2022), 1, + sym_type_arguments, STATE(2864), 2, sym_line_comment, sym_block_comment, - ACTIONS(4909), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86154] = 7, + [86332] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(5835), 1, - sym_identifier, - ACTIONS(5837), 1, - sym_super, - STATE(2132), 1, - sym_type_arguments, + ACTIONS(5073), 1, + anon_sym_LBRACE, + ACTIONS(5085), 1, + anon_sym_where, + STATE(542), 1, + sym_declaration_list, + STATE(3288), 1, + sym_where_clause, STATE(2865), 2, sym_line_comment, sym_block_comment, - [86177] = 7, + [86355] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(348), 1, - anon_sym_LBRACE, - ACTIONS(3459), 1, - anon_sym_SQUOTE, - STATE(3575), 1, - sym_block, - STATE(3719), 1, - sym_label, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(5886), 1, + anon_sym_COLON_COLON, + ACTIONS(6139), 1, + anon_sym_for, + STATE(2022), 1, + sym_type_arguments, STATE(2866), 2, sym_line_comment, sym_block_comment, - [86200] = 7, + [86378] = 7, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(6156), 1, - anon_sym_SEMI, - ACTIONS(6158), 1, - anon_sym_EQ, - ACTIONS(6160), 1, - anon_sym_else, + ACTIONS(6141), 1, + anon_sym_async, + ACTIONS(6143), 1, + anon_sym_move, + STATE(245), 1, + sym_closure_parameters, STATE(2867), 2, sym_line_comment, sym_block_comment, - [86223] = 7, + [86401] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(6144), 1, - anon_sym_COLON_COLON, - ACTIONS(6162), 1, - anon_sym_for, - STATE(2029), 1, - sym_type_arguments, + ACTIONS(348), 1, + anon_sym_LBRACE, + ACTIONS(3456), 1, + anon_sym_SQUOTE, + STATE(3577), 1, + sym_block, + STATE(3709), 1, + sym_label, STATE(2868), 2, sym_line_comment, sym_block_comment, - [86246] = 7, + [86424] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(6144), 1, - anon_sym_COLON_COLON, - ACTIONS(6164), 1, - anon_sym_for, - STATE(2029), 1, - sym_type_arguments, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(6145), 1, + anon_sym_SEMI, + ACTIONS(6147), 1, + anon_sym_EQ, + ACTIONS(6149), 1, + anon_sym_else, STATE(2869), 2, sym_line_comment, sym_block_comment, - [86269] = 7, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(5771), 1, - anon_sym_COLON, - ACTIONS(5773), 1, - anon_sym_PIPE, - ACTIONS(5775), 1, - anon_sym_COMMA, - STATE(2973), 1, - aux_sym_closure_parameters_repeat1, - STATE(2870), 2, - sym_line_comment, - sym_block_comment, - [86292] = 5, + [86447] = 5, ACTIONS(3), 1, anon_sym_SLASH_SLASH, ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6166), 1, + ACTIONS(6151), 1, aux_sym_token_repetition_pattern_token1, - STATE(2871), 2, + STATE(2870), 2, sym_line_comment, sym_block_comment, - ACTIONS(6168), 3, + ACTIONS(6153), 3, anon_sym_PLUS, anon_sym_STAR, anon_sym_QMARK, - [86311] = 7, + [86466] = 7, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, + ACTIONS(4669), 1, anon_sym_LT2, - ACTIONS(6144), 1, - anon_sym_COLON_COLON, - ACTIONS(6170), 1, - anon_sym_for, - STATE(2029), 1, + ACTIONS(4671), 1, + anon_sym_LPAREN, + STATE(2023), 1, sym_type_arguments, - STATE(2872), 2, + STATE(2099), 1, + sym_parameters, + STATE(2871), 2, sym_line_comment, sym_block_comment, - [86334] = 4, + [86489] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2873), 2, + STATE(2872), 2, sym_line_comment, sym_block_comment, - ACTIONS(984), 4, + ACTIONS(1026), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - [86351] = 5, + [86506] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - STATE(2874), 2, + ACTIONS(6155), 1, + anon_sym_DQUOTE, + ACTIONS(6157), 2, + sym_string_content, + sym_escape_sequence, + STATE(2873), 3, sym_line_comment, sym_block_comment, - ACTIONS(6172), 3, - anon_sym_RPAREN, - anon_sym_PIPE, + aux_sym_string_literal_repeat1, + [86525] = 6, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(6160), 1, + anon_sym_RBRACE, + ACTIONS(6162), 1, anon_sym_COMMA, - [86370] = 7, + STATE(3101), 1, + aux_sym_struct_pattern_repeat1, + STATE(2874), 2, + sym_line_comment, + sym_block_comment, + [86545] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(4957), 1, - anon_sym_for, - ACTIONS(6144), 1, - anon_sym_COLON_COLON, - STATE(2029), 1, - sym_type_arguments, + ACTIONS(6164), 1, + anon_sym_RBRACE, + ACTIONS(6166), 1, + anon_sym_COMMA, + STATE(2916), 1, + aux_sym_struct_pattern_repeat1, STATE(2875), 2, sym_line_comment, sym_block_comment, - [86393] = 7, + [86565] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5120), 1, - anon_sym_LBRACE, - STATE(773), 1, - sym_declaration_list, - STATE(3452), 1, - sym_where_clause, + ACTIONS(6168), 1, + anon_sym_RBRACE, + ACTIONS(6170), 1, + anon_sym_COMMA, + STATE(2919), 1, + aux_sym_struct_pattern_repeat1, STATE(2876), 2, sym_line_comment, sym_block_comment, - [86416] = 7, + [86585] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(4687), 1, - anon_sym_LPAREN, - STATE(2026), 1, - sym_type_arguments, - STATE(2103), 1, - sym_parameters, + ACTIONS(3293), 1, + anon_sym_RPAREN, + ACTIONS(6172), 1, + anon_sym_COMMA, + STATE(3104), 1, + aux_sym_tuple_type_repeat1, STATE(2877), 2, sym_line_comment, sym_block_comment, - [86439] = 5, + [86605] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3173), 1, - anon_sym_PLUS, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(6174), 1, + anon_sym_EQ, + STATE(3539), 1, + sym_where_clause, STATE(2878), 2, sym_line_comment, sym_block_comment, - ACTIONS(6174), 3, - anon_sym_COLON, - anon_sym_GT, - anon_sym_COMMA, - [86458] = 7, + [86625] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5155), 1, - anon_sym_LBRACE, - STATE(1146), 1, - sym_field_declaration_list, - STATE(3413), 1, - sym_where_clause, + ACTIONS(5655), 1, + anon_sym_RPAREN, + ACTIONS(5657), 1, + anon_sym_COMMA, + STATE(2922), 1, + aux_sym_parameters_repeat1, STATE(2879), 2, sym_line_comment, sym_block_comment, - [86481] = 7, + [86645] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(5120), 1, - anon_sym_LBRACE, - STATE(623), 1, - sym_declaration_list, - STATE(3363), 1, - sym_where_clause, + ACTIONS(6176), 1, + anon_sym_GT, + ACTIONS(6178), 1, + anon_sym_COMMA, + STATE(2924), 1, + aux_sym_use_bounds_repeat1, STATE(2880), 2, sym_line_comment, sym_block_comment, - [86504] = 6, - ACTIONS(101), 1, - aux_sym_string_literal_token1, + [86665] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2288), 1, - sym_string_literal, - ACTIONS(4931), 2, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(6180), 1, + anon_sym_GT, + ACTIONS(6182), 1, + anon_sym_COMMA, + STATE(2925), 1, + aux_sym_use_bounds_repeat1, STATE(2881), 2, sym_line_comment, sym_block_comment, - [86525] = 6, + [86685] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(6176), 1, + ACTIONS(5073), 1, + anon_sym_LBRACE, + ACTIONS(6184), 1, anon_sym_SEMI, - STATE(3691), 1, - sym_where_clause, + STATE(571), 1, + sym_declaration_list, STATE(2882), 2, sym_line_comment, sym_block_comment, - [86545] = 4, + [86705] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(6186), 1, + sym_identifier, + ACTIONS(6188), 1, + anon_sym_ref, + ACTIONS(6190), 1, + sym_mutable_specifier, STATE(2883), 2, sym_line_comment, sym_block_comment, - ACTIONS(6178), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [86561] = 4, + [86725] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(6192), 1, + anon_sym_SEMI, + ACTIONS(6194), 1, + anon_sym_EQ, STATE(2884), 2, sym_line_comment, sym_block_comment, - ACTIONS(1006), 3, - anon_sym_COLON, - anon_sym_GT, - anon_sym_COMMA, - [86577] = 6, + [86745] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6180), 1, - anon_sym_RBRACE, - ACTIONS(6182), 1, - anon_sym_COMMA, - STATE(2938), 1, - aux_sym_struct_pattern_repeat1, STATE(2885), 2, sym_line_comment, sym_block_comment, - [86597] = 6, + ACTIONS(4997), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86761] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6184), 1, - anon_sym_RBRACE, - ACTIONS(6186), 1, - anon_sym_COMMA, - STATE(2941), 1, - aux_sym_struct_pattern_repeat1, STATE(2886), 2, sym_line_comment, sym_block_comment, - [86617] = 5, + ACTIONS(5025), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86777] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6190), 1, - anon_sym_COLON, - ACTIONS(6188), 2, + ACTIONS(6196), 1, anon_sym_RBRACE, + ACTIONS(6198), 1, anon_sym_COMMA, + STATE(2927), 1, + aux_sym_enum_variant_list_repeat2, STATE(2887), 2, sym_line_comment, sym_block_comment, - [86635] = 6, + [86797] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3293), 1, - anon_sym_RPAREN, - ACTIONS(6192), 1, + ACTIONS(4847), 1, + anon_sym_GT, + ACTIONS(6200), 1, anon_sym_COMMA, - STATE(2913), 1, - aux_sym_tuple_type_repeat1, + STATE(3041), 1, + aux_sym_type_parameters_repeat1, STATE(2888), 2, sym_line_comment, sym_block_comment, - [86655] = 4, + [86817] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(4847), 1, + anon_sym_GT, + ACTIONS(6200), 1, + anon_sym_COMMA, + STATE(2931), 1, + aux_sym_type_parameters_repeat1, STATE(2889), 2, sym_line_comment, sym_block_comment, - ACTIONS(4935), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86671] = 4, + [86837] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(5089), 1, + anon_sym_LBRACE, + ACTIONS(6202), 1, + anon_sym_SEMI, + STATE(1099), 1, + sym_declaration_list, STATE(2890), 2, sym_line_comment, sym_block_comment, - ACTIONS(6194), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [86687] = 6, + [86857] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5611), 1, - anon_sym_RPAREN, - ACTIONS(5613), 1, - anon_sym_COMMA, - STATE(2944), 1, - aux_sym_parameters_repeat1, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(6204), 1, + anon_sym_SEMI, + STATE(3739), 1, + sym_where_clause, STATE(2891), 2, sym_line_comment, sym_block_comment, - [86707] = 4, + [86877] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, @@ -188417,143 +187354,149 @@ static const uint16_t ts_small_parse_table[] = { STATE(2892), 2, sym_line_comment, sym_block_comment, - ACTIONS(5015), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86723] = 6, + ACTIONS(6206), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [86893] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6196), 1, - anon_sym_GT, - ACTIONS(6198), 1, - anon_sym_COMMA, - STATE(2947), 1, - aux_sym_use_bounds_repeat1, STATE(2893), 2, sym_line_comment, sym_block_comment, - [86743] = 6, + ACTIONS(4937), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86909] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6200), 1, - anon_sym_GT, - ACTIONS(6202), 1, - anon_sym_COMMA, - STATE(2948), 1, - aux_sym_use_bounds_repeat1, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(6208), 1, + anon_sym_SEMI, + ACTIONS(6210), 1, + anon_sym_EQ, STATE(2894), 2, sym_line_comment, sym_block_comment, - [86763] = 6, + [86929] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5418), 1, + ACTIONS(6212), 1, anon_sym_RBRACE, - ACTIONS(6204), 1, + ACTIONS(6214), 1, anon_sym_COMMA, - STATE(3062), 1, - aux_sym_struct_pattern_repeat1, + STATE(2936), 1, + aux_sym_field_declaration_list_repeat1, STATE(2895), 2, sym_line_comment, sym_block_comment, - [86783] = 6, + [86949] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(6206), 1, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(6216), 1, anon_sym_SEMI, - ACTIONS(6208), 1, - anon_sym_EQ, + STATE(3648), 1, + sym_where_clause, STATE(2896), 2, sym_line_comment, sym_block_comment, - [86803] = 4, + [86969] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(6218), 1, + anon_sym_SEMI, + STATE(3725), 1, + sym_where_clause, STATE(2897), 2, sym_line_comment, sym_block_comment, - ACTIONS(5001), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86819] = 6, + [86989] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6210), 1, - anon_sym_RBRACE, - ACTIONS(6212), 1, - anon_sym_COMMA, - STATE(2950), 1, - aux_sym_enum_variant_list_repeat2, + ACTIONS(5089), 1, + anon_sym_LBRACE, + ACTIONS(6220), 1, + anon_sym_SEMI, + STATE(1184), 1, + sym_declaration_list, STATE(2898), 2, sym_line_comment, sym_block_comment, - [86839] = 6, + [87009] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3151), 1, - anon_sym_RPAREN, - ACTIONS(6214), 1, - anon_sym_COMMA, - STATE(2767), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(4205), 1, + anon_sym_LBRACE, + ACTIONS(6222), 1, + anon_sym_COLON_COLON, + STATE(1915), 1, + sym_field_initializer_list, STATE(2899), 2, sym_line_comment, sym_block_comment, - [86859] = 4, + [87029] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(5033), 1, + anon_sym_RBRACE, + ACTIONS(6224), 1, + anon_sym_COMMA, + STATE(2943), 1, + aux_sym_field_initializer_list_repeat1, STATE(2900), 2, sym_line_comment, sym_block_comment, - ACTIONS(6216), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [86875] = 4, + [87049] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(952), 1, + anon_sym_RPAREN, + ACTIONS(4319), 1, + anon_sym_COMMA, + STATE(2645), 1, + aux_sym_arguments_repeat1, STATE(2901), 2, sym_line_comment, sym_block_comment, - ACTIONS(4987), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86891] = 4, + [87069] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(6226), 1, + anon_sym_SEMI, + STATE(3522), 1, + sym_where_clause, STATE(2902), 2, sym_line_comment, sym_block_comment, - ACTIONS(6218), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [86907] = 4, + [87089] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, @@ -188561,149 +187504,139 @@ static const uint16_t ts_small_parse_table[] = { STATE(2903), 2, sym_line_comment, sym_block_comment, - ACTIONS(5011), 3, + ACTIONS(4985), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [86923] = 6, + [87105] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4867), 1, - anon_sym_GT, - ACTIONS(6220), 1, + ACTIONS(926), 1, + anon_sym_RPAREN, + ACTIONS(4345), 1, anon_sym_COMMA, - STATE(3009), 1, - aux_sym_type_parameters_repeat1, + STATE(2645), 1, + aux_sym_arguments_repeat1, STATE(2904), 2, sym_line_comment, sym_block_comment, - [86943] = 6, + [87125] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4867), 1, - anon_sym_GT, - ACTIONS(6220), 1, - anon_sym_COMMA, - STATE(2954), 1, - aux_sym_type_parameters_repeat1, STATE(2905), 2, sym_line_comment, sym_block_comment, - [86963] = 6, + ACTIONS(5001), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87141] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5420), 1, - anon_sym_RBRACE, - ACTIONS(6222), 1, - anon_sym_COMMA, - STATE(3062), 1, - aux_sym_struct_pattern_repeat1, STATE(2906), 2, sym_line_comment, sym_block_comment, - [86983] = 6, + ACTIONS(5023), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87157] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, - anon_sym_LBRACE, - ACTIONS(6224), 1, - anon_sym_SEMI, - STATE(1172), 1, - sym_declaration_list, STATE(2907), 2, sym_line_comment, sym_block_comment, - [87003] = 6, + ACTIONS(5029), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87173] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5120), 1, - anon_sym_LBRACE, - ACTIONS(6226), 1, - anon_sym_SEMI, - STATE(562), 1, - sym_declaration_list, STATE(2908), 2, sym_line_comment, sym_block_comment, - [87023] = 5, + ACTIONS(6228), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [87189] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(6228), 2, - anon_sym_RPAREN, - anon_sym_COMMA, STATE(2909), 2, sym_line_comment, sym_block_comment, - [87041] = 6, + ACTIONS(6230), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [87205] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(6230), 1, - anon_sym_SEMI, + ACTIONS(932), 1, + anon_sym_RBRACK, ACTIONS(6232), 1, - anon_sym_EQ, + anon_sym_COMMA, + STATE(2645), 1, + aux_sym_arguments_repeat1, STATE(2910), 2, sym_line_comment, sym_block_comment, - [87061] = 6, + [87225] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6234), 1, - anon_sym_RBRACE, - ACTIONS(6236), 1, - anon_sym_COMMA, - STATE(2958), 1, - aux_sym_field_declaration_list_repeat1, STATE(2911), 2, sym_line_comment, sym_block_comment, - [87081] = 6, + ACTIONS(4903), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87241] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(6238), 1, - anon_sym_SEMI, - STATE(3638), 1, - sym_where_clause, + ACTIONS(1664), 1, + anon_sym_GT, + ACTIONS(6234), 1, + anon_sym_COMMA, + STATE(2945), 1, + aux_sym_type_arguments_repeat1, STATE(2912), 2, sym_line_comment, sym_block_comment, - [87101] = 5, + [87261] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6228), 1, - anon_sym_RPAREN, - ACTIONS(6240), 1, + ACTIONS(1664), 1, + anon_sym_GT, + ACTIONS(6234), 1, anon_sym_COMMA, - STATE(2913), 3, + STATE(3186), 1, + aux_sym_type_arguments_repeat1, + STATE(2913), 2, sym_line_comment, sym_block_comment, - aux_sym_tuple_type_repeat1, - [87119] = 4, + [87281] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, @@ -188711,1206 +187644,1198 @@ static const uint16_t ts_small_parse_table[] = { STATE(2914), 2, sym_line_comment, sym_block_comment, - ACTIONS(6243), 3, + ACTIONS(6236), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [87135] = 6, + [87297] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(6245), 1, - anon_sym_SEMI, - STATE(3580), 1, - sym_where_clause, + ACTIONS(3135), 1, + anon_sym_RPAREN, + ACTIONS(6238), 1, + anon_sym_COMMA, + STATE(2773), 1, + aux_sym_slice_pattern_repeat1, STATE(2915), 2, sym_line_comment, sym_block_comment, - [87155] = 4, + [87317] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(5362), 1, + anon_sym_RBRACE, + ACTIONS(6240), 1, + anon_sym_COMMA, + STATE(3051), 1, + aux_sym_struct_pattern_repeat1, STATE(2916), 2, sym_line_comment, sym_block_comment, - ACTIONS(6247), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [87171] = 6, + [87337] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, - anon_sym_LBRACE, - ACTIONS(6249), 1, - anon_sym_SEMI, - STATE(1192), 1, - sym_declaration_list, STATE(2917), 2, sym_line_comment, sym_block_comment, - [87191] = 6, + ACTIONS(4979), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87353] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5120), 1, - anon_sym_LBRACE, - ACTIONS(6251), 1, - anon_sym_SEMI, - STATE(564), 1, - sym_declaration_list, + ACTIONS(3137), 1, + anon_sym_RPAREN, + ACTIONS(6242), 1, + anon_sym_COMMA, + STATE(2773), 1, + aux_sym_slice_pattern_repeat1, STATE(2918), 2, sym_line_comment, sym_block_comment, - [87211] = 6, + [87373] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6253), 1, - sym_identifier, - ACTIONS(6255), 1, - anon_sym_ref, - ACTIONS(6257), 1, - sym_mutable_specifier, + ACTIONS(5364), 1, + anon_sym_RBRACE, + ACTIONS(6244), 1, + anon_sym_COMMA, + STATE(3051), 1, + aux_sym_struct_pattern_repeat1, STATE(2919), 2, sym_line_comment, sym_block_comment, - [87231] = 6, + [87393] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5059), 1, - anon_sym_RBRACE, - ACTIONS(6259), 1, - anon_sym_COMMA, - STATE(2945), 1, - aux_sym_field_initializer_list_repeat1, STATE(2920), 2, sym_line_comment, sym_block_comment, - [87251] = 6, + ACTIONS(4989), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87409] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4907), 1, - anon_sym_COLON_COLON, - ACTIONS(4971), 1, - anon_sym_BANG, - ACTIONS(6261), 1, - sym_identifier, STATE(2921), 2, sym_line_comment, sym_block_comment, - [87271] = 6, + ACTIONS(4991), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87425] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(6263), 1, - anon_sym_SEMI, - STATE(3749), 1, - sym_where_clause, + ACTIONS(1378), 1, + anon_sym_RPAREN, + ACTIONS(5587), 1, + anon_sym_COMMA, + STATE(3068), 1, + aux_sym_parameters_repeat1, STATE(2922), 2, sym_line_comment, sym_block_comment, - [87291] = 6, + [87445] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(6265), 1, - anon_sym_SEMI, - STATE(3688), 1, - sym_where_clause, + ACTIONS(1378), 1, + anon_sym_RPAREN, + ACTIONS(5587), 1, + anon_sym_COMMA, + STATE(2949), 1, + aux_sym_parameters_repeat1, STATE(2923), 2, sym_line_comment, sym_block_comment, - [87311] = 6, + [87465] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1358), 1, - anon_sym_RPAREN, - ACTIONS(5599), 1, + ACTIONS(5912), 1, + anon_sym_GT, + ACTIONS(6246), 1, anon_sym_COMMA, - STATE(3077), 1, - aux_sym_parameters_repeat1, + STATE(3080), 1, + aux_sym_use_bounds_repeat1, STATE(2924), 2, sym_line_comment, sym_block_comment, - [87331] = 6, + [87485] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(930), 1, - anon_sym_RPAREN, - ACTIONS(4329), 1, + ACTIONS(5914), 1, + anon_sym_GT, + ACTIONS(6248), 1, anon_sym_COMMA, - STATE(2766), 1, - aux_sym_arguments_repeat1, + STATE(3080), 1, + aux_sym_use_bounds_repeat1, STATE(2925), 2, sym_line_comment, sym_block_comment, - [87351] = 4, + [87505] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(2926), 2, + ACTIONS(6250), 1, + anon_sym_RBRACE, + ACTIONS(6252), 1, + anon_sym_COMMA, + STATE(2926), 3, sym_line_comment, sym_block_comment, - ACTIONS(4909), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87367] = 4, + aux_sym_use_list_repeat1, + [87523] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(5123), 1, + anon_sym_RBRACE, + ACTIONS(6255), 1, + anon_sym_COMMA, + STATE(3088), 1, + aux_sym_enum_variant_list_repeat2, STATE(2927), 2, sym_line_comment, sym_block_comment, - ACTIONS(6267), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [87383] = 4, + [87543] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(5123), 1, + anon_sym_RBRACE, + ACTIONS(6255), 1, + anon_sym_COMMA, + STATE(2953), 1, + aux_sym_enum_variant_list_repeat2, STATE(2928), 2, sym_line_comment, sym_block_comment, - ACTIONS(6269), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [87399] = 4, + [87563] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(6257), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2929), 2, sym_line_comment, sym_block_comment, - ACTIONS(4979), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87415] = 4, + [87581] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(6259), 1, + anon_sym_SEMI, + STATE(3737), 1, + sym_where_clause, STATE(2930), 2, sym_line_comment, sym_block_comment, - ACTIONS(4981), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87431] = 4, + [87601] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(4841), 1, + anon_sym_GT, + ACTIONS(6261), 1, + anon_sym_COMMA, + STATE(3041), 1, + aux_sym_type_parameters_repeat1, STATE(2931), 2, sym_line_comment, sym_block_comment, - ACTIONS(4983), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87447] = 6, + [87621] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(934), 1, - anon_sym_RBRACK, - ACTIONS(6271), 1, - anon_sym_COMMA, - STATE(2766), 1, - aux_sym_arguments_repeat1, + ACTIONS(5089), 1, + anon_sym_LBRACE, + ACTIONS(6263), 1, + anon_sym_SEMI, + STATE(1212), 1, + sym_declaration_list, STATE(2932), 2, sym_line_comment, sym_block_comment, - [87467] = 6, + [87641] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5120), 1, - anon_sym_LBRACE, - ACTIONS(6273), 1, - anon_sym_SEMI, - STATE(570), 1, - sym_declaration_list, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(5148), 1, + anon_sym_for, + STATE(2023), 1, + sym_type_arguments, STATE(2933), 2, sym_line_comment, sym_block_comment, - [87487] = 5, + [87661] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6275), 1, - anon_sym_RBRACE, - ACTIONS(6277), 1, - anon_sym_COMMA, - STATE(2934), 3, + ACTIONS(5089), 1, + anon_sym_LBRACE, + ACTIONS(6265), 1, + anon_sym_SEMI, + STATE(1218), 1, + sym_declaration_list, + STATE(2934), 2, sym_line_comment, sym_block_comment, - aux_sym_use_list_repeat1, - [87505] = 6, + [87681] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1666), 1, - anon_sym_GT, - ACTIONS(6280), 1, - anon_sym_COMMA, - STATE(2971), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(6267), 1, + anon_sym_SEMI, + ACTIONS(6269), 1, + anon_sym_EQ, STATE(2935), 2, sym_line_comment, sym_block_comment, - [87525] = 6, + [87701] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1666), 1, - anon_sym_GT, - ACTIONS(6280), 1, + ACTIONS(5150), 1, + anon_sym_RBRACE, + ACTIONS(6271), 1, anon_sym_COMMA, - STATE(3053), 1, - aux_sym_type_arguments_repeat1, + STATE(3137), 1, + aux_sym_field_declaration_list_repeat1, STATE(2936), 2, sym_line_comment, sym_block_comment, - [87545] = 6, + [87721] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3131), 1, - anon_sym_RPAREN, - ACTIONS(6282), 1, + ACTIONS(5150), 1, + anon_sym_RBRACE, + ACTIONS(6271), 1, anon_sym_COMMA, - STATE(2767), 1, - aux_sym_slice_pattern_repeat1, + STATE(2960), 1, + aux_sym_field_declaration_list_repeat1, STATE(2937), 2, sym_line_comment, sym_block_comment, - [87565] = 6, + [87741] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5318), 1, - anon_sym_RBRACE, - ACTIONS(6284), 1, - anon_sym_COMMA, - STATE(3062), 1, - aux_sym_struct_pattern_repeat1, + ACTIONS(5089), 1, + anon_sym_LBRACE, + ACTIONS(6273), 1, + anon_sym_SEMI, + STATE(1230), 1, + sym_declaration_list, STATE(2938), 2, sym_line_comment, sym_block_comment, - [87585] = 6, + [87761] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3133), 1, - anon_sym_RPAREN, - ACTIONS(6286), 1, - anon_sym_COMMA, - STATE(2767), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(6275), 1, + anon_sym_SEMI, + ACTIONS(6277), 1, + anon_sym_EQ, STATE(2939), 2, sym_line_comment, sym_block_comment, - [87605] = 6, + [87781] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1358), 1, - anon_sym_RPAREN, - ACTIONS(5599), 1, - anon_sym_COMMA, - STATE(3081), 1, - aux_sym_parameters_repeat1, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(6279), 1, + anon_sym_SEMI, + STATE(3740), 1, + sym_where_clause, STATE(2940), 2, sym_line_comment, sym_block_comment, - [87625] = 6, + [87801] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5320), 1, - anon_sym_RBRACE, - ACTIONS(6288), 1, + ACTIONS(934), 1, + anon_sym_RPAREN, + ACTIONS(6281), 1, anon_sym_COMMA, - STATE(3062), 1, - aux_sym_struct_pattern_repeat1, + STATE(2645), 1, + aux_sym_arguments_repeat1, STATE(2941), 2, sym_line_comment, sym_block_comment, - [87645] = 4, + [87821] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(6283), 1, + sym_identifier, + ACTIONS(6285), 1, + anon_sym_await, + ACTIONS(6287), 1, + sym_integer_literal, STATE(2942), 2, sym_line_comment, sym_block_comment, - ACTIONS(4667), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87661] = 6, + [87841] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5120), 1, - anon_sym_LBRACE, - ACTIONS(6290), 1, - anon_sym_SEMI, - STATE(572), 1, - sym_declaration_list, - STATE(2943), 2, + ACTIONS(6289), 1, + anon_sym_RBRACE, + ACTIONS(6291), 1, + anon_sym_COMMA, + STATE(2943), 3, sym_line_comment, sym_block_comment, - [87681] = 6, + aux_sym_field_initializer_list_repeat1, + [87859] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1366), 1, - anon_sym_RPAREN, - ACTIONS(5631), 1, + ACTIONS(5475), 1, + anon_sym_GT, + ACTIONS(5477), 1, anon_sym_COMMA, - STATE(3077), 1, - aux_sym_parameters_repeat1, + STATE(3163), 1, + aux_sym_type_parameters_repeat1, STATE(2944), 2, sym_line_comment, sym_block_comment, - [87701] = 5, + [87879] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6292), 1, - anon_sym_RBRACE, + ACTIONS(1660), 1, + anon_sym_GT, ACTIONS(6294), 1, anon_sym_COMMA, - STATE(2945), 3, + STATE(3186), 1, + aux_sym_type_arguments_repeat1, + STATE(2945), 2, sym_line_comment, sym_block_comment, - aux_sym_field_initializer_list_repeat1, - [87719] = 6, + [87899] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1366), 1, - anon_sym_RPAREN, - ACTIONS(5631), 1, - anon_sym_COMMA, - STATE(2974), 1, - aux_sym_parameters_repeat1, + ACTIONS(5073), 1, + anon_sym_LBRACE, + ACTIONS(6296), 1, + anon_sym_SEMI, + STATE(589), 1, + sym_declaration_list, STATE(2946), 2, sym_line_comment, sym_block_comment, - [87739] = 6, + [87919] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5903), 1, - anon_sym_GT, - ACTIONS(6297), 1, - anon_sym_COMMA, - STATE(3087), 1, - aux_sym_use_bounds_repeat1, STATE(2947), 2, sym_line_comment, sym_block_comment, - [87759] = 6, + ACTIONS(6298), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [87935] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5913), 1, - anon_sym_GT, - ACTIONS(6299), 1, + ACTIONS(6302), 1, + anon_sym_COLON, + ACTIONS(6300), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(3087), 1, - aux_sym_use_bounds_repeat1, STATE(2948), 2, sym_line_comment, sym_block_comment, - [87779] = 6, + [87953] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3081), 1, - anon_sym_SQUOTE, - ACTIONS(6301), 1, - anon_sym_GT, - STATE(3298), 1, - sym_lifetime, + ACTIONS(1374), 1, + anon_sym_RPAREN, + ACTIONS(6304), 1, + anon_sym_COMMA, + STATE(3068), 1, + aux_sym_parameters_repeat1, STATE(2949), 2, sym_line_comment, sym_block_comment, - [87799] = 6, + [87973] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5122), 1, - anon_sym_RBRACE, - ACTIONS(6303), 1, - anon_sym_COMMA, - STATE(3095), 1, - aux_sym_enum_variant_list_repeat2, + ACTIONS(5073), 1, + anon_sym_LBRACE, + ACTIONS(6306), 1, + anon_sym_SEMI, + STATE(561), 1, + sym_declaration_list, STATE(2950), 2, sym_line_comment, sym_block_comment, - [87819] = 6, + [87993] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5122), 1, - anon_sym_RBRACE, - ACTIONS(6303), 1, - anon_sym_COMMA, - STATE(2977), 1, - aux_sym_enum_variant_list_repeat2, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(6308), 1, + anon_sym_SEMI, + ACTIONS(6310), 1, + anon_sym_EQ, STATE(2951), 2, sym_line_comment, sym_block_comment, - [87839] = 6, + [88013] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6301), 1, - anon_sym_GT, - ACTIONS(6305), 1, + ACTIONS(6312), 1, + anon_sym_RBRACE, + ACTIONS(6314), 1, anon_sym_COMMA, - STATE(3084), 1, - aux_sym_for_lifetimes_repeat1, + STATE(3096), 1, + aux_sym_struct_pattern_repeat1, STATE(2952), 2, sym_line_comment, sym_block_comment, - [87859] = 6, + [88033] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5120), 1, - anon_sym_LBRACE, - ACTIONS(6307), 1, - anon_sym_SEMI, - STATE(639), 1, - sym_declaration_list, + ACTIONS(5146), 1, + anon_sym_RBRACE, + ACTIONS(6316), 1, + anon_sym_COMMA, + STATE(3088), 1, + aux_sym_enum_variant_list_repeat2, STATE(2953), 2, sym_line_comment, sym_block_comment, - [87879] = 6, + [88053] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4865), 1, - anon_sym_GT, - ACTIONS(6309), 1, - anon_sym_COMMA, - STATE(3009), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(5073), 1, + anon_sym_LBRACE, + ACTIONS(6318), 1, + anon_sym_SEMI, + STATE(591), 1, + sym_declaration_list, STATE(2954), 2, sym_line_comment, sym_block_comment, - [87899] = 6, + [88073] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, + ACTIONS(5089), 1, anon_sym_LBRACE, - ACTIONS(6311), 1, + ACTIONS(6320), 1, anon_sym_SEMI, - STATE(1220), 1, + STATE(1260), 1, sym_declaration_list, STATE(2955), 2, sym_line_comment, sym_block_comment, - [87919] = 6, + [88093] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, + ACTIONS(5089), 1, anon_sym_LBRACE, - ACTIONS(6313), 1, + ACTIONS(6322), 1, anon_sym_SEMI, - STATE(1226), 1, + STATE(1262), 1, sym_declaration_list, STATE(2956), 2, sym_line_comment, sym_block_comment, - [87939] = 6, + [88113] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(6315), 1, + ACTIONS(5089), 1, + anon_sym_LBRACE, + ACTIONS(6324), 1, anon_sym_SEMI, - ACTIONS(6317), 1, - anon_sym_EQ, + STATE(1268), 1, + sym_declaration_list, STATE(2957), 2, sym_line_comment, sym_block_comment, - [87959] = 6, + [88133] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5136), 1, - anon_sym_RBRACE, - ACTIONS(6319), 1, - anon_sym_COMMA, - STATE(3139), 1, - aux_sym_field_declaration_list_repeat1, + ACTIONS(5089), 1, + anon_sym_LBRACE, + ACTIONS(6326), 1, + anon_sym_SEMI, + STATE(1270), 1, + sym_declaration_list, STATE(2958), 2, sym_line_comment, sym_block_comment, - [87979] = 6, + [88153] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5136), 1, - anon_sym_RBRACE, - ACTIONS(6319), 1, - anon_sym_COMMA, - STATE(2984), 1, - aux_sym_field_declaration_list_repeat1, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(6328), 1, + anon_sym_SEMI, + ACTIONS(6330), 1, + anon_sym_EQ, STATE(2959), 2, sym_line_comment, sym_block_comment, - [87999] = 6, + [88173] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6074), 1, - anon_sym_GT, - ACTIONS(6321), 1, + ACTIONS(5067), 1, + anon_sym_RBRACE, + ACTIONS(6332), 1, anon_sym_COMMA, - STATE(3087), 1, - aux_sym_use_bounds_repeat1, + STATE(3137), 1, + aux_sym_field_declaration_list_repeat1, STATE(2960), 2, sym_line_comment, sym_block_comment, - [88019] = 6, + [88193] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, - anon_sym_LBRACE, - ACTIONS(6323), 1, - anon_sym_SEMI, - STATE(1238), 1, - sym_declaration_list, STATE(2961), 2, sym_line_comment, sym_block_comment, - [88039] = 6, + ACTIONS(6334), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [88209] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5521), 1, - anon_sym_GT, - ACTIONS(5523), 1, - anon_sym_COMMA, - STATE(3162), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(5073), 1, + anon_sym_LBRACE, + ACTIONS(6336), 1, + anon_sym_SEMI, + STATE(611), 1, + sym_declaration_list, STATE(2962), 2, sym_line_comment, sym_block_comment, - [88059] = 6, + [88229] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6080), 1, - anon_sym_GT, - ACTIONS(6325), 1, + ACTIONS(6338), 1, + anon_sym_RBRACE, + ACTIONS(6340), 1, anon_sym_COMMA, - STATE(3087), 1, - aux_sym_use_bounds_repeat1, + STATE(3082), 1, + aux_sym_use_list_repeat1, STATE(2963), 2, sym_line_comment, sym_block_comment, - [88079] = 6, + [88249] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(6327), 1, - anon_sym_SEMI, - ACTIONS(6329), 1, - anon_sym_EQ, STATE(2964), 2, sym_line_comment, sym_block_comment, - [88099] = 6, + ACTIONS(4965), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88265] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(6331), 1, - anon_sym_SEMI, - STATE(3799), 1, - sym_where_clause, STATE(2965), 2, sym_line_comment, sym_block_comment, - [88119] = 6, + ACTIONS(6342), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [88281] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5009), 1, - anon_sym_RBRACE, - ACTIONS(6333), 1, + ACTIONS(5747), 1, anon_sym_COMMA, - STATE(2945), 1, - aux_sym_field_initializer_list_repeat1, + ACTIONS(6344), 1, + anon_sym_PIPE, + STATE(2988), 1, + aux_sym_closure_parameters_repeat1, STATE(2966), 2, sym_line_comment, sym_block_comment, - [88139] = 6, + [88301] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(936), 1, - anon_sym_RPAREN, - ACTIONS(6335), 1, - anon_sym_COMMA, - STATE(2766), 1, - aux_sym_arguments_repeat1, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(6346), 1, + anon_sym_SEMI, + STATE(3712), 1, + sym_where_clause, STATE(2967), 2, sym_line_comment, sym_block_comment, - [88159] = 5, + [88321] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6339), 1, - anon_sym_COLON, - ACTIONS(6337), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(5089), 1, + anon_sym_LBRACE, + ACTIONS(6348), 1, + anon_sym_SEMI, + STATE(1308), 1, + sym_declaration_list, STATE(2968), 2, sym_line_comment, sym_block_comment, - [88177] = 6, + [88341] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(6341), 1, + ACTIONS(5089), 1, + anon_sym_LBRACE, + ACTIONS(6350), 1, anon_sym_SEMI, - ACTIONS(6343), 1, - anon_sym_EQ, + STATE(1310), 1, + sym_declaration_list, STATE(2969), 2, sym_line_comment, sym_block_comment, - [88197] = 6, + [88361] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6345), 1, - anon_sym_RBRACE, - ACTIONS(6347), 1, - anon_sym_COMMA, - STATE(2895), 1, - aux_sym_struct_pattern_repeat1, + ACTIONS(5089), 1, + anon_sym_LBRACE, + ACTIONS(6352), 1, + anon_sym_SEMI, + STATE(1317), 1, + sym_declaration_list, STATE(2970), 2, sym_line_comment, sym_block_comment, - [88217] = 6, + [88381] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1674), 1, - anon_sym_GT, - ACTIONS(6349), 1, - anon_sym_COMMA, - STATE(3053), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(5089), 1, + anon_sym_LBRACE, + ACTIONS(6354), 1, + anon_sym_SEMI, + STATE(1319), 1, + sym_declaration_list, STATE(2971), 2, sym_line_comment, sym_block_comment, - [88237] = 6, + [88401] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(6351), 1, + ACTIONS(5089), 1, + anon_sym_LBRACE, + ACTIONS(6356), 1, anon_sym_SEMI, - ACTIONS(6353), 1, - anon_sym_EQ, + STATE(1325), 1, + sym_declaration_list, STATE(2972), 2, sym_line_comment, sym_block_comment, - [88257] = 6, + [88421] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5775), 1, - anon_sym_COMMA, - ACTIONS(6355), 1, - anon_sym_PIPE, - STATE(3004), 1, - aux_sym_closure_parameters_repeat1, + ACTIONS(5089), 1, + anon_sym_LBRACE, + ACTIONS(6358), 1, + anon_sym_SEMI, + STATE(1327), 1, + sym_declaration_list, STATE(2973), 2, sym_line_comment, sym_block_comment, - [88277] = 6, + [88441] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1368), 1, - anon_sym_RPAREN, - ACTIONS(6357), 1, - anon_sym_COMMA, - STATE(3077), 1, - aux_sym_parameters_repeat1, STATE(2974), 2, sym_line_comment, sym_block_comment, - [88297] = 5, + ACTIONS(6360), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [88457] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6361), 1, - anon_sym_COLON, - ACTIONS(6359), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(6362), 1, + anon_sym_SEMI, + ACTIONS(6364), 1, + anon_sym_EQ, STATE(2975), 2, sym_line_comment, sym_block_comment, - [88315] = 6, + [88477] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3163), 1, anon_sym_PLUS, - ACTIONS(6363), 1, + ACTIONS(6366), 1, anon_sym_SEMI, - ACTIONS(6365), 1, + ACTIONS(6368), 1, anon_sym_EQ, STATE(2976), 2, sym_line_comment, sym_block_comment, - [88335] = 6, + [88497] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5100), 1, - anon_sym_RBRACE, - ACTIONS(6367), 1, - anon_sym_COMMA, - STATE(3095), 1, - aux_sym_enum_variant_list_repeat2, STATE(2977), 2, sym_line_comment, sym_block_comment, - [88355] = 6, + ACTIONS(6370), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [88513] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, - anon_sym_LBRACE, - ACTIONS(6369), 1, - anon_sym_SEMI, - STATE(1268), 1, - sym_declaration_list, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(6372), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2978), 2, sym_line_comment, sym_block_comment, - [88375] = 6, + [88531] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, + ACTIONS(5089), 1, anon_sym_LBRACE, - ACTIONS(6371), 1, + ACTIONS(6374), 1, anon_sym_SEMI, - STATE(1270), 1, + STATE(1345), 1, sym_declaration_list, STATE(2979), 2, sym_line_comment, sym_block_comment, - [88395] = 6, + [88551] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(6373), 1, + ACTIONS(5089), 1, + anon_sym_LBRACE, + ACTIONS(6376), 1, anon_sym_SEMI, - STATE(3614), 1, - sym_where_clause, + STATE(1347), 1, + sym_declaration_list, STATE(2980), 2, sym_line_comment, sym_block_comment, - [88415] = 6, + [88571] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, - anon_sym_LBRACE, - ACTIONS(6375), 1, - anon_sym_SEMI, - STATE(1276), 1, - sym_declaration_list, + ACTIONS(4772), 1, + anon_sym_COLON_COLON, + ACTIONS(6378), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2981), 2, sym_line_comment, sym_block_comment, - [88435] = 6, + [88589] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, + ACTIONS(5073), 1, anon_sym_LBRACE, - ACTIONS(6377), 1, + ACTIONS(6380), 1, anon_sym_SEMI, - STATE(1278), 1, + STATE(551), 1, sym_declaration_list, STATE(2982), 2, sym_line_comment, sym_block_comment, - [88455] = 6, + [88609] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(6379), 1, - anon_sym_SEMI, - ACTIONS(6381), 1, - anon_sym_EQ, + ACTIONS(6382), 1, + anon_sym_LPAREN, + ACTIONS(6384), 1, + anon_sym_LBRACK, + ACTIONS(6386), 1, + anon_sym_LBRACE, STATE(2983), 2, sym_line_comment, sym_block_comment, - [88475] = 6, + [88629] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5098), 1, - anon_sym_RBRACE, - ACTIONS(6383), 1, - anon_sym_COMMA, - STATE(3139), 1, - aux_sym_field_declaration_list_repeat1, + ACTIONS(3081), 1, + anon_sym_SQUOTE, + ACTIONS(5910), 1, + sym_identifier, + STATE(3302), 1, + sym_lifetime, STATE(2984), 2, sym_line_comment, sym_block_comment, - [88495] = 5, + [88649] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6387), 1, - anon_sym_EQ, - ACTIONS(6385), 2, - anon_sym_RBRACE, - anon_sym_COMMA, STATE(2985), 2, sym_line_comment, sym_block_comment, - [88513] = 6, + ACTIONS(6388), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [88665] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5069), 1, - anon_sym_RBRACE, - ACTIONS(6389), 1, + ACTIONS(5743), 1, + anon_sym_COLON, + ACTIONS(6390), 2, + anon_sym_PIPE, anon_sym_COMMA, - STATE(3095), 1, - aux_sym_enum_variant_list_repeat2, STATE(2986), 2, sym_line_comment, sym_block_comment, - [88533] = 6, + [88683] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5069), 1, + ACTIONS(4957), 1, anon_sym_RBRACE, - ACTIONS(6389), 1, + ACTIONS(6392), 1, anon_sym_COMMA, - STATE(3097), 1, - aux_sym_enum_variant_list_repeat2, + STATE(2943), 1, + aux_sym_field_initializer_list_repeat1, STATE(2987), 2, sym_line_comment, sym_block_comment, - [88553] = 6, + [88703] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5120), 1, - anon_sym_LBRACE, - ACTIONS(6391), 1, - anon_sym_SEMI, - STATE(612), 1, - sym_declaration_list, - STATE(2988), 2, + ACTIONS(6390), 1, + anon_sym_PIPE, + ACTIONS(6394), 1, + anon_sym_COMMA, + STATE(2988), 3, sym_line_comment, sym_block_comment, - [88573] = 6, + aux_sym_closure_parameters_repeat1, + [88721] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(922), 1, - anon_sym_RBRACK, - ACTIONS(4277), 1, + ACTIONS(914), 1, + anon_sym_RPAREN, + ACTIONS(6397), 1, anon_sym_COMMA, - STATE(2766), 1, + STATE(2645), 1, aux_sym_arguments_repeat1, STATE(2989), 2, sym_line_comment, sym_block_comment, - [88593] = 6, + [88741] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, + ACTIONS(5089), 1, anon_sym_LBRACE, - ACTIONS(6393), 1, + ACTIONS(6399), 1, anon_sym_SEMI, - STATE(1316), 1, + STATE(1106), 1, sym_declaration_list, STATE(2990), 2, sym_line_comment, sym_block_comment, - [88613] = 6, + [88761] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(5009), 1, anon_sym_LBRACE, - ACTIONS(6395), 1, - anon_sym_SEMI, - STATE(1318), 1, - sym_declaration_list, + STATE(2023), 1, + sym_type_arguments, STATE(2991), 2, sym_line_comment, sym_block_comment, - [88633] = 5, + [88781] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4766), 1, - anon_sym_COLON_COLON, - ACTIONS(6397), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(6401), 1, + anon_sym_move, + STATE(200), 1, + sym_closure_parameters, STATE(2992), 2, sym_line_comment, sym_block_comment, - [88651] = 5, + [88801] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5771), 1, - anon_sym_COLON, - ACTIONS(6399), 2, - anon_sym_PIPE, - anon_sym_COMMA, STATE(2993), 2, sym_line_comment, sym_block_comment, - [88669] = 6, + ACTIONS(5031), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88817] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, + ACTIONS(5073), 1, anon_sym_LBRACE, - ACTIONS(6401), 1, + ACTIONS(6403), 1, anon_sym_SEMI, - STATE(1325), 1, + STATE(653), 1, sym_declaration_list, STATE(2994), 2, sym_line_comment, sym_block_comment, - [88689] = 6, + [88837] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, - anon_sym_LBRACE, - ACTIONS(6403), 1, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(6405), 1, anon_sym_SEMI, - STATE(1327), 1, - sym_declaration_list, + ACTIONS(6407), 1, + anon_sym_EQ, STATE(2995), 2, sym_line_comment, sym_block_comment, - [88709] = 6, + [88857] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, - anon_sym_LBRACE, - ACTIONS(6405), 1, - anon_sym_SEMI, - STATE(1333), 1, - sym_declaration_list, + ACTIONS(6409), 1, + anon_sym_move, + STATE(230), 1, + sym_closure_parameters, STATE(2996), 2, sym_line_comment, sym_block_comment, - [88729] = 6, + [88877] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, - anon_sym_LBRACE, - ACTIONS(6407), 1, - anon_sym_SEMI, - STATE(1335), 1, - sym_declaration_list, + ACTIONS(6413), 1, + anon_sym_COLON, + ACTIONS(6411), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(2997), 2, sym_line_comment, sym_block_comment, - [88749] = 6, + [88895] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(6409), 1, + ACTIONS(5089), 1, + anon_sym_LBRACE, + ACTIONS(6415), 1, anon_sym_SEMI, - ACTIONS(6411), 1, - anon_sym_EQ, + STATE(1385), 1, + sym_declaration_list, STATE(2998), 2, sym_line_comment, sym_block_comment, - [88769] = 6, + [88915] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(6413), 1, + ACTIONS(5073), 1, + anon_sym_LBRACE, + ACTIONS(6417), 1, anon_sym_SEMI, - STATE(3800), 1, - sym_where_clause, + STATE(563), 1, + sym_declaration_list, STATE(2999), 2, sym_line_comment, sym_block_comment, - [88789] = 6, + [88935] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, - anon_sym_LBRACE, - ACTIONS(6415), 1, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(6419), 1, anon_sym_SEMI, - STATE(1353), 1, - sym_declaration_list, + ACTIONS(6421), 1, + anon_sym_RBRACK, STATE(3000), 2, sym_line_comment, sym_block_comment, - [88809] = 6, + [88955] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, - anon_sym_LBRACE, - ACTIONS(6417), 1, - anon_sym_SEMI, - STATE(1355), 1, - sym_declaration_list, + ACTIONS(6423), 1, + anon_sym_RBRACE, + ACTIONS(6425), 1, + anon_sym_COMMA, + STATE(3030), 1, + aux_sym_field_declaration_list_repeat1, STATE(3001), 2, sym_line_comment, sym_block_comment, - [88829] = 4, + [88975] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, @@ -189918,493 +188843,499 @@ static const uint16_t ts_small_parse_table[] = { STATE(3002), 2, sym_line_comment, sym_block_comment, - ACTIONS(6419), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [88845] = 5, + ACTIONS(4993), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [88991] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3163), 1, anon_sym_PLUS, - ACTIONS(6421), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(6427), 1, + anon_sym_SEMI, + ACTIONS(6429), 1, + anon_sym_RBRACK, STATE(3003), 2, sym_line_comment, sym_block_comment, - [88863] = 5, + [89011] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6399), 1, - anon_sym_PIPE, - ACTIONS(6423), 1, - anon_sym_COMMA, - STATE(3004), 3, + STATE(3004), 2, sym_line_comment, sym_block_comment, - aux_sym_closure_parameters_repeat1, - [88881] = 6, + ACTIONS(1510), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89027] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(912), 1, - anon_sym_RPAREN, - ACTIONS(6426), 1, - anon_sym_COMMA, - STATE(2766), 1, - aux_sym_arguments_repeat1, + ACTIONS(3435), 1, + anon_sym_LT2, + ACTIONS(5138), 1, + anon_sym_COLON_COLON, + STATE(1422), 1, + sym_type_arguments, STATE(3005), 2, sym_line_comment, sym_block_comment, - [88901] = 4, + [89047] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(6431), 1, + anon_sym_RPAREN, + ACTIONS(6433), 1, + anon_sym_COMMA, + STATE(3134), 1, + aux_sym_ordered_field_declaration_list_repeat1, STATE(3006), 2, sym_line_comment, sym_block_comment, - ACTIONS(5055), 3, - anon_sym_EQ_GT, + [89067] = 6, + ACTIONS(27), 1, anon_sym_PIPE, - anon_sym_if, - [88917] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(6435), 1, + anon_sym_move, + STATE(212), 1, + sym_closure_parameters, STATE(3007), 2, sym_line_comment, sym_block_comment, - ACTIONS(5003), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88933] = 6, + [89087] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5120), 1, - anon_sym_LBRACE, - ACTIONS(6428), 1, - anon_sym_SEMI, - STATE(552), 1, - sym_declaration_list, + ACTIONS(5140), 1, + anon_sym_RBRACE, + ACTIONS(6437), 1, + anon_sym_COMMA, + STATE(3093), 1, + aux_sym_enum_variant_list_repeat2, STATE(3008), 2, sym_line_comment, sym_block_comment, - [88953] = 5, + [89107] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6430), 1, - anon_sym_GT, - ACTIONS(6432), 1, + ACTIONS(902), 1, + anon_sym_RBRACK, + ACTIONS(6439), 1, anon_sym_COMMA, - STATE(3009), 3, + STATE(2645), 1, + aux_sym_arguments_repeat1, + STATE(3009), 2, sym_line_comment, sym_block_comment, - aux_sym_type_parameters_repeat1, - [88971] = 4, + [89127] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(3273), 1, + anon_sym_RPAREN, + ACTIONS(6441), 1, + anon_sym_COMMA, + STATE(3104), 1, + aux_sym_tuple_type_repeat1, STATE(3010), 2, sym_line_comment, sym_block_comment, - ACTIONS(5005), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88987] = 6, + [89147] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5120), 1, - anon_sym_LBRACE, - ACTIONS(6435), 1, - anon_sym_SEMI, - STATE(654), 1, - sym_declaration_list, + ACTIONS(3277), 1, + anon_sym_RPAREN, + ACTIONS(6443), 1, + anon_sym_COMMA, + STATE(3104), 1, + aux_sym_tuple_type_repeat1, STATE(3011), 2, sym_line_comment, sym_block_comment, - [89007] = 4, + [89167] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(5073), 1, + anon_sym_LBRACE, + ACTIONS(6445), 1, + anon_sym_SEMI, + STATE(553), 1, + sym_declaration_list, STATE(3012), 2, sym_line_comment, sym_block_comment, - ACTIONS(5057), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89023] = 6, + [89187] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(6437), 1, - anon_sym_SEMI, - ACTIONS(6439), 1, - anon_sym_RBRACK, + ACTIONS(5583), 1, + anon_sym_RPAREN, + ACTIONS(5585), 1, + anon_sym_COMMA, + STATE(3021), 1, + aux_sym_parameters_repeat1, STATE(3013), 2, sym_line_comment, sym_block_comment, - [89043] = 6, + [89207] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(4991), 1, - anon_sym_LBRACE, - STATE(2026), 1, - sym_type_arguments, + ACTIONS(6447), 1, + sym_identifier, + ACTIONS(6449), 1, + anon_sym_await, + ACTIONS(6451), 1, + sym_integer_literal, STATE(3014), 2, sym_line_comment, sym_block_comment, - [89063] = 6, + [89227] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6441), 1, - anon_sym_RBRACE, - ACTIONS(6443), 1, + ACTIONS(6453), 1, + anon_sym_GT, + ACTIONS(6455), 1, anon_sym_COMMA, - STATE(2906), 1, - aux_sym_struct_pattern_repeat1, + STATE(3025), 1, + aux_sym_use_bounds_repeat1, STATE(3015), 2, sym_line_comment, sym_block_comment, - [89083] = 4, + [89247] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(6457), 1, + anon_sym_GT, + ACTIONS(6459), 1, + anon_sym_COMMA, + STATE(3026), 1, + aux_sym_use_bounds_repeat1, STATE(3016), 2, sym_line_comment, sym_block_comment, - ACTIONS(1508), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89099] = 5, + [89267] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5664), 1, - anon_sym_PIPE, - ACTIONS(6445), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(6461), 1, + anon_sym_LPAREN, + ACTIONS(6463), 1, + anon_sym_LBRACK, + ACTIONS(6465), 1, + anon_sym_LBRACE, STATE(3017), 2, sym_line_comment, sym_block_comment, - [89117] = 6, + [89287] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(6447), 1, - anon_sym_EQ, - STATE(3523), 1, - sym_where_clause, + ACTIONS(1648), 1, + anon_sym_GT, + ACTIONS(6467), 1, + anon_sym_COMMA, + STATE(3029), 1, + aux_sym_type_arguments_repeat1, STATE(3018), 2, sym_line_comment, sym_block_comment, - [89137] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, + [89307] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6449), 1, - anon_sym_move, - STATE(234), 1, - sym_closure_parameters, + ACTIONS(1648), 1, + anon_sym_GT, + ACTIONS(6467), 1, + anon_sym_COMMA, + STATE(3186), 1, + aux_sym_type_arguments_repeat1, STATE(3019), 2, sym_line_comment, sym_block_comment, - [89157] = 4, + [89327] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(5651), 1, + anon_sym_PIPE, + ACTIONS(6469), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3020), 2, sym_line_comment, sym_block_comment, - ACTIONS(4897), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89173] = 6, + [89345] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4869), 1, - anon_sym_GT, - ACTIONS(6451), 1, + ACTIONS(1352), 1, + anon_sym_RPAREN, + ACTIONS(5598), 1, anon_sym_COMMA, - STATE(3009), 1, - aux_sym_type_parameters_repeat1, + STATE(3068), 1, + aux_sym_parameters_repeat1, STATE(3021), 2, sym_line_comment, sym_block_comment, - [89193] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, + [89365] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6453), 1, - anon_sym_move, - STATE(213), 1, - sym_closure_parameters, - STATE(3022), 2, + ACTIONS(6469), 1, + anon_sym_RPAREN, + ACTIONS(6471), 1, + anon_sym_COMMA, + STATE(3022), 3, sym_line_comment, sym_block_comment, - [89213] = 4, + aux_sym_tuple_pattern_repeat1, + [89383] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(1352), 1, + anon_sym_RPAREN, + ACTIONS(5598), 1, + anon_sym_COMMA, + STATE(3031), 1, + aux_sym_parameters_repeat1, STATE(3023), 2, sym_line_comment, sym_block_comment, - ACTIONS(5049), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89229] = 6, + [89403] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(6455), 1, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(6474), 1, anon_sym_SEMI, - ACTIONS(6457), 1, - anon_sym_RBRACK, + STATE(3601), 1, + sym_where_clause, STATE(3024), 2, sym_line_comment, sym_block_comment, - [89249] = 6, + [89423] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5120), 1, - anon_sym_LBRACE, - ACTIONS(6459), 1, - anon_sym_SEMI, - STATE(736), 1, - sym_declaration_list, + ACTIONS(6000), 1, + anon_sym_GT, + ACTIONS(6476), 1, + anon_sym_COMMA, + STATE(3080), 1, + aux_sym_use_bounds_repeat1, STATE(3025), 2, sym_line_comment, sym_block_comment, - [89269] = 6, + [89443] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3285), 1, - anon_sym_RPAREN, - ACTIONS(6461), 1, + ACTIONS(6002), 1, + anon_sym_GT, + ACTIONS(6478), 1, anon_sym_COMMA, - STATE(2913), 1, - aux_sym_tuple_type_repeat1, + STATE(3080), 1, + aux_sym_use_bounds_repeat1, STATE(3026), 2, sym_line_comment, sym_block_comment, - [89289] = 6, + [89463] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3443), 1, - anon_sym_LT2, - ACTIONS(5077), 1, - anon_sym_COLON_COLON, - STATE(1428), 1, - sym_type_arguments, STATE(3027), 2, sym_line_comment, sym_block_comment, - [89309] = 6, - ACTIONS(27), 1, + ACTIONS(4973), 3, + anon_sym_EQ_GT, anon_sym_PIPE, + anon_sym_if, + [89479] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5174), 1, - anon_sym_move, - STATE(243), 1, - sym_closure_parameters, STATE(3028), 2, sym_line_comment, sym_block_comment, - [89329] = 6, + ACTIONS(4983), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89495] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5120), 1, - anon_sym_LBRACE, - ACTIONS(6463), 1, - anon_sym_SEMI, - STATE(554), 1, - sym_declaration_list, + ACTIONS(1654), 1, + anon_sym_GT, + ACTIONS(6480), 1, + anon_sym_COMMA, + STATE(3186), 1, + aux_sym_type_arguments_repeat1, STATE(3029), 2, sym_line_comment, sym_block_comment, - [89349] = 6, + [89515] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5893), 1, - anon_sym_RPAREN, - ACTIONS(5895), 1, + ACTIONS(5091), 1, + anon_sym_RBRACE, + ACTIONS(6482), 1, anon_sym_COMMA, - STATE(3119), 1, - aux_sym_tuple_pattern_repeat1, + STATE(3137), 1, + aux_sym_field_declaration_list_repeat1, STATE(3030), 2, sym_line_comment, sym_block_comment, - [89369] = 6, + [89535] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3295), 1, + ACTIONS(1372), 1, anon_sym_RPAREN, - ACTIONS(6465), 1, + ACTIONS(6484), 1, anon_sym_COMMA, - STATE(2913), 1, - aux_sym_tuple_type_repeat1, + STATE(3068), 1, + aux_sym_parameters_repeat1, STATE(3031), 2, sym_line_comment, sym_block_comment, - [89389] = 6, + [89555] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5120), 1, - anon_sym_LBRACE, - ACTIONS(6467), 1, - anon_sym_SEMI, - STATE(742), 1, - sym_declaration_list, + ACTIONS(916), 1, + anon_sym_RBRACK, + ACTIONS(4303), 1, + anon_sym_COMMA, + STATE(2645), 1, + aux_sym_arguments_repeat1, STATE(3032), 2, sym_line_comment, sym_block_comment, - [89409] = 6, + [89575] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5699), 1, - anon_sym_RPAREN, - ACTIONS(5701), 1, - anon_sym_COMMA, - STATE(3045), 1, - aux_sym_parameters_repeat1, STATE(3033), 2, sym_line_comment, sym_block_comment, - [89429] = 6, + ACTIONS(4999), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89591] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6469), 1, - anon_sym_GT, - ACTIONS(6471), 1, - anon_sym_COMMA, - STATE(3048), 1, - aux_sym_use_bounds_repeat1, STATE(3034), 2, sym_line_comment, sym_block_comment, - [89449] = 6, + ACTIONS(5005), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89607] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6473), 1, - anon_sym_GT, - ACTIONS(6475), 1, - anon_sym_COMMA, - STATE(3049), 1, - aux_sym_use_bounds_repeat1, STATE(3035), 2, sym_line_comment, sym_block_comment, - [89469] = 6, + ACTIONS(5049), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89623] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(6477), 1, - anon_sym_SEMI, - STATE(3543), 1, - sym_where_clause, STATE(3036), 2, sym_line_comment, sym_block_comment, - [89489] = 4, + ACTIONS(4967), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89639] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(5091), 1, + anon_sym_RBRACE, + ACTIONS(6482), 1, + anon_sym_COMMA, + STATE(3141), 1, + aux_sym_field_declaration_list_repeat1, STATE(3037), 2, sym_line_comment, sym_block_comment, - ACTIONS(5031), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89505] = 4, + [89659] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(5856), 1, + anon_sym_RPAREN, + ACTIONS(5858), 1, + anon_sym_COMMA, + STATE(3175), 1, + aux_sym_tuple_pattern_repeat1, STATE(3038), 2, sym_line_comment, sym_block_comment, - ACTIONS(5047), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89521] = 4, + [89679] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, @@ -190412,624 +189343,617 @@ static const uint16_t ts_small_parse_table[] = { STATE(3039), 2, sym_line_comment, sym_block_comment, - ACTIONS(4965), 3, - anon_sym_EQ_GT, + ACTIONS(6486), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [89695] = 6, + ACTIONS(27), 1, anon_sym_PIPE, - anon_sym_if, - [89537] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1632), 1, - anon_sym_GT, - ACTIONS(6479), 1, - anon_sym_COMMA, - STATE(3050), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(6488), 1, + anon_sym_move, + STATE(236), 1, + sym_closure_parameters, STATE(3040), 2, sym_line_comment, sym_block_comment, - [89557] = 6, + [89715] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1632), 1, + ACTIONS(6490), 1, anon_sym_GT, - ACTIONS(6479), 1, + ACTIONS(6492), 1, anon_sym_COMMA, - STATE(3053), 1, - aux_sym_type_arguments_repeat1, - STATE(3041), 2, + STATE(3041), 3, sym_line_comment, sym_block_comment, - [89577] = 4, + aux_sym_type_parameters_repeat1, + [89733] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(1646), 1, + anon_sym_GT, + ACTIONS(6495), 1, + anon_sym_COMMA, + STATE(3186), 1, + aux_sym_type_arguments_repeat1, STATE(3042), 2, sym_line_comment, sym_block_comment, - ACTIONS(4989), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89593] = 4, + [89753] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(936), 1, + anon_sym_RBRACK, + ACTIONS(4357), 1, + anon_sym_COMMA, + STATE(2645), 1, + aux_sym_arguments_repeat1, STATE(3043), 2, sym_line_comment, sym_block_comment, - ACTIONS(4993), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89609] = 4, + [89773] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(4183), 1, + anon_sym_LT2, + ACTIONS(5063), 1, + anon_sym_COLON_COLON, + STATE(1665), 1, + sym_type_arguments, STATE(3044), 2, sym_line_comment, sym_block_comment, - ACTIONS(4997), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89625] = 6, + [89793] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1372), 1, - anon_sym_RPAREN, - ACTIONS(5711), 1, - anon_sym_COMMA, - STATE(3077), 1, - aux_sym_parameters_repeat1, STATE(3045), 2, sym_line_comment, sym_block_comment, - [89645] = 6, + ACTIONS(4975), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89809] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(952), 1, - anon_sym_RPAREN, - ACTIONS(4341), 1, - anon_sym_COMMA, - STATE(2766), 1, - aux_sym_arguments_repeat1, + ACTIONS(6497), 1, + anon_sym_EQ_GT, + ACTIONS(6499), 1, + anon_sym_PIPE, + ACTIONS(6501), 1, + anon_sym_if, STATE(3046), 2, sym_line_comment, sym_block_comment, - [89665] = 6, + [89829] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1372), 1, - anon_sym_RPAREN, - ACTIONS(5711), 1, + ACTIONS(6505), 1, + anon_sym_COLON, + ACTIONS(6503), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(3052), 1, - aux_sym_parameters_repeat1, STATE(3047), 2, sym_line_comment, sym_block_comment, - [89685] = 6, + [89847] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5919), 1, - anon_sym_GT, - ACTIONS(6481), 1, - anon_sym_COMMA, - STATE(3087), 1, - aux_sym_use_bounds_repeat1, STATE(3048), 2, sym_line_comment, sym_block_comment, - [89705] = 6, + ACTIONS(4981), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [89863] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5921), 1, - anon_sym_GT, - ACTIONS(6483), 1, + ACTIONS(5651), 1, + anon_sym_PIPE, + ACTIONS(6507), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(3087), 1, - aux_sym_use_bounds_repeat1, STATE(3049), 2, sym_line_comment, sym_block_comment, - [89725] = 6, + [89881] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1660), 1, - anon_sym_GT, - ACTIONS(6485), 1, - anon_sym_COMMA, - STATE(3053), 1, - aux_sym_type_arguments_repeat1, STATE(3050), 2, sym_line_comment, sym_block_comment, - [89745] = 6, + ACTIONS(6509), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [89897] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1658), 1, - anon_sym_GT, - ACTIONS(6487), 1, + ACTIONS(6511), 1, + anon_sym_RBRACE, + ACTIONS(6513), 1, anon_sym_COMMA, - STATE(3053), 1, - aux_sym_type_arguments_repeat1, - STATE(3051), 2, + STATE(3051), 3, sym_line_comment, sym_block_comment, - [89765] = 6, + aux_sym_struct_pattern_repeat1, + [89915] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1364), 1, - anon_sym_RPAREN, - ACTIONS(6489), 1, - anon_sym_COMMA, - STATE(3077), 1, - aux_sym_parameters_repeat1, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(6516), 1, + anon_sym_SEMI, + ACTIONS(6518), 1, + anon_sym_RBRACK, STATE(3052), 2, sym_line_comment, sym_block_comment, - [89785] = 5, + [89935] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5709), 1, + ACTIONS(1624), 1, anon_sym_GT, - ACTIONS(6491), 1, + ACTIONS(6520), 1, anon_sym_COMMA, - STATE(3053), 3, + STATE(3056), 1, + aux_sym_type_arguments_repeat1, + STATE(3053), 2, sym_line_comment, sym_block_comment, - aux_sym_type_arguments_repeat1, - [89803] = 5, + [89955] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6496), 1, - anon_sym_COLON, - ACTIONS(6494), 2, - anon_sym_RBRACE, + ACTIONS(1624), 1, + anon_sym_GT, + ACTIONS(6520), 1, anon_sym_COMMA, + STATE(3186), 1, + aux_sym_type_arguments_repeat1, STATE(3054), 2, sym_line_comment, sym_block_comment, - [89821] = 6, + [89975] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(6498), 1, - anon_sym_SEMI, - STATE(3587), 1, - sym_where_clause, + ACTIONS(6524), 1, + anon_sym_COLON, + ACTIONS(6522), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3055), 2, sym_line_comment, sym_block_comment, - [89841] = 5, + [89993] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5664), 1, - anon_sym_PIPE, - ACTIONS(6500), 2, - anon_sym_RBRACE, + ACTIONS(1658), 1, + anon_sym_GT, + ACTIONS(6526), 1, anon_sym_COMMA, + STATE(3186), 1, + aux_sym_type_arguments_repeat1, STATE(3056), 2, sym_line_comment, sym_block_comment, - [89859] = 6, + [90013] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4221), 1, - anon_sym_LBRACE, - ACTIONS(6502), 1, - anon_sym_COLON_COLON, - STATE(1922), 1, - sym_field_initializer_list, + ACTIONS(1666), 1, + anon_sym_GT, + ACTIONS(6528), 1, + anon_sym_COMMA, + STATE(3042), 1, + aux_sym_type_arguments_repeat1, STATE(3057), 2, sym_line_comment, sym_block_comment, - [89879] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, + [90033] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6504), 1, - anon_sym_move, - STATE(253), 1, - sym_closure_parameters, + ACTIONS(5594), 1, + anon_sym_RPAREN, + ACTIONS(5596), 1, + anon_sym_COMMA, + STATE(3119), 1, + aux_sym_parameters_repeat1, STATE(3058), 2, sym_line_comment, sym_block_comment, - [89899] = 5, + [90053] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(6506), 2, - anon_sym_RPAREN, + ACTIONS(1666), 1, + anon_sym_GT, + ACTIONS(6528), 1, anon_sym_COMMA, + STATE(3186), 1, + aux_sym_type_arguments_repeat1, STATE(3059), 2, sym_line_comment, sym_block_comment, - [89917] = 6, + [90073] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4175), 1, - anon_sym_LT2, - ACTIONS(5116), 1, - anon_sym_COLON_COLON, - STATE(1717), 1, - sym_type_arguments, STATE(3060), 2, sym_line_comment, sym_block_comment, - [89937] = 4, + ACTIONS(6530), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [90089] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(6532), 1, + sym_mutable_specifier, + ACTIONS(6534), 1, + sym_self, STATE(3061), 2, sym_line_comment, sym_block_comment, - ACTIONS(5027), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [89953] = 5, + [90109] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6508), 1, + ACTIONS(6536), 1, anon_sym_RBRACE, - ACTIONS(6510), 1, + ACTIONS(6538), 1, anon_sym_COMMA, - STATE(3062), 3, + STATE(2987), 1, + aux_sym_field_initializer_list_repeat1, + STATE(3062), 2, sym_line_comment, sym_block_comment, - aux_sym_struct_pattern_repeat1, - [89971] = 6, + [90129] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(6513), 1, - anon_sym_SEMI, - ACTIONS(6515), 1, - anon_sym_EQ, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(6540), 1, + anon_sym_COLON_COLON, + STATE(2024), 1, + sym_type_arguments, STATE(3063), 2, sym_line_comment, sym_block_comment, - [89991] = 6, + [90149] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5705), 1, - anon_sym_RPAREN, - ACTIONS(5707), 1, - anon_sym_COMMA, - STATE(2924), 1, - aux_sym_parameters_repeat1, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(6542), 1, + anon_sym_SEMI, + STATE(3617), 1, + sym_where_clause, STATE(3064), 2, sym_line_comment, sym_block_comment, - [90011] = 6, + [90169] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(6517), 1, - sym_mutable_specifier, - ACTIONS(6519), 1, - sym_self, + ACTIONS(4772), 1, + anon_sym_COLON_COLON, + ACTIONS(5530), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3065), 2, sym_line_comment, sym_block_comment, - [90031] = 6, + [90187] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1668), 1, - anon_sym_GT, - ACTIONS(6521), 1, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(6049), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(3069), 1, - aux_sym_type_arguments_repeat1, STATE(3066), 2, sym_line_comment, sym_block_comment, - [90051] = 6, + [90205] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1668), 1, - anon_sym_GT, - ACTIONS(6521), 1, - anon_sym_COMMA, - STATE(3053), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(5065), 1, + anon_sym_COLON_COLON, + STATE(2024), 1, + sym_type_arguments, STATE(3067), 2, sym_line_comment, sym_block_comment, - [90071] = 5, + [90225] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4766), 1, - anon_sym_COLON_COLON, - ACTIONS(5502), 2, + ACTIONS(6049), 1, anon_sym_RPAREN, + ACTIONS(6544), 1, anon_sym_COMMA, - STATE(3068), 2, + STATE(3068), 3, sym_line_comment, sym_block_comment, - [90089] = 6, + aux_sym_parameters_repeat1, + [90243] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1670), 1, + ACTIONS(6547), 1, anon_sym_GT, - ACTIONS(6523), 1, + ACTIONS(6549), 1, anon_sym_COMMA, - STATE(3053), 1, - aux_sym_type_arguments_repeat1, + STATE(3133), 1, + aux_sym_for_lifetimes_repeat1, STATE(3069), 2, sym_line_comment, sym_block_comment, - [90109] = 6, + [90263] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6525), 1, + ACTIONS(3139), 1, anon_sym_RPAREN, - ACTIONS(6527), 1, + ACTIONS(6551), 1, anon_sym_COMMA, - STATE(3135), 1, - aux_sym_ordered_field_declaration_list_repeat1, + STATE(2773), 1, + aux_sym_slice_pattern_repeat1, STATE(3070), 2, sym_line_comment, sym_block_comment, - [90129] = 5, + [90283] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5963), 2, - anon_sym_RPAREN, - anon_sym_COMMA, STATE(3071), 2, sym_line_comment, sym_block_comment, - [90147] = 6, + ACTIONS(6553), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [90299] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3081), 1, - anon_sym_SQUOTE, - ACTIONS(5901), 1, - sym_identifier, - STATE(3307), 1, - sym_lifetime, + ACTIONS(3169), 1, + anon_sym_PLUS, + ACTIONS(6555), 1, + anon_sym_GT, + ACTIONS(6557), 1, + anon_sym_as, STATE(3072), 2, sym_line_comment, sym_block_comment, - [90167] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, + [90319] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6529), 1, - anon_sym_move, - STATE(239), 1, - sym_closure_parameters, STATE(3073), 2, sym_line_comment, sym_block_comment, - [90187] = 6, + ACTIONS(1040), 3, + anon_sym_COLON, + anon_sym_GT, + anon_sym_COMMA, + [90335] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(5071), 1, - anon_sym_COLON_COLON, - STATE(2033), 1, - sym_type_arguments, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(6559), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3074), 2, sym_line_comment, sym_block_comment, - [90207] = 6, + [90353] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6531), 1, - sym_identifier, - ACTIONS(6533), 1, - anon_sym_await, - ACTIONS(6535), 1, - sym_integer_literal, + ACTIONS(1376), 1, + anon_sym_RPAREN, + ACTIONS(6561), 1, + anon_sym_COMMA, + STATE(3068), 1, + aux_sym_parameters_repeat1, STATE(3075), 2, sym_line_comment, sym_block_comment, - [90227] = 6, + [90373] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(6537), 1, - anon_sym_for, - STATE(2026), 1, - sym_type_arguments, + ACTIONS(5073), 1, + anon_sym_LBRACE, + ACTIONS(6563), 1, + anon_sym_SEMI, + STATE(702), 1, + sym_declaration_list, STATE(3076), 2, sym_line_comment, sym_block_comment, - [90247] = 5, + [90393] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5963), 1, - anon_sym_RPAREN, - ACTIONS(6539), 1, - anon_sym_COMMA, - STATE(3077), 3, + ACTIONS(3081), 1, + anon_sym_SQUOTE, + ACTIONS(6565), 1, + anon_sym_GT, + STATE(3299), 1, + sym_lifetime, + STATE(3077), 2, sym_line_comment, sym_block_comment, - aux_sym_parameters_repeat1, - [90265] = 6, + [90413] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6542), 1, + ACTIONS(6567), 1, anon_sym_GT, - ACTIONS(6544), 1, + ACTIONS(6569), 1, anon_sym_COMMA, - STATE(2952), 1, - aux_sym_for_lifetimes_repeat1, - STATE(3078), 2, + STATE(3078), 3, sym_line_comment, sym_block_comment, - [90285] = 6, + aux_sym_for_lifetimes_repeat1, + [90431] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5073), 1, - anon_sym_RBRACE, - ACTIONS(6546), 1, + ACTIONS(1831), 1, + anon_sym_RPAREN, + ACTIONS(6572), 1, anon_sym_COMMA, - STATE(3139), 1, - aux_sym_field_declaration_list_repeat1, + STATE(3022), 1, + aux_sym_tuple_pattern_repeat1, STATE(3079), 2, sym_line_comment, sym_block_comment, - [90305] = 6, + [90451] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5120), 1, - anon_sym_LBRACE, - ACTIONS(6548), 1, - anon_sym_SEMI, - STATE(590), 1, - sym_declaration_list, - STATE(3080), 2, + ACTIONS(6574), 1, + anon_sym_GT, + ACTIONS(6576), 1, + anon_sym_COMMA, + STATE(3080), 3, sym_line_comment, sym_block_comment, - [90325] = 6, + aux_sym_use_bounds_repeat1, + [90469] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1354), 1, - anon_sym_RPAREN, - ACTIONS(6550), 1, - anon_sym_COMMA, - STATE(3077), 1, - aux_sym_parameters_repeat1, + ACTIONS(6579), 1, + anon_sym_AMP_AMP, + ACTIONS(4521), 2, + anon_sym_LBRACE, + anon_sym_SQUOTE, STATE(3081), 2, sym_line_comment, sym_block_comment, - [90345] = 6, + [90487] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5120), 1, - anon_sym_LBRACE, - ACTIONS(6552), 1, - anon_sym_SEMI, - STATE(703), 1, - sym_declaration_list, + ACTIONS(4347), 1, + anon_sym_RBRACE, + ACTIONS(6581), 1, + anon_sym_COMMA, + STATE(2926), 1, + aux_sym_use_list_repeat1, STATE(3082), 2, sym_line_comment, sym_block_comment, - [90365] = 6, + [90507] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3081), 1, - anon_sym_SQUOTE, - ACTIONS(6554), 1, + ACTIONS(6583), 1, anon_sym_GT, - STATE(3298), 1, - sym_lifetime, + ACTIONS(6585), 1, + anon_sym_COMMA, + STATE(3146), 1, + aux_sym_use_bounds_repeat1, STATE(3083), 2, sym_line_comment, sym_block_comment, - [90385] = 5, + [90527] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6556), 1, + ACTIONS(6587), 1, anon_sym_GT, - ACTIONS(6558), 1, + ACTIONS(6589), 1, anon_sym_COMMA, - STATE(3084), 3, + STATE(3148), 1, + aux_sym_use_bounds_repeat1, + STATE(3084), 2, sym_line_comment, sym_block_comment, - aux_sym_for_lifetimes_repeat1, - [90403] = 4, + [90547] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, @@ -191037,352 +189961,348 @@ static const uint16_t ts_small_parse_table[] = { STATE(3085), 2, sym_line_comment, sym_block_comment, - ACTIONS(6561), 3, + ACTIONS(6591), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [90419] = 6, + [90563] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5120), 1, - anon_sym_LBRACE, - ACTIONS(6563), 1, - anon_sym_SEMI, - STATE(592), 1, - sym_declaration_list, + ACTIONS(6595), 1, + anon_sym_COLON, + ACTIONS(6593), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3086), 2, sym_line_comment, sym_block_comment, - [90439] = 5, + [90581] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6565), 1, - anon_sym_GT, - ACTIONS(6567), 1, - anon_sym_COMMA, - STATE(3087), 3, + STATE(3087), 2, sym_line_comment, sym_block_comment, - aux_sym_use_bounds_repeat1, - [90457] = 6, + ACTIONS(4877), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [90597] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, - anon_sym_LBRACE, - ACTIONS(6570), 1, - anon_sym_SEMI, - STATE(1114), 1, - sym_declaration_list, - STATE(3088), 2, + ACTIONS(6597), 1, + anon_sym_RBRACE, + ACTIONS(6599), 1, + anon_sym_COMMA, + STATE(3088), 3, sym_line_comment, sym_block_comment, - [90477] = 6, + aux_sym_enum_variant_list_repeat2, + [90615] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6572), 1, - anon_sym_GT, - ACTIONS(6574), 1, - anon_sym_COMMA, - STATE(2960), 1, - aux_sym_use_bounds_repeat1, + ACTIONS(3637), 1, + anon_sym_LBRACE, + ACTIONS(6602), 1, + anon_sym_COLON_COLON, + STATE(1480), 1, + sym_field_initializer_list, STATE(3089), 2, sym_line_comment, sym_block_comment, - [90497] = 6, + [90635] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6576), 1, - anon_sym_GT, - ACTIONS(6578), 1, + ACTIONS(6606), 1, + anon_sym_EQ, + ACTIONS(6604), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2963), 1, - aux_sym_use_bounds_repeat1, STATE(3090), 2, sym_line_comment, sym_block_comment, - [90517] = 4, + [90653] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(6608), 1, + anon_sym_LPAREN, + ACTIONS(6610), 1, + anon_sym_LBRACK, + ACTIONS(6612), 1, + anon_sym_LBRACE, STATE(3091), 2, sym_line_comment, sym_block_comment, - ACTIONS(6580), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [90533] = 6, + [90673] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5073), 1, - anon_sym_RBRACE, - ACTIONS(6546), 1, - anon_sym_COMMA, - STATE(3141), 1, - aux_sym_field_declaration_list_repeat1, + ACTIONS(6614), 1, + anon_sym_LPAREN, + ACTIONS(6616), 1, + anon_sym_LBRACK, + ACTIONS(6618), 1, + anon_sym_LBRACE, STATE(3092), 2, sym_line_comment, sym_block_comment, - [90553] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, + [90693] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6582), 1, - anon_sym_move, - STATE(214), 1, - sym_closure_parameters, + ACTIONS(5134), 1, + anon_sym_RBRACE, + ACTIONS(6620), 1, + anon_sym_COMMA, + STATE(3088), 1, + aux_sym_enum_variant_list_repeat2, STATE(3093), 2, sym_line_comment, sym_block_comment, - [90573] = 6, + [90713] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6584), 1, - anon_sym_RBRACE, - ACTIONS(6586), 1, + ACTIONS(6622), 1, + anon_sym_GT, + ACTIONS(6624), 1, anon_sym_COMMA, - STATE(3079), 1, - aux_sym_field_declaration_list_repeat1, + STATE(2888), 1, + aux_sym_type_parameters_repeat1, STATE(3094), 2, sym_line_comment, sym_block_comment, - [90593] = 5, + [90733] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6588), 1, - anon_sym_RBRACE, - ACTIONS(6590), 1, - anon_sym_COMMA, - STATE(3095), 3, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(6626), 1, + anon_sym_LBRACE, + STATE(2023), 1, + sym_type_arguments, + STATE(3095), 2, sym_line_comment, sym_block_comment, - aux_sym_enum_variant_list_repeat2, - [90611] = 5, + [90753] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6595), 1, - anon_sym_EQ, - ACTIONS(6593), 2, + ACTIONS(5294), 1, anon_sym_RBRACE, + ACTIONS(6628), 1, anon_sym_COMMA, + STATE(3051), 1, + aux_sym_struct_pattern_repeat1, STATE(3096), 2, sym_line_comment, sym_block_comment, - [90629] = 6, + [90773] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5159), 1, - anon_sym_RBRACE, - ACTIONS(6597), 1, + ACTIONS(3119), 1, + anon_sym_RPAREN, + ACTIONS(6630), 1, anon_sym_COMMA, - STATE(3095), 1, - aux_sym_enum_variant_list_repeat2, + STATE(2773), 1, + aux_sym_slice_pattern_repeat1, STATE(3097), 2, sym_line_comment, sym_block_comment, - [90649] = 6, + [90793] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, - anon_sym_LBRACE, - ACTIONS(6599), 1, - anon_sym_SEMI, - STATE(1121), 1, - sym_declaration_list, + ACTIONS(4855), 1, + anon_sym_GT, + ACTIONS(6632), 1, + anon_sym_COMMA, + STATE(3041), 1, + aux_sym_type_parameters_repeat1, STATE(3098), 2, sym_line_comment, sym_block_comment, - [90669] = 6, + [90813] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(932), 1, - anon_sym_RBRACK, - ACTIONS(4359), 1, - anon_sym_COMMA, - STATE(2766), 1, - aux_sym_arguments_repeat1, + ACTIONS(5089), 1, + anon_sym_LBRACE, + ACTIONS(6634), 1, + anon_sym_SEMI, + STATE(1125), 1, + sym_declaration_list, STATE(3099), 2, sym_line_comment, sym_block_comment, - [90689] = 6, + [90833] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3649), 1, - anon_sym_LBRACE, - ACTIONS(6601), 1, - anon_sym_COLON_COLON, - STATE(1477), 1, - sym_field_initializer_list, + ACTIONS(6636), 1, + anon_sym_move, + STATE(243), 1, + sym_closure_parameters, STATE(3100), 2, sym_line_comment, sym_block_comment, - [90709] = 6, + [90853] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6603), 1, - anon_sym_LPAREN, - ACTIONS(6605), 1, - anon_sym_LBRACK, - ACTIONS(6607), 1, - anon_sym_LBRACE, + ACTIONS(5296), 1, + anon_sym_RBRACE, + ACTIONS(6638), 1, + anon_sym_COMMA, + STATE(3051), 1, + aux_sym_struct_pattern_repeat1, STATE(3101), 2, sym_line_comment, sym_block_comment, - [90729] = 6, + [90873] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6609), 1, - anon_sym_LPAREN, - ACTIONS(6611), 1, - anon_sym_LBRACK, - ACTIONS(6613), 1, + ACTIONS(6579), 1, + anon_sym_AMP_AMP, + ACTIONS(6640), 2, anon_sym_LBRACE, + anon_sym_SQUOTE, STATE(3102), 2, sym_line_comment, sym_block_comment, - [90749] = 6, + [90891] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(6615), 1, - anon_sym_LBRACE, - STATE(2026), 1, - sym_type_arguments, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(6642), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3103), 2, sym_line_comment, sym_block_comment, - [90769] = 5, + [90909] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5664), 1, - anon_sym_PIPE, - ACTIONS(6617), 2, - anon_sym_RBRACE, + ACTIONS(6642), 1, + anon_sym_RPAREN, + ACTIONS(6644), 1, anon_sym_COMMA, - STATE(3104), 2, + STATE(3104), 3, sym_line_comment, sym_block_comment, - [90787] = 6, + aux_sym_tuple_type_repeat1, + [90927] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5120), 1, + ACTIONS(5073), 1, anon_sym_LBRACE, - ACTIONS(6619), 1, + ACTIONS(6647), 1, anon_sym_SEMI, - STATE(786), 1, + STATE(502), 1, sym_declaration_list, STATE(3105), 2, sym_line_comment, sym_block_comment, - [90807] = 6, + [90947] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5120), 1, + ACTIONS(5073), 1, anon_sym_LBRACE, - ACTIONS(6621), 1, + ACTIONS(6649), 1, anon_sym_SEMI, - STATE(505), 1, + STATE(504), 1, sym_declaration_list, STATE(3106), 2, sym_line_comment, sym_block_comment, - [90827] = 5, + [90967] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3163), 1, anon_sym_PLUS, - ACTIONS(6623), 2, + ACTIONS(6651), 2, anon_sym_GT, anon_sym_COMMA, STATE(3107), 2, sym_line_comment, sym_block_comment, - [90845] = 6, + [90985] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6625), 1, - anon_sym_RBRACE, - ACTIONS(6627), 1, - anon_sym_COMMA, - STATE(3192), 1, - aux_sym_use_list_repeat1, STATE(3108), 2, sym_line_comment, sym_block_comment, - [90865] = 6, + ACTIONS(4995), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [91001] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6629), 1, - sym_identifier, - ACTIONS(6631), 1, - anon_sym_await, - ACTIONS(6633), 1, - sym_integer_literal, STATE(3109), 2, sym_line_comment, sym_block_comment, - [90885] = 4, + ACTIONS(5007), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [91017] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(6653), 1, + sym_identifier, + ACTIONS(6655), 1, + anon_sym_ref, + ACTIONS(6657), 1, + sym_mutable_specifier, STATE(3110), 2, sym_line_comment, sym_block_comment, - ACTIONS(4961), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [90901] = 4, + [91037] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, @@ -191390,23 +190310,25 @@ static const uint16_t ts_small_parse_table[] = { STATE(3111), 2, sym_line_comment, sym_block_comment, - ACTIONS(5035), 3, + ACTIONS(5027), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [90917] = 4, + [91053] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(6659), 1, + anon_sym_SEMI, + STATE(3668), 1, + sym_where_clause, STATE(3112), 2, sym_line_comment, sym_block_comment, - ACTIONS(4967), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [90933] = 4, + [91073] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, @@ -191414,11 +190336,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(3113), 2, sym_line_comment, sym_block_comment, - ACTIONS(5025), 3, + ACTIONS(5011), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [90949] = 4, + [91089] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, @@ -191426,11 +190348,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(3114), 2, sym_line_comment, sym_block_comment, - ACTIONS(5037), 3, + ACTIONS(4969), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [90965] = 4, + [91105] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, @@ -191438,499 +190360,501 @@ static const uint16_t ts_small_parse_table[] = { STATE(3115), 2, sym_line_comment, sym_block_comment, - ACTIONS(4985), 3, + ACTIONS(5047), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [90981] = 6, + [91121] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3163), 1, anon_sym_PLUS, - ACTIONS(6635), 1, + ACTIONS(6661), 1, anon_sym_SEMI, - ACTIONS(6637), 1, + ACTIONS(6663), 1, anon_sym_EQ, STATE(3116), 2, sym_line_comment, sym_block_comment, - [91001] = 6, + [91141] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(918), 1, - anon_sym_RBRACK, - ACTIONS(4315), 1, - anon_sym_COMMA, - STATE(2766), 1, - aux_sym_arguments_repeat1, + ACTIONS(5073), 1, + anon_sym_LBRACE, + ACTIONS(6665), 1, + anon_sym_SEMI, + STATE(510), 1, + sym_declaration_list, STATE(3117), 2, sym_line_comment, sym_block_comment, - [91021] = 6, + [91161] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5120), 1, - anon_sym_LBRACE, - ACTIONS(6639), 1, - anon_sym_SEMI, - STATE(511), 1, - sym_declaration_list, + ACTIONS(4895), 1, + anon_sym_COLON_COLON, + ACTIONS(5013), 1, + anon_sym_BANG, + ACTIONS(6667), 1, + sym_identifier, STATE(3118), 2, sym_line_comment, sym_block_comment, - [91041] = 6, + [91181] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1837), 1, + ACTIONS(1348), 1, anon_sym_RPAREN, - ACTIONS(6641), 1, + ACTIONS(5741), 1, anon_sym_COMMA, - STATE(3159), 1, - aux_sym_tuple_pattern_repeat1, + STATE(3068), 1, + aux_sym_parameters_repeat1, STATE(3119), 2, sym_line_comment, sym_block_comment, - [91061] = 6, + [91201] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5120), 1, + ACTIONS(5073), 1, anon_sym_LBRACE, - ACTIONS(6643), 1, + ACTIONS(6669), 1, anon_sym_SEMI, - STATE(513), 1, + STATE(512), 1, sym_declaration_list, STATE(3120), 2, sym_line_comment, sym_block_comment, - [91081] = 6, + [91221] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6082), 1, - anon_sym_RPAREN, - ACTIONS(6084), 1, - anon_sym_COMMA, - STATE(3186), 1, - aux_sym_tuple_pattern_repeat1, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(6671), 1, + anon_sym_for, + STATE(2023), 1, + sym_type_arguments, STATE(3121), 2, sym_line_comment, sym_block_comment, - [91101] = 5, + [91241] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6645), 1, - anon_sym_AMP_AMP, - ACTIONS(4535), 2, - anon_sym_LBRACE, - anon_sym_SQUOTE, STATE(3122), 2, sym_line_comment, sym_block_comment, - [91119] = 4, + ACTIONS(5003), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [91257] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(6673), 1, + anon_sym_SEMI, + STATE(3716), 1, + sym_where_clause, STATE(3123), 2, sym_line_comment, sym_block_comment, - ACTIONS(6647), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [91135] = 6, + [91277] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(6649), 1, - anon_sym_SEMI, - ACTIONS(6651), 1, - anon_sym_RBRACK, + ACTIONS(1348), 1, + anon_sym_RPAREN, + ACTIONS(5741), 1, + anon_sym_COMMA, + STATE(3075), 1, + aux_sym_parameters_repeat1, STATE(3124), 2, sym_line_comment, sym_block_comment, - [91155] = 6, + [91297] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6653), 1, - anon_sym_RBRACE, - ACTIONS(6655), 1, - anon_sym_COMMA, - STATE(2986), 1, - aux_sym_enum_variant_list_repeat2, STATE(3125), 2, sym_line_comment, sym_block_comment, - [91175] = 4, + ACTIONS(4651), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [91313] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(6675), 1, + anon_sym_RBRACE, + ACTIONS(6677), 1, + anon_sym_COMMA, + STATE(3184), 1, + aux_sym_enum_variant_list_repeat2, STATE(3126), 2, sym_line_comment, sym_block_comment, - ACTIONS(6657), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [91191] = 6, + [91333] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3163), 1, anon_sym_PLUS, - ACTIONS(6659), 1, + ACTIONS(6679), 1, anon_sym_SEMI, - ACTIONS(6661), 1, + ACTIONS(6681), 1, anon_sym_EQ, STATE(3127), 2, sym_line_comment, sym_block_comment, - [91211] = 5, + [91353] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6645), 1, - anon_sym_AMP_AMP, - ACTIONS(6663), 2, + ACTIONS(5073), 1, anon_sym_LBRACE, - anon_sym_SQUOTE, + ACTIONS(6683), 1, + anon_sym_SEMI, + STATE(735), 1, + sym_declaration_list, STATE(3128), 2, sym_line_comment, sym_block_comment, - [91229] = 6, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(3153), 1, - anon_sym_RBRACK, - ACTIONS(6665), 1, - anon_sym_COMMA, - STATE(2767), 1, - aux_sym_slice_pattern_repeat1, - STATE(3129), 2, - sym_line_comment, - sym_block_comment, - [91249] = 6, + [91373] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6667), 1, + ACTIONS(6685), 1, anon_sym_RPAREN, - ACTIONS(6669), 1, + ACTIONS(6687), 1, anon_sym_COMMA, - STATE(3135), 1, + STATE(3134), 1, aux_sym_ordered_field_declaration_list_repeat1, - STATE(3130), 2, + STATE(3129), 2, sym_line_comment, sym_block_comment, - [91269] = 6, + [91393] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(6671), 1, - anon_sym_COLON_COLON, - STATE(2033), 1, - sym_type_arguments, - STATE(3131), 2, + ACTIONS(3081), 1, + anon_sym_SQUOTE, + ACTIONS(6689), 1, + anon_sym_GT, + STATE(3299), 1, + sym_lifetime, + STATE(3130), 2, sym_line_comment, sym_block_comment, - [91289] = 6, + [91413] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4817), 1, + ACTIONS(4806), 1, anon_sym_COLON, - ACTIONS(5071), 1, + ACTIONS(5065), 1, anon_sym_COLON_COLON, - STATE(2545), 1, + STATE(2589), 1, sym_trait_bounds, - STATE(3132), 2, + STATE(3131), 2, sym_line_comment, sym_block_comment, - [91309] = 5, + [91433] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3163), 1, anon_sym_PLUS, - ACTIONS(6673), 2, + ACTIONS(6691), 2, anon_sym_RPAREN, anon_sym_COMMA, - STATE(3133), 2, + STATE(3132), 2, sym_line_comment, sym_block_comment, - [91327] = 6, + [91451] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6675), 1, - anon_sym_LPAREN, - ACTIONS(6677), 1, - anon_sym_LBRACK, - ACTIONS(6679), 1, - anon_sym_LBRACE, - STATE(3134), 2, + ACTIONS(6689), 1, + anon_sym_GT, + ACTIONS(6693), 1, + anon_sym_COMMA, + STATE(3078), 1, + aux_sym_for_lifetimes_repeat1, + STATE(3133), 2, sym_line_comment, sym_block_comment, - [91347] = 5, + [91471] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6681), 1, + ACTIONS(6695), 1, anon_sym_RPAREN, - ACTIONS(6683), 1, + ACTIONS(6697), 1, anon_sym_COMMA, - STATE(3135), 3, + STATE(3134), 3, sym_line_comment, sym_block_comment, aux_sym_ordered_field_declaration_list_repeat1, - [91365] = 5, + [91489] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, + ACTIONS(3163), 1, anon_sym_PLUS, - ACTIONS(6686), 2, + ACTIONS(6700), 2, anon_sym_RBRACE, anon_sym_COMMA, + STATE(3135), 2, + sym_line_comment, + sym_block_comment, + [91507] = 6, + ACTIONS(105), 1, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(5073), 1, + anon_sym_LBRACE, + ACTIONS(6702), 1, + anon_sym_SEMI, + STATE(638), 1, + sym_declaration_list, STATE(3136), 2, sym_line_comment, sym_block_comment, - [91383] = 4, + [91527] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(3137), 2, + ACTIONS(6704), 1, + anon_sym_RBRACE, + ACTIONS(6706), 1, + anon_sym_COMMA, + STATE(3137), 3, sym_line_comment, sym_block_comment, - ACTIONS(6688), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [91399] = 6, + aux_sym_field_declaration_list_repeat1, + [91545] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5120), 1, - anon_sym_LBRACE, - ACTIONS(6690), 1, - anon_sym_SEMI, - STATE(698), 1, - sym_declaration_list, + ACTIONS(4743), 1, + anon_sym_COLON_COLON, + ACTIONS(4806), 1, + anon_sym_COLON, + STATE(2589), 1, + sym_trait_bounds, STATE(3138), 2, sym_line_comment, sym_block_comment, - [91419] = 5, + [91565] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6692), 1, + ACTIONS(6709), 1, anon_sym_RBRACE, - ACTIONS(6694), 1, + ACTIONS(6711), 1, anon_sym_COMMA, - STATE(3139), 3, + STATE(2900), 1, + aux_sym_field_initializer_list_repeat1, + STATE(3139), 2, sym_line_comment, sym_block_comment, - aux_sym_field_declaration_list_repeat1, - [91437] = 6, + [91585] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4770), 1, - anon_sym_COLON_COLON, - ACTIONS(4817), 1, - anon_sym_COLON, - STATE(2545), 1, - sym_trait_bounds, + ACTIONS(3143), 1, + anon_sym_RBRACK, + ACTIONS(6713), 1, + anon_sym_COMMA, + STATE(2773), 1, + aux_sym_slice_pattern_repeat1, STATE(3140), 2, sym_line_comment, sym_block_comment, - [91457] = 6, + [91605] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5140), 1, + ACTIONS(5059), 1, anon_sym_RBRACE, - ACTIONS(6697), 1, + ACTIONS(6715), 1, anon_sym_COMMA, - STATE(3139), 1, + STATE(3137), 1, aux_sym_field_declaration_list_repeat1, STATE(3141), 2, sym_line_comment, sym_block_comment, - [91477] = 6, + [91625] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3649), 1, - anon_sym_LBRACE, - ACTIONS(6699), 1, - anon_sym_COLON_COLON, - STATE(1477), 1, - sym_field_initializer_list, STATE(3142), 2, sym_line_comment, sym_block_comment, - [91497] = 5, + ACTIONS(5715), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [91641] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(6701), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5089), 1, + anon_sym_LBRACE, + ACTIONS(6717), 1, + anon_sym_SEMI, + STATE(1146), 1, + sym_declaration_list, STATE(3143), 2, sym_line_comment, sym_block_comment, - [91515] = 4, + [91661] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(5069), 1, + anon_sym_move, + STATE(222), 1, + sym_closure_parameters, STATE(3144), 2, sym_line_comment, sym_block_comment, - ACTIONS(5763), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [91531] = 6, + [91681] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(902), 1, - anon_sym_RBRACK, - ACTIONS(6703), 1, - anon_sym_COMMA, - STATE(2766), 1, - aux_sym_arguments_repeat1, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(6719), 1, + anon_sym_SEMI, + STATE(3499), 1, + sym_where_clause, STATE(3145), 2, sym_line_comment, sym_block_comment, - [91551] = 6, + [91701] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6705), 1, + ACTIONS(6099), 1, anon_sym_GT, - ACTIONS(6707), 1, + ACTIONS(6721), 1, anon_sym_COMMA, - STATE(2904), 1, - aux_sym_type_parameters_repeat1, + STATE(3080), 1, + aux_sym_use_bounds_repeat1, STATE(3146), 2, sym_line_comment, sym_block_comment, - [91571] = 6, + [91721] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, - anon_sym_LBRACE, - ACTIONS(6709), 1, - anon_sym_SEMI, - STATE(1133), 1, - sym_declaration_list, STATE(3147), 2, sym_line_comment, sym_block_comment, - [91591] = 6, + ACTIONS(6723), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [91737] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(6711), 1, - anon_sym_for, - STATE(2026), 1, - sym_type_arguments, + ACTIONS(6103), 1, + anon_sym_GT, + ACTIONS(6725), 1, + anon_sym_COMMA, + STATE(3080), 1, + aux_sym_use_bounds_repeat1, STATE(3148), 2, sym_line_comment, sym_block_comment, - [91611] = 6, + [91757] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(6713), 1, + ACTIONS(5073), 1, + anon_sym_LBRACE, + ACTIONS(6727), 1, anon_sym_SEMI, - STATE(3707), 1, - sym_where_clause, + STATE(569), 1, + sym_declaration_list, STATE(3149), 2, sym_line_comment, sym_block_comment, - [91631] = 6, + [91777] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6715), 1, - anon_sym_LPAREN, - ACTIONS(6717), 1, - anon_sym_LBRACK, - ACTIONS(6719), 1, + ACTIONS(3637), 1, anon_sym_LBRACE, + ACTIONS(6729), 1, + anon_sym_COLON_COLON, + STATE(1480), 1, + sym_field_initializer_list, STATE(3150), 2, sym_line_comment, sym_block_comment, - [91651] = 5, + [91797] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5664), 1, - anon_sym_PIPE, - ACTIONS(6721), 2, - anon_sym_RPAREN, - anon_sym_COMMA, STATE(3151), 2, sym_line_comment, sym_block_comment, - [91669] = 4, + ACTIONS(5043), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [91813] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, @@ -191938,11 +190862,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(3152), 2, sym_line_comment, sym_block_comment, - ACTIONS(4999), 3, + ACTIONS(5045), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [91685] = 4, + [91829] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, @@ -191950,11 +190874,11 @@ static const uint16_t ts_small_parse_table[] = { STATE(3153), 2, sym_line_comment, sym_block_comment, - ACTIONS(5045), 3, + ACTIONS(5041), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [91701] = 4, + [91845] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, @@ -191962,37 +190886,36 @@ static const uint16_t ts_small_parse_table[] = { STATE(3154), 2, sym_line_comment, sym_block_comment, - ACTIONS(4959), 3, + ACTIONS(5021), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [91717] = 4, + [91861] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(6093), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3155), 2, sym_line_comment, sym_block_comment, - ACTIONS(5065), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [91733] = 6, + [91879] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(6723), 1, - anon_sym_SEMI, - STATE(3583), 1, - sym_where_clause, STATE(3156), 2, sym_line_comment, sym_block_comment, - [91753] = 4, + ACTIONS(6731), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [91895] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, @@ -192000,5128 +190923,5105 @@ static const uint16_t ts_small_parse_table[] = { STATE(3157), 2, sym_line_comment, sym_block_comment, - ACTIONS(6725), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [91769] = 4, + ACTIONS(6733), 3, + sym_string_content, + anon_sym_DQUOTE, + sym_escape_sequence, + [91911] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(5815), 1, + anon_sym_RPAREN, + ACTIONS(5817), 1, + anon_sym_COMMA, + STATE(3079), 1, + aux_sym_tuple_pattern_repeat1, STATE(3158), 2, sym_line_comment, sym_block_comment, - ACTIONS(6727), 3, - sym_string_content, - anon_sym_DQUOTE, - sym_escape_sequence, - [91785] = 5, + [91931] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6721), 1, - anon_sym_RPAREN, - ACTIONS(6729), 1, + ACTIONS(922), 1, + anon_sym_RBRACK, + ACTIONS(4275), 1, anon_sym_COMMA, - STATE(3159), 3, + STATE(2645), 1, + aux_sym_arguments_repeat1, + STATE(3159), 2, sym_line_comment, sym_block_comment, - aux_sym_tuple_pattern_repeat1, - [91803] = 5, + [91951] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6732), 1, + ACTIONS(6735), 1, anon_sym_EQ, - ACTIONS(6734), 2, + ACTIONS(6737), 2, anon_sym_GT, anon_sym_COMMA, STATE(3160), 2, sym_line_comment, sym_block_comment, - [91821] = 6, + [91969] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6736), 1, - sym_identifier, - ACTIONS(6738), 1, - anon_sym_ref, - ACTIONS(6740), 1, - sym_mutable_specifier, + ACTIONS(5073), 1, + anon_sym_LBRACE, + ACTIONS(6739), 1, + anon_sym_SEMI, + STATE(698), 1, + sym_declaration_list, STATE(3161), 2, sym_line_comment, sym_block_comment, - [91841] = 6, + [91989] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4871), 1, - anon_sym_GT, - ACTIONS(6742), 1, + ACTIONS(5651), 1, + anon_sym_PIPE, + ACTIONS(6741), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(3009), 1, - aux_sym_type_parameters_repeat1, STATE(3162), 2, sym_line_comment, sym_block_comment, - [91861] = 6, + [92007] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6744), 1, - anon_sym_RBRACE, - ACTIONS(6746), 1, + ACTIONS(4851), 1, + anon_sym_GT, + ACTIONS(6743), 1, anon_sym_COMMA, - STATE(2920), 1, - aux_sym_field_initializer_list_repeat1, + STATE(3041), 1, + aux_sym_type_parameters_repeat1, STATE(3163), 2, sym_line_comment, sym_block_comment, - [91881] = 6, + [92027] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4871), 1, - anon_sym_GT, - ACTIONS(6742), 1, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(6745), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(3021), 1, - aux_sym_type_parameters_repeat1, STATE(3164), 2, sym_line_comment, sym_block_comment, - [91901] = 6, + [92045] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, - anon_sym_LBRACE, - ACTIONS(6748), 1, - anon_sym_SEMI, - STATE(1154), 1, - sym_declaration_list, + ACTIONS(4851), 1, + anon_sym_GT, + ACTIONS(6743), 1, + anon_sym_COMMA, + STATE(3098), 1, + aux_sym_type_parameters_repeat1, STATE(3165), 2, sym_line_comment, sym_block_comment, - [91921] = 6, + [92065] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6750), 1, - anon_sym_RPAREN, - ACTIONS(6752), 1, - anon_sym_COMMA, - STATE(3135), 1, - aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(6747), 1, + anon_sym_for, + STATE(2023), 1, + sym_type_arguments, STATE(3166), 2, sym_line_comment, sym_block_comment, - [91941] = 6, + [92085] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, + ACTIONS(4669), 1, anon_sym_LT2, - ACTIONS(6754), 1, + ACTIONS(6749), 1, anon_sym_for, - STATE(2026), 1, + STATE(2023), 1, sym_type_arguments, STATE(3167), 2, sym_line_comment, sym_block_comment, - [91961] = 6, + [92105] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5120), 1, + ACTIONS(5073), 1, anon_sym_LBRACE, - ACTIONS(6756), 1, + ACTIONS(6751), 1, anon_sym_SEMI, - STATE(668), 1, + STATE(667), 1, sym_declaration_list, STATE(3168), 2, sym_line_comment, sym_block_comment, - [91981] = 6, + [92125] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5120), 1, - anon_sym_LBRACE, - ACTIONS(6758), 1, - anon_sym_SEMI, - STATE(756), 1, - sym_declaration_list, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(5121), 1, + anon_sym_for, + STATE(2023), 1, + sym_type_arguments, STATE(3169), 2, sym_line_comment, sym_block_comment, - [92001] = 5, + [92145] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(5959), 2, + ACTIONS(6753), 1, anon_sym_RPAREN, + ACTIONS(6755), 1, anon_sym_COMMA, + STATE(3134), 1, + aux_sym_ordered_field_declaration_list_repeat1, STATE(3170), 2, sym_line_comment, sym_block_comment, - [92019] = 5, + [92165] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(6760), 2, - anon_sym_RBRACE, + ACTIONS(924), 1, + anon_sym_RBRACK, + ACTIONS(4337), 1, anon_sym_COMMA, + STATE(2645), 1, + aux_sym_arguments_repeat1, STATE(3171), 2, sym_line_comment, sym_block_comment, - [92037] = 6, + [92185] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5775), 1, - anon_sym_COMMA, - ACTIONS(6762), 1, - anon_sym_PIPE, - STATE(2973), 1, - aux_sym_closure_parameters_repeat1, + ACTIONS(5073), 1, + anon_sym_LBRACE, + ACTIONS(6757), 1, + anon_sym_SEMI, + STATE(755), 1, + sym_declaration_list, STATE(3172), 2, sym_line_comment, sym_block_comment, - [92057] = 6, + [92205] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(5132), 1, - anon_sym_for, - STATE(2026), 1, - sym_type_arguments, + ACTIONS(5747), 1, + anon_sym_COMMA, + ACTIONS(6759), 1, + anon_sym_PIPE, + STATE(2966), 1, + aux_sym_closure_parameters_repeat1, STATE(3173), 2, sym_line_comment, sym_block_comment, - [92077] = 4, + [92225] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(6761), 1, + anon_sym_for, + STATE(2023), 1, + sym_type_arguments, STATE(3174), 2, sym_line_comment, sym_block_comment, - ACTIONS(6764), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [92093] = 5, + [92245] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6768), 1, - anon_sym_COLON, - ACTIONS(6766), 2, - anon_sym_RBRACE, + ACTIONS(1833), 1, + anon_sym_RPAREN, + ACTIONS(6763), 1, anon_sym_COMMA, + STATE(3022), 1, + aux_sym_tuple_pattern_repeat1, STATE(3175), 2, sym_line_comment, sym_block_comment, - [92111] = 4, + [92265] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(4669), 1, + anon_sym_LT2, + ACTIONS(6765), 1, + anon_sym_for, + STATE(2023), 1, + sym_type_arguments, STATE(3176), 2, sym_line_comment, sym_block_comment, - ACTIONS(6770), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [92127] = 6, + [92285] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1662), 1, - anon_sym_GT, - ACTIONS(6772), 1, - anon_sym_COMMA, - STATE(3051), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(5085), 1, + anon_sym_where, + ACTIONS(6767), 1, + anon_sym_EQ, + STATE(3759), 1, + sym_where_clause, STATE(3177), 2, sym_line_comment, sym_block_comment, - [92147] = 6, + [92305] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(6774), 1, - anon_sym_for, - STATE(2026), 1, - sym_type_arguments, + ACTIONS(6771), 1, + anon_sym_EQ, + ACTIONS(6769), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3178), 2, sym_line_comment, sym_block_comment, - [92167] = 4, + [92323] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(3123), 1, + anon_sym_RBRACK, + ACTIONS(6773), 1, + anon_sym_COMMA, + STATE(2773), 1, + aux_sym_slice_pattern_repeat1, STATE(3179), 2, sym_line_comment, sym_block_comment, - ACTIONS(5007), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [92183] = 6, + [92343] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, + ACTIONS(4669), 1, anon_sym_LT2, - ACTIONS(6776), 1, + ACTIONS(6775), 1, anon_sym_for, - STATE(2026), 1, + STATE(2023), 1, sym_type_arguments, STATE(3180), 2, sym_line_comment, sym_block_comment, - [92203] = 4, + [92363] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, + ACTIONS(5073), 1, + anon_sym_LBRACE, + ACTIONS(6777), 1, + anon_sym_SEMI, + STATE(741), 1, + sym_declaration_list, STATE(3181), 2, sym_line_comment, sym_block_comment, - ACTIONS(5013), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [92219] = 6, + [92383] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5110), 1, - anon_sym_where, - ACTIONS(6778), 1, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(6779), 1, + anon_sym_SEMI, + ACTIONS(6781), 1, anon_sym_EQ, - STATE(3769), 1, - sym_where_clause, STATE(3182), 2, sym_line_comment, sym_block_comment, - [92239] = 6, + [92403] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(928), 1, - anon_sym_RBRACK, - ACTIONS(4369), 1, - anon_sym_COMMA, - STATE(2766), 1, - aux_sym_arguments_repeat1, + ACTIONS(6783), 1, + sym_identifier, + ACTIONS(6785), 1, + anon_sym_ref, + ACTIONS(6787), 1, + sym_mutable_specifier, STATE(3183), 2, sym_line_comment, sym_block_comment, - [92259] = 6, + [92423] = 6, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1662), 1, - anon_sym_GT, - ACTIONS(6772), 1, + ACTIONS(5140), 1, + anon_sym_RBRACE, + ACTIONS(6437), 1, anon_sym_COMMA, - STATE(3053), 1, - aux_sym_type_arguments_repeat1, + STATE(3088), 1, + aux_sym_enum_variant_list_repeat2, STATE(3184), 2, sym_line_comment, sym_block_comment, - [92279] = 6, + [92443] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(6780), 1, - anon_sym_for, - STATE(2026), 1, - sym_type_arguments, + ACTIONS(5651), 1, + anon_sym_PIPE, + ACTIONS(6789), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3185), 2, sym_line_comment, sym_block_comment, - [92299] = 6, + [92461] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(1839), 1, - anon_sym_RPAREN, - ACTIONS(6782), 1, + ACTIONS(5600), 1, + anon_sym_GT, + ACTIONS(6791), 1, anon_sym_COMMA, - STATE(3159), 1, - aux_sym_tuple_pattern_repeat1, - STATE(3186), 2, + STATE(3186), 3, sym_line_comment, sym_block_comment, - [92319] = 6, + aux_sym_type_arguments_repeat1, + [92479] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6784), 1, - sym_identifier, - ACTIONS(6786), 1, - anon_sym_ref, - ACTIONS(6788), 1, - sym_mutable_specifier, + ACTIONS(5089), 1, + anon_sym_LBRACE, + STATE(1174), 1, + sym_declaration_list, STATE(3187), 2, sym_line_comment, sym_block_comment, - [92339] = 6, + [92496] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6790), 1, - anon_sym_EQ_GT, - ACTIONS(6792), 1, - anon_sym_PIPE, - ACTIONS(6794), 1, - anon_sym_if, + ACTIONS(4671), 1, + anon_sym_LPAREN, + STATE(2446), 1, + sym_parameters, STATE(3188), 2, sym_line_comment, sym_block_comment, - [92359] = 6, + [92513] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6796), 1, - anon_sym_RBRACE, - ACTIONS(6798), 1, - anon_sym_COMMA, - STATE(2966), 1, - aux_sym_field_initializer_list_repeat1, + ACTIONS(5344), 1, + anon_sym_RBRACK, + ACTIONS(6794), 1, + anon_sym_SEMI, STATE(3189), 2, sym_line_comment, sym_block_comment, - [92379] = 6, + [92530] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3127), 1, - anon_sym_RBRACK, - ACTIONS(6800), 1, - anon_sym_COMMA, - STATE(2767), 1, - aux_sym_slice_pattern_repeat1, + STATE(230), 1, + sym_closure_parameters, STATE(3190), 2, sym_line_comment, sym_block_comment, - [92399] = 6, + [92547] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4685), 1, - anon_sym_LT2, - ACTIONS(5151), 1, - anon_sym_for, - STATE(2026), 1, - sym_type_arguments, + ACTIONS(3169), 1, + anon_sym_PLUS, + ACTIONS(4055), 1, + anon_sym_COLON, STATE(3191), 2, sym_line_comment, sym_block_comment, - [92419] = 6, + [92564] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4351), 1, - anon_sym_RBRACE, - ACTIONS(6802), 1, - anon_sym_COMMA, - STATE(2934), 1, - aux_sym_use_list_repeat1, + ACTIONS(4671), 1, + anon_sym_LPAREN, + STATE(2307), 1, + sym_parameters, STATE(3192), 2, sym_line_comment, sym_block_comment, - [92439] = 6, + [92581] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3149), 1, - anon_sym_RPAREN, - ACTIONS(6804), 1, - anon_sym_COMMA, - STATE(2767), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(5081), 1, + anon_sym_LBRACE, + STATE(712), 1, + sym_field_declaration_list, STATE(3193), 2, sym_line_comment, sym_block_comment, - [92459] = 6, + [92598] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3173), 1, - anon_sym_PLUS, - ACTIONS(6806), 1, - anon_sym_GT, - ACTIONS(6808), 1, - anon_sym_as, + ACTIONS(5978), 1, + sym_identifier, + ACTIONS(5980), 1, + sym_super, STATE(3194), 2, sym_line_comment, sym_block_comment, - [92479] = 5, + [92615] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5486), 1, - anon_sym_LBRACE, - STATE(707), 1, - sym_enum_variant_list, + ACTIONS(5890), 2, + sym_identifier, + sym_super, STATE(3195), 2, sym_line_comment, sym_block_comment, - [92496] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [92630] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(234), 1, - sym_closure_parameters, + ACTIONS(6796), 1, + sym_identifier, + ACTIONS(6798), 1, + sym_super, STATE(3196), 2, sym_line_comment, sym_block_comment, - [92513] = 5, + [92647] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4687), 1, - anon_sym_LPAREN, - STATE(2432), 1, - sym_parameters, + ACTIONS(5099), 1, + anon_sym_LBRACE, + STATE(1172), 1, + sym_field_declaration_list, STATE(3197), 2, sym_line_comment, sym_block_comment, - [92530] = 5, + [92664] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5106), 1, + ACTIONS(5089), 1, anon_sym_LBRACE, - STATE(713), 1, - sym_field_declaration_list, + STATE(1173), 1, + sym_declaration_list, STATE(3198), 2, sym_line_comment, sym_block_comment, - [92547] = 5, + [92681] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3443), 1, - anon_sym_LT2, - STATE(1508), 1, - sym_type_arguments, + ACTIONS(6800), 1, + sym_identifier, + ACTIONS(6802), 1, + sym_super, STATE(3199), 2, sym_line_comment, sym_block_comment, - [92564] = 5, + [92698] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5875), 1, - sym_identifier, - ACTIONS(5877), 1, - sym_super, + ACTIONS(5651), 1, + anon_sym_PIPE, + ACTIONS(6804), 1, + anon_sym_in, STATE(3200), 2, sym_line_comment, sym_block_comment, - [92581] = 4, + [92715] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5831), 2, - sym_identifier, + ACTIONS(5418), 1, sym_super, + ACTIONS(5874), 1, + sym_identifier, STATE(3201), 2, sym_line_comment, sym_block_comment, - [92596] = 5, + [92732] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6810), 1, + ACTIONS(6806), 1, sym_identifier, - ACTIONS(6812), 1, + ACTIONS(6808), 1, sym_super, STATE(3202), 2, sym_line_comment, sym_block_comment, - [92613] = 4, + [92749] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6814), 2, - sym__block_comment_content, - anon_sym_STAR_SLASH, + ACTIONS(6810), 1, + anon_sym_RPAREN, + ACTIONS(6812), 1, + anon_sym_COLON_COLON, STATE(3203), 2, sym_line_comment, sym_block_comment, - [92628] = 5, + [92766] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6816), 1, - sym_identifier, - ACTIONS(6818), 1, - sym_super, + ACTIONS(6814), 1, + anon_sym_LT, + STATE(945), 1, + sym_type_parameters, STATE(3204), 2, sym_line_comment, sym_block_comment, - [92645] = 5, + [92783] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5410), 1, + ACTIONS(5418), 1, sym_super, - ACTIONS(6010), 1, + ACTIONS(5851), 1, sym_identifier, STATE(3205), 2, sym_line_comment, sym_block_comment, - [92662] = 5, + [92800] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6820), 1, - sym_identifier, - ACTIONS(6822), 1, - sym_super, + ACTIONS(4179), 1, + anon_sym_LPAREN, + STATE(1700), 1, + sym_parameters, STATE(3206), 2, sym_line_comment, sym_block_comment, - [92679] = 5, + [92817] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5155), 1, - anon_sym_LBRACE, - STATE(1201), 1, - sym_field_declaration_list, + ACTIONS(6816), 1, + anon_sym_SEMI, + ACTIONS(6818), 1, + anon_sym_as, STATE(3207), 2, sym_line_comment, sym_block_comment, - [92696] = 4, + [92834] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6824), 2, - sym__block_comment_content, - anon_sym_STAR_SLASH, + ACTIONS(5868), 2, + sym_identifier, + sym_super, STATE(3208), 2, sym_line_comment, sym_block_comment, - [92711] = 5, + [92849] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6736), 1, - sym_identifier, - ACTIONS(6740), 1, - sym_mutable_specifier, + STATE(245), 1, + sym_closure_parameters, STATE(3209), 2, sym_line_comment, sym_block_comment, - [92728] = 5, + [92866] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6826), 1, - anon_sym_LT, - STATE(948), 1, - sym_type_parameters, + ACTIONS(6808), 1, + sym_super, + ACTIONS(6820), 1, + sym_identifier, STATE(3210), 2, sym_line_comment, sym_block_comment, - [92745] = 5, + [92883] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5155), 1, - anon_sym_LBRACE, - STATE(1204), 1, - sym_field_declaration_list, + STATE(232), 1, + sym_closure_parameters, STATE(3211), 2, sym_line_comment, sym_block_comment, - [92762] = 5, + [92900] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4171), 1, - anon_sym_LPAREN, - STATE(1662), 1, - sym_parameters, + ACTIONS(6822), 2, + sym_identifier, + sym_super, STATE(3212), 2, sym_line_comment, sym_block_comment, - [92779] = 5, + [92915] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, + ACTIONS(5081), 1, anon_sym_LBRACE, - STATE(1232), 1, - sym_declaration_list, + STATE(684), 1, + sym_field_declaration_list, STATE(3213), 2, sym_line_comment, sym_block_comment, - [92796] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [92932] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(213), 1, - sym_closure_parameters, + ACTIONS(6824), 1, + anon_sym_SEMI, + ACTIONS(6826), 1, + anon_sym_EQ, STATE(3214), 2, sym_line_comment, sym_block_comment, - [92813] = 4, + [92949] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, ACTIONS(6828), 2, - anon_sym_GT, - anon_sym_COMMA, + sym__block_comment_content, + anon_sym_STAR_SLASH, STATE(3215), 2, sym_line_comment, sym_block_comment, - [92828] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [92964] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(236), 1, - sym_closure_parameters, + ACTIONS(6186), 1, + sym_identifier, + ACTIONS(6190), 1, + sym_mutable_specifier, STATE(3216), 2, sym_line_comment, sym_block_comment, - [92845] = 4, + [92981] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6830), 2, - sym_identifier, - sym_super, + ACTIONS(5099), 1, + anon_sym_LBRACE, + STATE(1180), 1, + sym_field_declaration_list, STATE(3217), 2, sym_line_comment, sym_block_comment, - [92860] = 5, + [92998] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3081), 1, - anon_sym_SQUOTE, - STATE(3078), 1, - sym_lifetime, + ACTIONS(4179), 1, + anon_sym_LPAREN, + STATE(1655), 1, + sym_parameters, STATE(3218), 2, sym_line_comment, sym_block_comment, - [92877] = 5, + [93015] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6832), 1, - anon_sym_SEMI, - ACTIONS(6834), 1, - anon_sym_EQ, + STATE(212), 1, + sym_closure_parameters, STATE(3219), 2, sym_line_comment, sym_block_comment, - [92894] = 5, + [93032] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5352), 1, + ACTIONS(6469), 2, anon_sym_RPAREN, - ACTIONS(6836), 1, - anon_sym_SEMI, + anon_sym_COMMA, STATE(3220), 2, sym_line_comment, sym_block_comment, - [92911] = 5, + [93047] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6826), 1, - anon_sym_LT, - STATE(1040), 1, - sym_type_parameters, + ACTIONS(3081), 1, + anon_sym_SQUOTE, + STATE(3069), 1, + sym_lifetime, STATE(3221), 2, sym_line_comment, sym_block_comment, - [92928] = 5, + [93064] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6838), 1, - anon_sym_SEMI, - ACTIONS(6840), 1, - anon_sym_as, + ACTIONS(6814), 1, + anon_sym_LT, + STATE(1040), 1, + sym_type_parameters, STATE(3222), 2, sym_line_comment, sym_block_comment, - [92945] = 5, + [93081] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4845), 1, - anon_sym_BANG, - ACTIONS(4901), 1, - anon_sym_COLON_COLON, + ACTIONS(3081), 1, + anon_sym_SQUOTE, + STATE(3299), 1, + sym_lifetime, STATE(3223), 2, sym_line_comment, sym_block_comment, - [92962] = 5, + [93098] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4171), 1, - anon_sym_LPAREN, - STATE(1712), 1, - sym_parameters, + ACTIONS(5089), 1, + anon_sym_LBRACE, + STATE(1224), 1, + sym_declaration_list, STATE(3224), 2, sym_line_comment, sym_block_comment, - [92979] = 5, + [93115] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5352), 1, - anon_sym_RBRACK, - ACTIONS(6836), 1, - anon_sym_SEMI, + ACTIONS(4183), 1, + anon_sym_LT2, + STATE(1727), 1, + sym_type_arguments, STATE(3225), 2, sym_line_comment, sym_block_comment, - [92996] = 5, + [93132] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, - anon_sym_LBRACE, - STATE(1239), 1, - sym_declaration_list, + ACTIONS(6830), 2, + sym_identifier, + sym_metavariable, STATE(3226), 2, sym_line_comment, sym_block_comment, - [93013] = 4, + [93147] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5410), 2, - sym_identifier, - sym_super, + ACTIONS(6832), 2, + sym_float_literal, + sym_integer_literal, STATE(3227), 2, sym_line_comment, sym_block_comment, - [93028] = 5, + [93162] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, - anon_sym_LBRACE, - STATE(1240), 1, - sym_declaration_list, + ACTIONS(6834), 1, + sym_identifier, + ACTIONS(6836), 1, + sym_super, STATE(3228), 2, sym_line_comment, sym_block_comment, - [93045] = 5, + [93179] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6842), 1, - anon_sym_SEMI, - ACTIONS(6844), 1, - anon_sym_as, + ACTIONS(5089), 1, + anon_sym_LBRACE, + STATE(1185), 1, + sym_declaration_list, STATE(3229), 2, sym_line_comment, sym_block_comment, - [93062] = 5, + [93196] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6846), 1, - anon_sym_SEMI, - ACTIONS(6848), 1, - anon_sym_EQ, + ACTIONS(5089), 1, + anon_sym_LBRACE, + STATE(1231), 1, + sym_declaration_list, STATE(3230), 2, sym_line_comment, sym_block_comment, - [93079] = 5, + [93213] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5356), 1, - anon_sym_RBRACE, - ACTIONS(6836), 1, - anon_sym_SEMI, + ACTIONS(5089), 1, + anon_sym_LBRACE, + STATE(1232), 1, + sym_declaration_list, STATE(3231), 2, sym_line_comment, sym_block_comment, - [93096] = 5, + [93230] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6850), 1, - sym_identifier, - ACTIONS(6852), 1, + ACTIONS(6838), 2, + anon_sym_const, sym_mutable_specifier, STATE(3232), 2, sym_line_comment, sym_block_comment, - [93113] = 5, + [93245] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5490), 1, + ACTIONS(5450), 1, anon_sym_LBRACE, - STATE(1248), 1, + STATE(1240), 1, sym_enum_variant_list, STATE(3233), 2, sym_line_comment, sym_block_comment, - [93130] = 4, + [93262] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6854), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5751), 1, + sym_super, + ACTIONS(6840), 1, + sym_identifier, STATE(3234), 2, sym_line_comment, sym_block_comment, - [93145] = 5, + [93279] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5155), 1, - anon_sym_LBRACE, - STATE(1251), 1, - sym_field_declaration_list, + ACTIONS(5679), 1, + sym_super, + ACTIONS(6842), 1, + sym_identifier, STATE(3235), 2, sym_line_comment, sym_block_comment, - [93162] = 5, + [93296] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5358), 1, - anon_sym_RPAREN, - ACTIONS(6836), 1, - anon_sym_SEMI, + STATE(238), 1, + sym_closure_parameters, STATE(3236), 2, sym_line_comment, sym_block_comment, - [93179] = 5, + [93313] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5155), 1, + ACTIONS(5099), 1, anon_sym_LBRACE, - STATE(1253), 1, + STATE(1243), 1, sym_field_declaration_list, STATE(3237), 2, sym_line_comment, sym_block_comment, - [93196] = 4, + [93330] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6856), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5346), 1, + anon_sym_RBRACE, + ACTIONS(6794), 1, + anon_sym_SEMI, STATE(3238), 2, sym_line_comment, sym_block_comment, - [93211] = 5, + [93347] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, - anon_sym_LBRACE, - STATE(1254), 1, - sym_declaration_list, + ACTIONS(5751), 1, + sym_super, + ACTIONS(6844), 1, + sym_identifier, STATE(3239), 2, sym_line_comment, sym_block_comment, - [93228] = 4, + [93364] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6858), 2, - sym_identifier, - sym_metavariable, + ACTIONS(6846), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3240), 2, sym_line_comment, sym_block_comment, - [93243] = 5, + [93379] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5358), 1, - anon_sym_RBRACK, - ACTIONS(6836), 1, - anon_sym_SEMI, + ACTIONS(5679), 1, + sym_super, + ACTIONS(6848), 1, + sym_identifier, STATE(3241), 2, sym_line_comment, sym_block_comment, - [93260] = 5, + [93396] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5693), 1, - sym_super, - ACTIONS(6860), 1, - sym_identifier, + ACTIONS(5099), 1, + anon_sym_LBRACE, + STATE(1245), 1, + sym_field_declaration_list, STATE(3242), 2, sym_line_comment, sym_block_comment, - [93277] = 5, + [93413] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5378), 1, - anon_sym_RBRACE, - ACTIONS(6836), 1, - anon_sym_SEMI, + ACTIONS(6802), 1, + sym_super, + ACTIONS(6844), 1, + sym_identifier, STATE(3243), 2, sym_line_comment, sym_block_comment, - [93294] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [93430] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(243), 1, - sym_closure_parameters, + ACTIONS(6850), 2, + sym_identifier, + sym_super, STATE(3244), 2, sym_line_comment, sym_block_comment, - [93311] = 5, + [93445] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5749), 1, - sym_super, - ACTIONS(6862), 1, + ACTIONS(6836), 2, sym_identifier, + sym_super, STATE(3245), 2, sym_line_comment, sym_block_comment, - [93328] = 5, + [93460] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5106), 1, + ACTIONS(5089), 1, anon_sym_LBRACE, - STATE(628), 1, - sym_field_declaration_list, + STATE(1246), 1, + sym_declaration_list, STATE(3246), 2, sym_line_comment, sym_block_comment, - [93345] = 5, + [93477] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5106), 1, - anon_sym_LBRACE, - STATE(685), 1, - sym_field_declaration_list, + STATE(236), 1, + sym_closure_parameters, STATE(3247), 2, sym_line_comment, sym_block_comment, - [93362] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [93494] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(211), 1, - sym_closure_parameters, + ACTIONS(6852), 2, + sym__block_comment_content, + anon_sym_STAR_SLASH, STATE(3248), 2, sym_line_comment, sym_block_comment, - [93379] = 5, + [93509] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3081), 1, - anon_sym_SQUOTE, - STATE(3298), 1, - sym_lifetime, + ACTIONS(5868), 1, + sym_super, + ACTIONS(5874), 1, + sym_identifier, STATE(3249), 2, sym_line_comment, sym_block_comment, - [93396] = 5, + [93526] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5749), 1, - sym_super, - ACTIONS(6864), 1, + ACTIONS(5980), 2, sym_identifier, + sym_super, STATE(3250), 2, sym_line_comment, sym_block_comment, - [93413] = 5, + [93541] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6866), 1, - anon_sym_STAR_SLASH, - ACTIONS(6868), 1, - sym__block_comment_content, + ACTIONS(6802), 1, + sym_super, + ACTIONS(6854), 1, + sym_identifier, STATE(3251), 2, sym_line_comment, sym_block_comment, - [93430] = 5, + [93558] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5664), 1, - anon_sym_PIPE, - ACTIONS(6870), 1, - anon_sym_in, + ACTIONS(5418), 1, + sym_super, + ACTIONS(5908), 1, + sym_identifier, STATE(3252), 2, sym_line_comment, sym_block_comment, - [93447] = 5, + [93575] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4221), 1, - anon_sym_LBRACE, - STATE(1922), 1, - sym_field_initializer_list, + ACTIONS(6808), 1, + sym_super, + ACTIONS(6856), 1, + sym_identifier, STATE(3253), 2, sym_line_comment, sym_block_comment, - [93464] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [93592] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(253), 1, - sym_closure_parameters, + ACTIONS(6289), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3254), 2, sym_line_comment, sym_block_comment, - [93481] = 5, + [93607] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3173), 1, - anon_sym_PLUS, - ACTIONS(3961), 1, - anon_sym_COLON, + ACTIONS(6806), 1, + sym_identifier, + ACTIONS(6858), 1, + sym_super, STATE(3255), 2, sym_line_comment, sym_block_comment, - [93498] = 5, + [93624] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3173), 1, - anon_sym_PLUS, - ACTIONS(3979), 1, - anon_sym_COLON, + ACTIONS(5073), 1, + anon_sym_LBRACE, + STATE(757), 1, + sym_declaration_list, STATE(3256), 2, sym_line_comment, sym_block_comment, - [93515] = 4, + [93641] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5877), 2, + ACTIONS(5418), 2, sym_identifier, sym_super, STATE(3257), 2, sym_line_comment, sym_block_comment, - [93530] = 4, + [93656] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6508), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + STATE(239), 1, + sym_closure_parameters, STATE(3258), 2, sym_line_comment, sym_block_comment, - [93545] = 5, + [93673] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6818), 1, - sym_super, - ACTIONS(6872), 1, - sym_identifier, + ACTIONS(5081), 1, + anon_sym_LBRACE, + STATE(618), 1, + sym_field_declaration_list, STATE(3259), 2, sym_line_comment, sym_block_comment, - [93562] = 5, + [93690] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5410), 1, - sym_super, - ACTIONS(5835), 1, - sym_identifier, + ACTIONS(5338), 1, + anon_sym_RBRACK, + ACTIONS(6794), 1, + anon_sym_SEMI, STATE(3260), 2, sym_line_comment, sym_block_comment, - [93579] = 5, + [93707] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6822), 1, - sym_super, - ACTIONS(6874), 1, - sym_identifier, + ACTIONS(6860), 1, + anon_sym_SEMI, + ACTIONS(6862), 1, + anon_sym_EQ, STATE(3261), 2, sym_line_comment, sym_block_comment, - [93596] = 5, + [93724] = 4, ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(6876), 1, - anon_sym_RPAREN, - ACTIONS(6878), 1, - anon_sym_COLON_COLON, + anon_sym_SLASH_SLASH, + ACTIONS(107), 1, + anon_sym_SLASH_STAR, + ACTIONS(6511), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3262), 2, sym_line_comment, sym_block_comment, - [93613] = 5, + [93739] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3173), 1, + ACTIONS(3169), 1, anon_sym_PLUS, - ACTIONS(3849), 1, + ACTIONS(3873), 1, anon_sym_COLON, STATE(3263), 2, sym_line_comment, sym_block_comment, - [93630] = 5, + [93756] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5835), 1, - sym_identifier, - ACTIONS(5837), 1, - sym_super, + ACTIONS(3403), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3264), 2, sym_line_comment, sym_block_comment, - [93647] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [93771] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(251), 1, - sym_closure_parameters, + ACTIONS(5450), 1, + anon_sym_LBRACE, + STATE(1190), 1, + sym_enum_variant_list, STATE(3265), 2, sym_line_comment, sym_block_comment, - [93664] = 5, + [93788] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5486), 1, + ACTIONS(4205), 1, anon_sym_LBRACE, - STATE(766), 1, - sym_enum_variant_list, + STATE(1915), 1, + sym_field_initializer_list, STATE(3266), 2, sym_line_comment, sym_block_comment, - [93681] = 5, + [93805] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6818), 1, - sym_super, - ACTIONS(6880), 1, + ACTIONS(6864), 1, sym_identifier, + ACTIONS(6866), 1, + sym_mutable_specifier, STATE(3267), 2, sym_line_comment, sym_block_comment, - [93698] = 5, + [93822] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5693), 1, - sym_super, - ACTIONS(6882), 1, - sym_identifier, + ACTIONS(5450), 1, + anon_sym_LBRACE, + STATE(1156), 1, + sym_enum_variant_list, STATE(3268), 2, sym_line_comment, sym_block_comment, - [93715] = 5, + [93839] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6822), 1, - sym_super, - ACTIONS(6884), 1, - sym_identifier, + ACTIONS(5651), 1, + anon_sym_PIPE, + ACTIONS(6868), 1, + anon_sym_in, STATE(3269), 2, sym_line_comment, sym_block_comment, - [93732] = 4, + [93856] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6886), 2, - sym_float_literal, - sym_integer_literal, + ACTIONS(5099), 1, + anon_sym_LBRACE, + STATE(1193), 1, + sym_field_declaration_list, STATE(3270), 2, sym_line_comment, sym_block_comment, - [93747] = 5, + [93873] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6888), 1, - anon_sym_RPAREN, - ACTIONS(6890), 1, - anon_sym_COLON_COLON, + ACTIONS(6836), 1, + sym_super, + ACTIONS(6870), 1, + sym_identifier, STATE(3271), 2, sym_line_comment, sym_block_comment, - [93764] = 5, + [93890] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6892), 1, - sym_identifier, - ACTIONS(6894), 1, + ACTIONS(5751), 1, sym_super, + ACTIONS(6872), 1, + sym_identifier, STATE(3272), 2, sym_line_comment, sym_block_comment, - [93781] = 5, + [93907] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5106), 1, - anon_sym_LBRACE, - STATE(693), 1, - sym_field_declaration_list, + ACTIONS(6874), 1, + sym_identifier, + ACTIONS(6876), 1, + sym_super, STATE(3273), 2, sym_line_comment, sym_block_comment, - [93798] = 5, + [93924] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6826), 1, + ACTIONS(6814), 1, anon_sym_LT, - STATE(1041), 1, + STATE(914), 1, sym_type_parameters, STATE(3274), 2, sym_line_comment, sym_block_comment, - [93815] = 4, + [93941] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6896), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(5868), 1, + sym_super, + ACTIONS(6029), 1, + sym_identifier, STATE(3275), 2, sym_line_comment, sym_block_comment, - [93830] = 5, + [93958] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5664), 1, - anon_sym_PIPE, - ACTIONS(5733), 1, - anon_sym_COLON, + ACTIONS(6858), 1, + sym_super, + ACTIONS(6878), 1, + sym_identifier, STATE(3276), 2, sym_line_comment, sym_block_comment, - [93847] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [93975] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(224), 1, - sym_closure_parameters, + ACTIONS(5099), 1, + anon_sym_LBRACE, + STATE(1196), 1, + sym_field_declaration_list, STATE(3277), 2, sym_line_comment, sym_block_comment, - [93864] = 5, + [93992] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3649), 1, - anon_sym_LBRACE, - STATE(1477), 1, - sym_field_initializer_list, + ACTIONS(5679), 2, + sym_identifier, + sym_super, STATE(3278), 2, sym_line_comment, sym_block_comment, - [93881] = 4, + [94007] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5963), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(3427), 1, + anon_sym_LPAREN, + STATE(1400), 1, + sym_parameters, STATE(3279), 2, sym_line_comment, sym_block_comment, - [93896] = 5, + [94024] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6836), 1, - anon_sym_SEMI, - ACTIONS(6898), 1, + ACTIONS(5342), 1, anon_sym_RBRACE, + ACTIONS(6794), 1, + anon_sym_SEMI, STATE(3280), 2, sym_line_comment, sym_block_comment, - [93913] = 5, + [94041] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6894), 1, - sym_super, - ACTIONS(6900), 1, - sym_identifier, + ACTIONS(6814), 1, + anon_sym_LT, + STATE(1042), 1, + sym_type_parameters, STATE(3281), 2, sym_line_comment, sym_block_comment, - [93930] = 5, + [94058] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3435), 1, - anon_sym_LPAREN, - STATE(1415), 1, - sym_parameters, + ACTIONS(6880), 1, + anon_sym_LBRACK, + ACTIONS(6882), 1, + anon_sym_BANG, STATE(3282), 2, sym_line_comment, sym_block_comment, - [93947] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [94075] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(239), 1, - sym_closure_parameters, + ACTIONS(5649), 1, + anon_sym_COLON, + ACTIONS(5651), 1, + anon_sym_PIPE, STATE(3283), 2, sym_line_comment, sym_block_comment, - [93964] = 5, + [94092] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4770), 1, - anon_sym_COLON_COLON, - ACTIONS(6537), 1, - anon_sym_for, + ACTIONS(6049), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3284), 2, sym_line_comment, sym_block_comment, - [93981] = 5, + [94107] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3173), 1, - anon_sym_PLUS, - ACTIONS(4097), 1, - anon_sym_COLON, + ACTIONS(6884), 1, + anon_sym_SEMI, + ACTIONS(6886), 1, + anon_sym_as, STATE(3285), 2, sym_line_comment, sym_block_comment, - [93998] = 5, + [94124] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6902), 1, - sym_identifier, - ACTIONS(6904), 1, - sym_super, + ACTIONS(6888), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3286), 2, sym_line_comment, sym_block_comment, - [94015] = 4, + [94139] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6906), 2, - sym_identifier, - sym_metavariable, + ACTIONS(6890), 1, + anon_sym_SEMI, + ACTIONS(6892), 1, + anon_sym_EQ, STATE(3287), 2, sym_line_comment, sym_block_comment, - [94030] = 5, + [94156] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5837), 1, - sym_super, - ACTIONS(5945), 1, - sym_identifier, + ACTIONS(5073), 1, + anon_sym_LBRACE, + STATE(581), 1, + sym_declaration_list, STATE(3288), 2, sym_line_comment, sym_block_comment, - [94047] = 5, + [94173] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6908), 1, + ACTIONS(5751), 2, sym_identifier, - ACTIONS(6910), 1, sym_super, STATE(3289), 2, sym_line_comment, sym_block_comment, - [94064] = 5, + [94188] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, ACTIONS(6836), 1, - anon_sym_SEMI, - ACTIONS(6912), 1, - anon_sym_RBRACE, + sym_super, + ACTIONS(6894), 1, + sym_identifier, STATE(3290), 2, sym_line_comment, sym_block_comment, - [94081] = 4, + [94205] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6275), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(5868), 1, + sym_super, + ACTIONS(5908), 1, + sym_identifier, STATE(3291), 2, sym_line_comment, sym_block_comment, - [94096] = 5, + [94222] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4687), 1, - anon_sym_LPAREN, - STATE(2312), 1, - sym_parameters, + ACTIONS(6802), 1, + sym_super, + ACTIONS(6896), 1, + sym_identifier, STATE(3292), 2, sym_line_comment, sym_block_comment, - [94113] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [94239] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(248), 1, - sym_closure_parameters, + ACTIONS(5866), 1, + sym_identifier, + ACTIONS(5868), 1, + sym_super, STATE(3293), 2, sym_line_comment, sym_block_comment, - [94130] = 5, + [94256] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6888), 1, - anon_sym_RPAREN, - ACTIONS(6914), 1, - anon_sym_COLON_COLON, + ACTIONS(6858), 1, + sym_super, + ACTIONS(6898), 1, + sym_identifier, STATE(3294), 2, sym_line_comment, sym_block_comment, - [94147] = 4, + [94273] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5502), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5073), 1, + anon_sym_LBRACE, + STATE(686), 1, + sym_declaration_list, STATE(3295), 2, sym_line_comment, sym_block_comment, - [94162] = 4, + [94290] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6916), 2, + ACTIONS(5530), 2, anon_sym_RPAREN, anon_sym_COMMA, STATE(3296), 2, sym_line_comment, sym_block_comment, - [94177] = 5, + [94305] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6888), 1, + ACTIONS(6900), 2, anon_sym_RPAREN, - ACTIONS(6918), 1, - anon_sym_COLON_COLON, + anon_sym_COMMA, STATE(3297), 2, sym_line_comment, sym_block_comment, - [94194] = 4, + [94320] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6556), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(5751), 1, + sym_super, + ACTIONS(6902), 1, + sym_identifier, STATE(3298), 2, sym_line_comment, sym_block_comment, - [94209] = 5, + [94337] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5106), 1, - anon_sym_LBRACE, - STATE(769), 1, - sym_field_declaration_list, + ACTIONS(6567), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3299), 2, sym_line_comment, sym_block_comment, - [94226] = 5, + [94352] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6894), 1, - sym_super, - ACTIONS(6920), 1, - sym_identifier, + ACTIONS(5438), 1, + anon_sym_LBRACE, + STATE(765), 1, + sym_enum_variant_list, STATE(3300), 2, sym_line_comment, sym_block_comment, - [94243] = 5, + [94369] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4535), 1, - anon_sym_EQ_GT, - ACTIONS(6922), 1, - anon_sym_AMP_AMP, + ACTIONS(6904), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3301), 2, sym_line_comment, sym_block_comment, - [94260] = 5, + [94384] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6663), 1, - anon_sym_EQ_GT, - ACTIONS(6922), 1, - anon_sym_AMP_AMP, + ACTIONS(6574), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3302), 2, sym_line_comment, sym_block_comment, - [94277] = 5, + [94399] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6818), 1, - sym_super, - ACTIONS(6924), 1, - sym_identifier, + ACTIONS(5073), 1, + anon_sym_LBRACE, + STATE(749), 1, + sym_declaration_list, STATE(3303), 2, sym_line_comment, sym_block_comment, - [94294] = 5, + [94416] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5837), 1, + ACTIONS(6836), 1, sym_super, - ACTIONS(6104), 1, + ACTIONS(6848), 1, sym_identifier, STATE(3304), 2, sym_line_comment, sym_block_comment, - [94311] = 5, + [94433] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6910), 1, + ACTIONS(6850), 1, sym_super, - ACTIONS(6926), 1, + ACTIONS(6906), 1, sym_identifier, STATE(3305), 2, sym_line_comment, sym_block_comment, - [94328] = 4, + [94450] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6928), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(3427), 1, + anon_sym_LPAREN, + STATE(1424), 1, + sym_parameters, STATE(3306), 2, sym_line_comment, sym_block_comment, - [94343] = 4, + [94467] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6565), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(6802), 1, + sym_super, + ACTIONS(6908), 1, + sym_identifier, STATE(3307), 2, sym_line_comment, sym_block_comment, - [94358] = 5, + [94484] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6864), 1, - sym_identifier, - ACTIONS(6894), 1, + ACTIONS(5890), 1, sym_super, + ACTIONS(5982), 1, + sym_identifier, STATE(3308), 2, sym_line_comment, sym_block_comment, - [94375] = 5, + [94501] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6930), 1, - sym_identifier, - ACTIONS(6932), 1, + ACTIONS(6822), 1, sym_super, + ACTIONS(6910), 1, + sym_identifier, STATE(3309), 2, sym_line_comment, sym_block_comment, - [94392] = 5, + [94518] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6818), 1, + ACTIONS(5679), 1, sym_super, - ACTIONS(6934), 1, + ACTIONS(6912), 1, sym_identifier, STATE(3310), 2, sym_line_comment, sym_block_comment, - [94409] = 5, + [94535] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5831), 1, - sym_super, - ACTIONS(5879), 1, - sym_identifier, + ACTIONS(3169), 1, + anon_sym_PLUS, + ACTIONS(4105), 1, + anon_sym_COLON, STATE(3311), 2, sym_line_comment, sym_block_comment, - [94426] = 5, + [94552] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6830), 1, + ACTIONS(5679), 1, sym_super, - ACTIONS(6936), 1, + ACTIONS(6870), 1, sym_identifier, STATE(3312), 2, sym_line_comment, sym_block_comment, - [94443] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [94569] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(214), 1, - sym_closure_parameters, + ACTIONS(6802), 1, + sym_super, + ACTIONS(6840), 1, + sym_identifier, STATE(3313), 2, sym_line_comment, sym_block_comment, - [94460] = 4, + [94586] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6894), 2, - sym_identifier, + ACTIONS(5418), 1, sym_super, + ACTIONS(6029), 1, + sym_identifier, STATE(3314), 2, sym_line_comment, sym_block_comment, - [94475] = 5, + [94603] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, - ACTIONS(6938), 1, - anon_sym_GT, + ACTIONS(6808), 1, + sym_super, + ACTIONS(6878), 1, + sym_identifier, STATE(3315), 2, sym_line_comment, sym_block_comment, - [94492] = 4, + [94620] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6588), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(6836), 1, + sym_super, + ACTIONS(6914), 1, + sym_identifier, STATE(3316), 2, sym_line_comment, sym_block_comment, - [94507] = 5, + [94637] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6874), 1, - sym_identifier, - ACTIONS(6910), 1, + ACTIONS(5868), 1, sym_super, + ACTIONS(6027), 1, + sym_identifier, STATE(3317), 2, sym_line_comment, sym_block_comment, - [94524] = 5, + [94654] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5749), 1, + ACTIONS(6858), 1, sym_super, - ACTIONS(6900), 1, + ACTIONS(6916), 1, sym_identifier, STATE(3318), 2, sym_line_comment, sym_block_comment, - [94541] = 5, + [94671] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6818), 1, + ACTIONS(6836), 1, sym_super, - ACTIONS(6860), 1, + ACTIONS(6918), 1, sym_identifier, STATE(3319), 2, sym_line_comment, sym_block_comment, - [94558] = 5, + [94688] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5410), 1, + ACTIONS(5868), 1, sym_super, - ACTIONS(5945), 1, + ACTIONS(6047), 1, sym_identifier, STATE(3320), 2, sym_line_comment, sym_block_comment, - [94575] = 5, + [94705] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6822), 1, + ACTIONS(6858), 1, sym_super, - ACTIONS(6908), 1, + ACTIONS(6920), 1, sym_identifier, STATE(3321), 2, sym_line_comment, sym_block_comment, - [94592] = 5, + [94722] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6894), 1, + ACTIONS(6836), 1, sym_super, - ACTIONS(6940), 1, + ACTIONS(6922), 1, sym_identifier, STATE(3322), 2, sym_line_comment, sym_block_comment, - [94609] = 5, + [94739] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5837), 1, + ACTIONS(5868), 1, sym_super, - ACTIONS(5943), 1, + ACTIONS(6055), 1, sym_identifier, STATE(3323), 2, sym_line_comment, sym_block_comment, - [94626] = 5, + [94756] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6910), 1, + ACTIONS(6858), 1, sym_super, - ACTIONS(6942), 1, + ACTIONS(6924), 1, sym_identifier, STATE(3324), 2, sym_line_comment, sym_block_comment, - [94643] = 5, + [94773] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6894), 1, + ACTIONS(5679), 1, sym_super, - ACTIONS(6944), 1, + ACTIONS(6922), 1, sym_identifier, STATE(3325), 2, sym_line_comment, sym_block_comment, - [94660] = 5, + [94790] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5837), 1, + ACTIONS(5418), 1, sym_super, - ACTIONS(5988), 1, + ACTIONS(6055), 1, sym_identifier, STATE(3326), 2, sym_line_comment, sym_block_comment, - [94677] = 5, + [94807] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6910), 1, + ACTIONS(6808), 1, sym_super, - ACTIONS(6946), 1, + ACTIONS(6924), 1, sym_identifier, STATE(3327), 2, sym_line_comment, sym_block_comment, - [94694] = 5, + [94824] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6894), 1, - sym_super, - ACTIONS(6948), 1, - sym_identifier, + ACTIONS(6926), 1, + anon_sym_SEMI, + ACTIONS(6928), 1, + anon_sym_as, STATE(3328), 2, sym_line_comment, sym_block_comment, - [94711] = 5, + [94841] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5837), 1, - sym_super, - ACTIONS(6004), 1, - sym_identifier, + ACTIONS(5450), 1, + anon_sym_LBRACE, + STATE(1118), 1, + sym_enum_variant_list, STATE(3329), 2, sym_line_comment, sym_block_comment, - [94728] = 5, + [94858] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6910), 1, - sym_super, - ACTIONS(6950), 1, - sym_identifier, + ACTIONS(3163), 1, + anon_sym_PLUS, + ACTIONS(6930), 1, + anon_sym_GT, STATE(3330), 2, sym_line_comment, sym_block_comment, - [94745] = 5, + [94875] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5749), 1, - sym_super, - ACTIONS(6948), 1, - sym_identifier, + ACTIONS(6597), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3331), 2, sym_line_comment, sym_block_comment, - [94762] = 5, + [94890] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5410), 1, - sym_super, - ACTIONS(6004), 1, - sym_identifier, + STATE(222), 1, + sym_closure_parameters, STATE(3332), 2, sym_line_comment, sym_block_comment, - [94779] = 5, + [94907] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6822), 1, - sym_super, - ACTIONS(6950), 1, - sym_identifier, + ACTIONS(4671), 1, + anon_sym_LPAREN, + STATE(2486), 1, + sym_parameters, STATE(3333), 2, sym_line_comment, sym_block_comment, - [94796] = 5, + [94924] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4687), 1, - anon_sym_LPAREN, - STATE(2458), 1, - sym_parameters, + ACTIONS(6794), 1, + anon_sym_SEMI, + ACTIONS(6932), 1, + anon_sym_RPAREN, STATE(3334), 2, sym_line_comment, sym_block_comment, - [94813] = 5, + [94941] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(6952), 1, - anon_sym_COLON_COLON, + ACTIONS(5073), 1, + anon_sym_LBRACE, + STATE(687), 1, + sym_declaration_list, STATE(3335), 2, sym_line_comment, sym_block_comment, - [94830] = 5, + [94958] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6836), 1, + ACTIONS(6794), 1, anon_sym_SEMI, - ACTIONS(6954), 1, - anon_sym_RPAREN, + ACTIONS(6934), 1, + anon_sym_RBRACE, STATE(3336), 2, sym_line_comment, sym_block_comment, - [94847] = 5, + [94975] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4687), 1, - anon_sym_LPAREN, - STATE(2451), 1, - sym_parameters, + ACTIONS(5438), 1, + anon_sym_LBRACE, + STATE(706), 1, + sym_enum_variant_list, STATE(3337), 2, sym_line_comment, sym_block_comment, - [94864] = 5, + [94992] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5106), 1, + ACTIONS(5089), 1, anon_sym_LBRACE, - STATE(619), 1, - sym_field_declaration_list, + STATE(1287), 1, + sym_declaration_list, STATE(3338), 2, sym_line_comment, sym_block_comment, - [94881] = 4, + [95009] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6956), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5651), 1, + anon_sym_PIPE, + ACTIONS(6936), 1, + anon_sym_EQ, STATE(3339), 2, sym_line_comment, sym_block_comment, - [94896] = 5, + [95026] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3173), 1, - anon_sym_PLUS, - ACTIONS(4049), 1, - anon_sym_COLON, + ACTIONS(6938), 1, + anon_sym_LPAREN, + ACTIONS(6940), 1, + anon_sym_COLON_COLON, STATE(3340), 2, sym_line_comment, sym_block_comment, - [94913] = 5, + [95043] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6958), 1, - anon_sym_LPAREN, - ACTIONS(6960), 1, - anon_sym_COLON_COLON, + ACTIONS(6794), 1, + anon_sym_SEMI, + ACTIONS(6932), 1, + anon_sym_RBRACK, STATE(3341), 2, sym_line_comment, sym_block_comment, - [94930] = 5, + [95060] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, - anon_sym_LBRACE, - STATE(1295), 1, - sym_declaration_list, + ACTIONS(6794), 1, + anon_sym_SEMI, + ACTIONS(6942), 1, + anon_sym_RBRACE, STATE(3342), 2, sym_line_comment, sym_block_comment, - [94947] = 4, + [95077] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6962), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(3435), 1, + anon_sym_LT2, + STATE(1505), 1, + sym_type_arguments, STATE(3343), 2, sym_line_comment, sym_block_comment, - [94962] = 5, + [95094] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3509), 1, - anon_sym_PLUS, - ACTIONS(3773), 1, - anon_sym_COLON_COLON, + ACTIONS(6944), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3344), 2, sym_line_comment, sym_block_comment, - [94979] = 5, + [95109] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3509), 1, + ACTIONS(3569), 1, anon_sym_PLUS, - ACTIONS(3775), 1, + ACTIONS(3763), 1, anon_sym_COLON_COLON, STATE(3345), 2, sym_line_comment, sym_block_comment, - [94996] = 5, + [95126] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6964), 1, - anon_sym_BANG, - ACTIONS(6966), 1, + ACTIONS(3569), 1, + anon_sym_PLUS, + ACTIONS(3765), 1, anon_sym_COLON_COLON, STATE(3346), 2, sym_line_comment, sym_block_comment, - [95013] = 5, + [95143] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5410), 1, - sym_super, - ACTIONS(6070), 1, - sym_identifier, + ACTIONS(6946), 1, + anon_sym_BANG, + ACTIONS(6948), 1, + anon_sym_COLON_COLON, STATE(3347), 2, sym_line_comment, sym_block_comment, - [95030] = 5, + [95160] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5664), 1, - anon_sym_PIPE, - ACTIONS(6968), 1, - anon_sym_in, + ACTIONS(6794), 1, + anon_sym_SEMI, + ACTIONS(6950), 1, + anon_sym_RBRACE, STATE(3348), 2, sym_line_comment, sym_block_comment, - [95047] = 4, + [95177] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5837), 2, - sym_identifier, - sym_super, + ACTIONS(4671), 1, + anon_sym_LPAREN, + STATE(2460), 1, + sym_parameters, STATE(3349), 2, sym_line_comment, sym_block_comment, - [95062] = 4, + [95194] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6970), 2, + ACTIONS(6952), 2, anon_sym_GT, anon_sym_COMMA, STATE(3350), 2, sym_line_comment, sym_block_comment, - [95077] = 5, + [95209] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6822), 1, - sym_super, - ACTIONS(6972), 1, - sym_identifier, + ACTIONS(6810), 1, + anon_sym_RPAREN, + ACTIONS(6954), 1, + anon_sym_COLON_COLON, STATE(3351), 2, sym_line_comment, sym_block_comment, - [95094] = 5, + [95226] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5120), 1, - anon_sym_LBRACE, - STATE(582), 1, - sym_declaration_list, + STATE(243), 1, + sym_closure_parameters, STATE(3352), 2, sym_line_comment, sym_block_comment, - [95111] = 5, + [95243] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5155), 1, + ACTIONS(5089), 1, anon_sym_LBRACE, - STATE(1180), 1, - sym_field_declaration_list, + STATE(1297), 1, + sym_declaration_list, STATE(3353), 2, sym_line_comment, sym_block_comment, - [95128] = 5, + [95260] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6836), 1, - anon_sym_SEMI, - ACTIONS(6954), 1, - anon_sym_RBRACK, + ACTIONS(3637), 1, + anon_sym_LBRACE, + STATE(1480), 1, + sym_field_initializer_list, STATE(3354), 2, sym_line_comment, sym_block_comment, - [95145] = 5, + [95277] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4175), 1, - anon_sym_LT2, - STATE(1873), 1, - sym_type_arguments, + ACTIONS(6956), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3355), 2, sym_line_comment, sym_block_comment, - [95162] = 5, + [95292] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6836), 1, - anon_sym_SEMI, - ACTIONS(6974), 1, - anon_sym_RBRACE, + ACTIONS(6814), 1, + anon_sym_LT, + STATE(1048), 1, + sym_type_parameters, STATE(3356), 2, sym_line_comment, sym_block_comment, - [95179] = 5, + [95309] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5693), 1, + ACTIONS(6808), 1, sym_super, - ACTIONS(6976), 1, + ACTIONS(6958), 1, sym_identifier, STATE(3357), 2, sym_line_comment, sym_block_comment, - [95196] = 5, + [95326] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, - anon_sym_LBRACE, - STATE(1304), 1, - sym_declaration_list, + STATE(217), 1, + sym_closure_parameters, STATE(3358), 2, sym_line_comment, sym_block_comment, - [95213] = 5, + [95343] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6978), 1, - sym_identifier, - ACTIONS(6980), 1, - sym_mutable_specifier, + ACTIONS(4671), 1, + anon_sym_LPAREN, + STATE(2301), 1, + sym_parameters, STATE(3359), 2, sym_line_comment, sym_block_comment, - [95230] = 5, + [95360] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6826), 1, - anon_sym_LT, - STATE(968), 1, - sym_type_parameters, + ACTIONS(5081), 1, + anon_sym_LBRACE, + STATE(693), 1, + sym_field_declaration_list, STATE(3360), 2, sym_line_comment, sym_block_comment, - [95247] = 5, + [95377] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6982), 1, - anon_sym_LBRACK, - ACTIONS(6984), 1, + ACTIONS(4895), 1, + anon_sym_COLON_COLON, + ACTIONS(5013), 1, anon_sym_BANG, STATE(3361), 2, sym_line_comment, sym_block_comment, - [95264] = 5, + [95394] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5490), 1, + ACTIONS(5073), 1, anon_sym_LBRACE, - STATE(1198), 1, - sym_enum_variant_list, + STATE(756), 1, + sym_declaration_list, STATE(3362), 2, sym_line_comment, sym_block_comment, - [95281] = 5, + [95411] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5120), 1, + ACTIONS(5081), 1, anon_sym_LBRACE, - STATE(686), 1, - sym_declaration_list, + STATE(768), 1, + sym_field_declaration_list, STATE(3363), 2, sym_line_comment, sym_block_comment, - [95298] = 5, + [95428] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4687), 1, - anon_sym_LPAREN, - STATE(2309), 1, - sym_parameters, + ACTIONS(6794), 1, + anon_sym_SEMI, + ACTIONS(6960), 1, + anon_sym_RPAREN, STATE(3364), 2, sym_line_comment, sym_block_comment, - [95315] = 4, + [95445] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6986), 2, - anon_sym_const, - sym_mutable_specifier, + STATE(233), 1, + sym_closure_parameters, STATE(3365), 2, sym_line_comment, sym_block_comment, - [95330] = 5, + [95462] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5120), 1, - anon_sym_LBRACE, - STATE(687), 1, - sym_declaration_list, + ACTIONS(6794), 1, + anon_sym_SEMI, + ACTIONS(6960), 1, + anon_sym_RBRACK, STATE(3366), 2, sym_line_comment, sym_block_comment, - [95347] = 5, + [95479] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5120), 1, + ACTIONS(5099), 1, anon_sym_LBRACE, - STATE(622), 1, - sym_declaration_list, + STATE(1128), 1, + sym_field_declaration_list, STATE(3367), 2, sym_line_comment, sym_block_comment, - [95364] = 5, + [95496] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, - anon_sym_LBRACE, - STATE(1181), 1, - sym_declaration_list, + ACTIONS(6856), 1, + sym_identifier, + ACTIONS(6858), 1, + sym_super, STATE(3368), 2, sym_line_comment, sym_block_comment, - [95381] = 5, + [95513] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5120), 1, - anon_sym_LBRACE, - STATE(750), 1, - sym_declaration_list, + ACTIONS(5398), 1, + anon_sym_RPAREN, + ACTIONS(6794), 1, + anon_sym_SEMI, STATE(3369), 2, sym_line_comment, sym_block_comment, - [95398] = 5, + [95530] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5106), 1, - anon_sym_LBRACE, - STATE(771), 1, - sym_field_declaration_list, + ACTIONS(5398), 1, + anon_sym_RBRACK, + ACTIONS(6794), 1, + anon_sym_SEMI, STATE(3370), 2, sym_line_comment, sym_block_comment, - [95415] = 4, + [95547] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6399), 2, - anon_sym_PIPE, - anon_sym_COMMA, + ACTIONS(5089), 1, + anon_sym_LBRACE, + STATE(1131), 1, + sym_declaration_list, STATE(3371), 2, sym_line_comment, sym_block_comment, - [95430] = 5, + [95564] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6836), 1, - anon_sym_SEMI, - ACTIONS(6988), 1, + ACTIONS(5400), 1, anon_sym_RPAREN, + ACTIONS(6794), 1, + anon_sym_SEMI, STATE(3372), 2, sym_line_comment, sym_block_comment, - [95447] = 5, + [95581] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6836), 1, - anon_sym_SEMI, - ACTIONS(6988), 1, + ACTIONS(5400), 1, anon_sym_RBRACK, + ACTIONS(6794), 1, + anon_sym_SEMI, STATE(3373), 2, sym_line_comment, sym_block_comment, - [95464] = 5, + [95598] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5400), 1, - anon_sym_RPAREN, - ACTIONS(6836), 1, - anon_sym_SEMI, + ACTIONS(4819), 1, + anon_sym_BANG, + ACTIONS(4885), 1, + anon_sym_COLON_COLON, STATE(3374), 2, sym_line_comment, sym_block_comment, - [95481] = 5, + [95615] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6818), 1, - sym_super, - ACTIONS(6990), 1, - sym_identifier, + ACTIONS(6962), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3375), 2, sym_line_comment, sym_block_comment, - [95498] = 5, + [95630] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5400), 1, - anon_sym_RBRACK, - ACTIONS(6836), 1, - anon_sym_SEMI, + ACTIONS(4743), 1, + anon_sym_COLON_COLON, + ACTIONS(6671), 1, + anon_sym_for, STATE(3376), 2, sym_line_comment, sym_block_comment, - [95515] = 4, + [95647] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6932), 2, - sym_identifier, - sym_super, + ACTIONS(6794), 1, + anon_sym_SEMI, + ACTIONS(6964), 1, + anon_sym_RBRACE, STATE(3377), 2, sym_line_comment, sym_block_comment, - [95530] = 5, + [95664] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5402), 1, - anon_sym_RPAREN, - ACTIONS(6836), 1, - anon_sym_SEMI, + ACTIONS(5073), 1, + anon_sym_LBRACE, + STATE(621), 1, + sym_declaration_list, STATE(3378), 2, sym_line_comment, sym_block_comment, - [95547] = 5, + [95681] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5120), 1, - anon_sym_LBRACE, - STATE(772), 1, - sym_declaration_list, + ACTIONS(6966), 1, + anon_sym_SEMI, + ACTIONS(6968), 1, + anon_sym_EQ, STATE(3379), 2, sym_line_comment, sym_block_comment, - [95564] = 5, + [95698] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5402), 1, - anon_sym_RBRACK, - ACTIONS(6836), 1, - anon_sym_SEMI, + ACTIONS(6970), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3380), 2, sym_line_comment, sym_block_comment, - [95581] = 5, + [95713] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6836), 1, - anon_sym_SEMI, - ACTIONS(6992), 1, - anon_sym_RBRACE, + ACTIONS(5099), 1, + anon_sym_LBRACE, + STATE(1137), 1, + sym_field_declaration_list, STATE(3381), 2, sym_line_comment, sym_block_comment, - [95598] = 5, + [95730] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5837), 1, - sym_super, - ACTIONS(6010), 1, - sym_identifier, + ACTIONS(4671), 1, + anon_sym_LPAREN, + STATE(2305), 1, + sym_parameters, STATE(3382), 2, sym_line_comment, sym_block_comment, - [95615] = 5, + [95747] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6820), 1, - sym_identifier, - ACTIONS(6910), 1, - sym_super, + ACTIONS(5302), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3383), 2, sym_line_comment, sym_block_comment, - [95632] = 5, + [95762] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5749), 1, - sym_super, - ACTIONS(6994), 1, - sym_identifier, + ACTIONS(6794), 1, + anon_sym_SEMI, + ACTIONS(6972), 1, + anon_sym_RPAREN, STATE(3384), 2, sym_line_comment, sym_block_comment, - [95649] = 5, + [95779] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, - anon_sym_LBRACE, - STATE(1182), 1, - sym_declaration_list, + ACTIONS(6794), 1, + anon_sym_SEMI, + ACTIONS(6972), 1, + anon_sym_RBRACK, STATE(3385), 2, sym_line_comment, sym_block_comment, - [95666] = 5, + [95796] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5490), 1, - anon_sym_LBRACE, - STATE(1164), 1, - sym_enum_variant_list, + ACTIONS(6794), 1, + anon_sym_SEMI, + ACTIONS(6974), 1, + anon_sym_RPAREN, STATE(3386), 2, sym_line_comment, sym_block_comment, - [95683] = 5, + [95813] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4687), 1, - anon_sym_LPAREN, - STATE(2313), 1, - sym_parameters, + ACTIONS(6794), 1, + anon_sym_SEMI, + ACTIONS(6974), 1, + anon_sym_RBRACK, STATE(3387), 2, sym_line_comment, sym_block_comment, - [95700] = 4, + [95830] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6996), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(4819), 1, + anon_sym_BANG, + ACTIONS(4901), 1, + anon_sym_COLON_COLON, STATE(3388), 2, sym_line_comment, sym_block_comment, - [95715] = 5, + [95847] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6826), 1, - anon_sym_LT, - STATE(897), 1, - sym_type_parameters, + ACTIONS(5081), 1, + anon_sym_LBRACE, + STATE(627), 1, + sym_field_declaration_list, STATE(3389), 2, sym_line_comment, sym_block_comment, - [95732] = 5, + [95864] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6836), 1, - anon_sym_SEMI, - ACTIONS(6998), 1, - anon_sym_RPAREN, + ACTIONS(6858), 2, + sym_identifier, + sym_super, STATE(3390), 2, sym_line_comment, sym_block_comment, - [95749] = 5, + [95879] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6836), 1, + ACTIONS(6976), 1, anon_sym_SEMI, - ACTIONS(6998), 1, - anon_sym_RBRACK, + ACTIONS(6978), 1, + anon_sym_as, STATE(3391), 2, sym_line_comment, sym_block_comment, - [95766] = 5, + [95896] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6836), 1, - anon_sym_SEMI, - ACTIONS(7000), 1, - anon_sym_RPAREN, + STATE(209), 1, + sym_closure_parameters, STATE(3392), 2, sym_line_comment, sym_block_comment, - [95783] = 5, + [95913] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6836), 1, - anon_sym_SEMI, - ACTIONS(7000), 1, - anon_sym_RBRACK, + ACTIONS(5083), 1, + anon_sym_LT, + STATE(879), 1, + sym_type_parameters, STATE(3393), 2, sym_line_comment, sym_block_comment, - [95800] = 5, + [95930] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5108), 1, - anon_sym_LT, - STATE(887), 1, - sym_type_parameters, + ACTIONS(6093), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3394), 2, sym_line_comment, sym_block_comment, - [95817] = 4, + [95945] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6292), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(6802), 1, + sym_super, + ACTIONS(6902), 1, + sym_identifier, STATE(3395), 2, sym_line_comment, sym_block_comment, - [95832] = 5, + [95962] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3435), 1, - anon_sym_LPAREN, - STATE(1395), 1, - sym_parameters, + ACTIONS(6704), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3396), 2, sym_line_comment, sym_block_comment, - [95849] = 5, + [95977] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7002), 1, - anon_sym_SEMI, - ACTIONS(7004), 1, - anon_sym_EQ, + ACTIONS(5089), 1, + anon_sym_LBRACE, + STATE(1337), 1, + sym_declaration_list, STATE(3397), 2, sym_line_comment, sym_block_comment, - [95866] = 4, + [95994] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6822), 2, - sym_identifier, - sym_super, + ACTIONS(4671), 1, + anon_sym_LPAREN, + STATE(2310), 1, + sym_parameters, STATE(3398), 2, sym_line_comment, sym_block_comment, - [95881] = 4, + [96011] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6692), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(5174), 1, + anon_sym_COLON, + STATE(2589), 1, + sym_trait_bounds, STATE(3399), 2, sym_line_comment, sym_block_comment, - [95896] = 5, + [96028] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5190), 1, - anon_sym_COLON, - STATE(2545), 1, - sym_trait_bounds, + ACTIONS(6980), 1, + sym_identifier, + ACTIONS(6982), 1, + sym_mutable_specifier, STATE(3400), 2, sym_line_comment, sym_block_comment, - [95913] = 5, + [96045] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4687), 1, - anon_sym_LPAREN, - STATE(2339), 1, - sym_parameters, + ACTIONS(5344), 1, + anon_sym_RPAREN, + ACTIONS(6794), 1, + anon_sym_SEMI, STATE(3401), 2, sym_line_comment, sym_block_comment, - [95930] = 5, + [96062] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4687), 1, - anon_sym_LPAREN, - STATE(2317), 1, - sym_parameters, + ACTIONS(6984), 1, + anon_sym_RPAREN, + ACTIONS(6986), 1, + anon_sym_COLON_COLON, STATE(3402), 2, sym_line_comment, sym_block_comment, - [95947] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [96079] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(222), 1, - sym_closure_parameters, + ACTIONS(5438), 1, + anon_sym_LBRACE, + STATE(657), 1, + sym_enum_variant_list, STATE(3403), 2, sym_line_comment, sym_block_comment, - [95964] = 5, + [96096] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5490), 1, - anon_sym_LBRACE, - STATE(1126), 1, - sym_enum_variant_list, + ACTIONS(6954), 1, + anon_sym_COLON_COLON, + ACTIONS(6988), 1, + anon_sym_RPAREN, STATE(3404), 2, sym_line_comment, sym_block_comment, - [95981] = 5, + [96113] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5486), 1, + ACTIONS(5081), 1, anon_sym_LBRACE, - STATE(658), 1, - sym_enum_variant_list, + STATE(709), 1, + sym_field_declaration_list, STATE(3405), 2, sym_line_comment, sym_block_comment, - [95998] = 5, + [96130] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7006), 1, - anon_sym_SEMI, - ACTIONS(7008), 1, - anon_sym_as, + ACTIONS(5081), 1, + anon_sym_LBRACE, + STATE(770), 1, + sym_field_declaration_list, STATE(3406), 2, sym_line_comment, sym_block_comment, - [96015] = 5, + [96147] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5664), 1, - anon_sym_PIPE, - ACTIONS(7010), 1, - anon_sym_EQ, + ACTIONS(6990), 1, + anon_sym_LPAREN, + ACTIONS(6992), 1, + anon_sym_COLON_COLON, STATE(3407), 2, sym_line_comment, sym_block_comment, - [96032] = 5, + [96164] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, - anon_sym_LBRACE, - STATE(1345), 1, - sym_declaration_list, + ACTIONS(3569), 1, + anon_sym_PLUS, + ACTIONS(4335), 1, + anon_sym_COLON_COLON, STATE(3408), 2, sym_line_comment, sym_block_comment, - [96049] = 5, + [96181] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5120), 1, - anon_sym_LBRACE, - STATE(699), 1, - sym_declaration_list, + ACTIONS(3569), 1, + anon_sym_PLUS, + ACTIONS(4339), 1, + anon_sym_COLON_COLON, STATE(3409), 2, sym_line_comment, sym_block_comment, - [96066] = 5, + [96198] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4770), 1, + ACTIONS(6988), 1, + anon_sym_RPAREN, + ACTIONS(6994), 1, anon_sym_COLON_COLON, - ACTIONS(6711), 1, - anon_sym_for, STATE(3410), 2, sym_line_comment, sym_block_comment, - [96083] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [96215] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(219), 1, - sym_closure_parameters, + ACTIONS(4659), 1, + anon_sym_BANG, + ACTIONS(6948), 1, + anon_sym_COLON_COLON, STATE(3411), 2, sym_line_comment, sym_block_comment, - [96100] = 5, + [96232] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5155), 1, - anon_sym_LBRACE, - STATE(1136), 1, - sym_field_declaration_list, + ACTIONS(6996), 2, + sym_identifier, + sym_metavariable, STATE(3412), 2, sym_line_comment, sym_block_comment, - [96117] = 5, + [96247] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5155), 1, - anon_sym_LBRACE, - STATE(1188), 1, - sym_field_declaration_list, + ACTIONS(5751), 1, + sym_super, + ACTIONS(6800), 1, + sym_identifier, STATE(3413), 2, sym_line_comment, sym_block_comment, - [96134] = 5, + [96264] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, - anon_sym_LBRACE, - STATE(1139), 1, - sym_declaration_list, + ACTIONS(6390), 2, + anon_sym_PIPE, + anon_sym_COMMA, STATE(3414), 2, sym_line_comment, sym_block_comment, - [96151] = 4, + [96279] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6721), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(6814), 1, + anon_sym_LT, + STATE(910), 1, + sym_type_parameters, STATE(3415), 2, sym_line_comment, sym_block_comment, - [96166] = 4, + [96296] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5372), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5073), 1, + anon_sym_LBRACE, + STATE(771), 1, + sym_declaration_list, STATE(3416), 2, sym_line_comment, sym_block_comment, - [96181] = 5, + [96313] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4845), 1, - anon_sym_BANG, - ACTIONS(4915), 1, - anon_sym_COLON_COLON, + ACTIONS(6250), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3417), 2, sym_line_comment, sym_block_comment, - [96198] = 5, + [96328] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7012), 1, - anon_sym_SEMI, - ACTIONS(7014), 1, - anon_sym_EQ, + ACTIONS(6998), 1, + anon_sym_STAR_SLASH, + ACTIONS(7000), 1, + sym__block_comment_content, STATE(3418), 2, sym_line_comment, sym_block_comment, - [96215] = 5, + [96345] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7016), 1, - anon_sym_LPAREN, - ACTIONS(7018), 1, - anon_sym_COLON_COLON, + ACTIONS(7002), 1, + sym_identifier, + ACTIONS(7004), 1, + sym_super, STATE(3419), 2, sym_line_comment, sym_block_comment, - [96232] = 5, + [96362] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5106), 1, + ACTIONS(5073), 1, anon_sym_LBRACE, - STATE(710), 1, - sym_field_declaration_list, + STATE(531), 1, + sym_declaration_list, STATE(3420), 2, sym_line_comment, sym_block_comment, - [96249] = 4, + [96379] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5959), 2, + ACTIONS(6812), 1, + anon_sym_COLON_COLON, + ACTIONS(6988), 1, anon_sym_RPAREN, - anon_sym_COMMA, STATE(3421), 2, sym_line_comment, sym_block_comment, - [96264] = 5, + [96396] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3509), 1, - anon_sym_PLUS, - ACTIONS(4363), 1, - anon_sym_COLON_COLON, + STATE(226), 1, + sym_closure_parameters, STATE(3422), 2, sym_line_comment, sym_block_comment, - [96281] = 5, + [96413] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3509), 1, - anon_sym_PLUS, - ACTIONS(4367), 1, + ACTIONS(6938), 1, + anon_sym_LPAREN, + ACTIONS(7006), 1, anon_sym_COLON_COLON, STATE(3423), 2, sym_line_comment, sym_block_comment, - [96298] = 5, + [96430] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5120), 1, - anon_sym_LBRACE, - STATE(532), 1, - sym_declaration_list, + ACTIONS(4521), 1, + anon_sym_EQ_GT, + ACTIONS(7008), 1, + anon_sym_AMP_AMP, STATE(3424), 2, sym_line_comment, sym_block_comment, - [96315] = 5, + [96447] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4675), 1, + ACTIONS(7010), 1, anon_sym_BANG, - ACTIONS(6966), 1, + ACTIONS(7012), 1, anon_sym_COLON_COLON, STATE(3425), 2, sym_line_comment, sym_block_comment, - [96332] = 5, + [96464] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5155), 1, - anon_sym_LBRACE, - STATE(1145), 1, - sym_field_declaration_list, + ACTIONS(6640), 1, + anon_sym_EQ_GT, + ACTIONS(7008), 1, + anon_sym_AMP_AMP, STATE(3426), 2, sym_line_comment, sym_block_comment, - [96349] = 5, + [96481] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6826), 1, - anon_sym_LT, - STATE(922), 1, - sym_type_parameters, + ACTIONS(5354), 1, + anon_sym_RBRACE, + ACTIONS(6794), 1, + anon_sym_SEMI, STATE(3427), 2, sym_line_comment, sym_block_comment, - [96366] = 5, + [96498] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5693), 1, - sym_super, - ACTIONS(6816), 1, - sym_identifier, + ACTIONS(6810), 1, + anon_sym_RPAREN, + ACTIONS(6994), 1, + anon_sym_COLON_COLON, STATE(3428), 2, sym_line_comment, sym_block_comment, - [96383] = 5, + [96515] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5120), 1, - anon_sym_LBRACE, - STATE(758), 1, - sym_declaration_list, + STATE(219), 1, + sym_closure_parameters, STATE(3429), 2, sym_line_comment, sym_block_comment, - [96400] = 4, + [96532] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6910), 2, - sym_identifier, - sym_super, + ACTIONS(6938), 1, + anon_sym_LPAREN, + ACTIONS(7014), 1, + anon_sym_COLON_COLON, STATE(3430), 2, sym_line_comment, sym_block_comment, - [96415] = 5, + [96549] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7020), 1, - anon_sym_SEMI, - ACTIONS(7022), 1, - anon_sym_as, + ACTIONS(4659), 1, + anon_sym_BANG, + ACTIONS(7012), 1, + anon_sym_COLON_COLON, STATE(3431), 2, sym_line_comment, sym_block_comment, - [96432] = 4, + [96566] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7024), 2, - sym_float_literal, - sym_integer_literal, + ACTIONS(7016), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3432), 2, sym_line_comment, sym_block_comment, - [96447] = 4, + [96581] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7026), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(3427), 1, + anon_sym_LPAREN, + STATE(1410), 1, + sym_parameters, STATE(3433), 2, sym_line_comment, sym_block_comment, - [96462] = 5, + [96598] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6958), 1, - anon_sym_LPAREN, - ACTIONS(7028), 1, - anon_sym_COLON_COLON, + ACTIONS(7018), 1, + anon_sym_LBRACK, + ACTIONS(7020), 1, + anon_sym_BANG, STATE(3434), 2, sym_line_comment, sym_block_comment, - [96479] = 5, + [96615] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7030), 1, + ACTIONS(7022), 2, sym_identifier, - ACTIONS(7032), 1, - sym_super, + sym_metavariable, STATE(3435), 2, sym_line_comment, sym_block_comment, - [96496] = 5, + [96630] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7034), 1, - anon_sym_BANG, - ACTIONS(7036), 1, - anon_sym_COLON_COLON, + ACTIONS(5073), 1, + anon_sym_LBRACE, + STATE(699), 1, + sym_declaration_list, STATE(3436), 2, sym_line_comment, sym_block_comment, - [96513] = 4, + [96647] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6430), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(5356), 1, + anon_sym_RBRACE, + ACTIONS(6794), 1, + anon_sym_SEMI, STATE(3437), 2, sym_line_comment, sym_block_comment, - [96528] = 5, + [96664] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4770), 1, + ACTIONS(4743), 1, anon_sym_COLON_COLON, - ACTIONS(6754), 1, + ACTIONS(6747), 1, anon_sym_for, STATE(3438), 2, sym_line_comment, sym_block_comment, - [96545] = 5, + [96681] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, - anon_sym_LBRACE, - STATE(1193), 1, - sym_declaration_list, + ACTIONS(7024), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3439), 2, sym_line_comment, sym_block_comment, - [96562] = 4, + [96696] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7038), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(5438), 1, + anon_sym_LBRACE, + STATE(604), 1, + sym_enum_variant_list, STATE(3440), 2, sym_line_comment, sym_block_comment, - [96577] = 5, + [96713] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5486), 1, - anon_sym_LBRACE, - STATE(605), 1, - sym_enum_variant_list, + ACTIONS(5651), 1, + anon_sym_PIPE, + ACTIONS(7026), 1, + anon_sym_in, STATE(3441), 2, sym_line_comment, sym_block_comment, - [96594] = 5, + [96730] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6958), 1, - anon_sym_LPAREN, - ACTIONS(7040), 1, - anon_sym_COLON_COLON, + ACTIONS(7028), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3442), 2, sym_line_comment, sym_block_comment, - [96611] = 5, + [96745] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4675), 1, - anon_sym_BANG, - ACTIONS(7036), 1, + ACTIONS(4743), 1, anon_sym_COLON_COLON, + ACTIONS(6749), 1, + anon_sym_for, STATE(3443), 2, sym_line_comment, sym_block_comment, - [96628] = 5, + [96762] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7042), 1, - anon_sym_LBRACK, - ACTIONS(7044), 1, - anon_sym_BANG, + ACTIONS(7030), 2, + sym_identifier, + sym_metavariable, STATE(3444), 2, sym_line_comment, sym_block_comment, - [96645] = 4, + [96777] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7046), 2, - sym_identifier, - sym_metavariable, + ACTIONS(4671), 1, + anon_sym_LPAREN, + STATE(2304), 1, + sym_parameters, STATE(3445), 2, sym_line_comment, sym_block_comment, - [96660] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [96794] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(229), 1, - sym_closure_parameters, + ACTIONS(6814), 1, + anon_sym_LT, + STATE(979), 1, + sym_type_parameters, STATE(3446), 2, sym_line_comment, sym_block_comment, - [96677] = 4, + [96811] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6818), 2, - sym_identifier, - sym_super, + ACTIONS(6814), 1, + anon_sym_LT, + STATE(980), 1, + sym_type_parameters, STATE(3447), 2, sym_line_comment, sym_block_comment, - [96692] = 4, + [96828] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7048), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(6802), 2, + sym_identifier, + sym_super, STATE(3448), 2, sym_line_comment, sym_block_comment, - [96707] = 5, + [96843] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4687), 1, - anon_sym_LPAREN, - STATE(2335), 1, - sym_parameters, + ACTIONS(4743), 1, + anon_sym_COLON_COLON, + ACTIONS(5121), 1, + anon_sym_for, STATE(3449), 2, sym_line_comment, sym_block_comment, - [96724] = 5, + [96860] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5664), 1, - anon_sym_PIPE, - ACTIONS(7050), 1, - anon_sym_in, + ACTIONS(7032), 1, + sym_identifier, + ACTIONS(7034), 1, + sym_super, STATE(3450), 2, sym_line_comment, sym_block_comment, - [96741] = 4, + [96877] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7052), 2, - sym_identifier, - sym_metavariable, + ACTIONS(4671), 1, + anon_sym_LPAREN, + STATE(2328), 1, + sym_parameters, STATE(3451), 2, sym_line_comment, sym_block_comment, - [96756] = 5, + [96894] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5120), 1, - anon_sym_LBRACE, - STATE(541), 1, - sym_declaration_list, + ACTIONS(6808), 2, + sym_identifier, + sym_super, STATE(3452), 2, sym_line_comment, sym_block_comment, - [96773] = 5, + [96909] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6826), 1, - anon_sym_LT, - STATE(988), 1, - sym_type_parameters, + ACTIONS(5679), 1, + sym_super, + ACTIONS(6834), 1, + sym_identifier, STATE(3453), 2, sym_line_comment, sym_block_comment, - [96790] = 5, + [96926] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6826), 1, - anon_sym_LT, - STATE(989), 1, - sym_type_parameters, + ACTIONS(4659), 1, + anon_sym_BANG, + ACTIONS(7036), 1, + anon_sym_COLON_COLON, STATE(3454), 2, sym_line_comment, sym_block_comment, - [96807] = 5, + [96943] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5120), 1, - anon_sym_LBRACE, - STATE(542), 1, - sym_declaration_list, + ACTIONS(7038), 2, + sym_identifier, + sym_metavariable, STATE(3455), 2, sym_line_comment, sym_block_comment, - [96824] = 5, + [96958] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4770), 1, - anon_sym_COLON_COLON, - ACTIONS(5132), 1, - anon_sym_for, + ACTIONS(5073), 1, + anon_sym_LBRACE, + STATE(540), 1, + sym_declaration_list, STATE(3456), 2, sym_line_comment, sym_block_comment, - [96841] = 5, + [96975] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5693), 1, - sym_super, - ACTIONS(6990), 1, - sym_identifier, + ACTIONS(7040), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3457), 2, sym_line_comment, sym_block_comment, - [96858] = 5, + [96990] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5442), 1, - anon_sym_RBRACE, - ACTIONS(6836), 1, - anon_sym_SEMI, + ACTIONS(5073), 1, + anon_sym_LBRACE, + STATE(541), 1, + sym_declaration_list, STATE(3458), 2, sym_line_comment, sym_block_comment, - [96875] = 4, + [97007] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5693), 2, - sym_identifier, - sym_super, + ACTIONS(5338), 1, + anon_sym_RPAREN, + ACTIONS(6794), 1, + anon_sym_SEMI, STATE(3459), 2, sym_line_comment, sym_block_comment, - [96890] = 5, + [97024] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5410), 1, - sym_super, - ACTIONS(5947), 1, - sym_identifier, + ACTIONS(4743), 1, + anon_sym_COLON_COLON, + ACTIONS(6761), 1, + anon_sym_for, STATE(3460), 2, sym_line_comment, sym_block_comment, - [96907] = 4, + [97041] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7054), 2, - sym_identifier, - sym_metavariable, + ACTIONS(4743), 1, + anon_sym_COLON_COLON, + ACTIONS(6765), 1, + anon_sym_for, STATE(3461), 2, sym_line_comment, sym_block_comment, - [96922] = 5, + [97058] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5384), 1, + ACTIONS(7042), 2, anon_sym_RBRACE, - ACTIONS(6836), 1, - anon_sym_SEMI, + anon_sym_COMMA, STATE(3462), 2, sym_line_comment, sym_block_comment, - [96939] = 4, + [97073] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7056), 2, - sym_identifier, - sym_metavariable, + ACTIONS(4179), 1, + anon_sym_LPAREN, + STATE(1677), 1, + sym_parameters, STATE(3463), 2, sym_line_comment, sym_block_comment, - [96954] = 5, + [97090] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4907), 1, - anon_sym_COLON_COLON, - ACTIONS(4971), 1, - anon_sym_BANG, + ACTIONS(5651), 1, + anon_sym_PIPE, + ACTIONS(7044), 1, + anon_sym_in, STATE(3464), 2, sym_line_comment, sym_block_comment, - [96971] = 5, + [97107] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5120), 1, - anon_sym_LBRACE, - STATE(757), 1, - sym_declaration_list, + ACTIONS(6490), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3465), 2, sym_line_comment, sym_block_comment, - [96988] = 5, + [97122] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3435), 1, - anon_sym_LPAREN, - STATE(1408), 1, - sym_parameters, + ACTIONS(5418), 1, + sym_super, + ACTIONS(5990), 1, + sym_identifier, STATE(3466), 2, sym_line_comment, sym_block_comment, - [97005] = 5, + [97139] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4770), 1, - anon_sym_COLON_COLON, - ACTIONS(6774), 1, - anon_sym_for, + ACTIONS(7046), 2, + sym_identifier, + sym_metavariable, STATE(3467), 2, sym_line_comment, sym_block_comment, - [97022] = 5, + [97154] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7058), 1, - sym_identifier, - ACTIONS(7060), 1, - sym_super, + ACTIONS(7048), 2, + sym_float_literal, + sym_integer_literal, STATE(3468), 2, sym_line_comment, sym_block_comment, - [97039] = 5, + [97169] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4770), 1, + ACTIONS(4743), 1, anon_sym_COLON_COLON, - ACTIONS(6776), 1, + ACTIONS(6775), 1, anon_sym_for, STATE(3469), 2, sym_line_comment, sym_block_comment, - [97056] = 5, + [97186] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5749), 1, - sym_super, - ACTIONS(6892), 1, - sym_identifier, + ACTIONS(3169), 1, + anon_sym_PLUS, + ACTIONS(4051), 1, + anon_sym_COLON, STATE(3470), 2, sym_line_comment, sym_block_comment, - [97073] = 5, + [97203] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5664), 1, - anon_sym_PIPE, - ACTIONS(7062), 1, - anon_sym_EQ, + ACTIONS(7050), 1, + anon_sym_LBRACK, + ACTIONS(7052), 1, + anon_sym_BANG, STATE(3471), 2, sym_line_comment, sym_block_comment, - [97090] = 5, + [97220] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5693), 1, - sym_super, - ACTIONS(6880), 1, - sym_identifier, + ACTIONS(5651), 1, + anon_sym_PIPE, + ACTIONS(7054), 1, + anon_sym_in, STATE(3472), 2, sym_line_comment, sym_block_comment, - [97107] = 4, + [97237] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7064), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(5651), 1, + anon_sym_PIPE, + ACTIONS(7056), 1, + anon_sym_in, STATE(3473), 2, sym_line_comment, sym_block_comment, - [97122] = 5, + [97254] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5664), 1, + ACTIONS(5651), 1, anon_sym_PIPE, - ACTIONS(7066), 1, + ACTIONS(7058), 1, anon_sym_in, STATE(3474), 2, sym_line_comment, sym_block_comment, - [97139] = 5, + [97271] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4770), 1, - anon_sym_COLON_COLON, - ACTIONS(6780), 1, - anon_sym_for, + ACTIONS(5651), 1, + anon_sym_PIPE, + ACTIONS(7060), 1, + anon_sym_in, STATE(3475), 2, sym_line_comment, sym_block_comment, - [97156] = 5, + [97288] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7068), 1, - anon_sym_LBRACK, - ACTIONS(7070), 1, - anon_sym_BANG, + ACTIONS(6876), 2, + sym_identifier, + sym_super, STATE(3476), 2, sym_line_comment, sym_block_comment, - [97173] = 5, + [97303] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5664), 1, - anon_sym_PIPE, - ACTIONS(7072), 1, - anon_sym_in, + ACTIONS(4671), 1, + anon_sym_LPAREN, + STATE(2094), 1, + sym_parameters, STATE(3477), 2, sym_line_comment, sym_block_comment, - [97190] = 5, + [97320] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5664), 1, + ACTIONS(5651), 1, anon_sym_PIPE, - ACTIONS(7074), 1, - anon_sym_in, + ACTIONS(7062), 1, + anon_sym_EQ, STATE(3478), 2, sym_line_comment, sym_block_comment, - [97207] = 5, + [97337] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5664), 1, - anon_sym_PIPE, - ACTIONS(7076), 1, - anon_sym_in, + ACTIONS(6783), 1, + sym_identifier, + ACTIONS(6787), 1, + sym_mutable_specifier, STATE(3479), 2, sym_line_comment, sym_block_comment, - [97224] = 5, + [97354] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5664), 1, - anon_sym_PIPE, - ACTIONS(7078), 1, - anon_sym_in, + ACTIONS(6938), 1, + anon_sym_LPAREN, + ACTIONS(7064), 1, + anon_sym_COLON_COLON, STATE(3480), 2, sym_line_comment, sym_block_comment, - [97241] = 5, + [97371] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6958), 1, + ACTIONS(4671), 1, anon_sym_LPAREN, - ACTIONS(7080), 1, - anon_sym_COLON_COLON, + STATE(2097), 1, + sym_parameters, STATE(3481), 2, sym_line_comment, sym_block_comment, - [97258] = 5, + [97388] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4687), 1, - anon_sym_LPAREN, - STATE(2098), 1, - sym_parameters, + ACTIONS(3169), 1, + anon_sym_PLUS, + ACTIONS(3849), 1, + anon_sym_COLON, STATE(3482), 2, sym_line_comment, sym_block_comment, - [97275] = 5, + [97405] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6784), 1, + ACTIONS(5751), 1, + sym_super, + ACTIONS(7066), 1, sym_identifier, - ACTIONS(6788), 1, - sym_mutable_specifier, STATE(3483), 2, sym_line_comment, sym_block_comment, - [97292] = 5, + [97422] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4171), 1, - anon_sym_LPAREN, - STATE(1695), 1, - sym_parameters, + ACTIONS(7068), 1, + sym_identifier, + ACTIONS(7070), 1, + sym_mutable_specifier, STATE(3484), 2, sym_line_comment, sym_block_comment, - [97309] = 4, + [97439] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3411), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(4671), 1, + anon_sym_LPAREN, + STATE(2089), 1, + sym_parameters, STATE(3485), 2, sym_line_comment, sym_block_comment, - [97324] = 5, + [97456] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4770), 1, - anon_sym_COLON_COLON, - ACTIONS(5151), 1, - anon_sym_for, + STATE(200), 1, + sym_closure_parameters, STATE(3486), 2, sym_line_comment, sym_block_comment, - [97341] = 5, + [97473] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6878), 1, - anon_sym_COLON_COLON, - ACTIONS(7082), 1, - anon_sym_RPAREN, + ACTIONS(7072), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3487), 2, sym_line_comment, sym_block_comment, - [97358] = 5, + [97488] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4687), 1, - anon_sym_LPAREN, - STATE(2101), 1, - sym_parameters, + ACTIONS(4743), 1, + anon_sym_COLON_COLON, + ACTIONS(5148), 1, + anon_sym_for, STATE(3488), 2, sym_line_comment, sym_block_comment, - [97375] = 4, + [97505] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6904), 2, - sym_identifier, - sym_super, + ACTIONS(6986), 1, + anon_sym_COLON_COLON, + ACTIONS(7074), 1, + anon_sym_RPAREN, STATE(3489), 2, sym_line_comment, sym_block_comment, - [97390] = 5, + [97522] = 5, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6890), 1, - anon_sym_COLON_COLON, - ACTIONS(7084), 1, - anon_sym_RPAREN, + ACTIONS(5089), 1, + anon_sym_LBRACE, + STATE(1296), 1, + sym_declaration_list, STATE(3490), 2, sym_line_comment, sym_block_comment, - [97407] = 5, + [97539] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6914), 1, - anon_sym_COLON_COLON, - ACTIONS(7084), 1, - anon_sym_RPAREN, + ACTIONS(7076), 1, + anon_sym_SEMI, STATE(3491), 2, sym_line_comment, sym_block_comment, - [97424] = 5, + [97553] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7086), 1, - sym_identifier, - ACTIONS(7088), 1, - sym_mutable_specifier, + ACTIONS(7078), 1, + anon_sym_SEMI, STATE(3492), 2, sym_line_comment, sym_block_comment, - [97441] = 5, + [97567] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6918), 1, - anon_sym_COLON_COLON, - ACTIONS(7084), 1, - anon_sym_RPAREN, + ACTIONS(7080), 1, + anon_sym_SEMI, STATE(3493), 2, sym_line_comment, sym_block_comment, - [97458] = 5, + [97581] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4687), 1, - anon_sym_LPAREN, - STATE(2105), 1, - sym_parameters, + ACTIONS(4895), 1, + anon_sym_COLON_COLON, STATE(3494), 2, sym_line_comment, sym_block_comment, - [97475] = 4, + [97595] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5749), 2, - sym_identifier, - sym_super, + ACTIONS(3179), 1, + anon_sym_PLUS, STATE(3495), 2, sym_line_comment, sym_block_comment, - [97490] = 4, + [97609] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7090), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(6964), 1, + anon_sym_SEMI, STATE(3496), 2, sym_line_comment, sym_block_comment, - [97505] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [97623] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - STATE(230), 1, - sym_closure_parameters, + ACTIONS(7082), 1, + anon_sym_COLON_COLON, STATE(3497), 2, sym_line_comment, sym_block_comment, - [97522] = 5, + [97637] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5130), 1, - anon_sym_LBRACE, - STATE(1305), 1, - sym_declaration_list, + ACTIONS(7084), 1, + anon_sym_RBRACK, STATE(3498), 2, sym_line_comment, sym_block_comment, - [97539] = 4, + [97651] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7092), 1, - sym_identifier, + ACTIONS(7086), 1, + anon_sym_SEMI, STATE(3499), 2, sym_line_comment, sym_block_comment, - [97553] = 4, + [97665] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7094), 1, - anon_sym_fn, + ACTIONS(7088), 1, + anon_sym_RPAREN, STATE(3500), 2, sym_line_comment, sym_block_comment, - [97567] = 4, + [97679] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7096), 1, - anon_sym_RBRACE, + ACTIONS(6540), 1, + anon_sym_COLON_COLON, STATE(3501), 2, sym_line_comment, sym_block_comment, - [97581] = 4, + [97693] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6914), 1, - anon_sym_COLON_COLON, + ACTIONS(7090), 1, + anon_sym_SEMI, STATE(3502), 2, sym_line_comment, sym_block_comment, - [97595] = 4, + [97707] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(972), 1, - anon_sym_EQ_GT, + ACTIONS(7092), 1, + anon_sym_RPAREN, STATE(3503), 2, sym_line_comment, sym_block_comment, - [97609] = 4, + [97721] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7098), 1, - sym__raw_string_literal_end, + ACTIONS(5138), 1, + anon_sym_COLON_COLON, STATE(3504), 2, sym_line_comment, sym_block_comment, - [97623] = 4, + [97735] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5611), 1, - anon_sym_RPAREN, + ACTIONS(7094), 1, + anon_sym_COLON_COLON, STATE(3505), 2, sym_line_comment, sym_block_comment, - [97637] = 4, + [97749] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7100), 1, + ACTIONS(7096), 1, anon_sym_fn, STATE(3506), 2, sym_line_comment, sym_block_comment, - [97651] = 4, + [97763] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7102), 1, - sym__line_doc_content, + ACTIONS(5835), 1, + anon_sym_RBRACK, STATE(3507), 2, sym_line_comment, sym_block_comment, - [97665] = 4, + [97777] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6992), 1, - anon_sym_SEMI, + ACTIONS(7098), 1, + anon_sym_RPAREN, STATE(3508), 2, sym_line_comment, sym_block_comment, - [97679] = 4, + [97791] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7104), 1, - sym_identifier, + ACTIONS(6077), 1, + anon_sym_LBRACE, STATE(3509), 2, sym_line_comment, sym_block_comment, - [97693] = 4, + [97805] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7106), 1, - anon_sym_LPAREN, + ACTIONS(7100), 1, + anon_sym_fn, STATE(3510), 2, sym_line_comment, sym_block_comment, - [97707] = 4, + [97819] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7108), 1, - anon_sym_EQ_GT, + ACTIONS(5815), 1, + anon_sym_RPAREN, STATE(3511), 2, sym_line_comment, sym_block_comment, - [97721] = 4, + [97833] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7110), 1, - anon_sym_EQ_GT, + ACTIONS(7102), 1, + anon_sym_SEMI, STATE(3512), 2, sym_line_comment, sym_block_comment, - [97735] = 4, + [97847] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5077), 1, - anon_sym_COLON_COLON, + ACTIONS(1018), 1, + anon_sym_EQ_GT, STATE(3513), 2, sym_line_comment, sym_block_comment, - [97749] = 4, + [97861] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7112), 1, - anon_sym_COLON_COLON, + ACTIONS(916), 1, + anon_sym_RBRACK, STATE(3514), 2, sym_line_comment, sym_block_comment, - [97763] = 4, + [97875] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7114), 1, - anon_sym_fn, + ACTIONS(7104), 1, + anon_sym_LBRACK, STATE(3515), 2, sym_line_comment, sym_block_comment, - [97777] = 4, + [97889] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7116), 1, + ACTIONS(7106), 1, sym_identifier, STATE(3516), 2, sym_line_comment, sym_block_comment, - [97791] = 4, + [97903] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7118), 1, - anon_sym_RPAREN, + ACTIONS(6180), 1, + anon_sym_GT, STATE(3517), 2, sym_line_comment, sym_block_comment, - [97805] = 4, + [97917] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6036), 1, - anon_sym_LBRACE, + ACTIONS(5655), 1, + anon_sym_RPAREN, STATE(3518), 2, sym_line_comment, sym_block_comment, - [97819] = 4, + [97931] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7120), 1, - anon_sym_SEMI, + ACTIONS(4699), 1, + anon_sym_fn, STATE(3519), 2, sym_line_comment, sym_block_comment, - [97833] = 4, + [97945] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7122), 1, - anon_sym_RPAREN, + ACTIONS(7108), 1, + anon_sym_RBRACK, STATE(3520), 2, sym_line_comment, sym_block_comment, - [97847] = 4, + [97959] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6912), 1, - anon_sym_SEMI, + ACTIONS(7110), 1, + sym_identifier, STATE(3521), 2, sym_line_comment, sym_block_comment, - [97861] = 4, + [97973] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6345), 1, - anon_sym_RBRACE, + ACTIONS(7112), 1, + anon_sym_SEMI, STATE(3522), 2, sym_line_comment, sym_block_comment, - [97875] = 4, + [97987] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7124), 1, - anon_sym_EQ, + ACTIONS(7114), 1, + sym__line_doc_content, STATE(3523), 2, sym_line_comment, sym_block_comment, - [97889] = 4, + [98001] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7126), 1, - sym_identifier, + ACTIONS(759), 1, + anon_sym_RBRACK, STATE(3524), 2, sym_line_comment, sym_block_comment, - [97903] = 4, + [98015] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7128), 1, + ACTIONS(7116), 1, anon_sym_SEMI, STATE(3525), 2, sym_line_comment, sym_block_comment, - [97917] = 4, + [98029] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(918), 1, - anon_sym_RBRACK, + ACTIONS(7118), 1, + sym_identifier, STATE(3526), 2, sym_line_comment, sym_block_comment, - [97931] = 4, + [98043] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7130), 1, - anon_sym_SEMI, + ACTIONS(7120), 1, + sym_identifier, STATE(3527), 2, sym_line_comment, sym_block_comment, - [97945] = 4, + [98057] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7132), 1, - anon_sym_SEMI, + ACTIONS(7122), 1, + sym_identifier, STATE(3528), 2, sym_line_comment, sym_block_comment, - [97959] = 4, + [98071] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6082), 1, - anon_sym_RPAREN, + ACTIONS(7124), 1, + anon_sym_LT2, STATE(3529), 2, sym_line_comment, sym_block_comment, - [97973] = 4, + [98085] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5705), 1, - anon_sym_RPAREN, + ACTIONS(7126), 1, + sym_identifier, STATE(3530), 2, sym_line_comment, sym_block_comment, - [97987] = 4, + [98099] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5967), 1, - anon_sym_RBRACK, + ACTIONS(7128), 1, + anon_sym_SEMI, STATE(3531), 2, sym_line_comment, sym_block_comment, - [98001] = 4, + [98113] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7134), 1, - anon_sym_STAR_SLASH, + ACTIONS(7130), 1, + anon_sym_COLON, STATE(3532), 2, sym_line_comment, sym_block_comment, - [98015] = 4, + [98127] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6092), 1, - anon_sym_RBRACK, + ACTIONS(7132), 1, + anon_sym_SEMI, STATE(3533), 2, sym_line_comment, sym_block_comment, - [98029] = 4, + [98141] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7136), 1, - sym_identifier, + ACTIONS(5583), 1, + anon_sym_RPAREN, STATE(3534), 2, sym_line_comment, sym_block_comment, - [98043] = 4, + [98155] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7138), 1, - sym_identifier, + ACTIONS(7134), 1, + anon_sym_SEMI, STATE(3535), 2, sym_line_comment, sym_block_comment, - [98057] = 4, + [98169] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7140), 1, - anon_sym_RBRACK, + ACTIONS(5856), 1, + anon_sym_RPAREN, STATE(3536), 2, sym_line_comment, sym_block_comment, - [98071] = 4, + [98183] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3229), 1, - anon_sym_PLUS, + ACTIONS(6164), 1, + anon_sym_RBRACE, STATE(3537), 2, sym_line_comment, sym_block_comment, - [98085] = 4, + [98197] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7142), 1, - sym_identifier, + ACTIONS(6338), 1, + anon_sym_RBRACE, STATE(3538), 2, sym_line_comment, sym_block_comment, - [98099] = 4, + [98211] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7144), 1, - sym_identifier, + ACTIONS(7136), 1, + anon_sym_EQ, STATE(3539), 2, sym_line_comment, sym_block_comment, - [98113] = 4, + [98225] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7146), 1, - anon_sym_RBRACK, + ACTIONS(7138), 1, + sym__raw_string_literal_end, STATE(3540), 2, sym_line_comment, sym_block_comment, - [98127] = 4, + [98239] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7148), 1, - sym_identifier, + ACTIONS(7140), 1, + sym__raw_string_literal_end, STATE(3541), 2, sym_line_comment, sym_block_comment, - [98141] = 4, + [98253] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7150), 1, - anon_sym_COLON, + ACTIONS(7142), 1, + anon_sym_SEMI, STATE(3542), 2, sym_line_comment, sym_block_comment, - [98155] = 4, + [98267] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7152), 1, - anon_sym_SEMI, + ACTIONS(7144), 1, + anon_sym_RBRACK, STATE(3543), 2, sym_line_comment, sym_block_comment, - [98169] = 4, + [98281] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5699), 1, - anon_sym_RPAREN, + ACTIONS(7146), 1, + anon_sym_EQ_GT, STATE(3544), 2, sym_line_comment, sym_block_comment, - [98183] = 4, + [98295] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7154), 1, - anon_sym_EQ_GT, + ACTIONS(7148), 1, + sym_identifier, STATE(3545), 2, sym_line_comment, sym_block_comment, - [98197] = 4, + [98309] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7156), 1, - sym_identifier, + ACTIONS(7150), 1, + anon_sym_RPAREN, STATE(3546), 2, sym_line_comment, sym_block_comment, - [98211] = 4, + [98323] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7158), 1, - anon_sym_RPAREN, + ACTIONS(7152), 1, + anon_sym_COLON, STATE(3547), 2, sym_line_comment, sym_block_comment, - [98225] = 4, + [98337] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7160), 1, - sym_identifier, + ACTIONS(7154), 1, + sym__line_doc_content, STATE(3548), 2, sym_line_comment, sym_block_comment, - [98239] = 4, + [98351] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7162), 1, - anon_sym_SEMI, + ACTIONS(7156), 1, + sym_identifier, STATE(3549), 2, sym_line_comment, sym_block_comment, - [98253] = 4, + [98365] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7164), 1, - sym_identifier, + ACTIONS(7158), 1, + anon_sym_SEMI, STATE(3550), 2, sym_line_comment, sym_block_comment, - [98267] = 4, + [98379] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7166), 1, + ACTIONS(7160), 1, anon_sym_SEMI, STATE(3551), 2, sym_line_comment, sym_block_comment, - [98281] = 4, + [98393] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7168), 1, + ACTIONS(7162), 1, anon_sym_SEMI, STATE(3552), 2, sym_line_comment, sym_block_comment, - [98295] = 4, + [98407] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7170), 1, - anon_sym_SEMI, + ACTIONS(6675), 1, + anon_sym_RBRACE, STATE(3553), 2, sym_line_comment, sym_block_comment, - [98309] = 4, + [98421] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7172), 1, - anon_sym_SEMI, + ACTIONS(7164), 1, + sym_identifier, STATE(3554), 2, sym_line_comment, sym_block_comment, - [98323] = 4, + [98435] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6653), 1, - anon_sym_RBRACE, + ACTIONS(7166), 1, + anon_sym_EQ_GT, STATE(3555), 2, sym_line_comment, sym_block_comment, - [98337] = 4, + [98449] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(922), 1, - anon_sym_RBRACK, + ACTIONS(7168), 1, + anon_sym_RBRACE, STATE(3556), 2, sym_line_comment, sym_block_comment, - [98351] = 4, + [98463] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7174), 1, - anon_sym_EQ_GT, + ACTIONS(7170), 1, + sym__raw_string_literal_end, STATE(3557), 2, sym_line_comment, sym_block_comment, - [98365] = 4, + [98477] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7176), 1, - sym__line_doc_content, + ACTIONS(4126), 1, + sym_identifier, STATE(3558), 2, sym_line_comment, sym_block_comment, - [98379] = 4, + [98491] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4137), 1, - sym_identifier, + ACTIONS(7172), 1, + sym_self, STATE(3559), 2, sym_line_comment, sym_block_comment, - [98393] = 4, + [98505] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7178), 1, + ACTIONS(7174), 1, anon_sym_EQ_GT, STATE(3560), 2, sym_line_comment, sym_block_comment, - [98407] = 4, + [98519] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5731), 1, - anon_sym_RPAREN, + ACTIONS(7176), 1, + anon_sym_SEMI, STATE(3561), 2, sym_line_comment, sym_block_comment, - [98421] = 4, + [98533] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7180), 1, + ACTIONS(7178), 1, sym_identifier, STATE(3562), 2, sym_line_comment, sym_block_comment, - [98435] = 4, + [98547] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7182), 1, + ACTIONS(7180), 1, sym_identifier, STATE(3563), 2, sym_line_comment, sym_block_comment, - [98449] = 4, + [98561] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7184), 1, - sym__raw_string_literal_end, + ACTIONS(7182), 1, + sym_identifier, STATE(3564), 2, sym_line_comment, sym_block_comment, - [98463] = 4, + [98575] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7186), 1, - anon_sym_SEMI, + ACTIONS(7184), 1, + sym_identifier, STATE(3565), 2, sym_line_comment, sym_block_comment, - [98477] = 4, + [98589] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7188), 1, - anon_sym_RPAREN, + ACTIONS(5860), 1, + anon_sym_RBRACK, STATE(3566), 2, sym_line_comment, sym_block_comment, - [98491] = 4, + [98603] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7190), 1, - sym_identifier, + ACTIONS(6457), 1, + anon_sym_GT, STATE(3567), 2, sym_line_comment, sym_block_comment, - [98505] = 4, + [98617] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7192), 1, + ACTIONS(7186), 1, anon_sym_SEMI, STATE(3568), 2, sym_line_comment, sym_block_comment, - [98519] = 4, + [98631] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7194), 1, + ACTIONS(7188), 1, sym_identifier, STATE(3569), 2, sym_line_comment, sym_block_comment, - [98533] = 4, + [98645] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7196), 1, - sym_identifier, + ACTIONS(7190), 1, + anon_sym_RBRACK, STATE(3570), 2, sym_line_comment, sym_block_comment, - [98547] = 4, + [98659] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6671), 1, - anon_sym_COLON_COLON, + ACTIONS(5346), 1, + anon_sym_SEMI, STATE(3571), 2, sym_line_comment, sym_block_comment, - [98561] = 4, + [98673] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7198), 1, - sym_identifier, + ACTIONS(7192), 1, + anon_sym_STAR_SLASH, STATE(3572), 2, sym_line_comment, sym_block_comment, - [98575] = 4, + [98687] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7200), 1, - anon_sym_fn, + ACTIONS(7194), 1, + sym_identifier, STATE(3573), 2, sym_line_comment, sym_block_comment, - [98589] = 4, + [98701] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7202), 1, - sym_identifier, + ACTIONS(7196), 1, + anon_sym_COLON, STATE(3574), 2, sym_line_comment, sym_block_comment, - [98603] = 4, + [98715] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7204), 1, - anon_sym_SEMI, + ACTIONS(7198), 1, + sym_identifier, STATE(3575), 2, sym_line_comment, sym_block_comment, - [98617] = 4, + [98729] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7206), 1, - sym__raw_string_literal_end, + ACTIONS(7200), 1, + anon_sym_RBRACK, STATE(3576), 2, sym_line_comment, sym_block_comment, - [98631] = 4, + [98743] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7208), 1, - sym__raw_string_literal_end, + ACTIONS(7202), 1, + anon_sym_SEMI, STATE(3577), 2, sym_line_comment, sym_block_comment, - [98645] = 4, + [98757] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6473), 1, - anon_sym_GT, + ACTIONS(7204), 1, + anon_sym_STAR_SLASH, STATE(3578), 2, sym_line_comment, sym_block_comment, - [98659] = 4, + [98771] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7210), 1, + ACTIONS(6942), 1, anon_sym_SEMI, STATE(3579), 2, sym_line_comment, sym_block_comment, - [98673] = 4, + [98785] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7212), 1, - anon_sym_SEMI, + ACTIONS(7206), 1, + anon_sym_fn, STATE(3580), 2, sym_line_comment, sym_block_comment, - [98687] = 4, + [98799] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7214), 1, - sym_identifier, + ACTIONS(6168), 1, + anon_sym_RBRACE, STATE(3581), 2, sym_line_comment, sym_block_comment, - [98701] = 4, + [98813] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7216), 1, - anon_sym_SEMI, + ACTIONS(5647), 1, + anon_sym_RPAREN, STATE(3582), 2, sym_line_comment, sym_block_comment, - [98715] = 4, + [98827] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7218), 1, - anon_sym_SEMI, + ACTIONS(7208), 1, + anon_sym_RPAREN, STATE(3583), 2, sym_line_comment, sym_block_comment, - [98729] = 4, + [98841] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3173), 1, - anon_sym_PLUS, + ACTIONS(7210), 1, + anon_sym_SEMI, STATE(3584), 2, sym_line_comment, sym_block_comment, - [98743] = 4, + [98855] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5897), 1, - anon_sym_RPAREN, + ACTIONS(7212), 1, + anon_sym_RBRACK, STATE(3585), 2, sym_line_comment, sym_block_comment, - [98757] = 4, + [98869] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7220), 1, - sym_identifier, + ACTIONS(7214), 1, + anon_sym_SEMI, STATE(3586), 2, sym_line_comment, sym_block_comment, - [98771] = 4, + [98883] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7222), 1, - anon_sym_SEMI, + ACTIONS(6709), 1, + anon_sym_RBRACE, STATE(3587), 2, sym_line_comment, sym_block_comment, - [98785] = 4, + [98897] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7224), 1, - sym_identifier, + ACTIONS(4117), 1, + anon_sym_COLON_COLON, STATE(3588), 2, sym_line_comment, sym_block_comment, - [98799] = 4, + [98911] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7226), 1, - sym_identifier, + ACTIONS(7216), 1, + sym__line_doc_content, STATE(3589), 2, sym_line_comment, sym_block_comment, - [98813] = 4, + [98925] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7228), 1, - sym_self, + ACTIONS(7218), 1, + sym_identifier, STATE(3590), 2, sym_line_comment, sym_block_comment, - [98827] = 4, + [98939] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5893), 1, - anon_sym_RPAREN, + ACTIONS(7220), 1, + anon_sym_SEMI, STATE(3591), 2, sym_line_comment, sym_block_comment, - [98841] = 4, + [98953] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7230), 1, - anon_sym_RBRACK, + ACTIONS(7222), 1, + sym_identifier, STATE(3592), 2, sym_line_comment, sym_block_comment, - [98855] = 4, + [98967] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7232), 1, - anon_sym_RBRACK, + ACTIONS(7224), 1, + anon_sym_SEMI, STATE(3593), 2, sym_line_comment, sym_block_comment, - [98869] = 4, + [98981] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6234), 1, - anon_sym_RBRACE, + ACTIONS(7226), 1, + anon_sym_COLON, STATE(3594), 2, sym_line_comment, sym_block_comment, - [98883] = 4, + [98995] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7234), 1, - anon_sym_LBRACK, + ACTIONS(7228), 1, + anon_sym_COLON, STATE(3595), 2, sym_line_comment, sym_block_comment, - [98897] = 4, + [99009] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4121), 1, - anon_sym_COLON_COLON, + ACTIONS(7230), 1, + anon_sym_SEMI, STATE(3596), 2, sym_line_comment, sym_block_comment, - [98911] = 4, + [99023] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6625), 1, - anon_sym_RBRACE, + ACTIONS(7232), 1, + sym__line_doc_content, STATE(3597), 2, sym_line_comment, sym_block_comment, - [98925] = 4, + [99037] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7236), 1, + ACTIONS(7234), 1, anon_sym_SEMI, STATE(3598), 2, sym_line_comment, sym_block_comment, - [98939] = 4, + [99051] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6200), 1, - anon_sym_GT, + ACTIONS(7236), 1, + anon_sym_SEMI, STATE(3599), 2, sym_line_comment, sym_block_comment, - [98953] = 4, + [99065] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, ACTIONS(7238), 1, - anon_sym_SEMI, + anon_sym_RBRACE, STATE(3600), 2, sym_line_comment, sym_block_comment, - [98967] = 4, + [99079] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, @@ -197131,1117 +196031,1117 @@ static const uint16_t ts_small_parse_table[] = { STATE(3601), 2, sym_line_comment, sym_block_comment, - [98981] = 4, + [99093] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, ACTIONS(7242), 1, - sym_identifier, + sym__line_doc_content, STATE(3602), 2, sym_line_comment, sym_block_comment, - [98995] = 4, + [99107] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, ACTIONS(7244), 1, - anon_sym_RBRACK, + sym_identifier, STATE(3603), 2, sym_line_comment, sym_block_comment, - [99009] = 4, + [99121] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, ACTIONS(7246), 1, - anon_sym_RBRACE, + anon_sym_RPAREN, STATE(3604), 2, sym_line_comment, sym_block_comment, - [99023] = 4, + [99135] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, ACTIONS(7248), 1, - anon_sym_SEMI, + anon_sym_COLON_COLON, STATE(3605), 2, sym_line_comment, sym_block_comment, - [99037] = 4, + [99149] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, ACTIONS(7250), 1, - anon_sym_COLON_COLON, + anon_sym_SEMI, STATE(3606), 2, sym_line_comment, sym_block_comment, - [99051] = 4, + [99163] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, ACTIONS(7252), 1, - anon_sym_COLON, + sym_identifier, STATE(3607), 2, sym_line_comment, sym_block_comment, - [99065] = 4, + [99177] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6210), 1, - anon_sym_RBRACE, + ACTIONS(7254), 1, + anon_sym_SEMI, STATE(3608), 2, sym_line_comment, sym_block_comment, - [99079] = 4, + [99191] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7254), 1, - sym_identifier, + ACTIONS(7256), 1, + anon_sym_SEMI, STATE(3609), 2, sym_line_comment, sym_block_comment, - [99093] = 4, + [99205] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7256), 1, - anon_sym_COLON, + ACTIONS(7258), 1, + anon_sym_RBRACE, STATE(3610), 2, sym_line_comment, sym_block_comment, - [99107] = 4, + [99219] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7258), 1, - anon_sym_SEMI, + ACTIONS(7260), 1, + anon_sym_RBRACE, STATE(3611), 2, sym_line_comment, sym_block_comment, - [99121] = 4, + [99233] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7260), 1, - anon_sym_LBRACK, + ACTIONS(7262), 1, + anon_sym_SEMI, STATE(3612), 2, sym_line_comment, sym_block_comment, - [99135] = 4, + [99247] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7262), 1, + ACTIONS(7264), 1, anon_sym_SEMI, STATE(3613), 2, sym_line_comment, sym_block_comment, - [99149] = 4, + [99261] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7264), 1, - anon_sym_SEMI, + ACTIONS(4331), 1, + anon_sym_RPAREN, STATE(3614), 2, sym_line_comment, sym_block_comment, - [99163] = 4, + [99275] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, ACTIONS(7266), 1, - sym__line_doc_content, + anon_sym_SEMI, STATE(3615), 2, sym_line_comment, sym_block_comment, - [99177] = 4, + [99289] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6576), 1, - anon_sym_GT, + ACTIONS(7268), 1, + sym_raw_string_literal_content, STATE(3616), 2, sym_line_comment, sym_block_comment, - [99191] = 4, + [99303] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7268), 1, + ACTIONS(7270), 1, anon_sym_SEMI, STATE(3617), 2, sym_line_comment, sym_block_comment, - [99205] = 4, + [99317] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7270), 1, - anon_sym_RPAREN, + ACTIONS(7272), 1, + anon_sym_LPAREN, STATE(3618), 2, sym_line_comment, sym_block_comment, - [99219] = 4, + [99331] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7272), 1, - anon_sym_SEMI, + ACTIONS(7274), 1, + anon_sym_RBRACK, STATE(3619), 2, sym_line_comment, sym_block_comment, - [99233] = 4, + [99345] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6096), 1, - anon_sym_LBRACE, + ACTIONS(7276), 1, + sym_identifier, STATE(3620), 2, sym_line_comment, sym_block_comment, - [99247] = 4, + [99359] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7274), 1, - anon_sym_COLON, + ACTIONS(4321), 1, + anon_sym_COLON_COLON, STATE(3621), 2, sym_line_comment, sym_block_comment, - [99261] = 4, + [99373] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7276), 1, - anon_sym_SEMI, + ACTIONS(5811), 1, + anon_sym_COLON_COLON, STATE(3622), 2, sym_line_comment, sym_block_comment, - [99275] = 4, + [99387] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7278), 1, - sym_identifier, + ACTIONS(6063), 1, + anon_sym_LBRACE, STATE(3623), 2, sym_line_comment, sym_block_comment, - [99289] = 4, + [99401] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7280), 1, - anon_sym_COLON_COLON, + ACTIONS(7278), 1, + anon_sym_SEMI, STATE(3624), 2, sym_line_comment, sym_block_comment, - [99303] = 4, + [99415] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7282), 1, - sym_raw_string_literal_content, + ACTIONS(5342), 1, + anon_sym_SEMI, STATE(3625), 2, sym_line_comment, sym_block_comment, - [99317] = 4, + [99429] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3967), 1, + ACTIONS(7280), 1, anon_sym_COLON_COLON, STATE(3626), 2, sym_line_comment, sym_block_comment, - [99331] = 4, + [99443] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7284), 1, - sym_raw_string_literal_content, + ACTIONS(7282), 1, + sym_identifier, STATE(3627), 2, sym_line_comment, sym_block_comment, - [99345] = 4, + [99457] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7286), 1, - anon_sym_SEMI, + ACTIONS(7284), 1, + sym_identifier, STATE(3628), 2, sym_line_comment, sym_block_comment, - [99359] = 4, + [99471] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7288), 1, - anon_sym_SEMI, + ACTIONS(7286), 1, + sym_raw_string_literal_content, STATE(3629), 2, sym_line_comment, sym_block_comment, - [99373] = 4, + [99485] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6184), 1, - anon_sym_RBRACE, + ACTIONS(7288), 1, + sym_identifier, STATE(3630), 2, sym_line_comment, sym_block_comment, - [99387] = 4, + [99499] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4335), 1, - anon_sym_COLON_COLON, + ACTIONS(7290), 1, + anon_sym_SEMI, STATE(3631), 2, sym_line_comment, sym_block_comment, - [99401] = 4, + [99513] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5841), 1, - anon_sym_COLON_COLON, + ACTIONS(7292), 1, + anon_sym_LT2, STATE(3632), 2, sym_line_comment, sym_block_comment, - [99415] = 4, + [99527] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7290), 1, - anon_sym_COLON_COLON, + ACTIONS(7294), 1, + sym_identifier, STATE(3633), 2, sym_line_comment, sym_block_comment, - [99429] = 4, + [99541] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7292), 1, - anon_sym_SEMI, + ACTIONS(7296), 1, + anon_sym_fn, STATE(3634), 2, sym_line_comment, sym_block_comment, - [99443] = 4, + [99555] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5356), 1, - anon_sym_SEMI, + ACTIONS(6587), 1, + anon_sym_GT, STATE(3635), 2, sym_line_comment, sym_block_comment, - [99457] = 4, + [99569] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7294), 1, + ACTIONS(7298), 1, anon_sym_COLON_COLON, STATE(3636), 2, sym_line_comment, sym_block_comment, - [99471] = 4, + [99583] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7296), 1, - sym__raw_string_literal_end, + ACTIONS(7300), 1, + anon_sym_COLON, STATE(3637), 2, sym_line_comment, sym_block_comment, - [99485] = 4, + [99597] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7298), 1, - anon_sym_SEMI, + ACTIONS(7302), 1, + sym_identifier, STATE(3638), 2, sym_line_comment, sym_block_comment, - [99499] = 4, + [99611] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7300), 1, - anon_sym_STAR_SLASH, + ACTIONS(7304), 1, + anon_sym_COLON_COLON, STATE(3639), 2, sym_line_comment, sym_block_comment, - [99513] = 4, + [99625] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7302), 1, - sym_identifier, + ACTIONS(7306), 1, + anon_sym_COLON_COLON, STATE(3640), 2, sym_line_comment, sym_block_comment, - [99527] = 4, + [99639] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7304), 1, + ACTIONS(7308), 1, anon_sym_COLON, STATE(3641), 2, sym_line_comment, sym_block_comment, - [99541] = 4, + [99653] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7306), 1, - anon_sym_LT2, + ACTIONS(6160), 1, + anon_sym_RBRACE, STATE(3642), 2, sym_line_comment, sym_block_comment, - [99555] = 4, + [99667] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7308), 1, - anon_sym_RBRACE, + ACTIONS(5063), 1, + anon_sym_COLON_COLON, STATE(3643), 2, sym_line_comment, sym_block_comment, - [99569] = 4, + [99681] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, ACTIONS(7310), 1, - anon_sym_fn, + anon_sym_COLON_COLON, STATE(3644), 2, sym_line_comment, sym_block_comment, - [99583] = 4, + [99695] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, ACTIONS(7312), 1, - anon_sym_RBRACK, + anon_sym_fn, STATE(3645), 2, sym_line_comment, sym_block_comment, - [99597] = 4, + [99709] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7314), 1, - anon_sym_COLON_COLON, + ACTIONS(5896), 1, + anon_sym_RPAREN, STATE(3646), 2, sym_line_comment, sym_block_comment, - [99611] = 4, + [99723] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7316), 1, - anon_sym_SEMI, + ACTIONS(7314), 1, + anon_sym_LBRACE, STATE(3647), 2, sym_line_comment, sym_block_comment, - [99625] = 4, + [99737] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7318), 1, + ACTIONS(7316), 1, anon_sym_SEMI, STATE(3648), 2, sym_line_comment, sym_block_comment, - [99639] = 4, + [99751] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7320), 1, - anon_sym_COLON_COLON, + ACTIONS(7318), 1, + anon_sym_RBRACK, STATE(3649), 2, sym_line_comment, sym_block_comment, - [99653] = 4, + [99765] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6974), 1, - anon_sym_SEMI, + ACTIONS(7320), 1, + sym_identifier, STATE(3650), 2, sym_line_comment, sym_block_comment, - [99667] = 4, - ACTIONS(3), 1, + [99779] = 4, + ACTIONS(105), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7322), 1, - aux_sym_line_comment_token2, + ACTIONS(3169), 1, + anon_sym_PLUS, STATE(3651), 2, sym_line_comment, sym_block_comment, - [99681] = 4, + [99793] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7324), 1, - sym_identifier, + ACTIONS(5354), 1, + anon_sym_SEMI, STATE(3652), 2, sym_line_comment, sym_block_comment, - [99695] = 4, + [99807] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5116), 1, - anon_sym_COLON_COLON, + ACTIONS(5594), 1, + anon_sym_RPAREN, STATE(3653), 2, sym_line_comment, sym_block_comment, - [99709] = 4, + [99821] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7326), 1, - anon_sym_COLON_COLON, + ACTIONS(7322), 1, + sym_identifier, STATE(3654), 2, sym_line_comment, sym_block_comment, - [99723] = 4, - ACTIONS(105), 1, + [99835] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(107), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(7328), 1, - anon_sym_fn, + ACTIONS(7324), 1, + aux_sym_line_comment_token2, STATE(3655), 2, sym_line_comment, sym_block_comment, - [99737] = 4, + [99849] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7330), 1, - ts_builtin_sym_end, + ACTIONS(7326), 1, + sym_raw_string_literal_content, STATE(3656), 2, sym_line_comment, sym_block_comment, - [99751] = 4, + [99863] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7332), 1, - anon_sym_LBRACE, + ACTIONS(7328), 1, + anon_sym_SEMI, STATE(3657), 2, sym_line_comment, sym_block_comment, - [99765] = 4, + [99877] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7334), 1, + ACTIONS(7330), 1, anon_sym_COLON, STATE(3658), 2, sym_line_comment, sym_block_comment, - [99779] = 4, + [99891] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(880), 1, - anon_sym_RBRACK, + ACTIONS(7332), 1, + anon_sym_COLON_COLON, STATE(3659), 2, sym_line_comment, sym_block_comment, - [99793] = 4, + [99905] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6836), 1, - anon_sym_SEMI, + ACTIONS(7334), 1, + ts_builtin_sym_end, STATE(3660), 2, sym_line_comment, sym_block_comment, - [99807] = 4, + [99919] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7336), 1, - anon_sym_fn, + ACTIONS(6196), 1, + anon_sym_RBRACE, STATE(3661), 2, sym_line_comment, sym_block_comment, - [99821] = 4, + [99933] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7338), 1, - anon_sym_SEMI, + ACTIONS(7336), 1, + anon_sym_COLON_COLON, STATE(3662), 2, sym_line_comment, sym_block_comment, - [99835] = 4, + [99947] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7340), 1, + ACTIONS(6794), 1, anon_sym_SEMI, STATE(3663), 2, sym_line_comment, sym_block_comment, - [99849] = 4, + [99961] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7342), 1, - anon_sym_SEMI, + ACTIONS(7338), 1, + sym_identifier, STATE(3664), 2, sym_line_comment, sym_block_comment, - [99863] = 4, + [99975] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7344), 1, - sym_raw_string_literal_content, + ACTIONS(7340), 1, + anon_sym_EQ_GT, STATE(3665), 2, sym_line_comment, sym_block_comment, - [99877] = 4, + [99989] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7346), 1, - anon_sym_COLON, + ACTIONS(7342), 1, + anon_sym_SEMI, STATE(3666), 2, sym_line_comment, sym_block_comment, - [99891] = 4, + [100003] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6744), 1, + ACTIONS(6536), 1, anon_sym_RBRACE, STATE(3667), 2, sym_line_comment, sym_block_comment, - [99905] = 4, + [100017] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(763), 1, - anon_sym_RBRACK, + ACTIONS(7344), 1, + anon_sym_SEMI, STATE(3668), 2, sym_line_comment, sym_block_comment, - [99919] = 4, + [100031] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7348), 1, - anon_sym_COLON_COLON, + ACTIONS(7346), 1, + sym__raw_string_literal_end, STATE(3669), 2, sym_line_comment, sym_block_comment, - [99933] = 4, + [100045] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7350), 1, - anon_sym_RBRACK, + ACTIONS(7348), 1, + anon_sym_COLON_COLON, STATE(3670), 2, sym_line_comment, sym_block_comment, - [99947] = 4, + [100059] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7352), 1, - sym_identifier, + ACTIONS(7350), 1, + anon_sym_LBRACE, STATE(3671), 2, sym_line_comment, sym_block_comment, - [99961] = 4, + [100073] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7354), 1, - anon_sym_COLON_COLON, + ACTIONS(4315), 1, + anon_sym_RPAREN, STATE(3672), 2, sym_line_comment, sym_block_comment, - [99975] = 4, + [100087] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7356), 1, - sym_identifier, + ACTIONS(884), 1, + anon_sym_RBRACK, STATE(3673), 2, sym_line_comment, sym_block_comment, - [99989] = 4, + [100101] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7358), 1, - anon_sym_COLON, + ACTIONS(7352), 1, + sym_identifier, STATE(3674), 2, sym_line_comment, sym_block_comment, - [100003] = 4, + [100115] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7360), 1, - anon_sym_EQ, + ACTIONS(7354), 1, + anon_sym_COLON, STATE(3675), 2, sym_line_comment, sym_block_comment, - [100017] = 4, + [100129] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6806), 1, - anon_sym_GT, + ACTIONS(7356), 1, + sym_raw_string_literal_content, STATE(3676), 2, sym_line_comment, sym_block_comment, - [100031] = 4, + [100143] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7362), 1, - sym_identifier, + ACTIONS(3765), 1, + anon_sym_COLON_COLON, STATE(3677), 2, sym_line_comment, sym_block_comment, - [100045] = 4, + [100157] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7364), 1, - sym_identifier, + ACTIONS(7358), 1, + sym_raw_string_literal_content, STATE(3678), 2, sym_line_comment, sym_block_comment, - [100059] = 4, + [100171] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5071), 1, + ACTIONS(7360), 1, anon_sym_COLON_COLON, STATE(3679), 2, sym_line_comment, sym_block_comment, - [100073] = 4, + [100185] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7366), 1, + ACTIONS(3979), 1, anon_sym_COLON_COLON, STATE(3680), 2, sym_line_comment, sym_block_comment, - [100087] = 4, + [100199] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7368), 1, - anon_sym_LBRACE, + ACTIONS(7362), 1, + sym_identifier, STATE(3681), 2, sym_line_comment, sym_block_comment, - [100101] = 4, + [100213] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7370), 1, - sym_identifier, + ACTIONS(7364), 1, + anon_sym_LBRACE, STATE(3682), 2, sym_line_comment, sym_block_comment, - [100115] = 4, + [100227] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4713), 1, - anon_sym_fn, + ACTIONS(7366), 1, + sym_raw_string_literal_content, STATE(3683), 2, sym_line_comment, sym_block_comment, - [100129] = 4, + [100241] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4907), 1, + ACTIONS(5388), 1, anon_sym_COLON_COLON, STATE(3684), 2, sym_line_comment, sym_block_comment, - [100143] = 4, + [100255] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7372), 1, - anon_sym_SEMI, + ACTIONS(7368), 1, + anon_sym_COLON_COLON, STATE(3685), 2, sym_line_comment, sym_block_comment, - [100157] = 4, + [100269] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7374), 1, - sym_raw_string_literal_content, + ACTIONS(7370), 1, + anon_sym_fn, STATE(3686), 2, sym_line_comment, sym_block_comment, - [100171] = 4, + [100283] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3775), 1, - anon_sym_COLON_COLON, + ACTIONS(6105), 1, + anon_sym_LBRACE, STATE(3687), 2, sym_line_comment, sym_block_comment, - [100185] = 4, + [100297] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7376), 1, - anon_sym_SEMI, + ACTIONS(5833), 1, + anon_sym_COLON_COLON, STATE(3688), 2, sym_line_comment, sym_block_comment, - [100199] = 4, + [100311] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7378), 1, + ACTIONS(7372), 1, anon_sym_COLON_COLON, STATE(3689), 2, sym_line_comment, sym_block_comment, - [100213] = 4, + [100325] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7380), 1, - sym_raw_string_literal_content, + ACTIONS(6119), 1, + anon_sym_LBRACE, STATE(3690), 2, sym_line_comment, sym_block_comment, - [100227] = 4, + [100339] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7382), 1, - anon_sym_SEMI, + ACTIONS(7374), 1, + anon_sym_COLON_COLON, STATE(3691), 2, sym_line_comment, sym_block_comment, - [100241] = 4, + [100353] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7384), 1, - anon_sym_LBRACE, + ACTIONS(5412), 1, + anon_sym_COLON_COLON, STATE(3692), 2, sym_line_comment, sym_block_comment, - [100255] = 4, + [100367] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7386), 1, - sym_raw_string_literal_content, + ACTIONS(5422), 1, + anon_sym_COLON_COLON, STATE(3693), 2, sym_line_comment, sym_block_comment, - [100269] = 4, + [100381] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5368), 1, + ACTIONS(4339), 1, anon_sym_COLON_COLON, STATE(3694), 2, sym_line_comment, sym_block_comment, - [100283] = 4, + [100395] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7388), 1, + ACTIONS(7376), 1, anon_sym_COLON_COLON, STATE(3695), 2, sym_line_comment, sym_block_comment, - [100297] = 4, + [100409] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7390), 1, + ACTIONS(5356), 1, anon_sym_SEMI, STATE(3696), 2, sym_line_comment, sym_block_comment, - [100311] = 4, + [100423] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6120), 1, - anon_sym_LBRACE, + ACTIONS(7378), 1, + sym_identifier, STATE(3697), 2, sym_line_comment, sym_block_comment, - [100325] = 4, + [100437] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6022), 1, - anon_sym_COLON_COLON, + ACTIONS(7380), 1, + anon_sym_COLON, STATE(3698), 2, sym_line_comment, sym_block_comment, - [100339] = 4, + [100451] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7392), 1, - anon_sym_COLON_COLON, + ACTIONS(7382), 1, + anon_sym_SEMI, STATE(3699), 2, sym_line_comment, sym_block_comment, - [100353] = 4, + [100465] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6136), 1, - anon_sym_LBRACE, + ACTIONS(7384), 1, + sym_identifier, STATE(3700), 2, sym_line_comment, sym_block_comment, - [100367] = 4, + [100479] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7394), 1, - anon_sym_COLON_COLON, + ACTIONS(7386), 1, + anon_sym_COLON, STATE(3701), 2, sym_line_comment, sym_block_comment, - [100381] = 4, + [100493] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5404), 1, - anon_sym_COLON_COLON, + ACTIONS(7388), 1, + anon_sym_LBRACK, STATE(3702), 2, sym_line_comment, sym_block_comment, - [100395] = 4, + [100507] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5428), 1, - anon_sym_COLON_COLON, + ACTIONS(7390), 1, + sym_identifier, STATE(3703), 2, sym_line_comment, sym_block_comment, - [100409] = 4, + [100521] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4367), 1, - anon_sym_COLON_COLON, + ACTIONS(7392), 1, + sym_identifier, STATE(3704), 2, sym_line_comment, sym_block_comment, - [100423] = 4, + [100535] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7396), 1, - anon_sym_COLON_COLON, + ACTIONS(7394), 1, + anon_sym_COLON, STATE(3705), 2, sym_line_comment, sym_block_comment, - [100437] = 4, + [100549] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4331), 1, - anon_sym_RPAREN, + ACTIONS(7396), 1, + sym_identifier, STATE(3706), 2, sym_line_comment, sym_block_comment, - [100451] = 4, + [100563] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, ACTIONS(7398), 1, - anon_sym_SEMI, + sym_identifier, STATE(3707), 2, sym_line_comment, sym_block_comment, - [100465] = 4, + [100577] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, ACTIONS(7400), 1, - sym_identifier, + anon_sym_LBRACK, STATE(3708), 2, sym_line_comment, sym_block_comment, - [100479] = 4, + [100591] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, ACTIONS(7402), 1, - anon_sym_SEMI, + anon_sym_COLON, STATE(3709), 2, sym_line_comment, sym_block_comment, - [100493] = 4, + [100605] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, ACTIONS(7404), 1, - anon_sym_SEMI, + anon_sym_COLON, STATE(3710), 2, sym_line_comment, sym_block_comment, - [100507] = 4, + [100619] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, ACTIONS(7406), 1, - anon_sym_COLON, + anon_sym_RBRACE, STATE(3711), 2, sym_line_comment, sym_block_comment, - [100521] = 4, + [100633] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, ACTIONS(7408), 1, - anon_sym_LBRACK, + anon_sym_SEMI, STATE(3712), 2, sym_line_comment, sym_block_comment, - [100535] = 4, + [100647] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, @@ -198251,7 +197151,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3713), 2, sym_line_comment, sym_block_comment, - [100549] = 4, + [100661] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, @@ -198261,27 +197161,27 @@ static const uint16_t ts_small_parse_table[] = { STATE(3714), 2, sym_line_comment, sym_block_comment, - [100563] = 4, + [100675] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, ACTIONS(7414), 1, - sym__line_doc_content, + anon_sym_COLON, STATE(3715), 2, sym_line_comment, sym_block_comment, - [100577] = 4, + [100689] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, ACTIONS(7416), 1, - sym__line_doc_content, + anon_sym_SEMI, STATE(3716), 2, sym_line_comment, sym_block_comment, - [100591] = 4, + [100703] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, @@ -198291,277 +197191,277 @@ static const uint16_t ts_small_parse_table[] = { STATE(3717), 2, sym_line_comment, sym_block_comment, - [100605] = 4, + [100717] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, ACTIONS(7420), 1, - anon_sym_LBRACK, + sym_identifier, STATE(3718), 2, sym_line_comment, sym_block_comment, - [100619] = 4, + [100731] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, ACTIONS(7422), 1, - anon_sym_COLON, + anon_sym_SEMI, STATE(3719), 2, sym_line_comment, sym_block_comment, - [100633] = 4, + [100745] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, ACTIONS(7424), 1, - anon_sym_COLON, + anon_sym_SEMI, STATE(3720), 2, sym_line_comment, sym_block_comment, - [100647] = 4, + [100759] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7426), 1, - sym_identifier, + ACTIONS(4281), 1, + anon_sym_COLON_COLON, STATE(3721), 2, sym_line_comment, sym_block_comment, - [100661] = 4, + [100773] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6584), 1, - anon_sym_RBRACE, + ACTIONS(7426), 1, + sym_identifier, STATE(3722), 2, sym_line_comment, sym_block_comment, - [100675] = 4, + [100787] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6796), 1, - anon_sym_RBRACE, + ACTIONS(4776), 1, + anon_sym_COLON_COLON, STATE(3723), 2, sym_line_comment, sym_block_comment, - [100689] = 4, + [100801] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7428), 1, - sym__raw_string_literal_end, + ACTIONS(6934), 1, + anon_sym_SEMI, STATE(3724), 2, sym_line_comment, sym_block_comment, - [100703] = 4, + [100815] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7430), 1, - anon_sym_COLON, + ACTIONS(7428), 1, + anon_sym_SEMI, STATE(3725), 2, sym_line_comment, sym_block_comment, - [100717] = 4, + [100829] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7432), 1, - sym_identifier, + ACTIONS(5065), 1, + anon_sym_COLON_COLON, STATE(3726), 2, sym_line_comment, sym_block_comment, - [100731] = 4, + [100843] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5442), 1, - anon_sym_SEMI, + ACTIONS(7430), 1, + anon_sym_LBRACK, STATE(3727), 2, sym_line_comment, sym_block_comment, - [100745] = 4, + [100857] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7434), 1, - sym_identifier, + ACTIONS(6312), 1, + anon_sym_RBRACE, STATE(3728), 2, sym_line_comment, sym_block_comment, - [100759] = 4, + [100871] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7436), 1, - sym_identifier, + ACTIONS(7432), 1, + anon_sym_COLON, STATE(3729), 2, sym_line_comment, sym_block_comment, - [100773] = 4, + [100885] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7438), 1, - sym_identifier, + ACTIONS(7434), 1, + anon_sym_SEMI, STATE(3730), 2, sym_line_comment, sym_block_comment, - [100787] = 4, + [100899] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7440), 1, - anon_sym_SEMI, + ACTIONS(7436), 1, + anon_sym_COLON_COLON, STATE(3731), 2, sym_line_comment, sym_block_comment, - [100801] = 4, + [100913] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7442), 1, - sym_identifier, + ACTIONS(7438), 1, + anon_sym_RBRACE, STATE(3732), 2, sym_line_comment, sym_block_comment, - [100815] = 4, + [100927] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7444), 1, + ACTIONS(7440), 1, anon_sym_COLON, STATE(3733), 2, sym_line_comment, sym_block_comment, - [100829] = 4, + [100941] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7446), 1, - sym_identifier, + ACTIONS(7442), 1, + anon_sym_SEMI, STATE(3734), 2, sym_line_comment, sym_block_comment, - [100843] = 4, + [100955] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4005), 1, - anon_sym_COLON_COLON, + ACTIONS(6423), 1, + anon_sym_RBRACE, STATE(3735), 2, sym_line_comment, sym_block_comment, - [100857] = 4, + [100969] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7448), 1, - anon_sym_SEMI, + ACTIONS(4772), 1, + anon_sym_COLON_COLON, STATE(3736), 2, sym_line_comment, sym_block_comment, - [100871] = 4, + [100983] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7450), 1, - sym_identifier, + ACTIONS(7444), 1, + anon_sym_SEMI, STATE(3737), 2, sym_line_comment, sym_block_comment, - [100885] = 4, + [100997] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4279), 1, - anon_sym_COLON_COLON, + ACTIONS(7446), 1, + sym_identifier, STATE(3738), 2, sym_line_comment, sym_block_comment, - [100899] = 4, + [101011] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7452), 1, - anon_sym_COLON, + ACTIONS(7448), 1, + anon_sym_SEMI, STATE(3739), 2, sym_line_comment, sym_block_comment, - [100913] = 4, + [101025] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4790), 1, - anon_sym_COLON_COLON, + ACTIONS(7450), 1, + anon_sym_SEMI, STATE(3740), 2, sym_line_comment, sym_block_comment, - [100927] = 4, + [101039] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5384), 1, - anon_sym_SEMI, + ACTIONS(7452), 1, + anon_sym_RBRACK, STATE(3741), 2, sym_line_comment, sym_block_comment, - [100941] = 4, + [101053] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, ACTIONS(7454), 1, - anon_sym_SEMI, + anon_sym_COLON, STATE(3742), 2, sym_line_comment, sym_block_comment, - [100955] = 4, + [101067] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, ACTIONS(7456), 1, - anon_sym_COLON, + sym_identifier, STATE(3743), 2, sym_line_comment, sym_block_comment, - [100969] = 4, + [101081] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, ACTIONS(7458), 1, - anon_sym_COLON, + sym_identifier, STATE(3744), 2, sym_line_comment, sym_block_comment, - [100983] = 4, + [101095] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, @@ -198571,617 +197471,617 @@ static const uint16_t ts_small_parse_table[] = { STATE(3745), 2, sym_line_comment, sym_block_comment, - [100997] = 4, + [101109] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, ACTIONS(7462), 1, - anon_sym_RBRACE, + anon_sym_EQ_GT, STATE(3746), 2, sym_line_comment, sym_block_comment, - [101011] = 4, + [101123] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5853), 1, - anon_sym_RPAREN, + ACTIONS(7464), 1, + sym_identifier, STATE(3747), 2, sym_line_comment, sym_block_comment, - [101025] = 4, + [101137] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5378), 1, + ACTIONS(7466), 1, anon_sym_SEMI, STATE(3748), 2, sym_line_comment, sym_block_comment, - [101039] = 4, + [101151] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7464), 1, - anon_sym_SEMI, + ACTIONS(7468), 1, + anon_sym_EQ, STATE(3749), 2, sym_line_comment, sym_block_comment, - [101053] = 4, + [101165] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4766), 1, - anon_sym_COLON_COLON, + ACTIONS(7470), 1, + anon_sym_RBRACE, STATE(3750), 2, sym_line_comment, sym_block_comment, - [101067] = 4, + [101179] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7466), 1, - anon_sym_RBRACE, + ACTIONS(7472), 1, + anon_sym_LT2, STATE(3751), 2, sym_line_comment, sym_block_comment, - [101081] = 4, + [101193] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7468), 1, - anon_sym_COLON, + ACTIONS(7474), 1, + sym__raw_string_literal_end, STATE(3752), 2, sym_line_comment, sym_block_comment, - [101095] = 4, + [101207] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7470), 1, - anon_sym_RBRACK, + ACTIONS(7476), 1, + anon_sym_fn, STATE(3753), 2, sym_line_comment, sym_block_comment, - [101109] = 4, + [101221] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7472), 1, - sym_identifier, + ACTIONS(3163), 1, + anon_sym_PLUS, STATE(3754), 2, sym_line_comment, sym_block_comment, - [101123] = 4, + [101235] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7474), 1, - anon_sym_SEMI, + ACTIONS(6555), 1, + anon_sym_GT, STATE(3755), 2, sym_line_comment, sym_block_comment, - [101137] = 4, + [101249] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7476), 1, - anon_sym_RBRACK, + ACTIONS(7478), 1, + anon_sym_COLON_COLON, STATE(3756), 2, sym_line_comment, sym_block_comment, - [101151] = 4, + [101263] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7478), 1, - sym_identifier, + ACTIONS(7480), 1, + sym__raw_string_literal_end, STATE(3757), 2, sym_line_comment, sym_block_comment, - [101165] = 4, + [101277] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7480), 1, - anon_sym_SEMI, + ACTIONS(7482), 1, + anon_sym_COLON, STATE(3758), 2, sym_line_comment, sym_block_comment, - [101179] = 4, + [101291] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7482), 1, + ACTIONS(7484), 1, anon_sym_EQ, STATE(3759), 2, sym_line_comment, sym_block_comment, - [101193] = 4, + [101305] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7484), 1, - anon_sym_LT2, + ACTIONS(7486), 1, + anon_sym_SEMI, STATE(3760), 2, sym_line_comment, sym_block_comment, - [101207] = 4, + [101319] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7486), 1, + ACTIONS(7488), 1, anon_sym_COLON, STATE(3761), 2, sym_line_comment, sym_block_comment, - [101221] = 4, + [101333] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5376), 1, - anon_sym_COLON_COLON, + ACTIONS(7490), 1, + anon_sym_LBRACK, STATE(3762), 2, sym_line_comment, sym_block_comment, - [101235] = 4, + [101347] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(980), 1, - anon_sym_EQ_GT, + ACTIONS(7492), 1, + anon_sym_LBRACK, STATE(3763), 2, sym_line_comment, sym_block_comment, - [101249] = 4, + [101361] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4770), 1, - anon_sym_COLON_COLON, + ACTIONS(7494), 1, + anon_sym_COLON, STATE(3764), 2, sym_line_comment, sym_block_comment, - [101263] = 4, + [101375] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7488), 1, - sym_identifier, + ACTIONS(6950), 1, + anon_sym_SEMI, STATE(3765), 2, sym_line_comment, sym_block_comment, - [101277] = 4, + [101389] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7490), 1, - anon_sym_LT2, + ACTIONS(4013), 1, + anon_sym_COLON_COLON, STATE(3766), 2, sym_line_comment, sym_block_comment, - [101291] = 4, + [101403] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7492), 1, - anon_sym_RPAREN, + ACTIONS(7496), 1, + anon_sym_COLON, STATE(3767), 2, sym_line_comment, sym_block_comment, - [101305] = 4, + [101417] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7494), 1, + ACTIONS(7498), 1, anon_sym_COLON, STATE(3768), 2, sym_line_comment, sym_block_comment, - [101319] = 4, + [101431] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7496), 1, - anon_sym_EQ, + ACTIONS(1022), 1, + anon_sym_EQ_GT, STATE(3769), 2, sym_line_comment, sym_block_comment, - [101333] = 4, + [101445] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6898), 1, - anon_sym_SEMI, + ACTIONS(6994), 1, + anon_sym_COLON_COLON, STATE(3770), 2, sym_line_comment, sym_block_comment, - [101347] = 4, + [101459] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7498), 1, + ACTIONS(7500), 1, anon_sym_COLON, STATE(3771), 2, sym_line_comment, sym_block_comment, - [101361] = 4, + [101473] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7500), 1, - anon_sym_LBRACK, + ACTIONS(7502), 1, + anon_sym_COLON, STATE(3772), 2, sym_line_comment, sym_block_comment, - [101375] = 4, + [101487] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7502), 1, - anon_sym_LBRACK, + ACTIONS(7504), 1, + anon_sym_COLON, STATE(3773), 2, sym_line_comment, sym_block_comment, - [101389] = 4, + [101501] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7504), 1, - anon_sym_COLON, + ACTIONS(7506), 1, + anon_sym_LT, STATE(3774), 2, sym_line_comment, sym_block_comment, - [101403] = 4, + [101515] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7506), 1, + ACTIONS(4723), 1, anon_sym_fn, STATE(3775), 2, sym_line_comment, sym_block_comment, - [101417] = 4, + [101529] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3213), 1, - anon_sym_PLUS, + ACTIONS(7508), 1, + anon_sym_COLON, STATE(3776), 2, sym_line_comment, sym_block_comment, - [101431] = 4, + [101543] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7508), 1, - anon_sym_COLON, + ACTIONS(3221), 1, + anon_sym_PLUS, STATE(3777), 2, sym_line_comment, sym_block_comment, - [101445] = 4, + [101557] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7510), 1, - anon_sym_COLON, + ACTIONS(922), 1, + anon_sym_RBRACK, STATE(3778), 2, sym_line_comment, sym_block_comment, - [101459] = 4, + [101571] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7512), 1, - anon_sym_RBRACK, + ACTIONS(7510), 1, + sym_identifier, STATE(3779), 2, sym_line_comment, sym_block_comment, - [101473] = 4, + [101585] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7514), 1, - anon_sym_COLON_COLON, + ACTIONS(7512), 1, + anon_sym_SEMI, STATE(3780), 2, sym_line_comment, sym_block_comment, - [101487] = 4, + [101599] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7516), 1, - anon_sym_COLON, + ACTIONS(7514), 1, + anon_sym_SEMI, STATE(3781), 2, sym_line_comment, sym_block_comment, - [101501] = 4, + [101613] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7518), 1, - anon_sym_COLON, + ACTIONS(7516), 1, + sym_identifier, STATE(3782), 2, sym_line_comment, sym_block_comment, - [101515] = 4, + [101627] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7520), 1, - anon_sym_COLON, + ACTIONS(5962), 1, + anon_sym_RPAREN, STATE(3783), 2, sym_line_comment, sym_block_comment, - [101529] = 4, + [101641] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7522), 1, + ACTIONS(6212), 1, anon_sym_RBRACE, STATE(3784), 2, sym_line_comment, sym_block_comment, - [101543] = 4, + [101655] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4739), 1, - anon_sym_fn, + ACTIONS(7518), 1, + sym_identifier, STATE(3785), 2, sym_line_comment, sym_block_comment, - [101557] = 4, + [101669] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7524), 1, - sym_identifier, + ACTIONS(7520), 1, + anon_sym_fn, STATE(3786), 2, sym_line_comment, sym_block_comment, - [101571] = 4, + [101683] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7526), 1, - anon_sym_RBRACE, + ACTIONS(5306), 1, + anon_sym_COLON_COLON, STATE(3787), 2, sym_line_comment, sym_block_comment, - [101585] = 4, + [101697] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7528), 1, - sym_identifier, + ACTIONS(7522), 1, + anon_sym_EQ, STATE(3788), 2, sym_line_comment, sym_block_comment, - [101599] = 4, + [101711] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7530), 1, - anon_sym_LPAREN, + ACTIONS(4743), 1, + anon_sym_COLON_COLON, STATE(3789), 2, sym_line_comment, sym_block_comment, - [101613] = 4, + [101725] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7532), 1, - anon_sym_EQ_GT, + ACTIONS(7524), 1, + sym_identifier, STATE(3790), 2, sym_line_comment, sym_block_comment, - [101627] = 4, + [101739] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7534), 1, - anon_sym_RBRACE, + ACTIONS(7526), 1, + anon_sym_COLON_COLON, STATE(3791), 2, sym_line_comment, sym_block_comment, - [101641] = 4, + [101753] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7536), 1, + ACTIONS(7528), 1, sym_identifier, STATE(3792), 2, sym_line_comment, sym_block_comment, - [101655] = 4, + [101767] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7538), 1, - anon_sym_COLON_COLON, + ACTIONS(7530), 1, + sym_identifier, STATE(3793), 2, sym_line_comment, sym_block_comment, - [101669] = 4, + [101781] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6180), 1, + ACTIONS(7532), 1, anon_sym_RBRACE, STATE(3794), 2, sym_line_comment, sym_block_comment, - [101683] = 4, + [101795] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7540), 1, + ACTIONS(7534), 1, sym_identifier, STATE(3795), 2, sym_line_comment, sym_block_comment, - [101697] = 4, + [101809] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7542), 1, - anon_sym_fn, + ACTIONS(5892), 1, + anon_sym_RPAREN, STATE(3796), 2, sym_line_comment, sym_block_comment, - [101711] = 4, + [101823] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(6441), 1, - anon_sym_RBRACE, + ACTIONS(7536), 1, + sym_identifier, STATE(3797), 2, sym_line_comment, sym_block_comment, - [101725] = 4, + [101837] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7544), 1, - anon_sym_RBRACK, + ACTIONS(7538), 1, + anon_sym_LPAREN, STATE(3798), 2, sym_line_comment, sym_block_comment, - [101739] = 4, + [101851] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7546), 1, - anon_sym_SEMI, + ACTIONS(7540), 1, + sym_identifier, STATE(3799), 2, sym_line_comment, sym_block_comment, - [101753] = 4, + [101865] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7548), 1, - anon_sym_SEMI, + ACTIONS(7542), 1, + anon_sym_EQ_GT, STATE(3800), 2, sym_line_comment, sym_block_comment, - [101767] = 4, + [101879] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(4353), 1, - anon_sym_RPAREN, + ACTIONS(7544), 1, + sym_identifier, STATE(3801), 2, sym_line_comment, sym_block_comment, - [101781] = 4, + [101893] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(3183), 1, - anon_sym_PLUS, + ACTIONS(7546), 1, + sym_identifier, STATE(3802), 2, sym_line_comment, sym_block_comment, - [101795] = 4, + [101907] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7550), 1, - sym_identifier, + ACTIONS(7548), 1, + anon_sym_RBRACK, STATE(3803), 2, sym_line_comment, sym_block_comment, - [101809] = 4, + [101921] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7552), 1, - anon_sym_COLON_COLON, + ACTIONS(7550), 1, + sym_identifier, STATE(3804), 2, sym_line_comment, sym_block_comment, - [101823] = 4, + [101935] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(5887), 1, - anon_sym_RPAREN, + ACTIONS(7552), 1, + anon_sym_RBRACK, STATE(3805), 2, sym_line_comment, sym_block_comment, - [101837] = 4, + [101949] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, ACTIONS(7554), 1, - sym_identifier, + anon_sym_fn, STATE(3806), 2, sym_line_comment, sym_block_comment, - [101851] = 4, + [101963] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, @@ -199191,94 +198091,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(3807), 2, sym_line_comment, sym_block_comment, - [101865] = 4, + [101977] = 4, ACTIONS(105), 1, anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, ACTIONS(7558), 1, - sym_identifier, - STATE(3808), 2, - sym_line_comment, - sym_block_comment, - [101879] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(7560), 1, - sym_identifier, - STATE(3809), 2, - sym_line_comment, - sym_block_comment, - [101893] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(7562), 1, - sym_identifier, - STATE(3810), 2, - sym_line_comment, - sym_block_comment, - [101907] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(7564), 1, - sym_identifier, - STATE(3811), 2, - sym_line_comment, - sym_block_comment, - [101921] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(7566), 1, - anon_sym_SEMI, - STATE(3812), 2, - sym_line_comment, - sym_block_comment, - [101935] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(7568), 1, - anon_sym_SEMI, - STATE(3813), 2, - sym_line_comment, - sym_block_comment, - [101949] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(7570), 1, - anon_sym_COLON, - STATE(3814), 2, - sym_line_comment, - sym_block_comment, - [101963] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(7572), 1, anon_sym_fn, - STATE(3815), 2, - sym_line_comment, - sym_block_comment, - [101977] = 4, - ACTIONS(105), 1, - anon_sym_SLASH_SLASH, - ACTIONS(107), 1, - anon_sym_SLASH_STAR, - ACTIONS(7574), 1, - anon_sym_LT, - STATE(3816), 2, + STATE(3808), 2, sym_line_comment, sym_block_comment, [101991] = 4, @@ -199286,6467 +198106,6459 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(107), 1, anon_sym_SLASH_STAR, - ACTIONS(7576), 1, + ACTIONS(7560), 1, anon_sym_COLON_COLON, - STATE(3817), 2, + STATE(3809), 2, sym_line_comment, sym_block_comment, [102005] = 1, - ACTIONS(7578), 1, + ACTIONS(7562), 1, ts_builtin_sym_end, [102009] = 1, - ACTIONS(7580), 1, + ACTIONS(7564), 1, ts_builtin_sym_end, [102013] = 1, - ACTIONS(7582), 1, + ACTIONS(7566), 1, ts_builtin_sym_end, [102017] = 1, - ACTIONS(7584), 1, + ACTIONS(7568), 1, ts_builtin_sym_end, [102021] = 1, - ACTIONS(7586), 1, + ACTIONS(7570), 1, ts_builtin_sym_end, [102025] = 1, - ACTIONS(7588), 1, + ACTIONS(7572), 1, ts_builtin_sym_end, [102029] = 1, - ACTIONS(7590), 1, + ACTIONS(7574), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1064)] = 0, - [SMALL_STATE(1065)] = 74, - [SMALL_STATE(1066)] = 146, - [SMALL_STATE(1067)] = 247, - [SMALL_STATE(1068)] = 348, - [SMALL_STATE(1069)] = 449, - [SMALL_STATE(1070)] = 514, - [SMALL_STATE(1071)] = 591, - [SMALL_STATE(1072)] = 668, - [SMALL_STATE(1073)] = 747, - [SMALL_STATE(1074)] = 812, - [SMALL_STATE(1075)] = 877, - [SMALL_STATE(1076)] = 942, - [SMALL_STATE(1077)] = 1007, - [SMALL_STATE(1078)] = 1076, - [SMALL_STATE(1079)] = 1141, - [SMALL_STATE(1080)] = 1206, - [SMALL_STATE(1081)] = 1283, - [SMALL_STATE(1082)] = 1348, - [SMALL_STATE(1083)] = 1413, - [SMALL_STATE(1084)] = 1515, - [SMALL_STATE(1085)] = 1579, - [SMALL_STATE(1086)] = 1681, - [SMALL_STATE(1087)] = 1749, - [SMALL_STATE(1088)] = 1813, - [SMALL_STATE(1089)] = 1887, - [SMALL_STATE(1090)] = 1989, - [SMALL_STATE(1091)] = 2053, - [SMALL_STATE(1092)] = 2117, - [SMALL_STATE(1093)] = 2181, - [SMALL_STATE(1094)] = 2252, - [SMALL_STATE(1095)] = 2323, - [SMALL_STATE(1096)] = 2388, - [SMALL_STATE(1097)] = 2459, - [SMALL_STATE(1098)] = 2522, - [SMALL_STATE(1099)] = 2593, - [SMALL_STATE(1100)] = 2656, - [SMALL_STATE(1101)] = 2719, - [SMALL_STATE(1102)] = 2786, - [SMALL_STATE(1103)] = 2853, - [SMALL_STATE(1104)] = 2916, - [SMALL_STATE(1105)] = 2983, - [SMALL_STATE(1106)] = 3048, - [SMALL_STATE(1107)] = 3115, - [SMALL_STATE(1108)] = 3177, - [SMALL_STATE(1109)] = 3281, - [SMALL_STATE(1110)] = 3343, - [SMALL_STATE(1111)] = 3405, - [SMALL_STATE(1112)] = 3467, - [SMALL_STATE(1113)] = 3529, - [SMALL_STATE(1114)] = 3591, - [SMALL_STATE(1115)] = 3653, - [SMALL_STATE(1116)] = 3715, - [SMALL_STATE(1117)] = 3777, - [SMALL_STATE(1118)] = 3839, - [SMALL_STATE(1119)] = 3901, - [SMALL_STATE(1120)] = 3963, - [SMALL_STATE(1121)] = 4025, - [SMALL_STATE(1122)] = 4087, - [SMALL_STATE(1123)] = 4149, - [SMALL_STATE(1124)] = 4211, - [SMALL_STATE(1125)] = 4273, - [SMALL_STATE(1126)] = 4335, - [SMALL_STATE(1127)] = 4397, - [SMALL_STATE(1128)] = 4459, - [SMALL_STATE(1129)] = 4521, - [SMALL_STATE(1130)] = 4583, - [SMALL_STATE(1131)] = 4645, - [SMALL_STATE(1132)] = 4707, - [SMALL_STATE(1133)] = 4769, - [SMALL_STATE(1134)] = 4831, - [SMALL_STATE(1135)] = 4893, - [SMALL_STATE(1136)] = 4955, - [SMALL_STATE(1137)] = 5017, - [SMALL_STATE(1138)] = 5079, - [SMALL_STATE(1139)] = 5141, - [SMALL_STATE(1140)] = 5203, - [SMALL_STATE(1141)] = 5265, - [SMALL_STATE(1142)] = 5327, - [SMALL_STATE(1143)] = 5389, - [SMALL_STATE(1144)] = 5451, - [SMALL_STATE(1145)] = 5513, - [SMALL_STATE(1146)] = 5575, - [SMALL_STATE(1147)] = 5637, - [SMALL_STATE(1148)] = 5699, - [SMALL_STATE(1149)] = 5761, - [SMALL_STATE(1150)] = 5823, - [SMALL_STATE(1151)] = 5885, - [SMALL_STATE(1152)] = 5947, - [SMALL_STATE(1153)] = 6009, - [SMALL_STATE(1154)] = 6071, - [SMALL_STATE(1155)] = 6133, - [SMALL_STATE(1156)] = 6195, - [SMALL_STATE(1157)] = 6257, - [SMALL_STATE(1158)] = 6319, - [SMALL_STATE(1159)] = 6381, - [SMALL_STATE(1160)] = 6443, - [SMALL_STATE(1161)] = 6505, - [SMALL_STATE(1162)] = 6567, - [SMALL_STATE(1163)] = 6629, - [SMALL_STATE(1164)] = 6691, - [SMALL_STATE(1165)] = 6753, - [SMALL_STATE(1166)] = 6815, - [SMALL_STATE(1167)] = 6877, - [SMALL_STATE(1168)] = 6939, - [SMALL_STATE(1169)] = 7001, - [SMALL_STATE(1170)] = 7063, - [SMALL_STATE(1171)] = 7125, - [SMALL_STATE(1172)] = 7187, - [SMALL_STATE(1173)] = 7249, - [SMALL_STATE(1174)] = 7311, - [SMALL_STATE(1175)] = 7373, - [SMALL_STATE(1176)] = 7435, - [SMALL_STATE(1177)] = 7497, - [SMALL_STATE(1178)] = 7559, - [SMALL_STATE(1179)] = 7621, - [SMALL_STATE(1180)] = 7683, - [SMALL_STATE(1181)] = 7745, - [SMALL_STATE(1182)] = 7807, - [SMALL_STATE(1183)] = 7869, - [SMALL_STATE(1184)] = 7931, - [SMALL_STATE(1185)] = 7993, - [SMALL_STATE(1186)] = 8055, - [SMALL_STATE(1187)] = 8117, - [SMALL_STATE(1188)] = 8179, - [SMALL_STATE(1189)] = 8241, - [SMALL_STATE(1190)] = 8303, - [SMALL_STATE(1191)] = 8365, - [SMALL_STATE(1192)] = 8427, - [SMALL_STATE(1193)] = 8489, - [SMALL_STATE(1194)] = 8551, - [SMALL_STATE(1195)] = 8613, - [SMALL_STATE(1196)] = 8675, - [SMALL_STATE(1197)] = 8737, - [SMALL_STATE(1198)] = 8799, - [SMALL_STATE(1199)] = 8861, - [SMALL_STATE(1200)] = 8923, - [SMALL_STATE(1201)] = 8985, - [SMALL_STATE(1202)] = 9047, - [SMALL_STATE(1203)] = 9109, - [SMALL_STATE(1204)] = 9171, - [SMALL_STATE(1205)] = 9233, - [SMALL_STATE(1206)] = 9295, - [SMALL_STATE(1207)] = 9357, - [SMALL_STATE(1208)] = 9419, - [SMALL_STATE(1209)] = 9481, - [SMALL_STATE(1210)] = 9543, - [SMALL_STATE(1211)] = 9605, - [SMALL_STATE(1212)] = 9667, - [SMALL_STATE(1213)] = 9729, - [SMALL_STATE(1214)] = 9791, - [SMALL_STATE(1215)] = 9853, - [SMALL_STATE(1216)] = 9915, - [SMALL_STATE(1217)] = 9977, - [SMALL_STATE(1218)] = 10039, - [SMALL_STATE(1219)] = 10101, - [SMALL_STATE(1220)] = 10163, - [SMALL_STATE(1221)] = 10225, - [SMALL_STATE(1222)] = 10287, - [SMALL_STATE(1223)] = 10349, - [SMALL_STATE(1224)] = 10411, - [SMALL_STATE(1225)] = 10473, - [SMALL_STATE(1226)] = 10535, - [SMALL_STATE(1227)] = 10597, - [SMALL_STATE(1228)] = 10659, - [SMALL_STATE(1229)] = 10721, - [SMALL_STATE(1230)] = 10783, - [SMALL_STATE(1231)] = 10845, - [SMALL_STATE(1232)] = 10907, - [SMALL_STATE(1233)] = 10969, - [SMALL_STATE(1234)] = 11031, - [SMALL_STATE(1235)] = 11093, - [SMALL_STATE(1236)] = 11155, - [SMALL_STATE(1237)] = 11217, - [SMALL_STATE(1238)] = 11279, - [SMALL_STATE(1239)] = 11341, - [SMALL_STATE(1240)] = 11403, - [SMALL_STATE(1241)] = 11465, - [SMALL_STATE(1242)] = 11527, - [SMALL_STATE(1243)] = 11589, - [SMALL_STATE(1244)] = 11651, - [SMALL_STATE(1245)] = 11713, - [SMALL_STATE(1246)] = 11775, - [SMALL_STATE(1247)] = 11837, - [SMALL_STATE(1248)] = 11899, - [SMALL_STATE(1249)] = 11961, - [SMALL_STATE(1250)] = 12023, - [SMALL_STATE(1251)] = 12085, - [SMALL_STATE(1252)] = 12147, - [SMALL_STATE(1253)] = 12209, - [SMALL_STATE(1254)] = 12271, - [SMALL_STATE(1255)] = 12333, - [SMALL_STATE(1256)] = 12395, - [SMALL_STATE(1257)] = 12457, - [SMALL_STATE(1258)] = 12519, - [SMALL_STATE(1259)] = 12581, - [SMALL_STATE(1260)] = 12643, - [SMALL_STATE(1261)] = 12705, - [SMALL_STATE(1262)] = 12767, - [SMALL_STATE(1263)] = 12829, - [SMALL_STATE(1264)] = 12891, - [SMALL_STATE(1265)] = 12953, - [SMALL_STATE(1266)] = 13015, - [SMALL_STATE(1267)] = 13077, - [SMALL_STATE(1268)] = 13139, - [SMALL_STATE(1269)] = 13201, - [SMALL_STATE(1270)] = 13263, - [SMALL_STATE(1271)] = 13325, - [SMALL_STATE(1272)] = 13387, - [SMALL_STATE(1273)] = 13449, - [SMALL_STATE(1274)] = 13511, - [SMALL_STATE(1275)] = 13573, - [SMALL_STATE(1276)] = 13635, - [SMALL_STATE(1277)] = 13697, - [SMALL_STATE(1278)] = 13759, - [SMALL_STATE(1279)] = 13821, - [SMALL_STATE(1280)] = 13883, - [SMALL_STATE(1281)] = 13945, - [SMALL_STATE(1282)] = 14007, - [SMALL_STATE(1283)] = 14069, - [SMALL_STATE(1284)] = 14131, - [SMALL_STATE(1285)] = 14193, - [SMALL_STATE(1286)] = 14255, - [SMALL_STATE(1287)] = 14317, - [SMALL_STATE(1288)] = 14379, - [SMALL_STATE(1289)] = 14441, - [SMALL_STATE(1290)] = 14503, - [SMALL_STATE(1291)] = 14565, - [SMALL_STATE(1292)] = 14627, - [SMALL_STATE(1293)] = 14689, - [SMALL_STATE(1294)] = 14751, - [SMALL_STATE(1295)] = 14813, - [SMALL_STATE(1296)] = 14875, - [SMALL_STATE(1297)] = 14937, - [SMALL_STATE(1298)] = 14999, - [SMALL_STATE(1299)] = 15061, - [SMALL_STATE(1300)] = 15123, - [SMALL_STATE(1301)] = 15185, - [SMALL_STATE(1302)] = 15247, - [SMALL_STATE(1303)] = 15309, - [SMALL_STATE(1304)] = 15371, - [SMALL_STATE(1305)] = 15433, - [SMALL_STATE(1306)] = 15495, - [SMALL_STATE(1307)] = 15557, - [SMALL_STATE(1308)] = 15619, - [SMALL_STATE(1309)] = 15681, - [SMALL_STATE(1310)] = 15743, - [SMALL_STATE(1311)] = 15805, - [SMALL_STATE(1312)] = 15867, - [SMALL_STATE(1313)] = 15929, - [SMALL_STATE(1314)] = 15991, - [SMALL_STATE(1315)] = 16053, - [SMALL_STATE(1316)] = 16115, - [SMALL_STATE(1317)] = 16177, - [SMALL_STATE(1318)] = 16239, - [SMALL_STATE(1319)] = 16301, - [SMALL_STATE(1320)] = 16363, - [SMALL_STATE(1321)] = 16425, - [SMALL_STATE(1322)] = 16487, - [SMALL_STATE(1323)] = 16549, - [SMALL_STATE(1324)] = 16611, - [SMALL_STATE(1325)] = 16673, - [SMALL_STATE(1326)] = 16735, - [SMALL_STATE(1327)] = 16797, - [SMALL_STATE(1328)] = 16859, - [SMALL_STATE(1329)] = 16921, - [SMALL_STATE(1330)] = 16983, - [SMALL_STATE(1331)] = 17045, - [SMALL_STATE(1332)] = 17107, - [SMALL_STATE(1333)] = 17169, - [SMALL_STATE(1334)] = 17231, - [SMALL_STATE(1335)] = 17293, - [SMALL_STATE(1336)] = 17355, - [SMALL_STATE(1337)] = 17417, - [SMALL_STATE(1338)] = 17479, - [SMALL_STATE(1339)] = 17541, - [SMALL_STATE(1340)] = 17603, - [SMALL_STATE(1341)] = 17665, - [SMALL_STATE(1342)] = 17727, - [SMALL_STATE(1343)] = 17789, - [SMALL_STATE(1344)] = 17851, - [SMALL_STATE(1345)] = 17913, - [SMALL_STATE(1346)] = 17975, - [SMALL_STATE(1347)] = 18037, - [SMALL_STATE(1348)] = 18099, - [SMALL_STATE(1349)] = 18161, - [SMALL_STATE(1350)] = 18223, - [SMALL_STATE(1351)] = 18285, - [SMALL_STATE(1352)] = 18347, - [SMALL_STATE(1353)] = 18409, - [SMALL_STATE(1354)] = 18471, - [SMALL_STATE(1355)] = 18533, - [SMALL_STATE(1356)] = 18595, - [SMALL_STATE(1357)] = 18657, - [SMALL_STATE(1358)] = 18719, - [SMALL_STATE(1359)] = 18781, - [SMALL_STATE(1360)] = 18843, - [SMALL_STATE(1361)] = 18905, - [SMALL_STATE(1362)] = 18967, - [SMALL_STATE(1363)] = 19029, - [SMALL_STATE(1364)] = 19091, - [SMALL_STATE(1365)] = 19153, - [SMALL_STATE(1366)] = 19215, - [SMALL_STATE(1367)] = 19277, - [SMALL_STATE(1368)] = 19339, - [SMALL_STATE(1369)] = 19401, - [SMALL_STATE(1370)] = 19463, - [SMALL_STATE(1371)] = 19525, - [SMALL_STATE(1372)] = 19587, - [SMALL_STATE(1373)] = 19649, - [SMALL_STATE(1374)] = 19711, - [SMALL_STATE(1375)] = 19779, - [SMALL_STATE(1376)] = 19883, - [SMALL_STATE(1377)] = 19951, - [SMALL_STATE(1378)] = 20013, - [SMALL_STATE(1379)] = 20075, - [SMALL_STATE(1380)] = 20137, - [SMALL_STATE(1381)] = 20241, - [SMALL_STATE(1382)] = 20303, - [SMALL_STATE(1383)] = 20365, - [SMALL_STATE(1384)] = 20469, - [SMALL_STATE(1385)] = 20531, - [SMALL_STATE(1386)] = 20601, - [SMALL_STATE(1387)] = 20663, - [SMALL_STATE(1388)] = 20757, - [SMALL_STATE(1389)] = 20819, - [SMALL_STATE(1390)] = 20881, - [SMALL_STATE(1391)] = 20943, - [SMALL_STATE(1392)] = 21037, - [SMALL_STATE(1393)] = 21131, - [SMALL_STATE(1394)] = 21193, - [SMALL_STATE(1395)] = 21256, - [SMALL_STATE(1396)] = 21319, - [SMALL_STATE(1397)] = 21382, - [SMALL_STATE(1398)] = 21479, - [SMALL_STATE(1399)] = 21542, - [SMALL_STATE(1400)] = 21603, - [SMALL_STATE(1401)] = 21668, - [SMALL_STATE(1402)] = 21729, - [SMALL_STATE(1403)] = 21792, - [SMALL_STATE(1404)] = 21853, - [SMALL_STATE(1405)] = 21914, - [SMALL_STATE(1406)] = 21977, - [SMALL_STATE(1407)] = 22040, - [SMALL_STATE(1408)] = 22115, - [SMALL_STATE(1409)] = 22178, - [SMALL_STATE(1410)] = 22239, - [SMALL_STATE(1411)] = 22300, - [SMALL_STATE(1412)] = 22363, - [SMALL_STATE(1413)] = 22428, - [SMALL_STATE(1414)] = 22491, - [SMALL_STATE(1415)] = 22566, - [SMALL_STATE(1416)] = 22629, - [SMALL_STATE(1417)] = 22690, - [SMALL_STATE(1418)] = 22751, - [SMALL_STATE(1419)] = 22814, - [SMALL_STATE(1420)] = 22875, - [SMALL_STATE(1421)] = 22938, - [SMALL_STATE(1422)] = 23001, - [SMALL_STATE(1423)] = 23064, - [SMALL_STATE(1424)] = 23125, - [SMALL_STATE(1425)] = 23188, - [SMALL_STATE(1426)] = 23251, - [SMALL_STATE(1427)] = 23312, - [SMALL_STATE(1428)] = 23377, - [SMALL_STATE(1429)] = 23438, - [SMALL_STATE(1430)] = 23499, - [SMALL_STATE(1431)] = 23560, - [SMALL_STATE(1432)] = 23621, - [SMALL_STATE(1433)] = 23682, - [SMALL_STATE(1434)] = 23743, - [SMALL_STATE(1435)] = 23806, - [SMALL_STATE(1436)] = 23866, - [SMALL_STATE(1437)] = 23926, - [SMALL_STATE(1438)] = 23986, - [SMALL_STATE(1439)] = 24046, - [SMALL_STATE(1440)] = 24106, - [SMALL_STATE(1441)] = 24166, - [SMALL_STATE(1442)] = 24226, - [SMALL_STATE(1443)] = 24286, - [SMALL_STATE(1444)] = 24346, - [SMALL_STATE(1445)] = 24406, - [SMALL_STATE(1446)] = 24466, - [SMALL_STATE(1447)] = 24526, - [SMALL_STATE(1448)] = 24586, - [SMALL_STATE(1449)] = 24646, - [SMALL_STATE(1450)] = 24706, - [SMALL_STATE(1451)] = 24766, - [SMALL_STATE(1452)] = 24826, - [SMALL_STATE(1453)] = 24886, - [SMALL_STATE(1454)] = 24946, - [SMALL_STATE(1455)] = 25006, - [SMALL_STATE(1456)] = 25066, - [SMALL_STATE(1457)] = 25126, - [SMALL_STATE(1458)] = 25186, - [SMALL_STATE(1459)] = 25246, - [SMALL_STATE(1460)] = 25320, - [SMALL_STATE(1461)] = 25380, - [SMALL_STATE(1462)] = 25440, - [SMALL_STATE(1463)] = 25500, - [SMALL_STATE(1464)] = 25560, - [SMALL_STATE(1465)] = 25620, - [SMALL_STATE(1466)] = 25680, - [SMALL_STATE(1467)] = 25740, - [SMALL_STATE(1468)] = 25800, - [SMALL_STATE(1469)] = 25860, - [SMALL_STATE(1470)] = 25920, - [SMALL_STATE(1471)] = 25980, - [SMALL_STATE(1472)] = 26046, - [SMALL_STATE(1473)] = 26106, - [SMALL_STATE(1474)] = 26166, - [SMALL_STATE(1475)] = 26226, - [SMALL_STATE(1476)] = 26286, - [SMALL_STATE(1477)] = 26346, - [SMALL_STATE(1478)] = 26406, - [SMALL_STATE(1479)] = 26472, - [SMALL_STATE(1480)] = 26532, - [SMALL_STATE(1481)] = 26592, - [SMALL_STATE(1482)] = 26652, - [SMALL_STATE(1483)] = 26712, - [SMALL_STATE(1484)] = 26772, - [SMALL_STATE(1485)] = 26832, - [SMALL_STATE(1486)] = 26892, - [SMALL_STATE(1487)] = 26952, - [SMALL_STATE(1488)] = 27012, - [SMALL_STATE(1489)] = 27072, - [SMALL_STATE(1490)] = 27132, - [SMALL_STATE(1491)] = 27192, - [SMALL_STATE(1492)] = 27252, - [SMALL_STATE(1493)] = 27312, - [SMALL_STATE(1494)] = 27374, - [SMALL_STATE(1495)] = 27434, - [SMALL_STATE(1496)] = 27494, - [SMALL_STATE(1497)] = 27554, - [SMALL_STATE(1498)] = 27614, - [SMALL_STATE(1499)] = 27674, - [SMALL_STATE(1500)] = 27734, - [SMALL_STATE(1501)] = 27794, - [SMALL_STATE(1502)] = 27862, - [SMALL_STATE(1503)] = 27922, - [SMALL_STATE(1504)] = 27982, - [SMALL_STATE(1505)] = 28042, - [SMALL_STATE(1506)] = 28104, - [SMALL_STATE(1507)] = 28164, - [SMALL_STATE(1508)] = 28224, - [SMALL_STATE(1509)] = 28284, - [SMALL_STATE(1510)] = 28344, - [SMALL_STATE(1511)] = 28404, - [SMALL_STATE(1512)] = 28464, - [SMALL_STATE(1513)] = 28524, - [SMALL_STATE(1514)] = 28584, - [SMALL_STATE(1515)] = 28644, - [SMALL_STATE(1516)] = 28704, - [SMALL_STATE(1517)] = 28764, - [SMALL_STATE(1518)] = 28824, - [SMALL_STATE(1519)] = 28884, - [SMALL_STATE(1520)] = 28950, - [SMALL_STATE(1521)] = 29010, - [SMALL_STATE(1522)] = 29070, - [SMALL_STATE(1523)] = 29134, - [SMALL_STATE(1524)] = 29194, - [SMALL_STATE(1525)] = 29258, - [SMALL_STATE(1526)] = 29318, - [SMALL_STATE(1527)] = 29378, - [SMALL_STATE(1528)] = 29438, - [SMALL_STATE(1529)] = 29498, - [SMALL_STATE(1530)] = 29558, - [SMALL_STATE(1531)] = 29618, - [SMALL_STATE(1532)] = 29678, - [SMALL_STATE(1533)] = 29738, - [SMALL_STATE(1534)] = 29798, - [SMALL_STATE(1535)] = 29858, - [SMALL_STATE(1536)] = 29918, - [SMALL_STATE(1537)] = 29978, - [SMALL_STATE(1538)] = 30038, - [SMALL_STATE(1539)] = 30098, - [SMALL_STATE(1540)] = 30158, - [SMALL_STATE(1541)] = 30218, - [SMALL_STATE(1542)] = 30278, - [SMALL_STATE(1543)] = 30338, - [SMALL_STATE(1544)] = 30398, - [SMALL_STATE(1545)] = 30464, - [SMALL_STATE(1546)] = 30524, - [SMALL_STATE(1547)] = 30584, - [SMALL_STATE(1548)] = 30644, - [SMALL_STATE(1549)] = 30704, - [SMALL_STATE(1550)] = 30764, - [SMALL_STATE(1551)] = 30824, - [SMALL_STATE(1552)] = 30884, - [SMALL_STATE(1553)] = 30944, - [SMALL_STATE(1554)] = 31004, - [SMALL_STATE(1555)] = 31064, - [SMALL_STATE(1556)] = 31124, - [SMALL_STATE(1557)] = 31184, - [SMALL_STATE(1558)] = 31245, - [SMALL_STATE(1559)] = 31306, - [SMALL_STATE(1560)] = 31393, - [SMALL_STATE(1561)] = 31452, - [SMALL_STATE(1562)] = 31539, - [SMALL_STATE(1563)] = 31626, - [SMALL_STATE(1564)] = 31685, - [SMALL_STATE(1565)] = 31744, - [SMALL_STATE(1566)] = 31805, - [SMALL_STATE(1567)] = 31874, - [SMALL_STATE(1568)] = 31935, - [SMALL_STATE(1569)] = 32022, - [SMALL_STATE(1570)] = 32093, - [SMALL_STATE(1571)] = 32180, - [SMALL_STATE(1572)] = 32267, - [SMALL_STATE(1573)] = 32353, - [SMALL_STATE(1574)] = 32423, - [SMALL_STATE(1575)] = 32507, - [SMALL_STATE(1576)] = 32589, - [SMALL_STATE(1577)] = 32675, - [SMALL_STATE(1578)] = 32745, - [SMALL_STATE(1579)] = 32813, - [SMALL_STATE(1580)] = 32887, - [SMALL_STATE(1581)] = 32959, - [SMALL_STATE(1582)] = 33035, - [SMALL_STATE(1583)] = 33125, - [SMALL_STATE(1584)] = 33215, - [SMALL_STATE(1585)] = 33293, - [SMALL_STATE(1586)] = 33385, - [SMALL_STATE(1587)] = 33477, - [SMALL_STATE(1588)] = 33547, - [SMALL_STATE(1589)] = 33611, - [SMALL_STATE(1590)] = 33677, - [SMALL_STATE(1591)] = 33767, - [SMALL_STATE(1592)] = 33857, - [SMALL_STATE(1593)] = 33949, - [SMALL_STATE(1594)] = 34041, - [SMALL_STATE(1595)] = 34131, - [SMALL_STATE(1596)] = 34221, - [SMALL_STATE(1597)] = 34291, - [SMALL_STATE(1598)] = 34354, - [SMALL_STATE(1599)] = 34421, - [SMALL_STATE(1600)] = 34484, - [SMALL_STATE(1601)] = 34547, - [SMALL_STATE(1602)] = 34610, - [SMALL_STATE(1603)] = 34675, - [SMALL_STATE(1604)] = 34765, - [SMALL_STATE(1605)] = 34829, - [SMALL_STATE(1606)] = 34885, - [SMALL_STATE(1607)] = 34975, - [SMALL_STATE(1608)] = 35033, - [SMALL_STATE(1609)] = 35089, - [SMALL_STATE(1610)] = 35153, - [SMALL_STATE(1611)] = 35217, - [SMALL_STATE(1612)] = 35275, - [SMALL_STATE(1613)] = 35335, - [SMALL_STATE(1614)] = 35395, - [SMALL_STATE(1615)] = 35455, - [SMALL_STATE(1616)] = 35515, - [SMALL_STATE(1617)] = 35571, - [SMALL_STATE(1618)] = 35627, - [SMALL_STATE(1619)] = 35717, - [SMALL_STATE(1620)] = 35777, - [SMALL_STATE(1621)] = 35837, - [SMALL_STATE(1622)] = 35897, - [SMALL_STATE(1623)] = 35957, - [SMALL_STATE(1624)] = 36015, - [SMALL_STATE(1625)] = 36105, - [SMALL_STATE(1626)] = 36169, - [SMALL_STATE(1627)] = 36227, - [SMALL_STATE(1628)] = 36322, - [SMALL_STATE(1629)] = 36379, - [SMALL_STATE(1630)] = 36474, - [SMALL_STATE(1631)] = 36529, - [SMALL_STATE(1632)] = 36586, - [SMALL_STATE(1633)] = 36681, - [SMALL_STATE(1634)] = 36738, - [SMALL_STATE(1635)] = 36793, - [SMALL_STATE(1636)] = 36848, - [SMALL_STATE(1637)] = 36943, - [SMALL_STATE(1638)] = 37000, - [SMALL_STATE(1639)] = 37095, - [SMALL_STATE(1640)] = 37152, - [SMALL_STATE(1641)] = 37207, - [SMALL_STATE(1642)] = 37264, - [SMALL_STATE(1643)] = 37323, - [SMALL_STATE(1644)] = 37418, - [SMALL_STATE(1645)] = 37477, - [SMALL_STATE(1646)] = 37532, - [SMALL_STATE(1647)] = 37627, - [SMALL_STATE(1648)] = 37682, - [SMALL_STATE(1649)] = 37741, - [SMALL_STATE(1650)] = 37836, - [SMALL_STATE(1651)] = 37895, - [SMALL_STATE(1652)] = 37976, - [SMALL_STATE(1653)] = 38031, - [SMALL_STATE(1654)] = 38126, - [SMALL_STATE(1655)] = 38181, - [SMALL_STATE(1656)] = 38238, - [SMALL_STATE(1657)] = 38333, - [SMALL_STATE(1658)] = 38428, - [SMALL_STATE(1659)] = 38523, - [SMALL_STATE(1660)] = 38577, - [SMALL_STATE(1661)] = 38633, - [SMALL_STATE(1662)] = 38713, - [SMALL_STATE(1663)] = 38769, - [SMALL_STATE(1664)] = 38825, - [SMALL_STATE(1665)] = 38881, - [SMALL_STATE(1666)] = 38969, - [SMALL_STATE(1667)] = 39025, - [SMALL_STATE(1668)] = 39117, - [SMALL_STATE(1669)] = 39195, - [SMALL_STATE(1670)] = 39269, - [SMALL_STATE(1671)] = 39361, - [SMALL_STATE(1672)] = 39417, - [SMALL_STATE(1673)] = 39475, - [SMALL_STATE(1674)] = 39529, - [SMALL_STATE(1675)] = 39585, - [SMALL_STATE(1676)] = 39639, - [SMALL_STATE(1677)] = 39727, - [SMALL_STATE(1678)] = 39783, - [SMALL_STATE(1679)] = 39837, - [SMALL_STATE(1680)] = 39891, - [SMALL_STATE(1681)] = 39983, - [SMALL_STATE(1682)] = 40037, - [SMALL_STATE(1683)] = 40091, - [SMALL_STATE(1684)] = 40157, - [SMALL_STATE(1685)] = 40213, - [SMALL_STATE(1686)] = 40269, - [SMALL_STATE(1687)] = 40355, - [SMALL_STATE(1688)] = 40409, - [SMALL_STATE(1689)] = 40487, - [SMALL_STATE(1690)] = 40541, - [SMALL_STATE(1691)] = 40627, - [SMALL_STATE(1692)] = 40691, - [SMALL_STATE(1693)] = 40773, - [SMALL_STATE(1694)] = 40827, - [SMALL_STATE(1695)] = 40897, - [SMALL_STATE(1696)] = 40953, - [SMALL_STATE(1697)] = 41031, - [SMALL_STATE(1698)] = 41119, - [SMALL_STATE(1699)] = 41211, - [SMALL_STATE(1700)] = 41293, - [SMALL_STATE(1701)] = 41365, - [SMALL_STATE(1702)] = 41451, - [SMALL_STATE(1703)] = 41507, - [SMALL_STATE(1704)] = 41593, - [SMALL_STATE(1705)] = 41681, - [SMALL_STATE(1706)] = 41735, - [SMALL_STATE(1707)] = 41821, - [SMALL_STATE(1708)] = 41913, - [SMALL_STATE(1709)] = 41967, - [SMALL_STATE(1710)] = 42021, - [SMALL_STATE(1711)] = 42089, - [SMALL_STATE(1712)] = 42177, - [SMALL_STATE(1713)] = 42233, - [SMALL_STATE(1714)] = 42289, - [SMALL_STATE(1715)] = 42377, - [SMALL_STATE(1716)] = 42433, - [SMALL_STATE(1717)] = 42489, - [SMALL_STATE(1718)] = 42543, - [SMALL_STATE(1719)] = 42597, - [SMALL_STATE(1720)] = 42689, - [SMALL_STATE(1721)] = 42743, - [SMALL_STATE(1722)] = 42829, - [SMALL_STATE(1723)] = 42882, - [SMALL_STATE(1724)] = 42969, - [SMALL_STATE(1725)] = 43022, - [SMALL_STATE(1726)] = 43109, - [SMALL_STATE(1727)] = 43162, - [SMALL_STATE(1728)] = 43215, - [SMALL_STATE(1729)] = 43268, - [SMALL_STATE(1730)] = 43321, - [SMALL_STATE(1731)] = 43410, - [SMALL_STATE(1732)] = 43463, - [SMALL_STATE(1733)] = 43550, - [SMALL_STATE(1734)] = 43603, - [SMALL_STATE(1735)] = 43690, - [SMALL_STATE(1736)] = 43743, - [SMALL_STATE(1737)] = 43830, - [SMALL_STATE(1738)] = 43915, - [SMALL_STATE(1739)] = 43968, - [SMALL_STATE(1740)] = 44021, - [SMALL_STATE(1741)] = 44074, - [SMALL_STATE(1742)] = 44137, - [SMALL_STATE(1743)] = 44206, - [SMALL_STATE(1744)] = 44273, - [SMALL_STATE(1745)] = 44344, - [SMALL_STATE(1746)] = 44421, - [SMALL_STATE(1747)] = 44500, - [SMALL_STATE(1748)] = 44565, - [SMALL_STATE(1749)] = 44650, - [SMALL_STATE(1750)] = 44735, - [SMALL_STATE(1751)] = 44808, - [SMALL_STATE(1752)] = 44889, - [SMALL_STATE(1753)] = 44942, - [SMALL_STATE(1754)] = 44995, - [SMALL_STATE(1755)] = 45082, - [SMALL_STATE(1756)] = 45135, - [SMALL_STATE(1757)] = 45188, - [SMALL_STATE(1758)] = 45241, - [SMALL_STATE(1759)] = 45294, - [SMALL_STATE(1760)] = 45347, - [SMALL_STATE(1761)] = 45400, - [SMALL_STATE(1762)] = 45453, - [SMALL_STATE(1763)] = 45506, - [SMALL_STATE(1764)] = 45559, - [SMALL_STATE(1765)] = 45646, - [SMALL_STATE(1766)] = 45699, - [SMALL_STATE(1767)] = 45752, - [SMALL_STATE(1768)] = 45805, - [SMALL_STATE(1769)] = 45858, - [SMALL_STATE(1770)] = 45947, - [SMALL_STATE(1771)] = 46000, - [SMALL_STATE(1772)] = 46053, - [SMALL_STATE(1773)] = 46106, - [SMALL_STATE(1774)] = 46159, - [SMALL_STATE(1775)] = 46246, - [SMALL_STATE(1776)] = 46299, - [SMALL_STATE(1777)] = 46386, - [SMALL_STATE(1778)] = 46439, - [SMALL_STATE(1779)] = 46492, - [SMALL_STATE(1780)] = 46545, - [SMALL_STATE(1781)] = 46598, - [SMALL_STATE(1782)] = 46685, - [SMALL_STATE(1783)] = 46738, - [SMALL_STATE(1784)] = 46825, - [SMALL_STATE(1785)] = 46878, - [SMALL_STATE(1786)] = 46931, - [SMALL_STATE(1787)] = 47018, - [SMALL_STATE(1788)] = 47105, - [SMALL_STATE(1789)] = 47194, - [SMALL_STATE(1790)] = 47281, - [SMALL_STATE(1791)] = 47334, - [SMALL_STATE(1792)] = 47409, - [SMALL_STATE(1793)] = 47498, - [SMALL_STATE(1794)] = 47587, - [SMALL_STATE(1795)] = 47640, - [SMALL_STATE(1796)] = 47729, - [SMALL_STATE(1797)] = 47816, - [SMALL_STATE(1798)] = 47905, - [SMALL_STATE(1799)] = 47958, - [SMALL_STATE(1800)] = 48047, - [SMALL_STATE(1801)] = 48136, - [SMALL_STATE(1802)] = 48221, - [SMALL_STATE(1803)] = 48310, - [SMALL_STATE(1804)] = 48363, - [SMALL_STATE(1805)] = 48416, - [SMALL_STATE(1806)] = 48505, - [SMALL_STATE(1807)] = 48558, - [SMALL_STATE(1808)] = 48611, - [SMALL_STATE(1809)] = 48664, - [SMALL_STATE(1810)] = 48753, - [SMALL_STATE(1811)] = 48806, - [SMALL_STATE(1812)] = 48895, - [SMALL_STATE(1813)] = 48948, - [SMALL_STATE(1814)] = 49037, - [SMALL_STATE(1815)] = 49090, - [SMALL_STATE(1816)] = 49179, - [SMALL_STATE(1817)] = 49268, - [SMALL_STATE(1818)] = 49321, - [SMALL_STATE(1819)] = 49374, - [SMALL_STATE(1820)] = 49463, - [SMALL_STATE(1821)] = 49552, - [SMALL_STATE(1822)] = 49639, - [SMALL_STATE(1823)] = 49692, - [SMALL_STATE(1824)] = 49745, - [SMALL_STATE(1825)] = 49834, - [SMALL_STATE(1826)] = 49887, - [SMALL_STATE(1827)] = 49976, - [SMALL_STATE(1828)] = 50063, - [SMALL_STATE(1829)] = 50148, - [SMALL_STATE(1830)] = 50229, - [SMALL_STATE(1831)] = 50314, - [SMALL_STATE(1832)] = 50403, - [SMALL_STATE(1833)] = 50488, - [SMALL_STATE(1834)] = 50573, - [SMALL_STATE(1835)] = 50662, - [SMALL_STATE(1836)] = 50751, - [SMALL_STATE(1837)] = 50840, - [SMALL_STATE(1838)] = 50925, - [SMALL_STATE(1839)] = 50978, - [SMALL_STATE(1840)] = 51031, - [SMALL_STATE(1841)] = 51084, - [SMALL_STATE(1842)] = 51173, - [SMALL_STATE(1843)] = 51236, - [SMALL_STATE(1844)] = 51305, - [SMALL_STATE(1845)] = 51372, - [SMALL_STATE(1846)] = 51461, - [SMALL_STATE(1847)] = 51514, - [SMALL_STATE(1848)] = 51591, - [SMALL_STATE(1849)] = 51670, - [SMALL_STATE(1850)] = 51735, - [SMALL_STATE(1851)] = 51820, - [SMALL_STATE(1852)] = 51905, - [SMALL_STATE(1853)] = 51994, - [SMALL_STATE(1854)] = 52083, - [SMALL_STATE(1855)] = 52172, - [SMALL_STATE(1856)] = 52261, - [SMALL_STATE(1857)] = 52334, - [SMALL_STATE(1858)] = 52415, - [SMALL_STATE(1859)] = 52468, - [SMALL_STATE(1860)] = 52521, - [SMALL_STATE(1861)] = 52610, - [SMALL_STATE(1862)] = 52663, - [SMALL_STATE(1863)] = 52752, - [SMALL_STATE(1864)] = 52805, - [SMALL_STATE(1865)] = 52894, - [SMALL_STATE(1866)] = 52983, - [SMALL_STATE(1867)] = 53072, - [SMALL_STATE(1868)] = 53161, - [SMALL_STATE(1869)] = 53250, - [SMALL_STATE(1870)] = 53339, - [SMALL_STATE(1871)] = 53392, - [SMALL_STATE(1872)] = 53481, - [SMALL_STATE(1873)] = 53570, - [SMALL_STATE(1874)] = 53623, - [SMALL_STATE(1875)] = 53676, - [SMALL_STATE(1876)] = 53765, - [SMALL_STATE(1877)] = 53854, - [SMALL_STATE(1878)] = 53943, - [SMALL_STATE(1879)] = 54032, - [SMALL_STATE(1880)] = 54121, - [SMALL_STATE(1881)] = 54182, - [SMALL_STATE(1882)] = 54271, - [SMALL_STATE(1883)] = 54360, - [SMALL_STATE(1884)] = 54447, - [SMALL_STATE(1885)] = 54522, - [SMALL_STATE(1886)] = 54575, - [SMALL_STATE(1887)] = 54628, - [SMALL_STATE(1888)] = 54717, - [SMALL_STATE(1889)] = 54770, - [SMALL_STATE(1890)] = 54823, - [SMALL_STATE(1891)] = 54876, - [SMALL_STATE(1892)] = 54951, - [SMALL_STATE(1893)] = 55004, - [SMALL_STATE(1894)] = 55057, - [SMALL_STATE(1895)] = 55110, - [SMALL_STATE(1896)] = 55163, - [SMALL_STATE(1897)] = 55216, - [SMALL_STATE(1898)] = 55269, - [SMALL_STATE(1899)] = 55322, - [SMALL_STATE(1900)] = 55375, - [SMALL_STATE(1901)] = 55428, - [SMALL_STATE(1902)] = 55481, - [SMALL_STATE(1903)] = 55534, - [SMALL_STATE(1904)] = 55587, - [SMALL_STATE(1905)] = 55646, - [SMALL_STATE(1906)] = 55735, - [SMALL_STATE(1907)] = 55788, - [SMALL_STATE(1908)] = 55847, - [SMALL_STATE(1909)] = 55900, - [SMALL_STATE(1910)] = 55953, - [SMALL_STATE(1911)] = 56034, - [SMALL_STATE(1912)] = 56093, - [SMALL_STATE(1913)] = 56178, - [SMALL_STATE(1914)] = 56253, - [SMALL_STATE(1915)] = 56306, - [SMALL_STATE(1916)] = 56393, - [SMALL_STATE(1917)] = 56480, - [SMALL_STATE(1918)] = 56565, - [SMALL_STATE(1919)] = 56650, - [SMALL_STATE(1920)] = 56703, - [SMALL_STATE(1921)] = 56756, - [SMALL_STATE(1922)] = 56809, - [SMALL_STATE(1923)] = 56862, - [SMALL_STATE(1924)] = 56915, - [SMALL_STATE(1925)] = 57002, - [SMALL_STATE(1926)] = 57055, - [SMALL_STATE(1927)] = 57108, - [SMALL_STATE(1928)] = 57161, - [SMALL_STATE(1929)] = 57214, - [SMALL_STATE(1930)] = 57267, - [SMALL_STATE(1931)] = 57320, - [SMALL_STATE(1932)] = 57373, - [SMALL_STATE(1933)] = 57426, - [SMALL_STATE(1934)] = 57479, - [SMALL_STATE(1935)] = 57532, - [SMALL_STATE(1936)] = 57619, - [SMALL_STATE(1937)] = 57678, - [SMALL_STATE(1938)] = 57731, - [SMALL_STATE(1939)] = 57784, - [SMALL_STATE(1940)] = 57837, - [SMALL_STATE(1941)] = 57890, - [SMALL_STATE(1942)] = 57943, - [SMALL_STATE(1943)] = 57996, - [SMALL_STATE(1944)] = 58085, - [SMALL_STATE(1945)] = 58160, - [SMALL_STATE(1946)] = 58213, - [SMALL_STATE(1947)] = 58284, - [SMALL_STATE(1948)] = 58370, - [SMALL_STATE(1949)] = 58446, - [SMALL_STATE(1950)] = 58532, - [SMALL_STATE(1951)] = 58618, - [SMALL_STATE(1952)] = 58704, - [SMALL_STATE(1953)] = 58790, - [SMALL_STATE(1954)] = 58876, - [SMALL_STATE(1955)] = 58962, - [SMALL_STATE(1956)] = 59048, - [SMALL_STATE(1957)] = 59134, - [SMALL_STATE(1958)] = 59220, - [SMALL_STATE(1959)] = 59306, - [SMALL_STATE(1960)] = 59392, - [SMALL_STATE(1961)] = 59478, - [SMALL_STATE(1962)] = 59564, - [SMALL_STATE(1963)] = 59650, - [SMALL_STATE(1964)] = 59736, - [SMALL_STATE(1965)] = 59820, - [SMALL_STATE(1966)] = 59906, - [SMALL_STATE(1967)] = 59992, - [SMALL_STATE(1968)] = 60078, - [SMALL_STATE(1969)] = 60164, - [SMALL_STATE(1970)] = 60250, - [SMALL_STATE(1971)] = 60326, - [SMALL_STATE(1972)] = 60412, - [SMALL_STATE(1973)] = 60498, - [SMALL_STATE(1974)] = 60584, - [SMALL_STATE(1975)] = 60670, - [SMALL_STATE(1976)] = 60746, - [SMALL_STATE(1977)] = 60832, - [SMALL_STATE(1978)] = 60918, - [SMALL_STATE(1979)] = 60994, - [SMALL_STATE(1980)] = 61080, - [SMALL_STATE(1981)] = 61164, - [SMALL_STATE(1982)] = 61250, - [SMALL_STATE(1983)] = 61336, - [SMALL_STATE(1984)] = 61412, - [SMALL_STATE(1985)] = 61488, - [SMALL_STATE(1986)] = 61564, - [SMALL_STATE(1987)] = 61640, - [SMALL_STATE(1988)] = 61688, - [SMALL_STATE(1989)] = 61736, - [SMALL_STATE(1990)] = 61784, - [SMALL_STATE(1991)] = 61847, - [SMALL_STATE(1992)] = 61910, - [SMALL_STATE(1993)] = 61973, - [SMALL_STATE(1994)] = 62036, - [SMALL_STATE(1995)] = 62099, - [SMALL_STATE(1996)] = 62162, - [SMALL_STATE(1997)] = 62225, - [SMALL_STATE(1998)] = 62288, - [SMALL_STATE(1999)] = 62351, - [SMALL_STATE(2000)] = 62411, - [SMALL_STATE(2001)] = 62471, - [SMALL_STATE(2002)] = 62507, - [SMALL_STATE(2003)] = 62543, - [SMALL_STATE(2004)] = 62596, - [SMALL_STATE(2005)] = 62633, - [SMALL_STATE(2006)] = 62670, - [SMALL_STATE(2007)] = 62707, - [SMALL_STATE(2008)] = 62744, - [SMALL_STATE(2009)] = 62780, - [SMALL_STATE(2010)] = 62816, - [SMALL_STATE(2011)] = 62850, - [SMALL_STATE(2012)] = 62884, - [SMALL_STATE(2013)] = 62918, - [SMALL_STATE(2014)] = 62952, - [SMALL_STATE(2015)] = 62996, - [SMALL_STATE(2016)] = 63032, - [SMALL_STATE(2017)] = 63076, - [SMALL_STATE(2018)] = 63120, - [SMALL_STATE(2019)] = 63156, - [SMALL_STATE(2020)] = 63189, - [SMALL_STATE(2021)] = 63222, - [SMALL_STATE(2022)] = 63255, - [SMALL_STATE(2023)] = 63288, - [SMALL_STATE(2024)] = 63339, - [SMALL_STATE(2025)] = 63380, - [SMALL_STATE(2026)] = 63411, - [SMALL_STATE(2027)] = 63443, - [SMALL_STATE(2028)] = 63481, - [SMALL_STATE(2029)] = 63527, - [SMALL_STATE(2030)] = 63559, - [SMALL_STATE(2031)] = 63619, - [SMALL_STATE(2032)] = 63657, - [SMALL_STATE(2033)] = 63695, - [SMALL_STATE(2034)] = 63727, - [SMALL_STATE(2035)] = 63771, - [SMALL_STATE(2036)] = 63831, - [SMALL_STATE(2037)] = 63869, - [SMALL_STATE(2038)] = 63922, - [SMALL_STATE(2039)] = 63955, - [SMALL_STATE(2040)] = 63986, - [SMALL_STATE(2041)] = 64015, - [SMALL_STATE(2042)] = 64044, - [SMALL_STATE(2043)] = 64077, - [SMALL_STATE(2044)] = 64132, - [SMALL_STATE(2045)] = 64161, - [SMALL_STATE(2046)] = 64190, - [SMALL_STATE(2047)] = 64219, - [SMALL_STATE(2048)] = 64260, - [SMALL_STATE(2049)] = 64289, - [SMALL_STATE(2050)] = 64318, - [SMALL_STATE(2051)] = 64371, - [SMALL_STATE(2052)] = 64404, - [SMALL_STATE(2053)] = 64433, - [SMALL_STATE(2054)] = 64466, - [SMALL_STATE(2055)] = 64495, - [SMALL_STATE(2056)] = 64538, - [SMALL_STATE(2057)] = 64571, - [SMALL_STATE(2058)] = 64604, - [SMALL_STATE(2059)] = 64637, - [SMALL_STATE(2060)] = 64665, - [SMALL_STATE(2061)] = 64693, - [SMALL_STATE(2062)] = 64723, - [SMALL_STATE(2063)] = 64753, - [SMALL_STATE(2064)] = 64797, - [SMALL_STATE(2065)] = 64825, - [SMALL_STATE(2066)] = 64853, - [SMALL_STATE(2067)] = 64881, - [SMALL_STATE(2068)] = 64909, - [SMALL_STATE(2069)] = 64937, - [SMALL_STATE(2070)] = 64965, - [SMALL_STATE(2071)] = 64993, - [SMALL_STATE(2072)] = 65021, - [SMALL_STATE(2073)] = 65049, - [SMALL_STATE(2074)] = 65077, - [SMALL_STATE(2075)] = 65105, - [SMALL_STATE(2076)] = 65133, - [SMALL_STATE(2077)] = 65161, - [SMALL_STATE(2078)] = 65189, - [SMALL_STATE(2079)] = 65217, - [SMALL_STATE(2080)] = 65245, - [SMALL_STATE(2081)] = 65273, - [SMALL_STATE(2082)] = 65301, - [SMALL_STATE(2083)] = 65329, - [SMALL_STATE(2084)] = 65357, - [SMALL_STATE(2085)] = 65385, - [SMALL_STATE(2086)] = 65413, - [SMALL_STATE(2087)] = 65441, - [SMALL_STATE(2088)] = 65469, - [SMALL_STATE(2089)] = 65497, - [SMALL_STATE(2090)] = 65525, - [SMALL_STATE(2091)] = 65553, - [SMALL_STATE(2092)] = 65581, - [SMALL_STATE(2093)] = 65609, - [SMALL_STATE(2094)] = 65637, - [SMALL_STATE(2095)] = 65665, - [SMALL_STATE(2096)] = 65693, - [SMALL_STATE(2097)] = 65721, - [SMALL_STATE(2098)] = 65756, - [SMALL_STATE(2099)] = 65785, - [SMALL_STATE(2100)] = 65814, - [SMALL_STATE(2101)] = 65843, - [SMALL_STATE(2102)] = 65872, - [SMALL_STATE(2103)] = 65901, - [SMALL_STATE(2104)] = 65930, - [SMALL_STATE(2105)] = 65959, - [SMALL_STATE(2106)] = 65988, - [SMALL_STATE(2107)] = 66017, - [SMALL_STATE(2108)] = 66046, - [SMALL_STATE(2109)] = 66078, - [SMALL_STATE(2110)] = 66118, - [SMALL_STATE(2111)] = 66148, - [SMALL_STATE(2112)] = 66194, - [SMALL_STATE(2113)] = 66226, - [SMALL_STATE(2114)] = 66258, - [SMALL_STATE(2115)] = 66290, - [SMALL_STATE(2116)] = 66322, - [SMALL_STATE(2117)] = 66350, - [SMALL_STATE(2118)] = 66382, - [SMALL_STATE(2119)] = 66424, - [SMALL_STATE(2120)] = 66456, - [SMALL_STATE(2121)] = 66488, - [SMALL_STATE(2122)] = 66520, - [SMALL_STATE(2123)] = 66552, - [SMALL_STATE(2124)] = 66596, - [SMALL_STATE(2125)] = 66628, - [SMALL_STATE(2126)] = 66660, - [SMALL_STATE(2127)] = 66703, - [SMALL_STATE(2128)] = 66746, - [SMALL_STATE(2129)] = 66789, - [SMALL_STATE(2130)] = 66832, - [SMALL_STATE(2131)] = 66875, - [SMALL_STATE(2132)] = 66918, - [SMALL_STATE(2133)] = 66947, - [SMALL_STATE(2134)] = 66976, - [SMALL_STATE(2135)] = 67016, - [SMALL_STATE(2136)] = 67054, - [SMALL_STATE(2137)] = 67078, - [SMALL_STATE(2138)] = 67118, - [SMALL_STATE(2139)] = 67158, - [SMALL_STATE(2140)] = 67198, - [SMALL_STATE(2141)] = 67238, - [SMALL_STATE(2142)] = 67276, - [SMALL_STATE(2143)] = 67304, - [SMALL_STATE(2144)] = 67332, - [SMALL_STATE(2145)] = 67360, - [SMALL_STATE(2146)] = 67388, - [SMALL_STATE(2147)] = 67416, - [SMALL_STATE(2148)] = 67456, - [SMALL_STATE(2149)] = 67484, - [SMALL_STATE(2150)] = 67512, - [SMALL_STATE(2151)] = 67540, - [SMALL_STATE(2152)] = 67568, - [SMALL_STATE(2153)] = 67592, - [SMALL_STATE(2154)] = 67630, - [SMALL_STATE(2155)] = 67658, - [SMALL_STATE(2156)] = 67696, - [SMALL_STATE(2157)] = 67734, - [SMALL_STATE(2158)] = 67758, - [SMALL_STATE(2159)] = 67798, - [SMALL_STATE(2160)] = 67836, - [SMALL_STATE(2161)] = 67860, - [SMALL_STATE(2162)] = 67900, - [SMALL_STATE(2163)] = 67928, - [SMALL_STATE(2164)] = 67956, - [SMALL_STATE(2165)] = 67984, - [SMALL_STATE(2166)] = 68014, - [SMALL_STATE(2167)] = 68042, - [SMALL_STATE(2168)] = 68072, - [SMALL_STATE(2169)] = 68100, - [SMALL_STATE(2170)] = 68138, - [SMALL_STATE(2171)] = 68176, - [SMALL_STATE(2172)] = 68214, - [SMALL_STATE(2173)] = 68252, - [SMALL_STATE(2174)] = 68292, - [SMALL_STATE(2175)] = 68320, - [SMALL_STATE(2176)] = 68358, - [SMALL_STATE(2177)] = 68392, - [SMALL_STATE(2178)] = 68432, - [SMALL_STATE(2179)] = 68456, - [SMALL_STATE(2180)] = 68494, - [SMALL_STATE(2181)] = 68517, - [SMALL_STATE(2182)] = 68540, - [SMALL_STATE(2183)] = 68563, - [SMALL_STATE(2184)] = 68600, - [SMALL_STATE(2185)] = 68623, - [SMALL_STATE(2186)] = 68646, - [SMALL_STATE(2187)] = 68683, - [SMALL_STATE(2188)] = 68718, - [SMALL_STATE(2189)] = 68741, - [SMALL_STATE(2190)] = 68764, - [SMALL_STATE(2191)] = 68787, - [SMALL_STATE(2192)] = 68810, - [SMALL_STATE(2193)] = 68833, - [SMALL_STATE(2194)] = 68856, - [SMALL_STATE(2195)] = 68879, - [SMALL_STATE(2196)] = 68910, - [SMALL_STATE(2197)] = 68941, - [SMALL_STATE(2198)] = 68974, - [SMALL_STATE(2199)] = 68997, - [SMALL_STATE(2200)] = 69028, - [SMALL_STATE(2201)] = 69063, - [SMALL_STATE(2202)] = 69098, - [SMALL_STATE(2203)] = 69121, - [SMALL_STATE(2204)] = 69144, - [SMALL_STATE(2205)] = 69167, - [SMALL_STATE(2206)] = 69190, - [SMALL_STATE(2207)] = 69213, - [SMALL_STATE(2208)] = 69236, - [SMALL_STATE(2209)] = 69273, - [SMALL_STATE(2210)] = 69296, - [SMALL_STATE(2211)] = 69319, - [SMALL_STATE(2212)] = 69354, - [SMALL_STATE(2213)] = 69377, - [SMALL_STATE(2214)] = 69418, - [SMALL_STATE(2215)] = 69441, - [SMALL_STATE(2216)] = 69464, - [SMALL_STATE(2217)] = 69495, - [SMALL_STATE(2218)] = 69518, - [SMALL_STATE(2219)] = 69541, - [SMALL_STATE(2220)] = 69572, - [SMALL_STATE(2221)] = 69595, - [SMALL_STATE(2222)] = 69618, - [SMALL_STATE(2223)] = 69641, - [SMALL_STATE(2224)] = 69682, - [SMALL_STATE(2225)] = 69713, - [SMALL_STATE(2226)] = 69736, - [SMALL_STATE(2227)] = 69759, - [SMALL_STATE(2228)] = 69782, - [SMALL_STATE(2229)] = 69805, - [SMALL_STATE(2230)] = 69846, - [SMALL_STATE(2231)] = 69869, - [SMALL_STATE(2232)] = 69892, - [SMALL_STATE(2233)] = 69929, - [SMALL_STATE(2234)] = 69970, - [SMALL_STATE(2235)] = 69993, - [SMALL_STATE(2236)] = 70023, - [SMALL_STATE(2237)] = 70055, - [SMALL_STATE(2238)] = 70079, - [SMALL_STATE(2239)] = 70117, - [SMALL_STATE(2240)] = 70145, - [SMALL_STATE(2241)] = 70177, - [SMALL_STATE(2242)] = 70215, - [SMALL_STATE(2243)] = 70247, - [SMALL_STATE(2244)] = 70275, - [SMALL_STATE(2245)] = 70307, - [SMALL_STATE(2246)] = 70337, - [SMALL_STATE(2247)] = 70375, - [SMALL_STATE(2248)] = 70413, - [SMALL_STATE(2249)] = 70445, - [SMALL_STATE(2250)] = 70483, - [SMALL_STATE(2251)] = 70521, - [SMALL_STATE(2252)] = 70559, - [SMALL_STATE(2253)] = 70591, - [SMALL_STATE(2254)] = 70619, - [SMALL_STATE(2255)] = 70647, - [SMALL_STATE(2256)] = 70675, - [SMALL_STATE(2257)] = 70713, - [SMALL_STATE(2258)] = 70745, - [SMALL_STATE(2259)] = 70777, - [SMALL_STATE(2260)] = 70805, - [SMALL_STATE(2261)] = 70837, - [SMALL_STATE(2262)] = 70875, - [SMALL_STATE(2263)] = 70911, - [SMALL_STATE(2264)] = 70941, - [SMALL_STATE(2265)] = 70979, - [SMALL_STATE(2266)] = 71011, - [SMALL_STATE(2267)] = 71049, - [SMALL_STATE(2268)] = 71087, - [SMALL_STATE(2269)] = 71117, - [SMALL_STATE(2270)] = 71141, - [SMALL_STATE(2271)] = 71175, - [SMALL_STATE(2272)] = 71199, - [SMALL_STATE(2273)] = 71225, - [SMALL_STATE(2274)] = 71257, - [SMALL_STATE(2275)] = 71295, - [SMALL_STATE(2276)] = 71333, - [SMALL_STATE(2277)] = 71371, - [SMALL_STATE(2278)] = 71409, - [SMALL_STATE(2279)] = 71439, - [SMALL_STATE(2280)] = 71463, - [SMALL_STATE(2281)] = 71487, - [SMALL_STATE(2282)] = 71519, - [SMALL_STATE(2283)] = 71545, - [SMALL_STATE(2284)] = 71577, - [SMALL_STATE(2285)] = 71603, - [SMALL_STATE(2286)] = 71631, - [SMALL_STATE(2287)] = 71665, - [SMALL_STATE(2288)] = 71693, - [SMALL_STATE(2289)] = 71714, - [SMALL_STATE(2290)] = 71749, - [SMALL_STATE(2291)] = 71784, - [SMALL_STATE(2292)] = 71819, - [SMALL_STATE(2293)] = 71854, - [SMALL_STATE(2294)] = 71889, - [SMALL_STATE(2295)] = 71924, - [SMALL_STATE(2296)] = 71959, - [SMALL_STATE(2297)] = 71994, - [SMALL_STATE(2298)] = 72019, - [SMALL_STATE(2299)] = 72054, - [SMALL_STATE(2300)] = 72081, - [SMALL_STATE(2301)] = 72106, - [SMALL_STATE(2302)] = 72141, - [SMALL_STATE(2303)] = 72176, - [SMALL_STATE(2304)] = 72211, - [SMALL_STATE(2305)] = 72244, - [SMALL_STATE(2306)] = 72277, - [SMALL_STATE(2307)] = 72310, - [SMALL_STATE(2308)] = 72345, - [SMALL_STATE(2309)] = 72380, - [SMALL_STATE(2310)] = 72415, - [SMALL_STATE(2311)] = 72450, - [SMALL_STATE(2312)] = 72485, - [SMALL_STATE(2313)] = 72520, - [SMALL_STATE(2314)] = 72555, - [SMALL_STATE(2315)] = 72590, - [SMALL_STATE(2316)] = 72625, - [SMALL_STATE(2317)] = 72660, - [SMALL_STATE(2318)] = 72695, - [SMALL_STATE(2319)] = 72730, - [SMALL_STATE(2320)] = 72765, - [SMALL_STATE(2321)] = 72800, - [SMALL_STATE(2322)] = 72835, - [SMALL_STATE(2323)] = 72868, - [SMALL_STATE(2324)] = 72903, - [SMALL_STATE(2325)] = 72938, - [SMALL_STATE(2326)] = 72973, - [SMALL_STATE(2327)] = 73008, - [SMALL_STATE(2328)] = 73041, - [SMALL_STATE(2329)] = 73076, - [SMALL_STATE(2330)] = 73111, - [SMALL_STATE(2331)] = 73146, - [SMALL_STATE(2332)] = 73181, - [SMALL_STATE(2333)] = 73202, - [SMALL_STATE(2334)] = 73223, - [SMALL_STATE(2335)] = 73244, - [SMALL_STATE(2336)] = 73279, - [SMALL_STATE(2337)] = 73308, - [SMALL_STATE(2338)] = 73343, - [SMALL_STATE(2339)] = 73378, - [SMALL_STATE(2340)] = 73413, - [SMALL_STATE(2341)] = 73448, - [SMALL_STATE(2342)] = 73480, - [SMALL_STATE(2343)] = 73506, - [SMALL_STATE(2344)] = 73538, - [SMALL_STATE(2345)] = 73560, - [SMALL_STATE(2346)] = 73590, - [SMALL_STATE(2347)] = 73620, - [SMALL_STATE(2348)] = 73652, - [SMALL_STATE(2349)] = 73684, - [SMALL_STATE(2350)] = 73716, - [SMALL_STATE(2351)] = 73748, - [SMALL_STATE(2352)] = 73778, - [SMALL_STATE(2353)] = 73808, - [SMALL_STATE(2354)] = 73840, - [SMALL_STATE(2355)] = 73872, - [SMALL_STATE(2356)] = 73904, - [SMALL_STATE(2357)] = 73932, - [SMALL_STATE(2358)] = 73964, - [SMALL_STATE(2359)] = 73996, - [SMALL_STATE(2360)] = 74028, - [SMALL_STATE(2361)] = 74060, - [SMALL_STATE(2362)] = 74092, - [SMALL_STATE(2363)] = 74124, - [SMALL_STATE(2364)] = 74156, - [SMALL_STATE(2365)] = 74188, - [SMALL_STATE(2366)] = 74218, - [SMALL_STATE(2367)] = 74246, - [SMALL_STATE(2368)] = 74272, - [SMALL_STATE(2369)] = 74302, - [SMALL_STATE(2370)] = 74330, - [SMALL_STATE(2371)] = 74362, - [SMALL_STATE(2372)] = 74394, - [SMALL_STATE(2373)] = 74426, - [SMALL_STATE(2374)] = 74458, - [SMALL_STATE(2375)] = 74490, - [SMALL_STATE(2376)] = 74522, - [SMALL_STATE(2377)] = 74554, - [SMALL_STATE(2378)] = 74586, - [SMALL_STATE(2379)] = 74618, - [SMALL_STATE(2380)] = 74650, - [SMALL_STATE(2381)] = 74682, - [SMALL_STATE(2382)] = 74714, - [SMALL_STATE(2383)] = 74746, - [SMALL_STATE(2384)] = 74778, - [SMALL_STATE(2385)] = 74810, - [SMALL_STATE(2386)] = 74838, - [SMALL_STATE(2387)] = 74864, - [SMALL_STATE(2388)] = 74892, - [SMALL_STATE(2389)] = 74922, - [SMALL_STATE(2390)] = 74952, - [SMALL_STATE(2391)] = 74984, - [SMALL_STATE(2392)] = 75016, - [SMALL_STATE(2393)] = 75046, - [SMALL_STATE(2394)] = 75076, - [SMALL_STATE(2395)] = 75098, - [SMALL_STATE(2396)] = 75120, - [SMALL_STATE(2397)] = 75152, - [SMALL_STATE(2398)] = 75178, - [SMALL_STATE(2399)] = 75210, - [SMALL_STATE(2400)] = 75242, - [SMALL_STATE(2401)] = 75264, - [SMALL_STATE(2402)] = 75296, - [SMALL_STATE(2403)] = 75318, - [SMALL_STATE(2404)] = 75340, - [SMALL_STATE(2405)] = 75372, - [SMALL_STATE(2406)] = 75401, - [SMALL_STATE(2407)] = 75430, - [SMALL_STATE(2408)] = 75451, - [SMALL_STATE(2409)] = 75472, - [SMALL_STATE(2410)] = 75501, - [SMALL_STATE(2411)] = 75522, - [SMALL_STATE(2412)] = 75543, - [SMALL_STATE(2413)] = 75564, - [SMALL_STATE(2414)] = 75593, - [SMALL_STATE(2415)] = 75622, - [SMALL_STATE(2416)] = 75651, - [SMALL_STATE(2417)] = 75680, - [SMALL_STATE(2418)] = 75709, - [SMALL_STATE(2419)] = 75738, - [SMALL_STATE(2420)] = 75767, - [SMALL_STATE(2421)] = 75796, - [SMALL_STATE(2422)] = 75815, - [SMALL_STATE(2423)] = 75844, - [SMALL_STATE(2424)] = 75873, - [SMALL_STATE(2425)] = 75902, - [SMALL_STATE(2426)] = 75925, - [SMALL_STATE(2427)] = 75954, - [SMALL_STATE(2428)] = 75983, - [SMALL_STATE(2429)] = 76012, - [SMALL_STATE(2430)] = 76037, - [SMALL_STATE(2431)] = 76066, - [SMALL_STATE(2432)] = 76095, - [SMALL_STATE(2433)] = 76116, - [SMALL_STATE(2434)] = 76145, - [SMALL_STATE(2435)] = 76174, - [SMALL_STATE(2436)] = 76203, - [SMALL_STATE(2437)] = 76230, - [SMALL_STATE(2438)] = 76259, - [SMALL_STATE(2439)] = 76288, - [SMALL_STATE(2440)] = 76317, - [SMALL_STATE(2441)] = 76346, - [SMALL_STATE(2442)] = 76367, - [SMALL_STATE(2443)] = 76396, - [SMALL_STATE(2444)] = 76425, - [SMALL_STATE(2445)] = 76454, - [SMALL_STATE(2446)] = 76481, - [SMALL_STATE(2447)] = 76506, - [SMALL_STATE(2448)] = 76529, - [SMALL_STATE(2449)] = 76558, - [SMALL_STATE(2450)] = 76579, - [SMALL_STATE(2451)] = 76608, - [SMALL_STATE(2452)] = 76629, - [SMALL_STATE(2453)] = 76658, - [SMALL_STATE(2454)] = 76679, - [SMALL_STATE(2455)] = 76700, - [SMALL_STATE(2456)] = 76721, - [SMALL_STATE(2457)] = 76750, - [SMALL_STATE(2458)] = 76771, - [SMALL_STATE(2459)] = 76792, - [SMALL_STATE(2460)] = 76815, - [SMALL_STATE(2461)] = 76844, - [SMALL_STATE(2462)] = 76871, - [SMALL_STATE(2463)] = 76900, - [SMALL_STATE(2464)] = 76929, - [SMALL_STATE(2465)] = 76958, - [SMALL_STATE(2466)] = 76979, - [SMALL_STATE(2467)] = 77002, - [SMALL_STATE(2468)] = 77031, - [SMALL_STATE(2469)] = 77060, - [SMALL_STATE(2470)] = 77089, - [SMALL_STATE(2471)] = 77108, - [SMALL_STATE(2472)] = 77137, - [SMALL_STATE(2473)] = 77160, - [SMALL_STATE(2474)] = 77189, - [SMALL_STATE(2475)] = 77210, - [SMALL_STATE(2476)] = 77239, - [SMALL_STATE(2477)] = 77268, - [SMALL_STATE(2478)] = 77297, - [SMALL_STATE(2479)] = 77320, - [SMALL_STATE(2480)] = 77347, - [SMALL_STATE(2481)] = 77376, - [SMALL_STATE(2482)] = 77401, - [SMALL_STATE(2483)] = 77424, - [SMALL_STATE(2484)] = 77453, - [SMALL_STATE(2485)] = 77482, - [SMALL_STATE(2486)] = 77511, - [SMALL_STATE(2487)] = 77534, - [SMALL_STATE(2488)] = 77559, - [SMALL_STATE(2489)] = 77582, - [SMALL_STATE(2490)] = 77611, - [SMALL_STATE(2491)] = 77640, - [SMALL_STATE(2492)] = 77669, - [SMALL_STATE(2493)] = 77698, - [SMALL_STATE(2494)] = 77727, - [SMALL_STATE(2495)] = 77754, - [SMALL_STATE(2496)] = 77777, - [SMALL_STATE(2497)] = 77806, - [SMALL_STATE(2498)] = 77829, - [SMALL_STATE(2499)] = 77856, - [SMALL_STATE(2500)] = 77885, - [SMALL_STATE(2501)] = 77908, - [SMALL_STATE(2502)] = 77937, - [SMALL_STATE(2503)] = 77960, - [SMALL_STATE(2504)] = 77983, - [SMALL_STATE(2505)] = 78012, - [SMALL_STATE(2506)] = 78035, - [SMALL_STATE(2507)] = 78058, - [SMALL_STATE(2508)] = 78087, - [SMALL_STATE(2509)] = 78116, - [SMALL_STATE(2510)] = 78145, - [SMALL_STATE(2511)] = 78174, - [SMALL_STATE(2512)] = 78200, - [SMALL_STATE(2513)] = 78218, - [SMALL_STATE(2514)] = 78242, - [SMALL_STATE(2515)] = 78268, - [SMALL_STATE(2516)] = 78294, - [SMALL_STATE(2517)] = 78320, - [SMALL_STATE(2518)] = 78346, - [SMALL_STATE(2519)] = 78372, - [SMALL_STATE(2520)] = 78396, - [SMALL_STATE(2521)] = 78422, - [SMALL_STATE(2522)] = 78446, - [SMALL_STATE(2523)] = 78472, - [SMALL_STATE(2524)] = 78498, - [SMALL_STATE(2525)] = 78516, - [SMALL_STATE(2526)] = 78534, - [SMALL_STATE(2527)] = 78554, - [SMALL_STATE(2528)] = 78574, - [SMALL_STATE(2529)] = 78600, - [SMALL_STATE(2530)] = 78618, - [SMALL_STATE(2531)] = 78642, - [SMALL_STATE(2532)] = 78666, - [SMALL_STATE(2533)] = 78692, - [SMALL_STATE(2534)] = 78714, - [SMALL_STATE(2535)] = 78740, - [SMALL_STATE(2536)] = 78758, - [SMALL_STATE(2537)] = 78776, - [SMALL_STATE(2538)] = 78794, - [SMALL_STATE(2539)] = 78812, - [SMALL_STATE(2540)] = 78834, - [SMALL_STATE(2541)] = 78852, - [SMALL_STATE(2542)] = 78870, - [SMALL_STATE(2543)] = 78888, - [SMALL_STATE(2544)] = 78914, - [SMALL_STATE(2545)] = 78934, - [SMALL_STATE(2546)] = 78952, - [SMALL_STATE(2547)] = 78970, - [SMALL_STATE(2548)] = 78996, - [SMALL_STATE(2549)] = 79022, - [SMALL_STATE(2550)] = 79048, - [SMALL_STATE(2551)] = 79074, - [SMALL_STATE(2552)] = 79092, - [SMALL_STATE(2553)] = 79110, - [SMALL_STATE(2554)] = 79136, - [SMALL_STATE(2555)] = 79160, - [SMALL_STATE(2556)] = 79186, - [SMALL_STATE(2557)] = 79212, - [SMALL_STATE(2558)] = 79230, - [SMALL_STATE(2559)] = 79256, - [SMALL_STATE(2560)] = 79278, - [SMALL_STATE(2561)] = 79304, - [SMALL_STATE(2562)] = 79330, - [SMALL_STATE(2563)] = 79356, - [SMALL_STATE(2564)] = 79382, - [SMALL_STATE(2565)] = 79408, - [SMALL_STATE(2566)] = 79432, - [SMALL_STATE(2567)] = 79458, - [SMALL_STATE(2568)] = 79484, - [SMALL_STATE(2569)] = 79510, - [SMALL_STATE(2570)] = 79536, - [SMALL_STATE(2571)] = 79560, - [SMALL_STATE(2572)] = 79586, - [SMALL_STATE(2573)] = 79610, - [SMALL_STATE(2574)] = 79634, - [SMALL_STATE(2575)] = 79658, - [SMALL_STATE(2576)] = 79682, - [SMALL_STATE(2577)] = 79704, - [SMALL_STATE(2578)] = 79730, - [SMALL_STATE(2579)] = 79756, - [SMALL_STATE(2580)] = 79782, - [SMALL_STATE(2581)] = 79808, - [SMALL_STATE(2582)] = 79826, - [SMALL_STATE(2583)] = 79846, - [SMALL_STATE(2584)] = 79864, - [SMALL_STATE(2585)] = 79890, - [SMALL_STATE(2586)] = 79908, - [SMALL_STATE(2587)] = 79926, - [SMALL_STATE(2588)] = 79944, - [SMALL_STATE(2589)] = 79970, - [SMALL_STATE(2590)] = 79992, - [SMALL_STATE(2591)] = 80016, - [SMALL_STATE(2592)] = 80042, - [SMALL_STATE(2593)] = 80068, - [SMALL_STATE(2594)] = 80094, - [SMALL_STATE(2595)] = 80120, - [SMALL_STATE(2596)] = 80142, - [SMALL_STATE(2597)] = 80164, - [SMALL_STATE(2598)] = 80182, - [SMALL_STATE(2599)] = 80208, - [SMALL_STATE(2600)] = 80234, - [SMALL_STATE(2601)] = 80258, - [SMALL_STATE(2602)] = 80284, - [SMALL_STATE(2603)] = 80302, - [SMALL_STATE(2604)] = 80320, - [SMALL_STATE(2605)] = 80338, - [SMALL_STATE(2606)] = 80364, - [SMALL_STATE(2607)] = 80386, - [SMALL_STATE(2608)] = 80412, - [SMALL_STATE(2609)] = 80438, - [SMALL_STATE(2610)] = 80462, - [SMALL_STATE(2611)] = 80488, - [SMALL_STATE(2612)] = 80512, - [SMALL_STATE(2613)] = 80538, - [SMALL_STATE(2614)] = 80556, - [SMALL_STATE(2615)] = 80576, - [SMALL_STATE(2616)] = 80602, - [SMALL_STATE(2617)] = 80628, - [SMALL_STATE(2618)] = 80654, - [SMALL_STATE(2619)] = 80680, - [SMALL_STATE(2620)] = 80700, - [SMALL_STATE(2621)] = 80726, - [SMALL_STATE(2622)] = 80749, - [SMALL_STATE(2623)] = 80772, - [SMALL_STATE(2624)] = 80795, - [SMALL_STATE(2625)] = 80818, - [SMALL_STATE(2626)] = 80837, - [SMALL_STATE(2627)] = 80860, - [SMALL_STATE(2628)] = 80881, - [SMALL_STATE(2629)] = 80904, - [SMALL_STATE(2630)] = 80925, - [SMALL_STATE(2631)] = 80948, - [SMALL_STATE(2632)] = 80967, - [SMALL_STATE(2633)] = 80990, - [SMALL_STATE(2634)] = 81009, - [SMALL_STATE(2635)] = 81026, - [SMALL_STATE(2636)] = 81049, - [SMALL_STATE(2637)] = 81072, - [SMALL_STATE(2638)] = 81095, - [SMALL_STATE(2639)] = 81118, - [SMALL_STATE(2640)] = 81141, - [SMALL_STATE(2641)] = 81162, - [SMALL_STATE(2642)] = 81181, - [SMALL_STATE(2643)] = 81204, - [SMALL_STATE(2644)] = 81227, - [SMALL_STATE(2645)] = 81250, - [SMALL_STATE(2646)] = 81273, - [SMALL_STATE(2647)] = 81296, - [SMALL_STATE(2648)] = 81319, - [SMALL_STATE(2649)] = 81338, - [SMALL_STATE(2650)] = 81361, - [SMALL_STATE(2651)] = 81384, - [SMALL_STATE(2652)] = 81407, - [SMALL_STATE(2653)] = 81430, - [SMALL_STATE(2654)] = 81447, - [SMALL_STATE(2655)] = 81470, - [SMALL_STATE(2656)] = 81491, - [SMALL_STATE(2657)] = 81514, - [SMALL_STATE(2658)] = 81537, - [SMALL_STATE(2659)] = 81560, - [SMALL_STATE(2660)] = 81583, - [SMALL_STATE(2661)] = 81606, - [SMALL_STATE(2662)] = 81629, - [SMALL_STATE(2663)] = 81650, - [SMALL_STATE(2664)] = 81673, - [SMALL_STATE(2665)] = 81696, - [SMALL_STATE(2666)] = 81719, - [SMALL_STATE(2667)] = 81742, - [SMALL_STATE(2668)] = 81765, - [SMALL_STATE(2669)] = 81788, - [SMALL_STATE(2670)] = 81811, - [SMALL_STATE(2671)] = 81834, - [SMALL_STATE(2672)] = 81857, - [SMALL_STATE(2673)] = 81880, - [SMALL_STATE(2674)] = 81903, - [SMALL_STATE(2675)] = 81926, - [SMALL_STATE(2676)] = 81945, - [SMALL_STATE(2677)] = 81968, - [SMALL_STATE(2678)] = 81991, - [SMALL_STATE(2679)] = 82010, - [SMALL_STATE(2680)] = 82029, - [SMALL_STATE(2681)] = 82052, - [SMALL_STATE(2682)] = 82073, - [SMALL_STATE(2683)] = 82096, - [SMALL_STATE(2684)] = 82119, - [SMALL_STATE(2685)] = 82142, - [SMALL_STATE(2686)] = 82165, - [SMALL_STATE(2687)] = 82188, - [SMALL_STATE(2688)] = 82211, - [SMALL_STATE(2689)] = 82234, - [SMALL_STATE(2690)] = 82253, - [SMALL_STATE(2691)] = 82276, - [SMALL_STATE(2692)] = 82299, - [SMALL_STATE(2693)] = 82320, - [SMALL_STATE(2694)] = 82343, - [SMALL_STATE(2695)] = 82366, - [SMALL_STATE(2696)] = 82389, - [SMALL_STATE(2697)] = 82410, - [SMALL_STATE(2698)] = 82433, - [SMALL_STATE(2699)] = 82456, - [SMALL_STATE(2700)] = 82479, - [SMALL_STATE(2701)] = 82502, - [SMALL_STATE(2702)] = 82525, - [SMALL_STATE(2703)] = 82546, - [SMALL_STATE(2704)] = 82569, - [SMALL_STATE(2705)] = 82592, - [SMALL_STATE(2706)] = 82615, - [SMALL_STATE(2707)] = 82638, - [SMALL_STATE(2708)] = 82661, - [SMALL_STATE(2709)] = 82682, - [SMALL_STATE(2710)] = 82705, - [SMALL_STATE(2711)] = 82728, - [SMALL_STATE(2712)] = 82751, - [SMALL_STATE(2713)] = 82774, - [SMALL_STATE(2714)] = 82797, - [SMALL_STATE(2715)] = 82820, - [SMALL_STATE(2716)] = 82839, - [SMALL_STATE(2717)] = 82862, - [SMALL_STATE(2718)] = 82885, - [SMALL_STATE(2719)] = 82906, - [SMALL_STATE(2720)] = 82929, - [SMALL_STATE(2721)] = 82948, - [SMALL_STATE(2722)] = 82969, - [SMALL_STATE(2723)] = 82992, - [SMALL_STATE(2724)] = 83015, - [SMALL_STATE(2725)] = 83038, - [SMALL_STATE(2726)] = 83057, - [SMALL_STATE(2727)] = 83080, - [SMALL_STATE(2728)] = 83101, - [SMALL_STATE(2729)] = 83124, - [SMALL_STATE(2730)] = 83147, - [SMALL_STATE(2731)] = 83170, - [SMALL_STATE(2732)] = 83193, - [SMALL_STATE(2733)] = 83216, - [SMALL_STATE(2734)] = 83239, - [SMALL_STATE(2735)] = 83262, - [SMALL_STATE(2736)] = 83285, - [SMALL_STATE(2737)] = 83306, - [SMALL_STATE(2738)] = 83329, - [SMALL_STATE(2739)] = 83350, - [SMALL_STATE(2740)] = 83371, - [SMALL_STATE(2741)] = 83394, - [SMALL_STATE(2742)] = 83417, - [SMALL_STATE(2743)] = 83440, - [SMALL_STATE(2744)] = 83463, - [SMALL_STATE(2745)] = 83486, - [SMALL_STATE(2746)] = 83509, - [SMALL_STATE(2747)] = 83532, - [SMALL_STATE(2748)] = 83555, - [SMALL_STATE(2749)] = 83578, - [SMALL_STATE(2750)] = 83601, - [SMALL_STATE(2751)] = 83622, - [SMALL_STATE(2752)] = 83645, - [SMALL_STATE(2753)] = 83666, - [SMALL_STATE(2754)] = 83689, - [SMALL_STATE(2755)] = 83708, - [SMALL_STATE(2756)] = 83731, - [SMALL_STATE(2757)] = 83752, - [SMALL_STATE(2758)] = 83775, - [SMALL_STATE(2759)] = 83798, - [SMALL_STATE(2760)] = 83821, - [SMALL_STATE(2761)] = 83840, - [SMALL_STATE(2762)] = 83861, - [SMALL_STATE(2763)] = 83880, - [SMALL_STATE(2764)] = 83903, - [SMALL_STATE(2765)] = 83926, - [SMALL_STATE(2766)] = 83945, - [SMALL_STATE(2767)] = 83964, - [SMALL_STATE(2768)] = 83983, - [SMALL_STATE(2769)] = 84002, - [SMALL_STATE(2770)] = 84025, - [SMALL_STATE(2771)] = 84048, - [SMALL_STATE(2772)] = 84071, - [SMALL_STATE(2773)] = 84094, - [SMALL_STATE(2774)] = 84117, - [SMALL_STATE(2775)] = 84140, - [SMALL_STATE(2776)] = 84163, - [SMALL_STATE(2777)] = 84186, - [SMALL_STATE(2778)] = 84205, - [SMALL_STATE(2779)] = 84228, - [SMALL_STATE(2780)] = 84245, - [SMALL_STATE(2781)] = 84268, - [SMALL_STATE(2782)] = 84291, - [SMALL_STATE(2783)] = 84310, - [SMALL_STATE(2784)] = 84333, - [SMALL_STATE(2785)] = 84354, - [SMALL_STATE(2786)] = 84377, - [SMALL_STATE(2787)] = 84400, - [SMALL_STATE(2788)] = 84423, - [SMALL_STATE(2789)] = 84446, - [SMALL_STATE(2790)] = 84469, - [SMALL_STATE(2791)] = 84492, - [SMALL_STATE(2792)] = 84515, - [SMALL_STATE(2793)] = 84538, - [SMALL_STATE(2794)] = 84561, - [SMALL_STATE(2795)] = 84584, - [SMALL_STATE(2796)] = 84607, - [SMALL_STATE(2797)] = 84626, - [SMALL_STATE(2798)] = 84649, - [SMALL_STATE(2799)] = 84672, - [SMALL_STATE(2800)] = 84695, - [SMALL_STATE(2801)] = 84718, - [SMALL_STATE(2802)] = 84739, - [SMALL_STATE(2803)] = 84762, - [SMALL_STATE(2804)] = 84785, - [SMALL_STATE(2805)] = 84808, - [SMALL_STATE(2806)] = 84827, - [SMALL_STATE(2807)] = 84850, - [SMALL_STATE(2808)] = 84873, - [SMALL_STATE(2809)] = 84896, - [SMALL_STATE(2810)] = 84919, - [SMALL_STATE(2811)] = 84942, - [SMALL_STATE(2812)] = 84965, - [SMALL_STATE(2813)] = 84988, - [SMALL_STATE(2814)] = 85011, - [SMALL_STATE(2815)] = 85034, - [SMALL_STATE(2816)] = 85057, - [SMALL_STATE(2817)] = 85080, - [SMALL_STATE(2818)] = 85103, - [SMALL_STATE(2819)] = 85126, - [SMALL_STATE(2820)] = 85149, - [SMALL_STATE(2821)] = 85172, - [SMALL_STATE(2822)] = 85195, - [SMALL_STATE(2823)] = 85218, - [SMALL_STATE(2824)] = 85241, - [SMALL_STATE(2825)] = 85264, - [SMALL_STATE(2826)] = 85287, - [SMALL_STATE(2827)] = 85310, - [SMALL_STATE(2828)] = 85333, - [SMALL_STATE(2829)] = 85356, - [SMALL_STATE(2830)] = 85379, - [SMALL_STATE(2831)] = 85402, - [SMALL_STATE(2832)] = 85425, - [SMALL_STATE(2833)] = 85442, - [SMALL_STATE(2834)] = 85465, - [SMALL_STATE(2835)] = 85486, - [SMALL_STATE(2836)] = 85505, - [SMALL_STATE(2837)] = 85528, - [SMALL_STATE(2838)] = 85551, - [SMALL_STATE(2839)] = 85572, - [SMALL_STATE(2840)] = 85595, - [SMALL_STATE(2841)] = 85618, - [SMALL_STATE(2842)] = 85641, - [SMALL_STATE(2843)] = 85664, - [SMALL_STATE(2844)] = 85683, - [SMALL_STATE(2845)] = 85706, - [SMALL_STATE(2846)] = 85727, - [SMALL_STATE(2847)] = 85750, - [SMALL_STATE(2848)] = 85773, - [SMALL_STATE(2849)] = 85796, - [SMALL_STATE(2850)] = 85819, - [SMALL_STATE(2851)] = 85842, - [SMALL_STATE(2852)] = 85865, - [SMALL_STATE(2853)] = 85888, - [SMALL_STATE(2854)] = 85911, - [SMALL_STATE(2855)] = 85934, - [SMALL_STATE(2856)] = 85955, - [SMALL_STATE(2857)] = 85978, - [SMALL_STATE(2858)] = 86001, - [SMALL_STATE(2859)] = 86024, - [SMALL_STATE(2860)] = 86047, - [SMALL_STATE(2861)] = 86070, - [SMALL_STATE(2862)] = 86093, - [SMALL_STATE(2863)] = 86112, - [SMALL_STATE(2864)] = 86135, - [SMALL_STATE(2865)] = 86154, - [SMALL_STATE(2866)] = 86177, - [SMALL_STATE(2867)] = 86200, - [SMALL_STATE(2868)] = 86223, - [SMALL_STATE(2869)] = 86246, - [SMALL_STATE(2870)] = 86269, - [SMALL_STATE(2871)] = 86292, - [SMALL_STATE(2872)] = 86311, - [SMALL_STATE(2873)] = 86334, - [SMALL_STATE(2874)] = 86351, - [SMALL_STATE(2875)] = 86370, - [SMALL_STATE(2876)] = 86393, - [SMALL_STATE(2877)] = 86416, - [SMALL_STATE(2878)] = 86439, - [SMALL_STATE(2879)] = 86458, - [SMALL_STATE(2880)] = 86481, - [SMALL_STATE(2881)] = 86504, - [SMALL_STATE(2882)] = 86525, - [SMALL_STATE(2883)] = 86545, - [SMALL_STATE(2884)] = 86561, - [SMALL_STATE(2885)] = 86577, - [SMALL_STATE(2886)] = 86597, - [SMALL_STATE(2887)] = 86617, - [SMALL_STATE(2888)] = 86635, - [SMALL_STATE(2889)] = 86655, - [SMALL_STATE(2890)] = 86671, - [SMALL_STATE(2891)] = 86687, - [SMALL_STATE(2892)] = 86707, - [SMALL_STATE(2893)] = 86723, - [SMALL_STATE(2894)] = 86743, - [SMALL_STATE(2895)] = 86763, - [SMALL_STATE(2896)] = 86783, - [SMALL_STATE(2897)] = 86803, - [SMALL_STATE(2898)] = 86819, - [SMALL_STATE(2899)] = 86839, - [SMALL_STATE(2900)] = 86859, - [SMALL_STATE(2901)] = 86875, - [SMALL_STATE(2902)] = 86891, - [SMALL_STATE(2903)] = 86907, - [SMALL_STATE(2904)] = 86923, - [SMALL_STATE(2905)] = 86943, - [SMALL_STATE(2906)] = 86963, - [SMALL_STATE(2907)] = 86983, - [SMALL_STATE(2908)] = 87003, - [SMALL_STATE(2909)] = 87023, - [SMALL_STATE(2910)] = 87041, - [SMALL_STATE(2911)] = 87061, - [SMALL_STATE(2912)] = 87081, - [SMALL_STATE(2913)] = 87101, - [SMALL_STATE(2914)] = 87119, - [SMALL_STATE(2915)] = 87135, - [SMALL_STATE(2916)] = 87155, - [SMALL_STATE(2917)] = 87171, - [SMALL_STATE(2918)] = 87191, - [SMALL_STATE(2919)] = 87211, - [SMALL_STATE(2920)] = 87231, - [SMALL_STATE(2921)] = 87251, - [SMALL_STATE(2922)] = 87271, - [SMALL_STATE(2923)] = 87291, - [SMALL_STATE(2924)] = 87311, - [SMALL_STATE(2925)] = 87331, - [SMALL_STATE(2926)] = 87351, - [SMALL_STATE(2927)] = 87367, - [SMALL_STATE(2928)] = 87383, - [SMALL_STATE(2929)] = 87399, - [SMALL_STATE(2930)] = 87415, - [SMALL_STATE(2931)] = 87431, - [SMALL_STATE(2932)] = 87447, - [SMALL_STATE(2933)] = 87467, - [SMALL_STATE(2934)] = 87487, - [SMALL_STATE(2935)] = 87505, - [SMALL_STATE(2936)] = 87525, - [SMALL_STATE(2937)] = 87545, - [SMALL_STATE(2938)] = 87565, - [SMALL_STATE(2939)] = 87585, - [SMALL_STATE(2940)] = 87605, - [SMALL_STATE(2941)] = 87625, - [SMALL_STATE(2942)] = 87645, - [SMALL_STATE(2943)] = 87661, - [SMALL_STATE(2944)] = 87681, - [SMALL_STATE(2945)] = 87701, - [SMALL_STATE(2946)] = 87719, - [SMALL_STATE(2947)] = 87739, - [SMALL_STATE(2948)] = 87759, - [SMALL_STATE(2949)] = 87779, - [SMALL_STATE(2950)] = 87799, - [SMALL_STATE(2951)] = 87819, - [SMALL_STATE(2952)] = 87839, - [SMALL_STATE(2953)] = 87859, - [SMALL_STATE(2954)] = 87879, - [SMALL_STATE(2955)] = 87899, - [SMALL_STATE(2956)] = 87919, - [SMALL_STATE(2957)] = 87939, - [SMALL_STATE(2958)] = 87959, - [SMALL_STATE(2959)] = 87979, - [SMALL_STATE(2960)] = 87999, - [SMALL_STATE(2961)] = 88019, - [SMALL_STATE(2962)] = 88039, - [SMALL_STATE(2963)] = 88059, - [SMALL_STATE(2964)] = 88079, - [SMALL_STATE(2965)] = 88099, - [SMALL_STATE(2966)] = 88119, - [SMALL_STATE(2967)] = 88139, - [SMALL_STATE(2968)] = 88159, - [SMALL_STATE(2969)] = 88177, - [SMALL_STATE(2970)] = 88197, - [SMALL_STATE(2971)] = 88217, - [SMALL_STATE(2972)] = 88237, - [SMALL_STATE(2973)] = 88257, - [SMALL_STATE(2974)] = 88277, - [SMALL_STATE(2975)] = 88297, - [SMALL_STATE(2976)] = 88315, - [SMALL_STATE(2977)] = 88335, - [SMALL_STATE(2978)] = 88355, - [SMALL_STATE(2979)] = 88375, - [SMALL_STATE(2980)] = 88395, - [SMALL_STATE(2981)] = 88415, - [SMALL_STATE(2982)] = 88435, - [SMALL_STATE(2983)] = 88455, - [SMALL_STATE(2984)] = 88475, - [SMALL_STATE(2985)] = 88495, - [SMALL_STATE(2986)] = 88513, - [SMALL_STATE(2987)] = 88533, - [SMALL_STATE(2988)] = 88553, - [SMALL_STATE(2989)] = 88573, - [SMALL_STATE(2990)] = 88593, - [SMALL_STATE(2991)] = 88613, - [SMALL_STATE(2992)] = 88633, - [SMALL_STATE(2993)] = 88651, - [SMALL_STATE(2994)] = 88669, - [SMALL_STATE(2995)] = 88689, - [SMALL_STATE(2996)] = 88709, - [SMALL_STATE(2997)] = 88729, - [SMALL_STATE(2998)] = 88749, - [SMALL_STATE(2999)] = 88769, - [SMALL_STATE(3000)] = 88789, - [SMALL_STATE(3001)] = 88809, - [SMALL_STATE(3002)] = 88829, - [SMALL_STATE(3003)] = 88845, - [SMALL_STATE(3004)] = 88863, - [SMALL_STATE(3005)] = 88881, - [SMALL_STATE(3006)] = 88901, - [SMALL_STATE(3007)] = 88917, - [SMALL_STATE(3008)] = 88933, - [SMALL_STATE(3009)] = 88953, - [SMALL_STATE(3010)] = 88971, - [SMALL_STATE(3011)] = 88987, - [SMALL_STATE(3012)] = 89007, - [SMALL_STATE(3013)] = 89023, - [SMALL_STATE(3014)] = 89043, - [SMALL_STATE(3015)] = 89063, - [SMALL_STATE(3016)] = 89083, - [SMALL_STATE(3017)] = 89099, - [SMALL_STATE(3018)] = 89117, - [SMALL_STATE(3019)] = 89137, - [SMALL_STATE(3020)] = 89157, - [SMALL_STATE(3021)] = 89173, - [SMALL_STATE(3022)] = 89193, - [SMALL_STATE(3023)] = 89213, - [SMALL_STATE(3024)] = 89229, - [SMALL_STATE(3025)] = 89249, - [SMALL_STATE(3026)] = 89269, - [SMALL_STATE(3027)] = 89289, - [SMALL_STATE(3028)] = 89309, - [SMALL_STATE(3029)] = 89329, - [SMALL_STATE(3030)] = 89349, - [SMALL_STATE(3031)] = 89369, - [SMALL_STATE(3032)] = 89389, - [SMALL_STATE(3033)] = 89409, - [SMALL_STATE(3034)] = 89429, - [SMALL_STATE(3035)] = 89449, - [SMALL_STATE(3036)] = 89469, - [SMALL_STATE(3037)] = 89489, - [SMALL_STATE(3038)] = 89505, - [SMALL_STATE(3039)] = 89521, - [SMALL_STATE(3040)] = 89537, - [SMALL_STATE(3041)] = 89557, - [SMALL_STATE(3042)] = 89577, - [SMALL_STATE(3043)] = 89593, - [SMALL_STATE(3044)] = 89609, - [SMALL_STATE(3045)] = 89625, - [SMALL_STATE(3046)] = 89645, - [SMALL_STATE(3047)] = 89665, - [SMALL_STATE(3048)] = 89685, - [SMALL_STATE(3049)] = 89705, - [SMALL_STATE(3050)] = 89725, - [SMALL_STATE(3051)] = 89745, - [SMALL_STATE(3052)] = 89765, - [SMALL_STATE(3053)] = 89785, - [SMALL_STATE(3054)] = 89803, - [SMALL_STATE(3055)] = 89821, - [SMALL_STATE(3056)] = 89841, - [SMALL_STATE(3057)] = 89859, - [SMALL_STATE(3058)] = 89879, - [SMALL_STATE(3059)] = 89899, - [SMALL_STATE(3060)] = 89917, - [SMALL_STATE(3061)] = 89937, - [SMALL_STATE(3062)] = 89953, - [SMALL_STATE(3063)] = 89971, - [SMALL_STATE(3064)] = 89991, - [SMALL_STATE(3065)] = 90011, - [SMALL_STATE(3066)] = 90031, - [SMALL_STATE(3067)] = 90051, - [SMALL_STATE(3068)] = 90071, - [SMALL_STATE(3069)] = 90089, - [SMALL_STATE(3070)] = 90109, - [SMALL_STATE(3071)] = 90129, - [SMALL_STATE(3072)] = 90147, - [SMALL_STATE(3073)] = 90167, - [SMALL_STATE(3074)] = 90187, - [SMALL_STATE(3075)] = 90207, - [SMALL_STATE(3076)] = 90227, - [SMALL_STATE(3077)] = 90247, - [SMALL_STATE(3078)] = 90265, - [SMALL_STATE(3079)] = 90285, - [SMALL_STATE(3080)] = 90305, - [SMALL_STATE(3081)] = 90325, - [SMALL_STATE(3082)] = 90345, - [SMALL_STATE(3083)] = 90365, - [SMALL_STATE(3084)] = 90385, - [SMALL_STATE(3085)] = 90403, - [SMALL_STATE(3086)] = 90419, - [SMALL_STATE(3087)] = 90439, - [SMALL_STATE(3088)] = 90457, - [SMALL_STATE(3089)] = 90477, - [SMALL_STATE(3090)] = 90497, - [SMALL_STATE(3091)] = 90517, - [SMALL_STATE(3092)] = 90533, - [SMALL_STATE(3093)] = 90553, - [SMALL_STATE(3094)] = 90573, - [SMALL_STATE(3095)] = 90593, - [SMALL_STATE(3096)] = 90611, - [SMALL_STATE(3097)] = 90629, - [SMALL_STATE(3098)] = 90649, - [SMALL_STATE(3099)] = 90669, - [SMALL_STATE(3100)] = 90689, - [SMALL_STATE(3101)] = 90709, - [SMALL_STATE(3102)] = 90729, - [SMALL_STATE(3103)] = 90749, - [SMALL_STATE(3104)] = 90769, - [SMALL_STATE(3105)] = 90787, - [SMALL_STATE(3106)] = 90807, - [SMALL_STATE(3107)] = 90827, - [SMALL_STATE(3108)] = 90845, - [SMALL_STATE(3109)] = 90865, - [SMALL_STATE(3110)] = 90885, - [SMALL_STATE(3111)] = 90901, - [SMALL_STATE(3112)] = 90917, - [SMALL_STATE(3113)] = 90933, - [SMALL_STATE(3114)] = 90949, - [SMALL_STATE(3115)] = 90965, - [SMALL_STATE(3116)] = 90981, - [SMALL_STATE(3117)] = 91001, - [SMALL_STATE(3118)] = 91021, - [SMALL_STATE(3119)] = 91041, - [SMALL_STATE(3120)] = 91061, - [SMALL_STATE(3121)] = 91081, - [SMALL_STATE(3122)] = 91101, - [SMALL_STATE(3123)] = 91119, - [SMALL_STATE(3124)] = 91135, - [SMALL_STATE(3125)] = 91155, - [SMALL_STATE(3126)] = 91175, - [SMALL_STATE(3127)] = 91191, - [SMALL_STATE(3128)] = 91211, - [SMALL_STATE(3129)] = 91229, - [SMALL_STATE(3130)] = 91249, - [SMALL_STATE(3131)] = 91269, - [SMALL_STATE(3132)] = 91289, - [SMALL_STATE(3133)] = 91309, - [SMALL_STATE(3134)] = 91327, - [SMALL_STATE(3135)] = 91347, - [SMALL_STATE(3136)] = 91365, - [SMALL_STATE(3137)] = 91383, - [SMALL_STATE(3138)] = 91399, - [SMALL_STATE(3139)] = 91419, - [SMALL_STATE(3140)] = 91437, - [SMALL_STATE(3141)] = 91457, - [SMALL_STATE(3142)] = 91477, - [SMALL_STATE(3143)] = 91497, - [SMALL_STATE(3144)] = 91515, - [SMALL_STATE(3145)] = 91531, - [SMALL_STATE(3146)] = 91551, - [SMALL_STATE(3147)] = 91571, - [SMALL_STATE(3148)] = 91591, - [SMALL_STATE(3149)] = 91611, - [SMALL_STATE(3150)] = 91631, - [SMALL_STATE(3151)] = 91651, - [SMALL_STATE(3152)] = 91669, - [SMALL_STATE(3153)] = 91685, - [SMALL_STATE(3154)] = 91701, - [SMALL_STATE(3155)] = 91717, - [SMALL_STATE(3156)] = 91733, - [SMALL_STATE(3157)] = 91753, - [SMALL_STATE(3158)] = 91769, - [SMALL_STATE(3159)] = 91785, - [SMALL_STATE(3160)] = 91803, - [SMALL_STATE(3161)] = 91821, - [SMALL_STATE(3162)] = 91841, - [SMALL_STATE(3163)] = 91861, - [SMALL_STATE(3164)] = 91881, - [SMALL_STATE(3165)] = 91901, - [SMALL_STATE(3166)] = 91921, - [SMALL_STATE(3167)] = 91941, - [SMALL_STATE(3168)] = 91961, - [SMALL_STATE(3169)] = 91981, - [SMALL_STATE(3170)] = 92001, - [SMALL_STATE(3171)] = 92019, - [SMALL_STATE(3172)] = 92037, - [SMALL_STATE(3173)] = 92057, - [SMALL_STATE(3174)] = 92077, - [SMALL_STATE(3175)] = 92093, - [SMALL_STATE(3176)] = 92111, - [SMALL_STATE(3177)] = 92127, - [SMALL_STATE(3178)] = 92147, - [SMALL_STATE(3179)] = 92167, - [SMALL_STATE(3180)] = 92183, - [SMALL_STATE(3181)] = 92203, - [SMALL_STATE(3182)] = 92219, - [SMALL_STATE(3183)] = 92239, - [SMALL_STATE(3184)] = 92259, - [SMALL_STATE(3185)] = 92279, - [SMALL_STATE(3186)] = 92299, - [SMALL_STATE(3187)] = 92319, - [SMALL_STATE(3188)] = 92339, - [SMALL_STATE(3189)] = 92359, - [SMALL_STATE(3190)] = 92379, - [SMALL_STATE(3191)] = 92399, - [SMALL_STATE(3192)] = 92419, - [SMALL_STATE(3193)] = 92439, - [SMALL_STATE(3194)] = 92459, - [SMALL_STATE(3195)] = 92479, - [SMALL_STATE(3196)] = 92496, - [SMALL_STATE(3197)] = 92513, - [SMALL_STATE(3198)] = 92530, - [SMALL_STATE(3199)] = 92547, - [SMALL_STATE(3200)] = 92564, - [SMALL_STATE(3201)] = 92581, - [SMALL_STATE(3202)] = 92596, - [SMALL_STATE(3203)] = 92613, - [SMALL_STATE(3204)] = 92628, - [SMALL_STATE(3205)] = 92645, - [SMALL_STATE(3206)] = 92662, - [SMALL_STATE(3207)] = 92679, - [SMALL_STATE(3208)] = 92696, - [SMALL_STATE(3209)] = 92711, - [SMALL_STATE(3210)] = 92728, - [SMALL_STATE(3211)] = 92745, - [SMALL_STATE(3212)] = 92762, - [SMALL_STATE(3213)] = 92779, - [SMALL_STATE(3214)] = 92796, - [SMALL_STATE(3215)] = 92813, - [SMALL_STATE(3216)] = 92828, - [SMALL_STATE(3217)] = 92845, - [SMALL_STATE(3218)] = 92860, - [SMALL_STATE(3219)] = 92877, - [SMALL_STATE(3220)] = 92894, - [SMALL_STATE(3221)] = 92911, - [SMALL_STATE(3222)] = 92928, - [SMALL_STATE(3223)] = 92945, - [SMALL_STATE(3224)] = 92962, - [SMALL_STATE(3225)] = 92979, - [SMALL_STATE(3226)] = 92996, - [SMALL_STATE(3227)] = 93013, - [SMALL_STATE(3228)] = 93028, - [SMALL_STATE(3229)] = 93045, - [SMALL_STATE(3230)] = 93062, - [SMALL_STATE(3231)] = 93079, - [SMALL_STATE(3232)] = 93096, - [SMALL_STATE(3233)] = 93113, - [SMALL_STATE(3234)] = 93130, - [SMALL_STATE(3235)] = 93145, - [SMALL_STATE(3236)] = 93162, - [SMALL_STATE(3237)] = 93179, - [SMALL_STATE(3238)] = 93196, - [SMALL_STATE(3239)] = 93211, - [SMALL_STATE(3240)] = 93228, - [SMALL_STATE(3241)] = 93243, - [SMALL_STATE(3242)] = 93260, - [SMALL_STATE(3243)] = 93277, - [SMALL_STATE(3244)] = 93294, - [SMALL_STATE(3245)] = 93311, - [SMALL_STATE(3246)] = 93328, - [SMALL_STATE(3247)] = 93345, - [SMALL_STATE(3248)] = 93362, - [SMALL_STATE(3249)] = 93379, - [SMALL_STATE(3250)] = 93396, - [SMALL_STATE(3251)] = 93413, - [SMALL_STATE(3252)] = 93430, - [SMALL_STATE(3253)] = 93447, - [SMALL_STATE(3254)] = 93464, - [SMALL_STATE(3255)] = 93481, - [SMALL_STATE(3256)] = 93498, - [SMALL_STATE(3257)] = 93515, - [SMALL_STATE(3258)] = 93530, - [SMALL_STATE(3259)] = 93545, - [SMALL_STATE(3260)] = 93562, - [SMALL_STATE(3261)] = 93579, - [SMALL_STATE(3262)] = 93596, - [SMALL_STATE(3263)] = 93613, - [SMALL_STATE(3264)] = 93630, - [SMALL_STATE(3265)] = 93647, - [SMALL_STATE(3266)] = 93664, - [SMALL_STATE(3267)] = 93681, - [SMALL_STATE(3268)] = 93698, - [SMALL_STATE(3269)] = 93715, - [SMALL_STATE(3270)] = 93732, - [SMALL_STATE(3271)] = 93747, - [SMALL_STATE(3272)] = 93764, - [SMALL_STATE(3273)] = 93781, - [SMALL_STATE(3274)] = 93798, - [SMALL_STATE(3275)] = 93815, - [SMALL_STATE(3276)] = 93830, - [SMALL_STATE(3277)] = 93847, - [SMALL_STATE(3278)] = 93864, - [SMALL_STATE(3279)] = 93881, - [SMALL_STATE(3280)] = 93896, - [SMALL_STATE(3281)] = 93913, - [SMALL_STATE(3282)] = 93930, - [SMALL_STATE(3283)] = 93947, - [SMALL_STATE(3284)] = 93964, - [SMALL_STATE(3285)] = 93981, - [SMALL_STATE(3286)] = 93998, - [SMALL_STATE(3287)] = 94015, - [SMALL_STATE(3288)] = 94030, - [SMALL_STATE(3289)] = 94047, - [SMALL_STATE(3290)] = 94064, - [SMALL_STATE(3291)] = 94081, - [SMALL_STATE(3292)] = 94096, - [SMALL_STATE(3293)] = 94113, - [SMALL_STATE(3294)] = 94130, - [SMALL_STATE(3295)] = 94147, - [SMALL_STATE(3296)] = 94162, - [SMALL_STATE(3297)] = 94177, - [SMALL_STATE(3298)] = 94194, - [SMALL_STATE(3299)] = 94209, - [SMALL_STATE(3300)] = 94226, - [SMALL_STATE(3301)] = 94243, - [SMALL_STATE(3302)] = 94260, - [SMALL_STATE(3303)] = 94277, - [SMALL_STATE(3304)] = 94294, - [SMALL_STATE(3305)] = 94311, - [SMALL_STATE(3306)] = 94328, - [SMALL_STATE(3307)] = 94343, - [SMALL_STATE(3308)] = 94358, - [SMALL_STATE(3309)] = 94375, - [SMALL_STATE(3310)] = 94392, - [SMALL_STATE(3311)] = 94409, - [SMALL_STATE(3312)] = 94426, - [SMALL_STATE(3313)] = 94443, - [SMALL_STATE(3314)] = 94460, - [SMALL_STATE(3315)] = 94475, - [SMALL_STATE(3316)] = 94492, - [SMALL_STATE(3317)] = 94507, - [SMALL_STATE(3318)] = 94524, - [SMALL_STATE(3319)] = 94541, - [SMALL_STATE(3320)] = 94558, - [SMALL_STATE(3321)] = 94575, - [SMALL_STATE(3322)] = 94592, - [SMALL_STATE(3323)] = 94609, - [SMALL_STATE(3324)] = 94626, - [SMALL_STATE(3325)] = 94643, - [SMALL_STATE(3326)] = 94660, - [SMALL_STATE(3327)] = 94677, - [SMALL_STATE(3328)] = 94694, - [SMALL_STATE(3329)] = 94711, - [SMALL_STATE(3330)] = 94728, - [SMALL_STATE(3331)] = 94745, - [SMALL_STATE(3332)] = 94762, - [SMALL_STATE(3333)] = 94779, - [SMALL_STATE(3334)] = 94796, - [SMALL_STATE(3335)] = 94813, - [SMALL_STATE(3336)] = 94830, - [SMALL_STATE(3337)] = 94847, - [SMALL_STATE(3338)] = 94864, - [SMALL_STATE(3339)] = 94881, - [SMALL_STATE(3340)] = 94896, - [SMALL_STATE(3341)] = 94913, - [SMALL_STATE(3342)] = 94930, - [SMALL_STATE(3343)] = 94947, - [SMALL_STATE(3344)] = 94962, - [SMALL_STATE(3345)] = 94979, - [SMALL_STATE(3346)] = 94996, - [SMALL_STATE(3347)] = 95013, - [SMALL_STATE(3348)] = 95030, - [SMALL_STATE(3349)] = 95047, - [SMALL_STATE(3350)] = 95062, - [SMALL_STATE(3351)] = 95077, - [SMALL_STATE(3352)] = 95094, - [SMALL_STATE(3353)] = 95111, - [SMALL_STATE(3354)] = 95128, - [SMALL_STATE(3355)] = 95145, - [SMALL_STATE(3356)] = 95162, - [SMALL_STATE(3357)] = 95179, - [SMALL_STATE(3358)] = 95196, - [SMALL_STATE(3359)] = 95213, - [SMALL_STATE(3360)] = 95230, - [SMALL_STATE(3361)] = 95247, - [SMALL_STATE(3362)] = 95264, - [SMALL_STATE(3363)] = 95281, - [SMALL_STATE(3364)] = 95298, - [SMALL_STATE(3365)] = 95315, - [SMALL_STATE(3366)] = 95330, - [SMALL_STATE(3367)] = 95347, - [SMALL_STATE(3368)] = 95364, - [SMALL_STATE(3369)] = 95381, - [SMALL_STATE(3370)] = 95398, - [SMALL_STATE(3371)] = 95415, - [SMALL_STATE(3372)] = 95430, - [SMALL_STATE(3373)] = 95447, - [SMALL_STATE(3374)] = 95464, - [SMALL_STATE(3375)] = 95481, - [SMALL_STATE(3376)] = 95498, - [SMALL_STATE(3377)] = 95515, - [SMALL_STATE(3378)] = 95530, - [SMALL_STATE(3379)] = 95547, - [SMALL_STATE(3380)] = 95564, - [SMALL_STATE(3381)] = 95581, - [SMALL_STATE(3382)] = 95598, - [SMALL_STATE(3383)] = 95615, - [SMALL_STATE(3384)] = 95632, - [SMALL_STATE(3385)] = 95649, - [SMALL_STATE(3386)] = 95666, - [SMALL_STATE(3387)] = 95683, - [SMALL_STATE(3388)] = 95700, - [SMALL_STATE(3389)] = 95715, - [SMALL_STATE(3390)] = 95732, - [SMALL_STATE(3391)] = 95749, - [SMALL_STATE(3392)] = 95766, - [SMALL_STATE(3393)] = 95783, - [SMALL_STATE(3394)] = 95800, - [SMALL_STATE(3395)] = 95817, - [SMALL_STATE(3396)] = 95832, - [SMALL_STATE(3397)] = 95849, - [SMALL_STATE(3398)] = 95866, - [SMALL_STATE(3399)] = 95881, - [SMALL_STATE(3400)] = 95896, - [SMALL_STATE(3401)] = 95913, - [SMALL_STATE(3402)] = 95930, - [SMALL_STATE(3403)] = 95947, - [SMALL_STATE(3404)] = 95964, - [SMALL_STATE(3405)] = 95981, - [SMALL_STATE(3406)] = 95998, - [SMALL_STATE(3407)] = 96015, - [SMALL_STATE(3408)] = 96032, - [SMALL_STATE(3409)] = 96049, - [SMALL_STATE(3410)] = 96066, - [SMALL_STATE(3411)] = 96083, - [SMALL_STATE(3412)] = 96100, - [SMALL_STATE(3413)] = 96117, - [SMALL_STATE(3414)] = 96134, - [SMALL_STATE(3415)] = 96151, - [SMALL_STATE(3416)] = 96166, - [SMALL_STATE(3417)] = 96181, - [SMALL_STATE(3418)] = 96198, - [SMALL_STATE(3419)] = 96215, - [SMALL_STATE(3420)] = 96232, - [SMALL_STATE(3421)] = 96249, - [SMALL_STATE(3422)] = 96264, - [SMALL_STATE(3423)] = 96281, - [SMALL_STATE(3424)] = 96298, - [SMALL_STATE(3425)] = 96315, - [SMALL_STATE(3426)] = 96332, - [SMALL_STATE(3427)] = 96349, - [SMALL_STATE(3428)] = 96366, - [SMALL_STATE(3429)] = 96383, - [SMALL_STATE(3430)] = 96400, - [SMALL_STATE(3431)] = 96415, - [SMALL_STATE(3432)] = 96432, - [SMALL_STATE(3433)] = 96447, - [SMALL_STATE(3434)] = 96462, - [SMALL_STATE(3435)] = 96479, - [SMALL_STATE(3436)] = 96496, - [SMALL_STATE(3437)] = 96513, - [SMALL_STATE(3438)] = 96528, - [SMALL_STATE(3439)] = 96545, - [SMALL_STATE(3440)] = 96562, - [SMALL_STATE(3441)] = 96577, - [SMALL_STATE(3442)] = 96594, - [SMALL_STATE(3443)] = 96611, - [SMALL_STATE(3444)] = 96628, - [SMALL_STATE(3445)] = 96645, - [SMALL_STATE(3446)] = 96660, - [SMALL_STATE(3447)] = 96677, - [SMALL_STATE(3448)] = 96692, - [SMALL_STATE(3449)] = 96707, - [SMALL_STATE(3450)] = 96724, - [SMALL_STATE(3451)] = 96741, - [SMALL_STATE(3452)] = 96756, - [SMALL_STATE(3453)] = 96773, - [SMALL_STATE(3454)] = 96790, - [SMALL_STATE(3455)] = 96807, - [SMALL_STATE(3456)] = 96824, - [SMALL_STATE(3457)] = 96841, - [SMALL_STATE(3458)] = 96858, - [SMALL_STATE(3459)] = 96875, - [SMALL_STATE(3460)] = 96890, - [SMALL_STATE(3461)] = 96907, - [SMALL_STATE(3462)] = 96922, - [SMALL_STATE(3463)] = 96939, - [SMALL_STATE(3464)] = 96954, - [SMALL_STATE(3465)] = 96971, - [SMALL_STATE(3466)] = 96988, - [SMALL_STATE(3467)] = 97005, - [SMALL_STATE(3468)] = 97022, - [SMALL_STATE(3469)] = 97039, - [SMALL_STATE(3470)] = 97056, - [SMALL_STATE(3471)] = 97073, - [SMALL_STATE(3472)] = 97090, - [SMALL_STATE(3473)] = 97107, - [SMALL_STATE(3474)] = 97122, - [SMALL_STATE(3475)] = 97139, - [SMALL_STATE(3476)] = 97156, - [SMALL_STATE(3477)] = 97173, - [SMALL_STATE(3478)] = 97190, - [SMALL_STATE(3479)] = 97207, - [SMALL_STATE(3480)] = 97224, - [SMALL_STATE(3481)] = 97241, - [SMALL_STATE(3482)] = 97258, - [SMALL_STATE(3483)] = 97275, - [SMALL_STATE(3484)] = 97292, - [SMALL_STATE(3485)] = 97309, - [SMALL_STATE(3486)] = 97324, - [SMALL_STATE(3487)] = 97341, - [SMALL_STATE(3488)] = 97358, - [SMALL_STATE(3489)] = 97375, - [SMALL_STATE(3490)] = 97390, - [SMALL_STATE(3491)] = 97407, - [SMALL_STATE(3492)] = 97424, - [SMALL_STATE(3493)] = 97441, - [SMALL_STATE(3494)] = 97458, - [SMALL_STATE(3495)] = 97475, - [SMALL_STATE(3496)] = 97490, - [SMALL_STATE(3497)] = 97505, - [SMALL_STATE(3498)] = 97522, - [SMALL_STATE(3499)] = 97539, - [SMALL_STATE(3500)] = 97553, - [SMALL_STATE(3501)] = 97567, - [SMALL_STATE(3502)] = 97581, - [SMALL_STATE(3503)] = 97595, - [SMALL_STATE(3504)] = 97609, - [SMALL_STATE(3505)] = 97623, - [SMALL_STATE(3506)] = 97637, - [SMALL_STATE(3507)] = 97651, - [SMALL_STATE(3508)] = 97665, - [SMALL_STATE(3509)] = 97679, - [SMALL_STATE(3510)] = 97693, - [SMALL_STATE(3511)] = 97707, - [SMALL_STATE(3512)] = 97721, - [SMALL_STATE(3513)] = 97735, - [SMALL_STATE(3514)] = 97749, - [SMALL_STATE(3515)] = 97763, - [SMALL_STATE(3516)] = 97777, - [SMALL_STATE(3517)] = 97791, - [SMALL_STATE(3518)] = 97805, - [SMALL_STATE(3519)] = 97819, - [SMALL_STATE(3520)] = 97833, - [SMALL_STATE(3521)] = 97847, - [SMALL_STATE(3522)] = 97861, - [SMALL_STATE(3523)] = 97875, - [SMALL_STATE(3524)] = 97889, - [SMALL_STATE(3525)] = 97903, - [SMALL_STATE(3526)] = 97917, - [SMALL_STATE(3527)] = 97931, - [SMALL_STATE(3528)] = 97945, - [SMALL_STATE(3529)] = 97959, - [SMALL_STATE(3530)] = 97973, - [SMALL_STATE(3531)] = 97987, - [SMALL_STATE(3532)] = 98001, - [SMALL_STATE(3533)] = 98015, - [SMALL_STATE(3534)] = 98029, - [SMALL_STATE(3535)] = 98043, - [SMALL_STATE(3536)] = 98057, - [SMALL_STATE(3537)] = 98071, - [SMALL_STATE(3538)] = 98085, - [SMALL_STATE(3539)] = 98099, - [SMALL_STATE(3540)] = 98113, - [SMALL_STATE(3541)] = 98127, - [SMALL_STATE(3542)] = 98141, - [SMALL_STATE(3543)] = 98155, - [SMALL_STATE(3544)] = 98169, - [SMALL_STATE(3545)] = 98183, - [SMALL_STATE(3546)] = 98197, - [SMALL_STATE(3547)] = 98211, - [SMALL_STATE(3548)] = 98225, - [SMALL_STATE(3549)] = 98239, - [SMALL_STATE(3550)] = 98253, - [SMALL_STATE(3551)] = 98267, - [SMALL_STATE(3552)] = 98281, - [SMALL_STATE(3553)] = 98295, - [SMALL_STATE(3554)] = 98309, - [SMALL_STATE(3555)] = 98323, - [SMALL_STATE(3556)] = 98337, - [SMALL_STATE(3557)] = 98351, - [SMALL_STATE(3558)] = 98365, - [SMALL_STATE(3559)] = 98379, - [SMALL_STATE(3560)] = 98393, - [SMALL_STATE(3561)] = 98407, - [SMALL_STATE(3562)] = 98421, - [SMALL_STATE(3563)] = 98435, - [SMALL_STATE(3564)] = 98449, - [SMALL_STATE(3565)] = 98463, - [SMALL_STATE(3566)] = 98477, - [SMALL_STATE(3567)] = 98491, - [SMALL_STATE(3568)] = 98505, - [SMALL_STATE(3569)] = 98519, - [SMALL_STATE(3570)] = 98533, - [SMALL_STATE(3571)] = 98547, - [SMALL_STATE(3572)] = 98561, - [SMALL_STATE(3573)] = 98575, - [SMALL_STATE(3574)] = 98589, - [SMALL_STATE(3575)] = 98603, - [SMALL_STATE(3576)] = 98617, - [SMALL_STATE(3577)] = 98631, - [SMALL_STATE(3578)] = 98645, - [SMALL_STATE(3579)] = 98659, - [SMALL_STATE(3580)] = 98673, - [SMALL_STATE(3581)] = 98687, - [SMALL_STATE(3582)] = 98701, - [SMALL_STATE(3583)] = 98715, - [SMALL_STATE(3584)] = 98729, - [SMALL_STATE(3585)] = 98743, - [SMALL_STATE(3586)] = 98757, - [SMALL_STATE(3587)] = 98771, - [SMALL_STATE(3588)] = 98785, - [SMALL_STATE(3589)] = 98799, - [SMALL_STATE(3590)] = 98813, - [SMALL_STATE(3591)] = 98827, - [SMALL_STATE(3592)] = 98841, - [SMALL_STATE(3593)] = 98855, - [SMALL_STATE(3594)] = 98869, - [SMALL_STATE(3595)] = 98883, - [SMALL_STATE(3596)] = 98897, - [SMALL_STATE(3597)] = 98911, - [SMALL_STATE(3598)] = 98925, - [SMALL_STATE(3599)] = 98939, - [SMALL_STATE(3600)] = 98953, - [SMALL_STATE(3601)] = 98967, - [SMALL_STATE(3602)] = 98981, - [SMALL_STATE(3603)] = 98995, - [SMALL_STATE(3604)] = 99009, - [SMALL_STATE(3605)] = 99023, - [SMALL_STATE(3606)] = 99037, - [SMALL_STATE(3607)] = 99051, - [SMALL_STATE(3608)] = 99065, - [SMALL_STATE(3609)] = 99079, - [SMALL_STATE(3610)] = 99093, - [SMALL_STATE(3611)] = 99107, - [SMALL_STATE(3612)] = 99121, - [SMALL_STATE(3613)] = 99135, - [SMALL_STATE(3614)] = 99149, - [SMALL_STATE(3615)] = 99163, - [SMALL_STATE(3616)] = 99177, - [SMALL_STATE(3617)] = 99191, - [SMALL_STATE(3618)] = 99205, - [SMALL_STATE(3619)] = 99219, - [SMALL_STATE(3620)] = 99233, - [SMALL_STATE(3621)] = 99247, - [SMALL_STATE(3622)] = 99261, - [SMALL_STATE(3623)] = 99275, - [SMALL_STATE(3624)] = 99289, - [SMALL_STATE(3625)] = 99303, - [SMALL_STATE(3626)] = 99317, - [SMALL_STATE(3627)] = 99331, - [SMALL_STATE(3628)] = 99345, - [SMALL_STATE(3629)] = 99359, - [SMALL_STATE(3630)] = 99373, - [SMALL_STATE(3631)] = 99387, - [SMALL_STATE(3632)] = 99401, - [SMALL_STATE(3633)] = 99415, - [SMALL_STATE(3634)] = 99429, - [SMALL_STATE(3635)] = 99443, - [SMALL_STATE(3636)] = 99457, - [SMALL_STATE(3637)] = 99471, - [SMALL_STATE(3638)] = 99485, - [SMALL_STATE(3639)] = 99499, - [SMALL_STATE(3640)] = 99513, - [SMALL_STATE(3641)] = 99527, - [SMALL_STATE(3642)] = 99541, - [SMALL_STATE(3643)] = 99555, - [SMALL_STATE(3644)] = 99569, - [SMALL_STATE(3645)] = 99583, - [SMALL_STATE(3646)] = 99597, - [SMALL_STATE(3647)] = 99611, - [SMALL_STATE(3648)] = 99625, - [SMALL_STATE(3649)] = 99639, - [SMALL_STATE(3650)] = 99653, - [SMALL_STATE(3651)] = 99667, - [SMALL_STATE(3652)] = 99681, - [SMALL_STATE(3653)] = 99695, - [SMALL_STATE(3654)] = 99709, - [SMALL_STATE(3655)] = 99723, - [SMALL_STATE(3656)] = 99737, - [SMALL_STATE(3657)] = 99751, - [SMALL_STATE(3658)] = 99765, - [SMALL_STATE(3659)] = 99779, - [SMALL_STATE(3660)] = 99793, - [SMALL_STATE(3661)] = 99807, - [SMALL_STATE(3662)] = 99821, - [SMALL_STATE(3663)] = 99835, - [SMALL_STATE(3664)] = 99849, - [SMALL_STATE(3665)] = 99863, - [SMALL_STATE(3666)] = 99877, - [SMALL_STATE(3667)] = 99891, - [SMALL_STATE(3668)] = 99905, - [SMALL_STATE(3669)] = 99919, - [SMALL_STATE(3670)] = 99933, - [SMALL_STATE(3671)] = 99947, - [SMALL_STATE(3672)] = 99961, - [SMALL_STATE(3673)] = 99975, - [SMALL_STATE(3674)] = 99989, - [SMALL_STATE(3675)] = 100003, - [SMALL_STATE(3676)] = 100017, - [SMALL_STATE(3677)] = 100031, - [SMALL_STATE(3678)] = 100045, - [SMALL_STATE(3679)] = 100059, - [SMALL_STATE(3680)] = 100073, - [SMALL_STATE(3681)] = 100087, - [SMALL_STATE(3682)] = 100101, - [SMALL_STATE(3683)] = 100115, - [SMALL_STATE(3684)] = 100129, - [SMALL_STATE(3685)] = 100143, - [SMALL_STATE(3686)] = 100157, - [SMALL_STATE(3687)] = 100171, - [SMALL_STATE(3688)] = 100185, - [SMALL_STATE(3689)] = 100199, - [SMALL_STATE(3690)] = 100213, - [SMALL_STATE(3691)] = 100227, - [SMALL_STATE(3692)] = 100241, - [SMALL_STATE(3693)] = 100255, - [SMALL_STATE(3694)] = 100269, - [SMALL_STATE(3695)] = 100283, - [SMALL_STATE(3696)] = 100297, - [SMALL_STATE(3697)] = 100311, - [SMALL_STATE(3698)] = 100325, - [SMALL_STATE(3699)] = 100339, - [SMALL_STATE(3700)] = 100353, - [SMALL_STATE(3701)] = 100367, - [SMALL_STATE(3702)] = 100381, - [SMALL_STATE(3703)] = 100395, - [SMALL_STATE(3704)] = 100409, - [SMALL_STATE(3705)] = 100423, - [SMALL_STATE(3706)] = 100437, - [SMALL_STATE(3707)] = 100451, - [SMALL_STATE(3708)] = 100465, - [SMALL_STATE(3709)] = 100479, - [SMALL_STATE(3710)] = 100493, - [SMALL_STATE(3711)] = 100507, - [SMALL_STATE(3712)] = 100521, - [SMALL_STATE(3713)] = 100535, - [SMALL_STATE(3714)] = 100549, - [SMALL_STATE(3715)] = 100563, - [SMALL_STATE(3716)] = 100577, - [SMALL_STATE(3717)] = 100591, - [SMALL_STATE(3718)] = 100605, - [SMALL_STATE(3719)] = 100619, - [SMALL_STATE(3720)] = 100633, - [SMALL_STATE(3721)] = 100647, - [SMALL_STATE(3722)] = 100661, - [SMALL_STATE(3723)] = 100675, - [SMALL_STATE(3724)] = 100689, - [SMALL_STATE(3725)] = 100703, - [SMALL_STATE(3726)] = 100717, - [SMALL_STATE(3727)] = 100731, - [SMALL_STATE(3728)] = 100745, - [SMALL_STATE(3729)] = 100759, - [SMALL_STATE(3730)] = 100773, - [SMALL_STATE(3731)] = 100787, - [SMALL_STATE(3732)] = 100801, - [SMALL_STATE(3733)] = 100815, - [SMALL_STATE(3734)] = 100829, - [SMALL_STATE(3735)] = 100843, - [SMALL_STATE(3736)] = 100857, - [SMALL_STATE(3737)] = 100871, - [SMALL_STATE(3738)] = 100885, - [SMALL_STATE(3739)] = 100899, - [SMALL_STATE(3740)] = 100913, - [SMALL_STATE(3741)] = 100927, - [SMALL_STATE(3742)] = 100941, - [SMALL_STATE(3743)] = 100955, - [SMALL_STATE(3744)] = 100969, - [SMALL_STATE(3745)] = 100983, - [SMALL_STATE(3746)] = 100997, - [SMALL_STATE(3747)] = 101011, - [SMALL_STATE(3748)] = 101025, - [SMALL_STATE(3749)] = 101039, - [SMALL_STATE(3750)] = 101053, - [SMALL_STATE(3751)] = 101067, - [SMALL_STATE(3752)] = 101081, - [SMALL_STATE(3753)] = 101095, - [SMALL_STATE(3754)] = 101109, - [SMALL_STATE(3755)] = 101123, - [SMALL_STATE(3756)] = 101137, - [SMALL_STATE(3757)] = 101151, - [SMALL_STATE(3758)] = 101165, - [SMALL_STATE(3759)] = 101179, - [SMALL_STATE(3760)] = 101193, - [SMALL_STATE(3761)] = 101207, - [SMALL_STATE(3762)] = 101221, - [SMALL_STATE(3763)] = 101235, - [SMALL_STATE(3764)] = 101249, - [SMALL_STATE(3765)] = 101263, - [SMALL_STATE(3766)] = 101277, - [SMALL_STATE(3767)] = 101291, - [SMALL_STATE(3768)] = 101305, - [SMALL_STATE(3769)] = 101319, - [SMALL_STATE(3770)] = 101333, - [SMALL_STATE(3771)] = 101347, - [SMALL_STATE(3772)] = 101361, - [SMALL_STATE(3773)] = 101375, - [SMALL_STATE(3774)] = 101389, - [SMALL_STATE(3775)] = 101403, - [SMALL_STATE(3776)] = 101417, - [SMALL_STATE(3777)] = 101431, - [SMALL_STATE(3778)] = 101445, - [SMALL_STATE(3779)] = 101459, - [SMALL_STATE(3780)] = 101473, - [SMALL_STATE(3781)] = 101487, - [SMALL_STATE(3782)] = 101501, - [SMALL_STATE(3783)] = 101515, - [SMALL_STATE(3784)] = 101529, - [SMALL_STATE(3785)] = 101543, - [SMALL_STATE(3786)] = 101557, - [SMALL_STATE(3787)] = 101571, - [SMALL_STATE(3788)] = 101585, - [SMALL_STATE(3789)] = 101599, - [SMALL_STATE(3790)] = 101613, - [SMALL_STATE(3791)] = 101627, - [SMALL_STATE(3792)] = 101641, - [SMALL_STATE(3793)] = 101655, - [SMALL_STATE(3794)] = 101669, - [SMALL_STATE(3795)] = 101683, - [SMALL_STATE(3796)] = 101697, - [SMALL_STATE(3797)] = 101711, - [SMALL_STATE(3798)] = 101725, - [SMALL_STATE(3799)] = 101739, - [SMALL_STATE(3800)] = 101753, - [SMALL_STATE(3801)] = 101767, - [SMALL_STATE(3802)] = 101781, - [SMALL_STATE(3803)] = 101795, - [SMALL_STATE(3804)] = 101809, - [SMALL_STATE(3805)] = 101823, - [SMALL_STATE(3806)] = 101837, - [SMALL_STATE(3807)] = 101851, - [SMALL_STATE(3808)] = 101865, - [SMALL_STATE(3809)] = 101879, - [SMALL_STATE(3810)] = 101893, - [SMALL_STATE(3811)] = 101907, - [SMALL_STATE(3812)] = 101921, - [SMALL_STATE(3813)] = 101935, - [SMALL_STATE(3814)] = 101949, - [SMALL_STATE(3815)] = 101963, - [SMALL_STATE(3816)] = 101977, - [SMALL_STATE(3817)] = 101991, - [SMALL_STATE(3818)] = 102005, - [SMALL_STATE(3819)] = 102009, - [SMALL_STATE(3820)] = 102013, - [SMALL_STATE(3821)] = 102017, - [SMALL_STATE(3822)] = 102021, - [SMALL_STATE(3823)] = 102025, - [SMALL_STATE(3824)] = 102029, + [SMALL_STATE(1056)] = 0, + [SMALL_STATE(1057)] = 74, + [SMALL_STATE(1058)] = 146, + [SMALL_STATE(1059)] = 247, + [SMALL_STATE(1060)] = 348, + [SMALL_STATE(1061)] = 449, + [SMALL_STATE(1062)] = 514, + [SMALL_STATE(1063)] = 579, + [SMALL_STATE(1064)] = 644, + [SMALL_STATE(1065)] = 709, + [SMALL_STATE(1066)] = 774, + [SMALL_STATE(1067)] = 839, + [SMALL_STATE(1068)] = 904, + [SMALL_STATE(1069)] = 981, + [SMALL_STATE(1070)] = 1046, + [SMALL_STATE(1071)] = 1111, + [SMALL_STATE(1072)] = 1180, + [SMALL_STATE(1073)] = 1257, + [SMALL_STATE(1074)] = 1336, + [SMALL_STATE(1075)] = 1413, + [SMALL_STATE(1076)] = 1477, + [SMALL_STATE(1077)] = 1541, + [SMALL_STATE(1078)] = 1605, + [SMALL_STATE(1079)] = 1707, + [SMALL_STATE(1080)] = 1781, + [SMALL_STATE(1081)] = 1883, + [SMALL_STATE(1082)] = 1947, + [SMALL_STATE(1083)] = 2011, + [SMALL_STATE(1084)] = 2079, + [SMALL_STATE(1085)] = 2181, + [SMALL_STATE(1086)] = 2244, + [SMALL_STATE(1087)] = 2315, + [SMALL_STATE(1088)] = 2382, + [SMALL_STATE(1089)] = 2447, + [SMALL_STATE(1090)] = 2518, + [SMALL_STATE(1091)] = 2581, + [SMALL_STATE(1092)] = 2652, + [SMALL_STATE(1093)] = 2717, + [SMALL_STATE(1094)] = 2780, + [SMALL_STATE(1095)] = 2847, + [SMALL_STATE(1096)] = 2914, + [SMALL_STATE(1097)] = 2981, + [SMALL_STATE(1098)] = 3052, + [SMALL_STATE(1099)] = 3115, + [SMALL_STATE(1100)] = 3177, + [SMALL_STATE(1101)] = 3281, + [SMALL_STATE(1102)] = 3343, + [SMALL_STATE(1103)] = 3405, + [SMALL_STATE(1104)] = 3467, + [SMALL_STATE(1105)] = 3529, + [SMALL_STATE(1106)] = 3591, + [SMALL_STATE(1107)] = 3653, + [SMALL_STATE(1108)] = 3715, + [SMALL_STATE(1109)] = 3777, + [SMALL_STATE(1110)] = 3839, + [SMALL_STATE(1111)] = 3901, + [SMALL_STATE(1112)] = 3963, + [SMALL_STATE(1113)] = 4025, + [SMALL_STATE(1114)] = 4087, + [SMALL_STATE(1115)] = 4149, + [SMALL_STATE(1116)] = 4211, + [SMALL_STATE(1117)] = 4273, + [SMALL_STATE(1118)] = 4335, + [SMALL_STATE(1119)] = 4397, + [SMALL_STATE(1120)] = 4459, + [SMALL_STATE(1121)] = 4521, + [SMALL_STATE(1122)] = 4583, + [SMALL_STATE(1123)] = 4645, + [SMALL_STATE(1124)] = 4707, + [SMALL_STATE(1125)] = 4769, + [SMALL_STATE(1126)] = 4831, + [SMALL_STATE(1127)] = 4893, + [SMALL_STATE(1128)] = 4955, + [SMALL_STATE(1129)] = 5017, + [SMALL_STATE(1130)] = 5079, + [SMALL_STATE(1131)] = 5141, + [SMALL_STATE(1132)] = 5203, + [SMALL_STATE(1133)] = 5265, + [SMALL_STATE(1134)] = 5327, + [SMALL_STATE(1135)] = 5389, + [SMALL_STATE(1136)] = 5451, + [SMALL_STATE(1137)] = 5513, + [SMALL_STATE(1138)] = 5575, + [SMALL_STATE(1139)] = 5637, + [SMALL_STATE(1140)] = 5699, + [SMALL_STATE(1141)] = 5761, + [SMALL_STATE(1142)] = 5823, + [SMALL_STATE(1143)] = 5885, + [SMALL_STATE(1144)] = 5947, + [SMALL_STATE(1145)] = 6009, + [SMALL_STATE(1146)] = 6071, + [SMALL_STATE(1147)] = 6133, + [SMALL_STATE(1148)] = 6195, + [SMALL_STATE(1149)] = 6257, + [SMALL_STATE(1150)] = 6319, + [SMALL_STATE(1151)] = 6381, + [SMALL_STATE(1152)] = 6443, + [SMALL_STATE(1153)] = 6505, + [SMALL_STATE(1154)] = 6567, + [SMALL_STATE(1155)] = 6629, + [SMALL_STATE(1156)] = 6691, + [SMALL_STATE(1157)] = 6753, + [SMALL_STATE(1158)] = 6815, + [SMALL_STATE(1159)] = 6877, + [SMALL_STATE(1160)] = 6939, + [SMALL_STATE(1161)] = 7001, + [SMALL_STATE(1162)] = 7063, + [SMALL_STATE(1163)] = 7125, + [SMALL_STATE(1164)] = 7187, + [SMALL_STATE(1165)] = 7249, + [SMALL_STATE(1166)] = 7311, + [SMALL_STATE(1167)] = 7373, + [SMALL_STATE(1168)] = 7435, + [SMALL_STATE(1169)] = 7497, + [SMALL_STATE(1170)] = 7559, + [SMALL_STATE(1171)] = 7621, + [SMALL_STATE(1172)] = 7683, + [SMALL_STATE(1173)] = 7745, + [SMALL_STATE(1174)] = 7807, + [SMALL_STATE(1175)] = 7869, + [SMALL_STATE(1176)] = 7931, + [SMALL_STATE(1177)] = 7993, + [SMALL_STATE(1178)] = 8055, + [SMALL_STATE(1179)] = 8117, + [SMALL_STATE(1180)] = 8179, + [SMALL_STATE(1181)] = 8241, + [SMALL_STATE(1182)] = 8303, + [SMALL_STATE(1183)] = 8365, + [SMALL_STATE(1184)] = 8427, + [SMALL_STATE(1185)] = 8489, + [SMALL_STATE(1186)] = 8551, + [SMALL_STATE(1187)] = 8613, + [SMALL_STATE(1188)] = 8675, + [SMALL_STATE(1189)] = 8737, + [SMALL_STATE(1190)] = 8799, + [SMALL_STATE(1191)] = 8861, + [SMALL_STATE(1192)] = 8923, + [SMALL_STATE(1193)] = 8985, + [SMALL_STATE(1194)] = 9047, + [SMALL_STATE(1195)] = 9109, + [SMALL_STATE(1196)] = 9171, + [SMALL_STATE(1197)] = 9233, + [SMALL_STATE(1198)] = 9295, + [SMALL_STATE(1199)] = 9357, + [SMALL_STATE(1200)] = 9419, + [SMALL_STATE(1201)] = 9481, + [SMALL_STATE(1202)] = 9543, + [SMALL_STATE(1203)] = 9605, + [SMALL_STATE(1204)] = 9667, + [SMALL_STATE(1205)] = 9729, + [SMALL_STATE(1206)] = 9791, + [SMALL_STATE(1207)] = 9853, + [SMALL_STATE(1208)] = 9915, + [SMALL_STATE(1209)] = 9977, + [SMALL_STATE(1210)] = 10039, + [SMALL_STATE(1211)] = 10101, + [SMALL_STATE(1212)] = 10163, + [SMALL_STATE(1213)] = 10225, + [SMALL_STATE(1214)] = 10287, + [SMALL_STATE(1215)] = 10349, + [SMALL_STATE(1216)] = 10411, + [SMALL_STATE(1217)] = 10473, + [SMALL_STATE(1218)] = 10535, + [SMALL_STATE(1219)] = 10597, + [SMALL_STATE(1220)] = 10659, + [SMALL_STATE(1221)] = 10721, + [SMALL_STATE(1222)] = 10783, + [SMALL_STATE(1223)] = 10845, + [SMALL_STATE(1224)] = 10907, + [SMALL_STATE(1225)] = 10969, + [SMALL_STATE(1226)] = 11031, + [SMALL_STATE(1227)] = 11093, + [SMALL_STATE(1228)] = 11155, + [SMALL_STATE(1229)] = 11217, + [SMALL_STATE(1230)] = 11279, + [SMALL_STATE(1231)] = 11341, + [SMALL_STATE(1232)] = 11403, + [SMALL_STATE(1233)] = 11465, + [SMALL_STATE(1234)] = 11527, + [SMALL_STATE(1235)] = 11589, + [SMALL_STATE(1236)] = 11651, + [SMALL_STATE(1237)] = 11713, + [SMALL_STATE(1238)] = 11775, + [SMALL_STATE(1239)] = 11837, + [SMALL_STATE(1240)] = 11899, + [SMALL_STATE(1241)] = 11961, + [SMALL_STATE(1242)] = 12023, + [SMALL_STATE(1243)] = 12085, + [SMALL_STATE(1244)] = 12147, + [SMALL_STATE(1245)] = 12209, + [SMALL_STATE(1246)] = 12271, + [SMALL_STATE(1247)] = 12333, + [SMALL_STATE(1248)] = 12395, + [SMALL_STATE(1249)] = 12457, + [SMALL_STATE(1250)] = 12519, + [SMALL_STATE(1251)] = 12581, + [SMALL_STATE(1252)] = 12643, + [SMALL_STATE(1253)] = 12705, + [SMALL_STATE(1254)] = 12767, + [SMALL_STATE(1255)] = 12829, + [SMALL_STATE(1256)] = 12891, + [SMALL_STATE(1257)] = 12953, + [SMALL_STATE(1258)] = 13015, + [SMALL_STATE(1259)] = 13077, + [SMALL_STATE(1260)] = 13139, + [SMALL_STATE(1261)] = 13201, + [SMALL_STATE(1262)] = 13263, + [SMALL_STATE(1263)] = 13325, + [SMALL_STATE(1264)] = 13387, + [SMALL_STATE(1265)] = 13449, + [SMALL_STATE(1266)] = 13511, + [SMALL_STATE(1267)] = 13573, + [SMALL_STATE(1268)] = 13635, + [SMALL_STATE(1269)] = 13697, + [SMALL_STATE(1270)] = 13759, + [SMALL_STATE(1271)] = 13821, + [SMALL_STATE(1272)] = 13883, + [SMALL_STATE(1273)] = 13945, + [SMALL_STATE(1274)] = 14007, + [SMALL_STATE(1275)] = 14069, + [SMALL_STATE(1276)] = 14131, + [SMALL_STATE(1277)] = 14193, + [SMALL_STATE(1278)] = 14255, + [SMALL_STATE(1279)] = 14317, + [SMALL_STATE(1280)] = 14379, + [SMALL_STATE(1281)] = 14441, + [SMALL_STATE(1282)] = 14503, + [SMALL_STATE(1283)] = 14565, + [SMALL_STATE(1284)] = 14627, + [SMALL_STATE(1285)] = 14689, + [SMALL_STATE(1286)] = 14751, + [SMALL_STATE(1287)] = 14813, + [SMALL_STATE(1288)] = 14875, + [SMALL_STATE(1289)] = 14937, + [SMALL_STATE(1290)] = 14999, + [SMALL_STATE(1291)] = 15061, + [SMALL_STATE(1292)] = 15123, + [SMALL_STATE(1293)] = 15185, + [SMALL_STATE(1294)] = 15247, + [SMALL_STATE(1295)] = 15309, + [SMALL_STATE(1296)] = 15371, + [SMALL_STATE(1297)] = 15433, + [SMALL_STATE(1298)] = 15495, + [SMALL_STATE(1299)] = 15557, + [SMALL_STATE(1300)] = 15619, + [SMALL_STATE(1301)] = 15681, + [SMALL_STATE(1302)] = 15743, + [SMALL_STATE(1303)] = 15805, + [SMALL_STATE(1304)] = 15867, + [SMALL_STATE(1305)] = 15929, + [SMALL_STATE(1306)] = 15991, + [SMALL_STATE(1307)] = 16053, + [SMALL_STATE(1308)] = 16115, + [SMALL_STATE(1309)] = 16177, + [SMALL_STATE(1310)] = 16239, + [SMALL_STATE(1311)] = 16301, + [SMALL_STATE(1312)] = 16363, + [SMALL_STATE(1313)] = 16425, + [SMALL_STATE(1314)] = 16487, + [SMALL_STATE(1315)] = 16549, + [SMALL_STATE(1316)] = 16611, + [SMALL_STATE(1317)] = 16673, + [SMALL_STATE(1318)] = 16735, + [SMALL_STATE(1319)] = 16797, + [SMALL_STATE(1320)] = 16859, + [SMALL_STATE(1321)] = 16921, + [SMALL_STATE(1322)] = 16983, + [SMALL_STATE(1323)] = 17045, + [SMALL_STATE(1324)] = 17107, + [SMALL_STATE(1325)] = 17169, + [SMALL_STATE(1326)] = 17231, + [SMALL_STATE(1327)] = 17293, + [SMALL_STATE(1328)] = 17355, + [SMALL_STATE(1329)] = 17417, + [SMALL_STATE(1330)] = 17479, + [SMALL_STATE(1331)] = 17541, + [SMALL_STATE(1332)] = 17603, + [SMALL_STATE(1333)] = 17665, + [SMALL_STATE(1334)] = 17727, + [SMALL_STATE(1335)] = 17789, + [SMALL_STATE(1336)] = 17851, + [SMALL_STATE(1337)] = 17913, + [SMALL_STATE(1338)] = 17975, + [SMALL_STATE(1339)] = 18037, + [SMALL_STATE(1340)] = 18099, + [SMALL_STATE(1341)] = 18161, + [SMALL_STATE(1342)] = 18223, + [SMALL_STATE(1343)] = 18285, + [SMALL_STATE(1344)] = 18347, + [SMALL_STATE(1345)] = 18409, + [SMALL_STATE(1346)] = 18471, + [SMALL_STATE(1347)] = 18533, + [SMALL_STATE(1348)] = 18595, + [SMALL_STATE(1349)] = 18657, + [SMALL_STATE(1350)] = 18719, + [SMALL_STATE(1351)] = 18781, + [SMALL_STATE(1352)] = 18843, + [SMALL_STATE(1353)] = 18905, + [SMALL_STATE(1354)] = 18967, + [SMALL_STATE(1355)] = 19029, + [SMALL_STATE(1356)] = 19091, + [SMALL_STATE(1357)] = 19153, + [SMALL_STATE(1358)] = 19215, + [SMALL_STATE(1359)] = 19277, + [SMALL_STATE(1360)] = 19339, + [SMALL_STATE(1361)] = 19401, + [SMALL_STATE(1362)] = 19463, + [SMALL_STATE(1363)] = 19525, + [SMALL_STATE(1364)] = 19587, + [SMALL_STATE(1365)] = 19649, + [SMALL_STATE(1366)] = 19711, + [SMALL_STATE(1367)] = 19815, + [SMALL_STATE(1368)] = 19883, + [SMALL_STATE(1369)] = 19951, + [SMALL_STATE(1370)] = 20013, + [SMALL_STATE(1371)] = 20075, + [SMALL_STATE(1372)] = 20179, + [SMALL_STATE(1373)] = 20241, + [SMALL_STATE(1374)] = 20303, + [SMALL_STATE(1375)] = 20365, + [SMALL_STATE(1376)] = 20435, + [SMALL_STATE(1377)] = 20539, + [SMALL_STATE(1378)] = 20601, + [SMALL_STATE(1379)] = 20663, + [SMALL_STATE(1380)] = 20757, + [SMALL_STATE(1381)] = 20819, + [SMALL_STATE(1382)] = 20881, + [SMALL_STATE(1383)] = 20943, + [SMALL_STATE(1384)] = 21037, + [SMALL_STATE(1385)] = 21131, + [SMALL_STATE(1386)] = 21193, + [SMALL_STATE(1387)] = 21254, + [SMALL_STATE(1388)] = 21319, + [SMALL_STATE(1389)] = 21382, + [SMALL_STATE(1390)] = 21457, + [SMALL_STATE(1391)] = 21520, + [SMALL_STATE(1392)] = 21583, + [SMALL_STATE(1393)] = 21680, + [SMALL_STATE(1394)] = 21741, + [SMALL_STATE(1395)] = 21802, + [SMALL_STATE(1396)] = 21867, + [SMALL_STATE(1397)] = 21928, + [SMALL_STATE(1398)] = 21991, + [SMALL_STATE(1399)] = 22052, + [SMALL_STATE(1400)] = 22127, + [SMALL_STATE(1401)] = 22190, + [SMALL_STATE(1402)] = 22253, + [SMALL_STATE(1403)] = 22316, + [SMALL_STATE(1404)] = 22379, + [SMALL_STATE(1405)] = 22440, + [SMALL_STATE(1406)] = 22501, + [SMALL_STATE(1407)] = 22562, + [SMALL_STATE(1408)] = 22623, + [SMALL_STATE(1409)] = 22684, + [SMALL_STATE(1410)] = 22747, + [SMALL_STATE(1411)] = 22810, + [SMALL_STATE(1412)] = 22871, + [SMALL_STATE(1413)] = 22932, + [SMALL_STATE(1414)] = 22995, + [SMALL_STATE(1415)] = 23058, + [SMALL_STATE(1416)] = 23121, + [SMALL_STATE(1417)] = 23184, + [SMALL_STATE(1418)] = 23245, + [SMALL_STATE(1419)] = 23308, + [SMALL_STATE(1420)] = 23371, + [SMALL_STATE(1421)] = 23432, + [SMALL_STATE(1422)] = 23493, + [SMALL_STATE(1423)] = 23554, + [SMALL_STATE(1424)] = 23617, + [SMALL_STATE(1425)] = 23680, + [SMALL_STATE(1426)] = 23741, + [SMALL_STATE(1427)] = 23806, + [SMALL_STATE(1428)] = 23866, + [SMALL_STATE(1429)] = 23926, + [SMALL_STATE(1430)] = 23986, + [SMALL_STATE(1431)] = 24046, + [SMALL_STATE(1432)] = 24106, + [SMALL_STATE(1433)] = 24166, + [SMALL_STATE(1434)] = 24226, + [SMALL_STATE(1435)] = 24286, + [SMALL_STATE(1436)] = 24346, + [SMALL_STATE(1437)] = 24406, + [SMALL_STATE(1438)] = 24466, + [SMALL_STATE(1439)] = 24526, + [SMALL_STATE(1440)] = 24586, + [SMALL_STATE(1441)] = 24646, + [SMALL_STATE(1442)] = 24706, + [SMALL_STATE(1443)] = 24766, + [SMALL_STATE(1444)] = 24826, + [SMALL_STATE(1445)] = 24886, + [SMALL_STATE(1446)] = 24946, + [SMALL_STATE(1447)] = 25006, + [SMALL_STATE(1448)] = 25066, + [SMALL_STATE(1449)] = 25126, + [SMALL_STATE(1450)] = 25186, + [SMALL_STATE(1451)] = 25246, + [SMALL_STATE(1452)] = 25306, + [SMALL_STATE(1453)] = 25366, + [SMALL_STATE(1454)] = 25426, + [SMALL_STATE(1455)] = 25486, + [SMALL_STATE(1456)] = 25546, + [SMALL_STATE(1457)] = 25606, + [SMALL_STATE(1458)] = 25666, + [SMALL_STATE(1459)] = 25726, + [SMALL_STATE(1460)] = 25786, + [SMALL_STATE(1461)] = 25846, + [SMALL_STATE(1462)] = 25906, + [SMALL_STATE(1463)] = 25966, + [SMALL_STATE(1464)] = 26026, + [SMALL_STATE(1465)] = 26100, + [SMALL_STATE(1466)] = 26160, + [SMALL_STATE(1467)] = 26220, + [SMALL_STATE(1468)] = 26280, + [SMALL_STATE(1469)] = 26340, + [SMALL_STATE(1470)] = 26400, + [SMALL_STATE(1471)] = 26460, + [SMALL_STATE(1472)] = 26520, + [SMALL_STATE(1473)] = 26580, + [SMALL_STATE(1474)] = 26640, + [SMALL_STATE(1475)] = 26700, + [SMALL_STATE(1476)] = 26760, + [SMALL_STATE(1477)] = 26826, + [SMALL_STATE(1478)] = 26886, + [SMALL_STATE(1479)] = 26946, + [SMALL_STATE(1480)] = 27006, + [SMALL_STATE(1481)] = 27066, + [SMALL_STATE(1482)] = 27132, + [SMALL_STATE(1483)] = 27192, + [SMALL_STATE(1484)] = 27252, + [SMALL_STATE(1485)] = 27312, + [SMALL_STATE(1486)] = 27372, + [SMALL_STATE(1487)] = 27432, + [SMALL_STATE(1488)] = 27492, + [SMALL_STATE(1489)] = 27552, + [SMALL_STATE(1490)] = 27612, + [SMALL_STATE(1491)] = 27674, + [SMALL_STATE(1492)] = 27734, + [SMALL_STATE(1493)] = 27794, + [SMALL_STATE(1494)] = 27854, + [SMALL_STATE(1495)] = 27914, + [SMALL_STATE(1496)] = 27974, + [SMALL_STATE(1497)] = 28034, + [SMALL_STATE(1498)] = 28102, + [SMALL_STATE(1499)] = 28162, + [SMALL_STATE(1500)] = 28222, + [SMALL_STATE(1501)] = 28282, + [SMALL_STATE(1502)] = 28342, + [SMALL_STATE(1503)] = 28404, + [SMALL_STATE(1504)] = 28464, + [SMALL_STATE(1505)] = 28524, + [SMALL_STATE(1506)] = 28584, + [SMALL_STATE(1507)] = 28644, + [SMALL_STATE(1508)] = 28704, + [SMALL_STATE(1509)] = 28764, + [SMALL_STATE(1510)] = 28824, + [SMALL_STATE(1511)] = 28884, + [SMALL_STATE(1512)] = 28944, + [SMALL_STATE(1513)] = 29004, + [SMALL_STATE(1514)] = 29064, + [SMALL_STATE(1515)] = 29124, + [SMALL_STATE(1516)] = 29184, + [SMALL_STATE(1517)] = 29250, + [SMALL_STATE(1518)] = 29310, + [SMALL_STATE(1519)] = 29374, + [SMALL_STATE(1520)] = 29434, + [SMALL_STATE(1521)] = 29498, + [SMALL_STATE(1522)] = 29558, + [SMALL_STATE(1523)] = 29618, + [SMALL_STATE(1524)] = 29678, + [SMALL_STATE(1525)] = 29738, + [SMALL_STATE(1526)] = 29798, + [SMALL_STATE(1527)] = 29858, + [SMALL_STATE(1528)] = 29918, + [SMALL_STATE(1529)] = 29978, + [SMALL_STATE(1530)] = 30038, + [SMALL_STATE(1531)] = 30098, + [SMALL_STATE(1532)] = 30158, + [SMALL_STATE(1533)] = 30218, + [SMALL_STATE(1534)] = 30278, + [SMALL_STATE(1535)] = 30338, + [SMALL_STATE(1536)] = 30398, + [SMALL_STATE(1537)] = 30458, + [SMALL_STATE(1538)] = 30518, + [SMALL_STATE(1539)] = 30578, + [SMALL_STATE(1540)] = 30638, + [SMALL_STATE(1541)] = 30698, + [SMALL_STATE(1542)] = 30758, + [SMALL_STATE(1543)] = 30824, + [SMALL_STATE(1544)] = 30884, + [SMALL_STATE(1545)] = 30944, + [SMALL_STATE(1546)] = 31004, + [SMALL_STATE(1547)] = 31064, + [SMALL_STATE(1548)] = 31124, + [SMALL_STATE(1549)] = 31184, + [SMALL_STATE(1550)] = 31243, + [SMALL_STATE(1551)] = 31304, + [SMALL_STATE(1552)] = 31391, + [SMALL_STATE(1553)] = 31462, + [SMALL_STATE(1554)] = 31549, + [SMALL_STATE(1555)] = 31618, + [SMALL_STATE(1556)] = 31679, + [SMALL_STATE(1557)] = 31740, + [SMALL_STATE(1558)] = 31827, + [SMALL_STATE(1559)] = 31888, + [SMALL_STATE(1560)] = 31947, + [SMALL_STATE(1561)] = 32034, + [SMALL_STATE(1562)] = 32093, + [SMALL_STATE(1563)] = 32180, + [SMALL_STATE(1564)] = 32267, + [SMALL_STATE(1565)] = 32359, + [SMALL_STATE(1566)] = 32443, + [SMALL_STATE(1567)] = 32513, + [SMALL_STATE(1568)] = 32603, + [SMALL_STATE(1569)] = 32693, + [SMALL_STATE(1570)] = 32771, + [SMALL_STATE(1571)] = 32857, + [SMALL_STATE(1572)] = 32949, + [SMALL_STATE(1573)] = 33041, + [SMALL_STATE(1574)] = 33111, + [SMALL_STATE(1575)] = 33201, + [SMALL_STATE(1576)] = 33293, + [SMALL_STATE(1577)] = 33357, + [SMALL_STATE(1578)] = 33427, + [SMALL_STATE(1579)] = 33493, + [SMALL_STATE(1580)] = 33569, + [SMALL_STATE(1581)] = 33643, + [SMALL_STATE(1582)] = 33729, + [SMALL_STATE(1583)] = 33797, + [SMALL_STATE(1584)] = 33869, + [SMALL_STATE(1585)] = 33939, + [SMALL_STATE(1586)] = 34029, + [SMALL_STATE(1587)] = 34119, + [SMALL_STATE(1588)] = 34201, + [SMALL_STATE(1589)] = 34291, + [SMALL_STATE(1590)] = 34354, + [SMALL_STATE(1591)] = 34419, + [SMALL_STATE(1592)] = 34482, + [SMALL_STATE(1593)] = 34545, + [SMALL_STATE(1594)] = 34608, + [SMALL_STATE(1595)] = 34675, + [SMALL_STATE(1596)] = 34733, + [SMALL_STATE(1597)] = 34793, + [SMALL_STATE(1598)] = 34849, + [SMALL_STATE(1599)] = 34913, + [SMALL_STATE(1600)] = 34969, + [SMALL_STATE(1601)] = 35033, + [SMALL_STATE(1602)] = 35093, + [SMALL_STATE(1603)] = 35157, + [SMALL_STATE(1604)] = 35221, + [SMALL_STATE(1605)] = 35311, + [SMALL_STATE(1606)] = 35371, + [SMALL_STATE(1607)] = 35431, + [SMALL_STATE(1608)] = 35521, + [SMALL_STATE(1609)] = 35579, + [SMALL_STATE(1610)] = 35639, + [SMALL_STATE(1611)] = 35695, + [SMALL_STATE(1612)] = 35755, + [SMALL_STATE(1613)] = 35813, + [SMALL_STATE(1614)] = 35873, + [SMALL_STATE(1615)] = 35933, + [SMALL_STATE(1616)] = 35991, + [SMALL_STATE(1617)] = 36081, + [SMALL_STATE(1618)] = 36137, + [SMALL_STATE(1619)] = 36227, + [SMALL_STATE(1620)] = 36286, + [SMALL_STATE(1621)] = 36341, + [SMALL_STATE(1622)] = 36396, + [SMALL_STATE(1623)] = 36453, + [SMALL_STATE(1624)] = 36548, + [SMALL_STATE(1625)] = 36603, + [SMALL_STATE(1626)] = 36660, + [SMALL_STATE(1627)] = 36755, + [SMALL_STATE(1628)] = 36814, + [SMALL_STATE(1629)] = 36869, + [SMALL_STATE(1630)] = 36964, + [SMALL_STATE(1631)] = 37019, + [SMALL_STATE(1632)] = 37076, + [SMALL_STATE(1633)] = 37171, + [SMALL_STATE(1634)] = 37266, + [SMALL_STATE(1635)] = 37361, + [SMALL_STATE(1636)] = 37456, + [SMALL_STATE(1637)] = 37551, + [SMALL_STATE(1638)] = 37608, + [SMALL_STATE(1639)] = 37665, + [SMALL_STATE(1640)] = 37760, + [SMALL_STATE(1641)] = 37841, + [SMALL_STATE(1642)] = 37896, + [SMALL_STATE(1643)] = 37951, + [SMALL_STATE(1644)] = 38006, + [SMALL_STATE(1645)] = 38063, + [SMALL_STATE(1646)] = 38158, + [SMALL_STATE(1647)] = 38215, + [SMALL_STATE(1648)] = 38310, + [SMALL_STATE(1649)] = 38369, + [SMALL_STATE(1650)] = 38464, + [SMALL_STATE(1651)] = 38523, + [SMALL_STATE(1652)] = 38595, + [SMALL_STATE(1653)] = 38681, + [SMALL_STATE(1654)] = 38737, + [SMALL_STATE(1655)] = 38819, + [SMALL_STATE(1656)] = 38875, + [SMALL_STATE(1657)] = 38961, + [SMALL_STATE(1658)] = 39017, + [SMALL_STATE(1659)] = 39103, + [SMALL_STATE(1660)] = 39167, + [SMALL_STATE(1661)] = 39259, + [SMALL_STATE(1662)] = 39347, + [SMALL_STATE(1663)] = 39403, + [SMALL_STATE(1664)] = 39473, + [SMALL_STATE(1665)] = 39527, + [SMALL_STATE(1666)] = 39581, + [SMALL_STATE(1667)] = 39635, + [SMALL_STATE(1668)] = 39727, + [SMALL_STATE(1669)] = 39783, + [SMALL_STATE(1670)] = 39837, + [SMALL_STATE(1671)] = 39895, + [SMALL_STATE(1672)] = 39949, + [SMALL_STATE(1673)] = 40005, + [SMALL_STATE(1674)] = 40059, + [SMALL_STATE(1675)] = 40113, + [SMALL_STATE(1676)] = 40201, + [SMALL_STATE(1677)] = 40255, + [SMALL_STATE(1678)] = 40311, + [SMALL_STATE(1679)] = 40403, + [SMALL_STATE(1680)] = 40489, + [SMALL_STATE(1681)] = 40557, + [SMALL_STATE(1682)] = 40613, + [SMALL_STATE(1683)] = 40667, + [SMALL_STATE(1684)] = 40759, + [SMALL_STATE(1685)] = 40845, + [SMALL_STATE(1686)] = 40901, + [SMALL_STATE(1687)] = 40979, + [SMALL_STATE(1688)] = 41065, + [SMALL_STATE(1689)] = 41121, + [SMALL_STATE(1690)] = 41175, + [SMALL_STATE(1691)] = 41267, + [SMALL_STATE(1692)] = 41341, + [SMALL_STATE(1693)] = 41429, + [SMALL_STATE(1694)] = 41485, + [SMALL_STATE(1695)] = 41563, + [SMALL_STATE(1696)] = 41617, + [SMALL_STATE(1697)] = 41697, + [SMALL_STATE(1698)] = 41751, + [SMALL_STATE(1699)] = 41839, + [SMALL_STATE(1700)] = 41893, + [SMALL_STATE(1701)] = 41949, + [SMALL_STATE(1702)] = 42005, + [SMALL_STATE(1703)] = 42061, + [SMALL_STATE(1704)] = 42115, + [SMALL_STATE(1705)] = 42203, + [SMALL_STATE(1706)] = 42281, + [SMALL_STATE(1707)] = 42347, + [SMALL_STATE(1708)] = 42429, + [SMALL_STATE(1709)] = 42483, + [SMALL_STATE(1710)] = 42539, + [SMALL_STATE(1711)] = 42627, + [SMALL_STATE(1712)] = 42683, + [SMALL_STATE(1713)] = 42775, + [SMALL_STATE(1714)] = 42829, + [SMALL_STATE(1715)] = 42882, + [SMALL_STATE(1716)] = 42957, + [SMALL_STATE(1717)] = 43010, + [SMALL_STATE(1718)] = 43063, + [SMALL_STATE(1719)] = 43150, + [SMALL_STATE(1720)] = 43203, + [SMALL_STATE(1721)] = 43256, + [SMALL_STATE(1722)] = 43309, + [SMALL_STATE(1723)] = 43362, + [SMALL_STATE(1724)] = 43449, + [SMALL_STATE(1725)] = 43502, + [SMALL_STATE(1726)] = 43555, + [SMALL_STATE(1727)] = 43608, + [SMALL_STATE(1728)] = 43661, + [SMALL_STATE(1729)] = 43750, + [SMALL_STATE(1730)] = 43837, + [SMALL_STATE(1731)] = 43890, + [SMALL_STATE(1732)] = 43943, + [SMALL_STATE(1733)] = 44030, + [SMALL_STATE(1734)] = 44115, + [SMALL_STATE(1735)] = 44168, + [SMALL_STATE(1736)] = 44221, + [SMALL_STATE(1737)] = 44274, + [SMALL_STATE(1738)] = 44361, + [SMALL_STATE(1739)] = 44424, + [SMALL_STATE(1740)] = 44493, + [SMALL_STATE(1741)] = 44560, + [SMALL_STATE(1742)] = 44631, + [SMALL_STATE(1743)] = 44708, + [SMALL_STATE(1744)] = 44787, + [SMALL_STATE(1745)] = 44852, + [SMALL_STATE(1746)] = 44937, + [SMALL_STATE(1747)] = 45022, + [SMALL_STATE(1748)] = 45095, + [SMALL_STATE(1749)] = 45176, + [SMALL_STATE(1750)] = 45229, + [SMALL_STATE(1751)] = 45282, + [SMALL_STATE(1752)] = 45335, + [SMALL_STATE(1753)] = 45422, + [SMALL_STATE(1754)] = 45475, + [SMALL_STATE(1755)] = 45528, + [SMALL_STATE(1756)] = 45581, + [SMALL_STATE(1757)] = 45634, + [SMALL_STATE(1758)] = 45687, + [SMALL_STATE(1759)] = 45740, + [SMALL_STATE(1760)] = 45793, + [SMALL_STATE(1761)] = 45846, + [SMALL_STATE(1762)] = 45899, + [SMALL_STATE(1763)] = 45986, + [SMALL_STATE(1764)] = 46039, + [SMALL_STATE(1765)] = 46092, + [SMALL_STATE(1766)] = 46145, + [SMALL_STATE(1767)] = 46198, + [SMALL_STATE(1768)] = 46251, + [SMALL_STATE(1769)] = 46304, + [SMALL_STATE(1770)] = 46357, + [SMALL_STATE(1771)] = 46444, + [SMALL_STATE(1772)] = 46497, + [SMALL_STATE(1773)] = 46586, + [SMALL_STATE(1774)] = 46673, + [SMALL_STATE(1775)] = 46726, + [SMALL_STATE(1776)] = 46779, + [SMALL_STATE(1777)] = 46832, + [SMALL_STATE(1778)] = 46919, + [SMALL_STATE(1779)] = 47006, + [SMALL_STATE(1780)] = 47059, + [SMALL_STATE(1781)] = 47112, + [SMALL_STATE(1782)] = 47165, + [SMALL_STATE(1783)] = 47218, + [SMALL_STATE(1784)] = 47271, + [SMALL_STATE(1785)] = 47324, + [SMALL_STATE(1786)] = 47377, + [SMALL_STATE(1787)] = 47430, + [SMALL_STATE(1788)] = 47489, + [SMALL_STATE(1789)] = 47576, + [SMALL_STATE(1790)] = 47665, + [SMALL_STATE(1791)] = 47754, + [SMALL_STATE(1792)] = 47841, + [SMALL_STATE(1793)] = 47930, + [SMALL_STATE(1794)] = 48017, + [SMALL_STATE(1795)] = 48070, + [SMALL_STATE(1796)] = 48123, + [SMALL_STATE(1797)] = 48212, + [SMALL_STATE(1798)] = 48287, + [SMALL_STATE(1799)] = 48340, + [SMALL_STATE(1800)] = 48429, + [SMALL_STATE(1801)] = 48516, + [SMALL_STATE(1802)] = 48605, + [SMALL_STATE(1803)] = 48694, + [SMALL_STATE(1804)] = 48755, + [SMALL_STATE(1805)] = 48844, + [SMALL_STATE(1806)] = 48933, + [SMALL_STATE(1807)] = 48986, + [SMALL_STATE(1808)] = 49071, + [SMALL_STATE(1809)] = 49160, + [SMALL_STATE(1810)] = 49213, + [SMALL_STATE(1811)] = 49302, + [SMALL_STATE(1812)] = 49391, + [SMALL_STATE(1813)] = 49444, + [SMALL_STATE(1814)] = 49497, + [SMALL_STATE(1815)] = 49586, + [SMALL_STATE(1816)] = 49675, + [SMALL_STATE(1817)] = 49764, + [SMALL_STATE(1818)] = 49853, + [SMALL_STATE(1819)] = 49906, + [SMALL_STATE(1820)] = 49959, + [SMALL_STATE(1821)] = 50048, + [SMALL_STATE(1822)] = 50135, + [SMALL_STATE(1823)] = 50188, + [SMALL_STATE(1824)] = 50277, + [SMALL_STATE(1825)] = 50330, + [SMALL_STATE(1826)] = 50411, + [SMALL_STATE(1827)] = 50496, + [SMALL_STATE(1828)] = 50585, + [SMALL_STATE(1829)] = 50670, + [SMALL_STATE(1830)] = 50755, + [SMALL_STATE(1831)] = 50844, + [SMALL_STATE(1832)] = 50931, + [SMALL_STATE(1833)] = 51016, + [SMALL_STATE(1834)] = 51069, + [SMALL_STATE(1835)] = 51158, + [SMALL_STATE(1836)] = 51211, + [SMALL_STATE(1837)] = 51300, + [SMALL_STATE(1838)] = 51389, + [SMALL_STATE(1839)] = 51442, + [SMALL_STATE(1840)] = 51527, + [SMALL_STATE(1841)] = 51616, + [SMALL_STATE(1842)] = 51669, + [SMALL_STATE(1843)] = 51722, + [SMALL_STATE(1844)] = 51775, + [SMALL_STATE(1845)] = 51864, + [SMALL_STATE(1846)] = 51953, + [SMALL_STATE(1847)] = 52042, + [SMALL_STATE(1848)] = 52105, + [SMALL_STATE(1849)] = 52174, + [SMALL_STATE(1850)] = 52241, + [SMALL_STATE(1851)] = 52312, + [SMALL_STATE(1852)] = 52389, + [SMALL_STATE(1853)] = 52468, + [SMALL_STATE(1854)] = 52533, + [SMALL_STATE(1855)] = 52622, + [SMALL_STATE(1856)] = 52707, + [SMALL_STATE(1857)] = 52796, + [SMALL_STATE(1858)] = 52881, + [SMALL_STATE(1859)] = 52954, + [SMALL_STATE(1860)] = 53043, + [SMALL_STATE(1861)] = 53124, + [SMALL_STATE(1862)] = 53213, + [SMALL_STATE(1863)] = 53302, + [SMALL_STATE(1864)] = 53355, + [SMALL_STATE(1865)] = 53408, + [SMALL_STATE(1866)] = 53497, + [SMALL_STATE(1867)] = 53586, + [SMALL_STATE(1868)] = 53675, + [SMALL_STATE(1869)] = 53764, + [SMALL_STATE(1870)] = 53853, + [SMALL_STATE(1871)] = 53942, + [SMALL_STATE(1872)] = 54031, + [SMALL_STATE(1873)] = 54120, + [SMALL_STATE(1874)] = 54209, + [SMALL_STATE(1875)] = 54298, + [SMALL_STATE(1876)] = 54351, + [SMALL_STATE(1877)] = 54440, + [SMALL_STATE(1878)] = 54493, + [SMALL_STATE(1879)] = 54546, + [SMALL_STATE(1880)] = 54621, + [SMALL_STATE(1881)] = 54708, + [SMALL_STATE(1882)] = 54797, + [SMALL_STATE(1883)] = 54872, + [SMALL_STATE(1884)] = 54925, + [SMALL_STATE(1885)] = 54978, + [SMALL_STATE(1886)] = 55031, + [SMALL_STATE(1887)] = 55084, + [SMALL_STATE(1888)] = 55137, + [SMALL_STATE(1889)] = 55190, + [SMALL_STATE(1890)] = 55243, + [SMALL_STATE(1891)] = 55296, + [SMALL_STATE(1892)] = 55349, + [SMALL_STATE(1893)] = 55402, + [SMALL_STATE(1894)] = 55455, + [SMALL_STATE(1895)] = 55508, + [SMALL_STATE(1896)] = 55561, + [SMALL_STATE(1897)] = 55620, + [SMALL_STATE(1898)] = 55709, + [SMALL_STATE(1899)] = 55768, + [SMALL_STATE(1900)] = 55821, + [SMALL_STATE(1901)] = 55910, + [SMALL_STATE(1902)] = 55963, + [SMALL_STATE(1903)] = 56016, + [SMALL_STATE(1904)] = 56097, + [SMALL_STATE(1905)] = 56182, + [SMALL_STATE(1906)] = 56235, + [SMALL_STATE(1907)] = 56322, + [SMALL_STATE(1908)] = 56409, + [SMALL_STATE(1909)] = 56494, + [SMALL_STATE(1910)] = 56569, + [SMALL_STATE(1911)] = 56654, + [SMALL_STATE(1912)] = 56707, + [SMALL_STATE(1913)] = 56760, + [SMALL_STATE(1914)] = 56813, + [SMALL_STATE(1915)] = 56866, + [SMALL_STATE(1916)] = 56919, + [SMALL_STATE(1917)] = 56972, + [SMALL_STATE(1918)] = 57059, + [SMALL_STATE(1919)] = 57112, + [SMALL_STATE(1920)] = 57165, + [SMALL_STATE(1921)] = 57218, + [SMALL_STATE(1922)] = 57271, + [SMALL_STATE(1923)] = 57324, + [SMALL_STATE(1924)] = 57377, + [SMALL_STATE(1925)] = 57430, + [SMALL_STATE(1926)] = 57483, + [SMALL_STATE(1927)] = 57536, + [SMALL_STATE(1928)] = 57589, + [SMALL_STATE(1929)] = 57642, + [SMALL_STATE(1930)] = 57701, + [SMALL_STATE(1931)] = 57754, + [SMALL_STATE(1932)] = 57843, + [SMALL_STATE(1933)] = 57896, + [SMALL_STATE(1934)] = 57949, + [SMALL_STATE(1935)] = 58002, + [SMALL_STATE(1936)] = 58089, + [SMALL_STATE(1937)] = 58142, + [SMALL_STATE(1938)] = 58195, + [SMALL_STATE(1939)] = 58284, + [SMALL_STATE(1940)] = 58370, + [SMALL_STATE(1941)] = 58456, + [SMALL_STATE(1942)] = 58542, + [SMALL_STATE(1943)] = 58628, + [SMALL_STATE(1944)] = 58704, + [SMALL_STATE(1945)] = 58790, + [SMALL_STATE(1946)] = 58876, + [SMALL_STATE(1947)] = 58962, + [SMALL_STATE(1948)] = 59048, + [SMALL_STATE(1949)] = 59134, + [SMALL_STATE(1950)] = 59220, + [SMALL_STATE(1951)] = 59306, + [SMALL_STATE(1952)] = 59392, + [SMALL_STATE(1953)] = 59476, + [SMALL_STATE(1954)] = 59562, + [SMALL_STATE(1955)] = 59648, + [SMALL_STATE(1956)] = 59734, + [SMALL_STATE(1957)] = 59820, + [SMALL_STATE(1958)] = 59906, + [SMALL_STATE(1959)] = 59992, + [SMALL_STATE(1960)] = 60078, + [SMALL_STATE(1961)] = 60164, + [SMALL_STATE(1962)] = 60250, + [SMALL_STATE(1963)] = 60336, + [SMALL_STATE(1964)] = 60422, + [SMALL_STATE(1965)] = 60506, + [SMALL_STATE(1966)] = 60582, + [SMALL_STATE(1967)] = 60668, + [SMALL_STATE(1968)] = 60754, + [SMALL_STATE(1969)] = 60840, + [SMALL_STATE(1970)] = 60926, + [SMALL_STATE(1971)] = 61012, + [SMALL_STATE(1972)] = 61088, + [SMALL_STATE(1973)] = 61174, + [SMALL_STATE(1974)] = 61250, + [SMALL_STATE(1975)] = 61326, + [SMALL_STATE(1976)] = 61402, + [SMALL_STATE(1977)] = 61478, + [SMALL_STATE(1978)] = 61554, + [SMALL_STATE(1979)] = 61640, + [SMALL_STATE(1980)] = 61688, + [SMALL_STATE(1981)] = 61736, + [SMALL_STATE(1982)] = 61784, + [SMALL_STATE(1983)] = 61847, + [SMALL_STATE(1984)] = 61910, + [SMALL_STATE(1985)] = 61973, + [SMALL_STATE(1986)] = 62036, + [SMALL_STATE(1987)] = 62099, + [SMALL_STATE(1988)] = 62162, + [SMALL_STATE(1989)] = 62225, + [SMALL_STATE(1990)] = 62288, + [SMALL_STATE(1991)] = 62351, + [SMALL_STATE(1992)] = 62411, + [SMALL_STATE(1993)] = 62471, + [SMALL_STATE(1994)] = 62507, + [SMALL_STATE(1995)] = 62543, + [SMALL_STATE(1996)] = 62596, + [SMALL_STATE(1997)] = 62633, + [SMALL_STATE(1998)] = 62670, + [SMALL_STATE(1999)] = 62707, + [SMALL_STATE(2000)] = 62744, + [SMALL_STATE(2001)] = 62780, + [SMALL_STATE(2002)] = 62816, + [SMALL_STATE(2003)] = 62850, + [SMALL_STATE(2004)] = 62884, + [SMALL_STATE(2005)] = 62920, + [SMALL_STATE(2006)] = 62964, + [SMALL_STATE(2007)] = 63008, + [SMALL_STATE(2008)] = 63044, + [SMALL_STATE(2009)] = 63078, + [SMALL_STATE(2010)] = 63122, + [SMALL_STATE(2011)] = 63156, + [SMALL_STATE(2012)] = 63189, + [SMALL_STATE(2013)] = 63240, + [SMALL_STATE(2014)] = 63273, + [SMALL_STATE(2015)] = 63306, + [SMALL_STATE(2016)] = 63337, + [SMALL_STATE(2017)] = 63370, + [SMALL_STATE(2018)] = 63411, + [SMALL_STATE(2019)] = 63449, + [SMALL_STATE(2020)] = 63495, + [SMALL_STATE(2021)] = 63539, + [SMALL_STATE(2022)] = 63599, + [SMALL_STATE(2023)] = 63631, + [SMALL_STATE(2024)] = 63663, + [SMALL_STATE(2025)] = 63695, + [SMALL_STATE(2026)] = 63755, + [SMALL_STATE(2027)] = 63793, + [SMALL_STATE(2028)] = 63831, + [SMALL_STATE(2029)] = 63869, + [SMALL_STATE(2030)] = 63898, + [SMALL_STATE(2031)] = 63931, + [SMALL_STATE(2032)] = 63960, + [SMALL_STATE(2033)] = 64013, + [SMALL_STATE(2034)] = 64056, + [SMALL_STATE(2035)] = 64097, + [SMALL_STATE(2036)] = 64130, + [SMALL_STATE(2037)] = 64183, + [SMALL_STATE(2038)] = 64212, + [SMALL_STATE(2039)] = 64245, + [SMALL_STATE(2040)] = 64278, + [SMALL_STATE(2041)] = 64311, + [SMALL_STATE(2042)] = 64340, + [SMALL_STATE(2043)] = 64373, + [SMALL_STATE(2044)] = 64402, + [SMALL_STATE(2045)] = 64431, + [SMALL_STATE(2046)] = 64486, + [SMALL_STATE(2047)] = 64517, + [SMALL_STATE(2048)] = 64546, + [SMALL_STATE(2049)] = 64575, + [SMALL_STATE(2050)] = 64604, + [SMALL_STATE(2051)] = 64637, + [SMALL_STATE(2052)] = 64665, + [SMALL_STATE(2053)] = 64693, + [SMALL_STATE(2054)] = 64721, + [SMALL_STATE(2055)] = 64749, + [SMALL_STATE(2056)] = 64777, + [SMALL_STATE(2057)] = 64805, + [SMALL_STATE(2058)] = 64833, + [SMALL_STATE(2059)] = 64861, + [SMALL_STATE(2060)] = 64889, + [SMALL_STATE(2061)] = 64917, + [SMALL_STATE(2062)] = 64945, + [SMALL_STATE(2063)] = 64973, + [SMALL_STATE(2064)] = 65017, + [SMALL_STATE(2065)] = 65045, + [SMALL_STATE(2066)] = 65073, + [SMALL_STATE(2067)] = 65101, + [SMALL_STATE(2068)] = 65129, + [SMALL_STATE(2069)] = 65157, + [SMALL_STATE(2070)] = 65185, + [SMALL_STATE(2071)] = 65213, + [SMALL_STATE(2072)] = 65241, + [SMALL_STATE(2073)] = 65271, + [SMALL_STATE(2074)] = 65299, + [SMALL_STATE(2075)] = 65327, + [SMALL_STATE(2076)] = 65355, + [SMALL_STATE(2077)] = 65383, + [SMALL_STATE(2078)] = 65411, + [SMALL_STATE(2079)] = 65439, + [SMALL_STATE(2080)] = 65467, + [SMALL_STATE(2081)] = 65495, + [SMALL_STATE(2082)] = 65523, + [SMALL_STATE(2083)] = 65551, + [SMALL_STATE(2084)] = 65579, + [SMALL_STATE(2085)] = 65607, + [SMALL_STATE(2086)] = 65635, + [SMALL_STATE(2087)] = 65663, + [SMALL_STATE(2088)] = 65691, + [SMALL_STATE(2089)] = 65721, + [SMALL_STATE(2090)] = 65750, + [SMALL_STATE(2091)] = 65785, + [SMALL_STATE(2092)] = 65814, + [SMALL_STATE(2093)] = 65843, + [SMALL_STATE(2094)] = 65872, + [SMALL_STATE(2095)] = 65901, + [SMALL_STATE(2096)] = 65930, + [SMALL_STATE(2097)] = 65959, + [SMALL_STATE(2098)] = 65988, + [SMALL_STATE(2099)] = 66017, + [SMALL_STATE(2100)] = 66046, + [SMALL_STATE(2101)] = 66074, + [SMALL_STATE(2102)] = 66106, + [SMALL_STATE(2103)] = 66136, + [SMALL_STATE(2104)] = 66168, + [SMALL_STATE(2105)] = 66214, + [SMALL_STATE(2106)] = 66246, + [SMALL_STATE(2107)] = 66278, + [SMALL_STATE(2108)] = 66322, + [SMALL_STATE(2109)] = 66354, + [SMALL_STATE(2110)] = 66386, + [SMALL_STATE(2111)] = 66428, + [SMALL_STATE(2112)] = 66460, + [SMALL_STATE(2113)] = 66492, + [SMALL_STATE(2114)] = 66524, + [SMALL_STATE(2115)] = 66564, + [SMALL_STATE(2116)] = 66596, + [SMALL_STATE(2117)] = 66628, + [SMALL_STATE(2118)] = 66660, + [SMALL_STATE(2119)] = 66703, + [SMALL_STATE(2120)] = 66746, + [SMALL_STATE(2121)] = 66789, + [SMALL_STATE(2122)] = 66832, + [SMALL_STATE(2123)] = 66875, + [SMALL_STATE(2124)] = 66918, + [SMALL_STATE(2125)] = 66947, + [SMALL_STATE(2126)] = 66976, + [SMALL_STATE(2127)] = 67014, + [SMALL_STATE(2128)] = 67038, + [SMALL_STATE(2129)] = 67078, + [SMALL_STATE(2130)] = 67118, + [SMALL_STATE(2131)] = 67158, + [SMALL_STATE(2132)] = 67196, + [SMALL_STATE(2133)] = 67224, + [SMALL_STATE(2134)] = 67264, + [SMALL_STATE(2135)] = 67304, + [SMALL_STATE(2136)] = 67342, + [SMALL_STATE(2137)] = 67370, + [SMALL_STATE(2138)] = 67404, + [SMALL_STATE(2139)] = 67432, + [SMALL_STATE(2140)] = 67456, + [SMALL_STATE(2141)] = 67484, + [SMALL_STATE(2142)] = 67512, + [SMALL_STATE(2143)] = 67536, + [SMALL_STATE(2144)] = 67564, + [SMALL_STATE(2145)] = 67592, + [SMALL_STATE(2146)] = 67620, + [SMALL_STATE(2147)] = 67660, + [SMALL_STATE(2148)] = 67684, + [SMALL_STATE(2149)] = 67724, + [SMALL_STATE(2150)] = 67762, + [SMALL_STATE(2151)] = 67800, + [SMALL_STATE(2152)] = 67838, + [SMALL_STATE(2153)] = 67876, + [SMALL_STATE(2154)] = 67906, + [SMALL_STATE(2155)] = 67930, + [SMALL_STATE(2156)] = 67968, + [SMALL_STATE(2157)] = 67998, + [SMALL_STATE(2158)] = 68036, + [SMALL_STATE(2159)] = 68074, + [SMALL_STATE(2160)] = 68112, + [SMALL_STATE(2161)] = 68152, + [SMALL_STATE(2162)] = 68180, + [SMALL_STATE(2163)] = 68218, + [SMALL_STATE(2164)] = 68258, + [SMALL_STATE(2165)] = 68286, + [SMALL_STATE(2166)] = 68314, + [SMALL_STATE(2167)] = 68354, + [SMALL_STATE(2168)] = 68382, + [SMALL_STATE(2169)] = 68410, + [SMALL_STATE(2170)] = 68438, + [SMALL_STATE(2171)] = 68466, + [SMALL_STATE(2172)] = 68494, + [SMALL_STATE(2173)] = 68517, + [SMALL_STATE(2174)] = 68558, + [SMALL_STATE(2175)] = 68599, + [SMALL_STATE(2176)] = 68622, + [SMALL_STATE(2177)] = 68659, + [SMALL_STATE(2178)] = 68696, + [SMALL_STATE(2179)] = 68737, + [SMALL_STATE(2180)] = 68760, + [SMALL_STATE(2181)] = 68783, + [SMALL_STATE(2182)] = 68806, + [SMALL_STATE(2183)] = 68837, + [SMALL_STATE(2184)] = 68860, + [SMALL_STATE(2185)] = 68883, + [SMALL_STATE(2186)] = 68914, + [SMALL_STATE(2187)] = 68951, + [SMALL_STATE(2188)] = 68982, + [SMALL_STATE(2189)] = 69013, + [SMALL_STATE(2190)] = 69036, + [SMALL_STATE(2191)] = 69059, + [SMALL_STATE(2192)] = 69082, + [SMALL_STATE(2193)] = 69105, + [SMALL_STATE(2194)] = 69140, + [SMALL_STATE(2195)] = 69163, + [SMALL_STATE(2196)] = 69186, + [SMALL_STATE(2197)] = 69209, + [SMALL_STATE(2198)] = 69232, + [SMALL_STATE(2199)] = 69255, + [SMALL_STATE(2200)] = 69278, + [SMALL_STATE(2201)] = 69301, + [SMALL_STATE(2202)] = 69324, + [SMALL_STATE(2203)] = 69347, + [SMALL_STATE(2204)] = 69382, + [SMALL_STATE(2205)] = 69405, + [SMALL_STATE(2206)] = 69428, + [SMALL_STATE(2207)] = 69461, + [SMALL_STATE(2208)] = 69484, + [SMALL_STATE(2209)] = 69519, + [SMALL_STATE(2210)] = 69554, + [SMALL_STATE(2211)] = 69577, + [SMALL_STATE(2212)] = 69600, + [SMALL_STATE(2213)] = 69623, + [SMALL_STATE(2214)] = 69646, + [SMALL_STATE(2215)] = 69669, + [SMALL_STATE(2216)] = 69692, + [SMALL_STATE(2217)] = 69723, + [SMALL_STATE(2218)] = 69760, + [SMALL_STATE(2219)] = 69783, + [SMALL_STATE(2220)] = 69824, + [SMALL_STATE(2221)] = 69855, + [SMALL_STATE(2222)] = 69878, + [SMALL_STATE(2223)] = 69901, + [SMALL_STATE(2224)] = 69924, + [SMALL_STATE(2225)] = 69947, + [SMALL_STATE(2226)] = 69970, + [SMALL_STATE(2227)] = 69993, + [SMALL_STATE(2228)] = 70025, + [SMALL_STATE(2229)] = 70057, + [SMALL_STATE(2230)] = 70083, + [SMALL_STATE(2231)] = 70121, + [SMALL_STATE(2232)] = 70159, + [SMALL_STATE(2233)] = 70187, + [SMALL_STATE(2234)] = 70215, + [SMALL_STATE(2235)] = 70253, + [SMALL_STATE(2236)] = 70281, + [SMALL_STATE(2237)] = 70309, + [SMALL_STATE(2238)] = 70341, + [SMALL_STATE(2239)] = 70371, + [SMALL_STATE(2240)] = 70409, + [SMALL_STATE(2241)] = 70433, + [SMALL_STATE(2242)] = 70469, + [SMALL_STATE(2243)] = 70497, + [SMALL_STATE(2244)] = 70535, + [SMALL_STATE(2245)] = 70567, + [SMALL_STATE(2246)] = 70595, + [SMALL_STATE(2247)] = 70633, + [SMALL_STATE(2248)] = 70671, + [SMALL_STATE(2249)] = 70699, + [SMALL_STATE(2250)] = 70729, + [SMALL_STATE(2251)] = 70761, + [SMALL_STATE(2252)] = 70785, + [SMALL_STATE(2253)] = 70817, + [SMALL_STATE(2254)] = 70855, + [SMALL_STATE(2255)] = 70887, + [SMALL_STATE(2256)] = 70919, + [SMALL_STATE(2257)] = 70957, + [SMALL_STATE(2258)] = 70989, + [SMALL_STATE(2259)] = 71019, + [SMALL_STATE(2260)] = 71057, + [SMALL_STATE(2261)] = 71083, + [SMALL_STATE(2262)] = 71113, + [SMALL_STATE(2263)] = 71141, + [SMALL_STATE(2264)] = 71179, + [SMALL_STATE(2265)] = 71217, + [SMALL_STATE(2266)] = 71241, + [SMALL_STATE(2267)] = 71273, + [SMALL_STATE(2268)] = 71311, + [SMALL_STATE(2269)] = 71345, + [SMALL_STATE(2270)] = 71377, + [SMALL_STATE(2271)] = 71415, + [SMALL_STATE(2272)] = 71447, + [SMALL_STATE(2273)] = 71481, + [SMALL_STATE(2274)] = 71511, + [SMALL_STATE(2275)] = 71535, + [SMALL_STATE(2276)] = 71559, + [SMALL_STATE(2277)] = 71597, + [SMALL_STATE(2278)] = 71623, + [SMALL_STATE(2279)] = 71661, + [SMALL_STATE(2280)] = 71693, + [SMALL_STATE(2281)] = 71714, + [SMALL_STATE(2282)] = 71749, + [SMALL_STATE(2283)] = 71784, + [SMALL_STATE(2284)] = 71819, + [SMALL_STATE(2285)] = 71854, + [SMALL_STATE(2286)] = 71889, + [SMALL_STATE(2287)] = 71924, + [SMALL_STATE(2288)] = 71959, + [SMALL_STATE(2289)] = 71994, + [SMALL_STATE(2290)] = 72019, + [SMALL_STATE(2291)] = 72054, + [SMALL_STATE(2292)] = 72081, + [SMALL_STATE(2293)] = 72106, + [SMALL_STATE(2294)] = 72141, + [SMALL_STATE(2295)] = 72176, + [SMALL_STATE(2296)] = 72211, + [SMALL_STATE(2297)] = 72244, + [SMALL_STATE(2298)] = 72277, + [SMALL_STATE(2299)] = 72312, + [SMALL_STATE(2300)] = 72347, + [SMALL_STATE(2301)] = 72380, + [SMALL_STATE(2302)] = 72415, + [SMALL_STATE(2303)] = 72450, + [SMALL_STATE(2304)] = 72485, + [SMALL_STATE(2305)] = 72520, + [SMALL_STATE(2306)] = 72555, + [SMALL_STATE(2307)] = 72590, + [SMALL_STATE(2308)] = 72625, + [SMALL_STATE(2309)] = 72660, + [SMALL_STATE(2310)] = 72695, + [SMALL_STATE(2311)] = 72730, + [SMALL_STATE(2312)] = 72765, + [SMALL_STATE(2313)] = 72800, + [SMALL_STATE(2314)] = 72835, + [SMALL_STATE(2315)] = 72870, + [SMALL_STATE(2316)] = 72903, + [SMALL_STATE(2317)] = 72938, + [SMALL_STATE(2318)] = 72973, + [SMALL_STATE(2319)] = 73008, + [SMALL_STATE(2320)] = 73041, + [SMALL_STATE(2321)] = 73076, + [SMALL_STATE(2322)] = 73111, + [SMALL_STATE(2323)] = 73146, + [SMALL_STATE(2324)] = 73181, + [SMALL_STATE(2325)] = 73216, + [SMALL_STATE(2326)] = 73237, + [SMALL_STATE(2327)] = 73258, + [SMALL_STATE(2328)] = 73279, + [SMALL_STATE(2329)] = 73314, + [SMALL_STATE(2330)] = 73343, + [SMALL_STATE(2331)] = 73378, + [SMALL_STATE(2332)] = 73413, + [SMALL_STATE(2333)] = 73448, + [SMALL_STATE(2334)] = 73476, + [SMALL_STATE(2335)] = 73506, + [SMALL_STATE(2336)] = 73536, + [SMALL_STATE(2337)] = 73558, + [SMALL_STATE(2338)] = 73580, + [SMALL_STATE(2339)] = 73608, + [SMALL_STATE(2340)] = 73634, + [SMALL_STATE(2341)] = 73666, + [SMALL_STATE(2342)] = 73698, + [SMALL_STATE(2343)] = 73730, + [SMALL_STATE(2344)] = 73762, + [SMALL_STATE(2345)] = 73794, + [SMALL_STATE(2346)] = 73826, + [SMALL_STATE(2347)] = 73858, + [SMALL_STATE(2348)] = 73886, + [SMALL_STATE(2349)] = 73918, + [SMALL_STATE(2350)] = 73950, + [SMALL_STATE(2351)] = 73982, + [SMALL_STATE(2352)] = 74014, + [SMALL_STATE(2353)] = 74046, + [SMALL_STATE(2354)] = 74078, + [SMALL_STATE(2355)] = 74110, + [SMALL_STATE(2356)] = 74142, + [SMALL_STATE(2357)] = 74174, + [SMALL_STATE(2358)] = 74206, + [SMALL_STATE(2359)] = 74238, + [SMALL_STATE(2360)] = 74270, + [SMALL_STATE(2361)] = 74302, + [SMALL_STATE(2362)] = 74324, + [SMALL_STATE(2363)] = 74356, + [SMALL_STATE(2364)] = 74386, + [SMALL_STATE(2365)] = 74416, + [SMALL_STATE(2366)] = 74448, + [SMALL_STATE(2367)] = 74478, + [SMALL_STATE(2368)] = 74508, + [SMALL_STATE(2369)] = 74530, + [SMALL_STATE(2370)] = 74562, + [SMALL_STATE(2371)] = 74584, + [SMALL_STATE(2372)] = 74616, + [SMALL_STATE(2373)] = 74648, + [SMALL_STATE(2374)] = 74678, + [SMALL_STATE(2375)] = 74706, + [SMALL_STATE(2376)] = 74732, + [SMALL_STATE(2377)] = 74762, + [SMALL_STATE(2378)] = 74794, + [SMALL_STATE(2379)] = 74826, + [SMALL_STATE(2380)] = 74858, + [SMALL_STATE(2381)] = 74890, + [SMALL_STATE(2382)] = 74922, + [SMALL_STATE(2383)] = 74954, + [SMALL_STATE(2384)] = 74986, + [SMALL_STATE(2385)] = 75018, + [SMALL_STATE(2386)] = 75050, + [SMALL_STATE(2387)] = 75082, + [SMALL_STATE(2388)] = 75110, + [SMALL_STATE(2389)] = 75136, + [SMALL_STATE(2390)] = 75168, + [SMALL_STATE(2391)] = 75200, + [SMALL_STATE(2392)] = 75232, + [SMALL_STATE(2393)] = 75262, + [SMALL_STATE(2394)] = 75288, + [SMALL_STATE(2395)] = 75310, + [SMALL_STATE(2396)] = 75340, + [SMALL_STATE(2397)] = 75372, + [SMALL_STATE(2398)] = 75401, + [SMALL_STATE(2399)] = 75430, + [SMALL_STATE(2400)] = 75453, + [SMALL_STATE(2401)] = 75482, + [SMALL_STATE(2402)] = 75511, + [SMALL_STATE(2403)] = 75534, + [SMALL_STATE(2404)] = 75557, + [SMALL_STATE(2405)] = 75586, + [SMALL_STATE(2406)] = 75615, + [SMALL_STATE(2407)] = 75644, + [SMALL_STATE(2408)] = 75673, + [SMALL_STATE(2409)] = 75702, + [SMALL_STATE(2410)] = 75731, + [SMALL_STATE(2411)] = 75760, + [SMALL_STATE(2412)] = 75789, + [SMALL_STATE(2413)] = 75818, + [SMALL_STATE(2414)] = 75845, + [SMALL_STATE(2415)] = 75872, + [SMALL_STATE(2416)] = 75901, + [SMALL_STATE(2417)] = 75930, + [SMALL_STATE(2418)] = 75959, + [SMALL_STATE(2419)] = 75988, + [SMALL_STATE(2420)] = 76017, + [SMALL_STATE(2421)] = 76042, + [SMALL_STATE(2422)] = 76071, + [SMALL_STATE(2423)] = 76094, + [SMALL_STATE(2424)] = 76121, + [SMALL_STATE(2425)] = 76150, + [SMALL_STATE(2426)] = 76179, + [SMALL_STATE(2427)] = 76208, + [SMALL_STATE(2428)] = 76237, + [SMALL_STATE(2429)] = 76266, + [SMALL_STATE(2430)] = 76295, + [SMALL_STATE(2431)] = 76318, + [SMALL_STATE(2432)] = 76337, + [SMALL_STATE(2433)] = 76366, + [SMALL_STATE(2434)] = 76395, + [SMALL_STATE(2435)] = 76424, + [SMALL_STATE(2436)] = 76453, + [SMALL_STATE(2437)] = 76482, + [SMALL_STATE(2438)] = 76511, + [SMALL_STATE(2439)] = 76532, + [SMALL_STATE(2440)] = 76561, + [SMALL_STATE(2441)] = 76590, + [SMALL_STATE(2442)] = 76619, + [SMALL_STATE(2443)] = 76642, + [SMALL_STATE(2444)] = 76671, + [SMALL_STATE(2445)] = 76700, + [SMALL_STATE(2446)] = 76729, + [SMALL_STATE(2447)] = 76750, + [SMALL_STATE(2448)] = 76777, + [SMALL_STATE(2449)] = 76806, + [SMALL_STATE(2450)] = 76835, + [SMALL_STATE(2451)] = 76864, + [SMALL_STATE(2452)] = 76891, + [SMALL_STATE(2453)] = 76920, + [SMALL_STATE(2454)] = 76943, + [SMALL_STATE(2455)] = 76972, + [SMALL_STATE(2456)] = 77001, + [SMALL_STATE(2457)] = 77030, + [SMALL_STATE(2458)] = 77055, + [SMALL_STATE(2459)] = 77076, + [SMALL_STATE(2460)] = 77105, + [SMALL_STATE(2461)] = 77126, + [SMALL_STATE(2462)] = 77147, + [SMALL_STATE(2463)] = 77176, + [SMALL_STATE(2464)] = 77197, + [SMALL_STATE(2465)] = 77218, + [SMALL_STATE(2466)] = 77241, + [SMALL_STATE(2467)] = 77262, + [SMALL_STATE(2468)] = 77283, + [SMALL_STATE(2469)] = 77304, + [SMALL_STATE(2470)] = 77325, + [SMALL_STATE(2471)] = 77354, + [SMALL_STATE(2472)] = 77383, + [SMALL_STATE(2473)] = 77404, + [SMALL_STATE(2474)] = 77425, + [SMALL_STATE(2475)] = 77454, + [SMALL_STATE(2476)] = 77483, + [SMALL_STATE(2477)] = 77504, + [SMALL_STATE(2478)] = 77527, + [SMALL_STATE(2479)] = 77550, + [SMALL_STATE(2480)] = 77579, + [SMALL_STATE(2481)] = 77608, + [SMALL_STATE(2482)] = 77637, + [SMALL_STATE(2483)] = 77662, + [SMALL_STATE(2484)] = 77681, + [SMALL_STATE(2485)] = 77704, + [SMALL_STATE(2486)] = 77729, + [SMALL_STATE(2487)] = 77750, + [SMALL_STATE(2488)] = 77779, + [SMALL_STATE(2489)] = 77808, + [SMALL_STATE(2490)] = 77837, + [SMALL_STATE(2491)] = 77866, + [SMALL_STATE(2492)] = 77893, + [SMALL_STATE(2493)] = 77916, + [SMALL_STATE(2494)] = 77945, + [SMALL_STATE(2495)] = 77974, + [SMALL_STATE(2496)] = 77997, + [SMALL_STATE(2497)] = 78026, + [SMALL_STATE(2498)] = 78049, + [SMALL_STATE(2499)] = 78078, + [SMALL_STATE(2500)] = 78101, + [SMALL_STATE(2501)] = 78130, + [SMALL_STATE(2502)] = 78153, + [SMALL_STATE(2503)] = 78174, + [SMALL_STATE(2504)] = 78200, + [SMALL_STATE(2505)] = 78224, + [SMALL_STATE(2506)] = 78244, + [SMALL_STATE(2507)] = 78268, + [SMALL_STATE(2508)] = 78286, + [SMALL_STATE(2509)] = 78308, + [SMALL_STATE(2510)] = 78332, + [SMALL_STATE(2511)] = 78356, + [SMALL_STATE(2512)] = 78380, + [SMALL_STATE(2513)] = 78406, + [SMALL_STATE(2514)] = 78432, + [SMALL_STATE(2515)] = 78454, + [SMALL_STATE(2516)] = 78480, + [SMALL_STATE(2517)] = 78506, + [SMALL_STATE(2518)] = 78524, + [SMALL_STATE(2519)] = 78550, + [SMALL_STATE(2520)] = 78576, + [SMALL_STATE(2521)] = 78602, + [SMALL_STATE(2522)] = 78622, + [SMALL_STATE(2523)] = 78640, + [SMALL_STATE(2524)] = 78666, + [SMALL_STATE(2525)] = 78692, + [SMALL_STATE(2526)] = 78718, + [SMALL_STATE(2527)] = 78744, + [SMALL_STATE(2528)] = 78764, + [SMALL_STATE(2529)] = 78782, + [SMALL_STATE(2530)] = 78808, + [SMALL_STATE(2531)] = 78832, + [SMALL_STATE(2532)] = 78858, + [SMALL_STATE(2533)] = 78882, + [SMALL_STATE(2534)] = 78900, + [SMALL_STATE(2535)] = 78924, + [SMALL_STATE(2536)] = 78946, + [SMALL_STATE(2537)] = 78964, + [SMALL_STATE(2538)] = 78982, + [SMALL_STATE(2539)] = 79000, + [SMALL_STATE(2540)] = 79018, + [SMALL_STATE(2541)] = 79044, + [SMALL_STATE(2542)] = 79070, + [SMALL_STATE(2543)] = 79092, + [SMALL_STATE(2544)] = 79118, + [SMALL_STATE(2545)] = 79144, + [SMALL_STATE(2546)] = 79170, + [SMALL_STATE(2547)] = 79196, + [SMALL_STATE(2548)] = 79220, + [SMALL_STATE(2549)] = 79246, + [SMALL_STATE(2550)] = 79272, + [SMALL_STATE(2551)] = 79298, + [SMALL_STATE(2552)] = 79324, + [SMALL_STATE(2553)] = 79344, + [SMALL_STATE(2554)] = 79370, + [SMALL_STATE(2555)] = 79388, + [SMALL_STATE(2556)] = 79406, + [SMALL_STATE(2557)] = 79432, + [SMALL_STATE(2558)] = 79458, + [SMALL_STATE(2559)] = 79484, + [SMALL_STATE(2560)] = 79502, + [SMALL_STATE(2561)] = 79526, + [SMALL_STATE(2562)] = 79544, + [SMALL_STATE(2563)] = 79570, + [SMALL_STATE(2564)] = 79596, + [SMALL_STATE(2565)] = 79618, + [SMALL_STATE(2566)] = 79636, + [SMALL_STATE(2567)] = 79658, + [SMALL_STATE(2568)] = 79684, + [SMALL_STATE(2569)] = 79702, + [SMALL_STATE(2570)] = 79728, + [SMALL_STATE(2571)] = 79754, + [SMALL_STATE(2572)] = 79780, + [SMALL_STATE(2573)] = 79798, + [SMALL_STATE(2574)] = 79822, + [SMALL_STATE(2575)] = 79840, + [SMALL_STATE(2576)] = 79858, + [SMALL_STATE(2577)] = 79876, + [SMALL_STATE(2578)] = 79902, + [SMALL_STATE(2579)] = 79926, + [SMALL_STATE(2580)] = 79948, + [SMALL_STATE(2581)] = 79974, + [SMALL_STATE(2582)] = 80000, + [SMALL_STATE(2583)] = 80024, + [SMALL_STATE(2584)] = 80050, + [SMALL_STATE(2585)] = 80076, + [SMALL_STATE(2586)] = 80098, + [SMALL_STATE(2587)] = 80124, + [SMALL_STATE(2588)] = 80150, + [SMALL_STATE(2589)] = 80176, + [SMALL_STATE(2590)] = 80194, + [SMALL_STATE(2591)] = 80220, + [SMALL_STATE(2592)] = 80238, + [SMALL_STATE(2593)] = 80256, + [SMALL_STATE(2594)] = 80282, + [SMALL_STATE(2595)] = 80308, + [SMALL_STATE(2596)] = 80332, + [SMALL_STATE(2597)] = 80358, + [SMALL_STATE(2598)] = 80382, + [SMALL_STATE(2599)] = 80400, + [SMALL_STATE(2600)] = 80420, + [SMALL_STATE(2601)] = 80444, + [SMALL_STATE(2602)] = 80470, + [SMALL_STATE(2603)] = 80490, + [SMALL_STATE(2604)] = 80508, + [SMALL_STATE(2605)] = 80526, + [SMALL_STATE(2606)] = 80552, + [SMALL_STATE(2607)] = 80578, + [SMALL_STATE(2608)] = 80604, + [SMALL_STATE(2609)] = 80622, + [SMALL_STATE(2610)] = 80648, + [SMALL_STATE(2611)] = 80674, + [SMALL_STATE(2612)] = 80700, + [SMALL_STATE(2613)] = 80726, + [SMALL_STATE(2614)] = 80749, + [SMALL_STATE(2615)] = 80772, + [SMALL_STATE(2616)] = 80795, + [SMALL_STATE(2617)] = 80814, + [SMALL_STATE(2618)] = 80833, + [SMALL_STATE(2619)] = 80852, + [SMALL_STATE(2620)] = 80871, + [SMALL_STATE(2621)] = 80894, + [SMALL_STATE(2622)] = 80917, + [SMALL_STATE(2623)] = 80940, + [SMALL_STATE(2624)] = 80963, + [SMALL_STATE(2625)] = 80986, + [SMALL_STATE(2626)] = 81007, + [SMALL_STATE(2627)] = 81030, + [SMALL_STATE(2628)] = 81053, + [SMALL_STATE(2629)] = 81076, + [SMALL_STATE(2630)] = 81099, + [SMALL_STATE(2631)] = 81120, + [SMALL_STATE(2632)] = 81143, + [SMALL_STATE(2633)] = 81166, + [SMALL_STATE(2634)] = 81187, + [SMALL_STATE(2635)] = 81210, + [SMALL_STATE(2636)] = 81233, + [SMALL_STATE(2637)] = 81256, + [SMALL_STATE(2638)] = 81279, + [SMALL_STATE(2639)] = 81302, + [SMALL_STATE(2640)] = 81325, + [SMALL_STATE(2641)] = 81346, + [SMALL_STATE(2642)] = 81369, + [SMALL_STATE(2643)] = 81392, + [SMALL_STATE(2644)] = 81415, + [SMALL_STATE(2645)] = 81438, + [SMALL_STATE(2646)] = 81457, + [SMALL_STATE(2647)] = 81480, + [SMALL_STATE(2648)] = 81503, + [SMALL_STATE(2649)] = 81526, + [SMALL_STATE(2650)] = 81549, + [SMALL_STATE(2651)] = 81572, + [SMALL_STATE(2652)] = 81595, + [SMALL_STATE(2653)] = 81618, + [SMALL_STATE(2654)] = 81641, + [SMALL_STATE(2655)] = 81664, + [SMALL_STATE(2656)] = 81687, + [SMALL_STATE(2657)] = 81710, + [SMALL_STATE(2658)] = 81733, + [SMALL_STATE(2659)] = 81756, + [SMALL_STATE(2660)] = 81779, + [SMALL_STATE(2661)] = 81802, + [SMALL_STATE(2662)] = 81825, + [SMALL_STATE(2663)] = 81848, + [SMALL_STATE(2664)] = 81871, + [SMALL_STATE(2665)] = 81890, + [SMALL_STATE(2666)] = 81913, + [SMALL_STATE(2667)] = 81932, + [SMALL_STATE(2668)] = 81955, + [SMALL_STATE(2669)] = 81972, + [SMALL_STATE(2670)] = 81993, + [SMALL_STATE(2671)] = 82014, + [SMALL_STATE(2672)] = 82035, + [SMALL_STATE(2673)] = 82056, + [SMALL_STATE(2674)] = 82079, + [SMALL_STATE(2675)] = 82102, + [SMALL_STATE(2676)] = 82125, + [SMALL_STATE(2677)] = 82148, + [SMALL_STATE(2678)] = 82167, + [SMALL_STATE(2679)] = 82186, + [SMALL_STATE(2680)] = 82205, + [SMALL_STATE(2681)] = 82228, + [SMALL_STATE(2682)] = 82251, + [SMALL_STATE(2683)] = 82270, + [SMALL_STATE(2684)] = 82293, + [SMALL_STATE(2685)] = 82316, + [SMALL_STATE(2686)] = 82339, + [SMALL_STATE(2687)] = 82362, + [SMALL_STATE(2688)] = 82385, + [SMALL_STATE(2689)] = 82408, + [SMALL_STATE(2690)] = 82429, + [SMALL_STATE(2691)] = 82450, + [SMALL_STATE(2692)] = 82473, + [SMALL_STATE(2693)] = 82492, + [SMALL_STATE(2694)] = 82511, + [SMALL_STATE(2695)] = 82530, + [SMALL_STATE(2696)] = 82549, + [SMALL_STATE(2697)] = 82572, + [SMALL_STATE(2698)] = 82595, + [SMALL_STATE(2699)] = 82618, + [SMALL_STATE(2700)] = 82641, + [SMALL_STATE(2701)] = 82664, + [SMALL_STATE(2702)] = 82687, + [SMALL_STATE(2703)] = 82710, + [SMALL_STATE(2704)] = 82733, + [SMALL_STATE(2705)] = 82756, + [SMALL_STATE(2706)] = 82779, + [SMALL_STATE(2707)] = 82802, + [SMALL_STATE(2708)] = 82825, + [SMALL_STATE(2709)] = 82848, + [SMALL_STATE(2710)] = 82871, + [SMALL_STATE(2711)] = 82894, + [SMALL_STATE(2712)] = 82917, + [SMALL_STATE(2713)] = 82940, + [SMALL_STATE(2714)] = 82963, + [SMALL_STATE(2715)] = 82986, + [SMALL_STATE(2716)] = 83009, + [SMALL_STATE(2717)] = 83032, + [SMALL_STATE(2718)] = 83055, + [SMALL_STATE(2719)] = 83078, + [SMALL_STATE(2720)] = 83101, + [SMALL_STATE(2721)] = 83124, + [SMALL_STATE(2722)] = 83147, + [SMALL_STATE(2723)] = 83170, + [SMALL_STATE(2724)] = 83189, + [SMALL_STATE(2725)] = 83212, + [SMALL_STATE(2726)] = 83235, + [SMALL_STATE(2727)] = 83258, + [SMALL_STATE(2728)] = 83279, + [SMALL_STATE(2729)] = 83298, + [SMALL_STATE(2730)] = 83321, + [SMALL_STATE(2731)] = 83344, + [SMALL_STATE(2732)] = 83367, + [SMALL_STATE(2733)] = 83390, + [SMALL_STATE(2734)] = 83413, + [SMALL_STATE(2735)] = 83436, + [SMALL_STATE(2736)] = 83459, + [SMALL_STATE(2737)] = 83482, + [SMALL_STATE(2738)] = 83505, + [SMALL_STATE(2739)] = 83528, + [SMALL_STATE(2740)] = 83549, + [SMALL_STATE(2741)] = 83572, + [SMALL_STATE(2742)] = 83595, + [SMALL_STATE(2743)] = 83618, + [SMALL_STATE(2744)] = 83641, + [SMALL_STATE(2745)] = 83664, + [SMALL_STATE(2746)] = 83687, + [SMALL_STATE(2747)] = 83710, + [SMALL_STATE(2748)] = 83729, + [SMALL_STATE(2749)] = 83752, + [SMALL_STATE(2750)] = 83775, + [SMALL_STATE(2751)] = 83798, + [SMALL_STATE(2752)] = 83815, + [SMALL_STATE(2753)] = 83838, + [SMALL_STATE(2754)] = 83861, + [SMALL_STATE(2755)] = 83884, + [SMALL_STATE(2756)] = 83907, + [SMALL_STATE(2757)] = 83926, + [SMALL_STATE(2758)] = 83949, + [SMALL_STATE(2759)] = 83972, + [SMALL_STATE(2760)] = 83995, + [SMALL_STATE(2761)] = 84018, + [SMALL_STATE(2762)] = 84037, + [SMALL_STATE(2763)] = 84060, + [SMALL_STATE(2764)] = 84083, + [SMALL_STATE(2765)] = 84106, + [SMALL_STATE(2766)] = 84129, + [SMALL_STATE(2767)] = 84150, + [SMALL_STATE(2768)] = 84173, + [SMALL_STATE(2769)] = 84196, + [SMALL_STATE(2770)] = 84217, + [SMALL_STATE(2771)] = 84240, + [SMALL_STATE(2772)] = 84263, + [SMALL_STATE(2773)] = 84286, + [SMALL_STATE(2774)] = 84305, + [SMALL_STATE(2775)] = 84328, + [SMALL_STATE(2776)] = 84349, + [SMALL_STATE(2777)] = 84372, + [SMALL_STATE(2778)] = 84395, + [SMALL_STATE(2779)] = 84418, + [SMALL_STATE(2780)] = 84441, + [SMALL_STATE(2781)] = 84464, + [SMALL_STATE(2782)] = 84481, + [SMALL_STATE(2783)] = 84504, + [SMALL_STATE(2784)] = 84527, + [SMALL_STATE(2785)] = 84546, + [SMALL_STATE(2786)] = 84567, + [SMALL_STATE(2787)] = 84590, + [SMALL_STATE(2788)] = 84613, + [SMALL_STATE(2789)] = 84632, + [SMALL_STATE(2790)] = 84655, + [SMALL_STATE(2791)] = 84676, + [SMALL_STATE(2792)] = 84699, + [SMALL_STATE(2793)] = 84722, + [SMALL_STATE(2794)] = 84745, + [SMALL_STATE(2795)] = 84768, + [SMALL_STATE(2796)] = 84791, + [SMALL_STATE(2797)] = 84810, + [SMALL_STATE(2798)] = 84831, + [SMALL_STATE(2799)] = 84852, + [SMALL_STATE(2800)] = 84875, + [SMALL_STATE(2801)] = 84898, + [SMALL_STATE(2802)] = 84919, + [SMALL_STATE(2803)] = 84942, + [SMALL_STATE(2804)] = 84965, + [SMALL_STATE(2805)] = 84988, + [SMALL_STATE(2806)] = 85011, + [SMALL_STATE(2807)] = 85034, + [SMALL_STATE(2808)] = 85057, + [SMALL_STATE(2809)] = 85080, + [SMALL_STATE(2810)] = 85101, + [SMALL_STATE(2811)] = 85124, + [SMALL_STATE(2812)] = 85147, + [SMALL_STATE(2813)] = 85170, + [SMALL_STATE(2814)] = 85189, + [SMALL_STATE(2815)] = 85212, + [SMALL_STATE(2816)] = 85233, + [SMALL_STATE(2817)] = 85256, + [SMALL_STATE(2818)] = 85279, + [SMALL_STATE(2819)] = 85302, + [SMALL_STATE(2820)] = 85325, + [SMALL_STATE(2821)] = 85348, + [SMALL_STATE(2822)] = 85371, + [SMALL_STATE(2823)] = 85390, + [SMALL_STATE(2824)] = 85413, + [SMALL_STATE(2825)] = 85436, + [SMALL_STATE(2826)] = 85459, + [SMALL_STATE(2827)] = 85482, + [SMALL_STATE(2828)] = 85505, + [SMALL_STATE(2829)] = 85528, + [SMALL_STATE(2830)] = 85547, + [SMALL_STATE(2831)] = 85568, + [SMALL_STATE(2832)] = 85591, + [SMALL_STATE(2833)] = 85614, + [SMALL_STATE(2834)] = 85637, + [SMALL_STATE(2835)] = 85660, + [SMALL_STATE(2836)] = 85683, + [SMALL_STATE(2837)] = 85706, + [SMALL_STATE(2838)] = 85729, + [SMALL_STATE(2839)] = 85752, + [SMALL_STATE(2840)] = 85775, + [SMALL_STATE(2841)] = 85798, + [SMALL_STATE(2842)] = 85821, + [SMALL_STATE(2843)] = 85844, + [SMALL_STATE(2844)] = 85867, + [SMALL_STATE(2845)] = 85890, + [SMALL_STATE(2846)] = 85911, + [SMALL_STATE(2847)] = 85928, + [SMALL_STATE(2848)] = 85951, + [SMALL_STATE(2849)] = 85974, + [SMALL_STATE(2850)] = 85995, + [SMALL_STATE(2851)] = 86016, + [SMALL_STATE(2852)] = 86039, + [SMALL_STATE(2853)] = 86062, + [SMALL_STATE(2854)] = 86081, + [SMALL_STATE(2855)] = 86104, + [SMALL_STATE(2856)] = 86127, + [SMALL_STATE(2857)] = 86150, + [SMALL_STATE(2858)] = 86173, + [SMALL_STATE(2859)] = 86196, + [SMALL_STATE(2860)] = 86219, + [SMALL_STATE(2861)] = 86242, + [SMALL_STATE(2862)] = 86263, + [SMALL_STATE(2863)] = 86286, + [SMALL_STATE(2864)] = 86309, + [SMALL_STATE(2865)] = 86332, + [SMALL_STATE(2866)] = 86355, + [SMALL_STATE(2867)] = 86378, + [SMALL_STATE(2868)] = 86401, + [SMALL_STATE(2869)] = 86424, + [SMALL_STATE(2870)] = 86447, + [SMALL_STATE(2871)] = 86466, + [SMALL_STATE(2872)] = 86489, + [SMALL_STATE(2873)] = 86506, + [SMALL_STATE(2874)] = 86525, + [SMALL_STATE(2875)] = 86545, + [SMALL_STATE(2876)] = 86565, + [SMALL_STATE(2877)] = 86585, + [SMALL_STATE(2878)] = 86605, + [SMALL_STATE(2879)] = 86625, + [SMALL_STATE(2880)] = 86645, + [SMALL_STATE(2881)] = 86665, + [SMALL_STATE(2882)] = 86685, + [SMALL_STATE(2883)] = 86705, + [SMALL_STATE(2884)] = 86725, + [SMALL_STATE(2885)] = 86745, + [SMALL_STATE(2886)] = 86761, + [SMALL_STATE(2887)] = 86777, + [SMALL_STATE(2888)] = 86797, + [SMALL_STATE(2889)] = 86817, + [SMALL_STATE(2890)] = 86837, + [SMALL_STATE(2891)] = 86857, + [SMALL_STATE(2892)] = 86877, + [SMALL_STATE(2893)] = 86893, + [SMALL_STATE(2894)] = 86909, + [SMALL_STATE(2895)] = 86929, + [SMALL_STATE(2896)] = 86949, + [SMALL_STATE(2897)] = 86969, + [SMALL_STATE(2898)] = 86989, + [SMALL_STATE(2899)] = 87009, + [SMALL_STATE(2900)] = 87029, + [SMALL_STATE(2901)] = 87049, + [SMALL_STATE(2902)] = 87069, + [SMALL_STATE(2903)] = 87089, + [SMALL_STATE(2904)] = 87105, + [SMALL_STATE(2905)] = 87125, + [SMALL_STATE(2906)] = 87141, + [SMALL_STATE(2907)] = 87157, + [SMALL_STATE(2908)] = 87173, + [SMALL_STATE(2909)] = 87189, + [SMALL_STATE(2910)] = 87205, + [SMALL_STATE(2911)] = 87225, + [SMALL_STATE(2912)] = 87241, + [SMALL_STATE(2913)] = 87261, + [SMALL_STATE(2914)] = 87281, + [SMALL_STATE(2915)] = 87297, + [SMALL_STATE(2916)] = 87317, + [SMALL_STATE(2917)] = 87337, + [SMALL_STATE(2918)] = 87353, + [SMALL_STATE(2919)] = 87373, + [SMALL_STATE(2920)] = 87393, + [SMALL_STATE(2921)] = 87409, + [SMALL_STATE(2922)] = 87425, + [SMALL_STATE(2923)] = 87445, + [SMALL_STATE(2924)] = 87465, + [SMALL_STATE(2925)] = 87485, + [SMALL_STATE(2926)] = 87505, + [SMALL_STATE(2927)] = 87523, + [SMALL_STATE(2928)] = 87543, + [SMALL_STATE(2929)] = 87563, + [SMALL_STATE(2930)] = 87581, + [SMALL_STATE(2931)] = 87601, + [SMALL_STATE(2932)] = 87621, + [SMALL_STATE(2933)] = 87641, + [SMALL_STATE(2934)] = 87661, + [SMALL_STATE(2935)] = 87681, + [SMALL_STATE(2936)] = 87701, + [SMALL_STATE(2937)] = 87721, + [SMALL_STATE(2938)] = 87741, + [SMALL_STATE(2939)] = 87761, + [SMALL_STATE(2940)] = 87781, + [SMALL_STATE(2941)] = 87801, + [SMALL_STATE(2942)] = 87821, + [SMALL_STATE(2943)] = 87841, + [SMALL_STATE(2944)] = 87859, + [SMALL_STATE(2945)] = 87879, + [SMALL_STATE(2946)] = 87899, + [SMALL_STATE(2947)] = 87919, + [SMALL_STATE(2948)] = 87935, + [SMALL_STATE(2949)] = 87953, + [SMALL_STATE(2950)] = 87973, + [SMALL_STATE(2951)] = 87993, + [SMALL_STATE(2952)] = 88013, + [SMALL_STATE(2953)] = 88033, + [SMALL_STATE(2954)] = 88053, + [SMALL_STATE(2955)] = 88073, + [SMALL_STATE(2956)] = 88093, + [SMALL_STATE(2957)] = 88113, + [SMALL_STATE(2958)] = 88133, + [SMALL_STATE(2959)] = 88153, + [SMALL_STATE(2960)] = 88173, + [SMALL_STATE(2961)] = 88193, + [SMALL_STATE(2962)] = 88209, + [SMALL_STATE(2963)] = 88229, + [SMALL_STATE(2964)] = 88249, + [SMALL_STATE(2965)] = 88265, + [SMALL_STATE(2966)] = 88281, + [SMALL_STATE(2967)] = 88301, + [SMALL_STATE(2968)] = 88321, + [SMALL_STATE(2969)] = 88341, + [SMALL_STATE(2970)] = 88361, + [SMALL_STATE(2971)] = 88381, + [SMALL_STATE(2972)] = 88401, + [SMALL_STATE(2973)] = 88421, + [SMALL_STATE(2974)] = 88441, + [SMALL_STATE(2975)] = 88457, + [SMALL_STATE(2976)] = 88477, + [SMALL_STATE(2977)] = 88497, + [SMALL_STATE(2978)] = 88513, + [SMALL_STATE(2979)] = 88531, + [SMALL_STATE(2980)] = 88551, + [SMALL_STATE(2981)] = 88571, + [SMALL_STATE(2982)] = 88589, + [SMALL_STATE(2983)] = 88609, + [SMALL_STATE(2984)] = 88629, + [SMALL_STATE(2985)] = 88649, + [SMALL_STATE(2986)] = 88665, + [SMALL_STATE(2987)] = 88683, + [SMALL_STATE(2988)] = 88703, + [SMALL_STATE(2989)] = 88721, + [SMALL_STATE(2990)] = 88741, + [SMALL_STATE(2991)] = 88761, + [SMALL_STATE(2992)] = 88781, + [SMALL_STATE(2993)] = 88801, + [SMALL_STATE(2994)] = 88817, + [SMALL_STATE(2995)] = 88837, + [SMALL_STATE(2996)] = 88857, + [SMALL_STATE(2997)] = 88877, + [SMALL_STATE(2998)] = 88895, + [SMALL_STATE(2999)] = 88915, + [SMALL_STATE(3000)] = 88935, + [SMALL_STATE(3001)] = 88955, + [SMALL_STATE(3002)] = 88975, + [SMALL_STATE(3003)] = 88991, + [SMALL_STATE(3004)] = 89011, + [SMALL_STATE(3005)] = 89027, + [SMALL_STATE(3006)] = 89047, + [SMALL_STATE(3007)] = 89067, + [SMALL_STATE(3008)] = 89087, + [SMALL_STATE(3009)] = 89107, + [SMALL_STATE(3010)] = 89127, + [SMALL_STATE(3011)] = 89147, + [SMALL_STATE(3012)] = 89167, + [SMALL_STATE(3013)] = 89187, + [SMALL_STATE(3014)] = 89207, + [SMALL_STATE(3015)] = 89227, + [SMALL_STATE(3016)] = 89247, + [SMALL_STATE(3017)] = 89267, + [SMALL_STATE(3018)] = 89287, + [SMALL_STATE(3019)] = 89307, + [SMALL_STATE(3020)] = 89327, + [SMALL_STATE(3021)] = 89345, + [SMALL_STATE(3022)] = 89365, + [SMALL_STATE(3023)] = 89383, + [SMALL_STATE(3024)] = 89403, + [SMALL_STATE(3025)] = 89423, + [SMALL_STATE(3026)] = 89443, + [SMALL_STATE(3027)] = 89463, + [SMALL_STATE(3028)] = 89479, + [SMALL_STATE(3029)] = 89495, + [SMALL_STATE(3030)] = 89515, + [SMALL_STATE(3031)] = 89535, + [SMALL_STATE(3032)] = 89555, + [SMALL_STATE(3033)] = 89575, + [SMALL_STATE(3034)] = 89591, + [SMALL_STATE(3035)] = 89607, + [SMALL_STATE(3036)] = 89623, + [SMALL_STATE(3037)] = 89639, + [SMALL_STATE(3038)] = 89659, + [SMALL_STATE(3039)] = 89679, + [SMALL_STATE(3040)] = 89695, + [SMALL_STATE(3041)] = 89715, + [SMALL_STATE(3042)] = 89733, + [SMALL_STATE(3043)] = 89753, + [SMALL_STATE(3044)] = 89773, + [SMALL_STATE(3045)] = 89793, + [SMALL_STATE(3046)] = 89809, + [SMALL_STATE(3047)] = 89829, + [SMALL_STATE(3048)] = 89847, + [SMALL_STATE(3049)] = 89863, + [SMALL_STATE(3050)] = 89881, + [SMALL_STATE(3051)] = 89897, + [SMALL_STATE(3052)] = 89915, + [SMALL_STATE(3053)] = 89935, + [SMALL_STATE(3054)] = 89955, + [SMALL_STATE(3055)] = 89975, + [SMALL_STATE(3056)] = 89993, + [SMALL_STATE(3057)] = 90013, + [SMALL_STATE(3058)] = 90033, + [SMALL_STATE(3059)] = 90053, + [SMALL_STATE(3060)] = 90073, + [SMALL_STATE(3061)] = 90089, + [SMALL_STATE(3062)] = 90109, + [SMALL_STATE(3063)] = 90129, + [SMALL_STATE(3064)] = 90149, + [SMALL_STATE(3065)] = 90169, + [SMALL_STATE(3066)] = 90187, + [SMALL_STATE(3067)] = 90205, + [SMALL_STATE(3068)] = 90225, + [SMALL_STATE(3069)] = 90243, + [SMALL_STATE(3070)] = 90263, + [SMALL_STATE(3071)] = 90283, + [SMALL_STATE(3072)] = 90299, + [SMALL_STATE(3073)] = 90319, + [SMALL_STATE(3074)] = 90335, + [SMALL_STATE(3075)] = 90353, + [SMALL_STATE(3076)] = 90373, + [SMALL_STATE(3077)] = 90393, + [SMALL_STATE(3078)] = 90413, + [SMALL_STATE(3079)] = 90431, + [SMALL_STATE(3080)] = 90451, + [SMALL_STATE(3081)] = 90469, + [SMALL_STATE(3082)] = 90487, + [SMALL_STATE(3083)] = 90507, + [SMALL_STATE(3084)] = 90527, + [SMALL_STATE(3085)] = 90547, + [SMALL_STATE(3086)] = 90563, + [SMALL_STATE(3087)] = 90581, + [SMALL_STATE(3088)] = 90597, + [SMALL_STATE(3089)] = 90615, + [SMALL_STATE(3090)] = 90635, + [SMALL_STATE(3091)] = 90653, + [SMALL_STATE(3092)] = 90673, + [SMALL_STATE(3093)] = 90693, + [SMALL_STATE(3094)] = 90713, + [SMALL_STATE(3095)] = 90733, + [SMALL_STATE(3096)] = 90753, + [SMALL_STATE(3097)] = 90773, + [SMALL_STATE(3098)] = 90793, + [SMALL_STATE(3099)] = 90813, + [SMALL_STATE(3100)] = 90833, + [SMALL_STATE(3101)] = 90853, + [SMALL_STATE(3102)] = 90873, + [SMALL_STATE(3103)] = 90891, + [SMALL_STATE(3104)] = 90909, + [SMALL_STATE(3105)] = 90927, + [SMALL_STATE(3106)] = 90947, + [SMALL_STATE(3107)] = 90967, + [SMALL_STATE(3108)] = 90985, + [SMALL_STATE(3109)] = 91001, + [SMALL_STATE(3110)] = 91017, + [SMALL_STATE(3111)] = 91037, + [SMALL_STATE(3112)] = 91053, + [SMALL_STATE(3113)] = 91073, + [SMALL_STATE(3114)] = 91089, + [SMALL_STATE(3115)] = 91105, + [SMALL_STATE(3116)] = 91121, + [SMALL_STATE(3117)] = 91141, + [SMALL_STATE(3118)] = 91161, + [SMALL_STATE(3119)] = 91181, + [SMALL_STATE(3120)] = 91201, + [SMALL_STATE(3121)] = 91221, + [SMALL_STATE(3122)] = 91241, + [SMALL_STATE(3123)] = 91257, + [SMALL_STATE(3124)] = 91277, + [SMALL_STATE(3125)] = 91297, + [SMALL_STATE(3126)] = 91313, + [SMALL_STATE(3127)] = 91333, + [SMALL_STATE(3128)] = 91353, + [SMALL_STATE(3129)] = 91373, + [SMALL_STATE(3130)] = 91393, + [SMALL_STATE(3131)] = 91413, + [SMALL_STATE(3132)] = 91433, + [SMALL_STATE(3133)] = 91451, + [SMALL_STATE(3134)] = 91471, + [SMALL_STATE(3135)] = 91489, + [SMALL_STATE(3136)] = 91507, + [SMALL_STATE(3137)] = 91527, + [SMALL_STATE(3138)] = 91545, + [SMALL_STATE(3139)] = 91565, + [SMALL_STATE(3140)] = 91585, + [SMALL_STATE(3141)] = 91605, + [SMALL_STATE(3142)] = 91625, + [SMALL_STATE(3143)] = 91641, + [SMALL_STATE(3144)] = 91661, + [SMALL_STATE(3145)] = 91681, + [SMALL_STATE(3146)] = 91701, + [SMALL_STATE(3147)] = 91721, + [SMALL_STATE(3148)] = 91737, + [SMALL_STATE(3149)] = 91757, + [SMALL_STATE(3150)] = 91777, + [SMALL_STATE(3151)] = 91797, + [SMALL_STATE(3152)] = 91813, + [SMALL_STATE(3153)] = 91829, + [SMALL_STATE(3154)] = 91845, + [SMALL_STATE(3155)] = 91861, + [SMALL_STATE(3156)] = 91879, + [SMALL_STATE(3157)] = 91895, + [SMALL_STATE(3158)] = 91911, + [SMALL_STATE(3159)] = 91931, + [SMALL_STATE(3160)] = 91951, + [SMALL_STATE(3161)] = 91969, + [SMALL_STATE(3162)] = 91989, + [SMALL_STATE(3163)] = 92007, + [SMALL_STATE(3164)] = 92027, + [SMALL_STATE(3165)] = 92045, + [SMALL_STATE(3166)] = 92065, + [SMALL_STATE(3167)] = 92085, + [SMALL_STATE(3168)] = 92105, + [SMALL_STATE(3169)] = 92125, + [SMALL_STATE(3170)] = 92145, + [SMALL_STATE(3171)] = 92165, + [SMALL_STATE(3172)] = 92185, + [SMALL_STATE(3173)] = 92205, + [SMALL_STATE(3174)] = 92225, + [SMALL_STATE(3175)] = 92245, + [SMALL_STATE(3176)] = 92265, + [SMALL_STATE(3177)] = 92285, + [SMALL_STATE(3178)] = 92305, + [SMALL_STATE(3179)] = 92323, + [SMALL_STATE(3180)] = 92343, + [SMALL_STATE(3181)] = 92363, + [SMALL_STATE(3182)] = 92383, + [SMALL_STATE(3183)] = 92403, + [SMALL_STATE(3184)] = 92423, + [SMALL_STATE(3185)] = 92443, + [SMALL_STATE(3186)] = 92461, + [SMALL_STATE(3187)] = 92479, + [SMALL_STATE(3188)] = 92496, + [SMALL_STATE(3189)] = 92513, + [SMALL_STATE(3190)] = 92530, + [SMALL_STATE(3191)] = 92547, + [SMALL_STATE(3192)] = 92564, + [SMALL_STATE(3193)] = 92581, + [SMALL_STATE(3194)] = 92598, + [SMALL_STATE(3195)] = 92615, + [SMALL_STATE(3196)] = 92630, + [SMALL_STATE(3197)] = 92647, + [SMALL_STATE(3198)] = 92664, + [SMALL_STATE(3199)] = 92681, + [SMALL_STATE(3200)] = 92698, + [SMALL_STATE(3201)] = 92715, + [SMALL_STATE(3202)] = 92732, + [SMALL_STATE(3203)] = 92749, + [SMALL_STATE(3204)] = 92766, + [SMALL_STATE(3205)] = 92783, + [SMALL_STATE(3206)] = 92800, + [SMALL_STATE(3207)] = 92817, + [SMALL_STATE(3208)] = 92834, + [SMALL_STATE(3209)] = 92849, + [SMALL_STATE(3210)] = 92866, + [SMALL_STATE(3211)] = 92883, + [SMALL_STATE(3212)] = 92900, + [SMALL_STATE(3213)] = 92915, + [SMALL_STATE(3214)] = 92932, + [SMALL_STATE(3215)] = 92949, + [SMALL_STATE(3216)] = 92964, + [SMALL_STATE(3217)] = 92981, + [SMALL_STATE(3218)] = 92998, + [SMALL_STATE(3219)] = 93015, + [SMALL_STATE(3220)] = 93032, + [SMALL_STATE(3221)] = 93047, + [SMALL_STATE(3222)] = 93064, + [SMALL_STATE(3223)] = 93081, + [SMALL_STATE(3224)] = 93098, + [SMALL_STATE(3225)] = 93115, + [SMALL_STATE(3226)] = 93132, + [SMALL_STATE(3227)] = 93147, + [SMALL_STATE(3228)] = 93162, + [SMALL_STATE(3229)] = 93179, + [SMALL_STATE(3230)] = 93196, + [SMALL_STATE(3231)] = 93213, + [SMALL_STATE(3232)] = 93230, + [SMALL_STATE(3233)] = 93245, + [SMALL_STATE(3234)] = 93262, + [SMALL_STATE(3235)] = 93279, + [SMALL_STATE(3236)] = 93296, + [SMALL_STATE(3237)] = 93313, + [SMALL_STATE(3238)] = 93330, + [SMALL_STATE(3239)] = 93347, + [SMALL_STATE(3240)] = 93364, + [SMALL_STATE(3241)] = 93379, + [SMALL_STATE(3242)] = 93396, + [SMALL_STATE(3243)] = 93413, + [SMALL_STATE(3244)] = 93430, + [SMALL_STATE(3245)] = 93445, + [SMALL_STATE(3246)] = 93460, + [SMALL_STATE(3247)] = 93477, + [SMALL_STATE(3248)] = 93494, + [SMALL_STATE(3249)] = 93509, + [SMALL_STATE(3250)] = 93526, + [SMALL_STATE(3251)] = 93541, + [SMALL_STATE(3252)] = 93558, + [SMALL_STATE(3253)] = 93575, + [SMALL_STATE(3254)] = 93592, + [SMALL_STATE(3255)] = 93607, + [SMALL_STATE(3256)] = 93624, + [SMALL_STATE(3257)] = 93641, + [SMALL_STATE(3258)] = 93656, + [SMALL_STATE(3259)] = 93673, + [SMALL_STATE(3260)] = 93690, + [SMALL_STATE(3261)] = 93707, + [SMALL_STATE(3262)] = 93724, + [SMALL_STATE(3263)] = 93739, + [SMALL_STATE(3264)] = 93756, + [SMALL_STATE(3265)] = 93771, + [SMALL_STATE(3266)] = 93788, + [SMALL_STATE(3267)] = 93805, + [SMALL_STATE(3268)] = 93822, + [SMALL_STATE(3269)] = 93839, + [SMALL_STATE(3270)] = 93856, + [SMALL_STATE(3271)] = 93873, + [SMALL_STATE(3272)] = 93890, + [SMALL_STATE(3273)] = 93907, + [SMALL_STATE(3274)] = 93924, + [SMALL_STATE(3275)] = 93941, + [SMALL_STATE(3276)] = 93958, + [SMALL_STATE(3277)] = 93975, + [SMALL_STATE(3278)] = 93992, + [SMALL_STATE(3279)] = 94007, + [SMALL_STATE(3280)] = 94024, + [SMALL_STATE(3281)] = 94041, + [SMALL_STATE(3282)] = 94058, + [SMALL_STATE(3283)] = 94075, + [SMALL_STATE(3284)] = 94092, + [SMALL_STATE(3285)] = 94107, + [SMALL_STATE(3286)] = 94124, + [SMALL_STATE(3287)] = 94139, + [SMALL_STATE(3288)] = 94156, + [SMALL_STATE(3289)] = 94173, + [SMALL_STATE(3290)] = 94188, + [SMALL_STATE(3291)] = 94205, + [SMALL_STATE(3292)] = 94222, + [SMALL_STATE(3293)] = 94239, + [SMALL_STATE(3294)] = 94256, + [SMALL_STATE(3295)] = 94273, + [SMALL_STATE(3296)] = 94290, + [SMALL_STATE(3297)] = 94305, + [SMALL_STATE(3298)] = 94320, + [SMALL_STATE(3299)] = 94337, + [SMALL_STATE(3300)] = 94352, + [SMALL_STATE(3301)] = 94369, + [SMALL_STATE(3302)] = 94384, + [SMALL_STATE(3303)] = 94399, + [SMALL_STATE(3304)] = 94416, + [SMALL_STATE(3305)] = 94433, + [SMALL_STATE(3306)] = 94450, + [SMALL_STATE(3307)] = 94467, + [SMALL_STATE(3308)] = 94484, + [SMALL_STATE(3309)] = 94501, + [SMALL_STATE(3310)] = 94518, + [SMALL_STATE(3311)] = 94535, + [SMALL_STATE(3312)] = 94552, + [SMALL_STATE(3313)] = 94569, + [SMALL_STATE(3314)] = 94586, + [SMALL_STATE(3315)] = 94603, + [SMALL_STATE(3316)] = 94620, + [SMALL_STATE(3317)] = 94637, + [SMALL_STATE(3318)] = 94654, + [SMALL_STATE(3319)] = 94671, + [SMALL_STATE(3320)] = 94688, + [SMALL_STATE(3321)] = 94705, + [SMALL_STATE(3322)] = 94722, + [SMALL_STATE(3323)] = 94739, + [SMALL_STATE(3324)] = 94756, + [SMALL_STATE(3325)] = 94773, + [SMALL_STATE(3326)] = 94790, + [SMALL_STATE(3327)] = 94807, + [SMALL_STATE(3328)] = 94824, + [SMALL_STATE(3329)] = 94841, + [SMALL_STATE(3330)] = 94858, + [SMALL_STATE(3331)] = 94875, + [SMALL_STATE(3332)] = 94890, + [SMALL_STATE(3333)] = 94907, + [SMALL_STATE(3334)] = 94924, + [SMALL_STATE(3335)] = 94941, + [SMALL_STATE(3336)] = 94958, + [SMALL_STATE(3337)] = 94975, + [SMALL_STATE(3338)] = 94992, + [SMALL_STATE(3339)] = 95009, + [SMALL_STATE(3340)] = 95026, + [SMALL_STATE(3341)] = 95043, + [SMALL_STATE(3342)] = 95060, + [SMALL_STATE(3343)] = 95077, + [SMALL_STATE(3344)] = 95094, + [SMALL_STATE(3345)] = 95109, + [SMALL_STATE(3346)] = 95126, + [SMALL_STATE(3347)] = 95143, + [SMALL_STATE(3348)] = 95160, + [SMALL_STATE(3349)] = 95177, + [SMALL_STATE(3350)] = 95194, + [SMALL_STATE(3351)] = 95209, + [SMALL_STATE(3352)] = 95226, + [SMALL_STATE(3353)] = 95243, + [SMALL_STATE(3354)] = 95260, + [SMALL_STATE(3355)] = 95277, + [SMALL_STATE(3356)] = 95292, + [SMALL_STATE(3357)] = 95309, + [SMALL_STATE(3358)] = 95326, + [SMALL_STATE(3359)] = 95343, + [SMALL_STATE(3360)] = 95360, + [SMALL_STATE(3361)] = 95377, + [SMALL_STATE(3362)] = 95394, + [SMALL_STATE(3363)] = 95411, + [SMALL_STATE(3364)] = 95428, + [SMALL_STATE(3365)] = 95445, + [SMALL_STATE(3366)] = 95462, + [SMALL_STATE(3367)] = 95479, + [SMALL_STATE(3368)] = 95496, + [SMALL_STATE(3369)] = 95513, + [SMALL_STATE(3370)] = 95530, + [SMALL_STATE(3371)] = 95547, + [SMALL_STATE(3372)] = 95564, + [SMALL_STATE(3373)] = 95581, + [SMALL_STATE(3374)] = 95598, + [SMALL_STATE(3375)] = 95615, + [SMALL_STATE(3376)] = 95630, + [SMALL_STATE(3377)] = 95647, + [SMALL_STATE(3378)] = 95664, + [SMALL_STATE(3379)] = 95681, + [SMALL_STATE(3380)] = 95698, + [SMALL_STATE(3381)] = 95713, + [SMALL_STATE(3382)] = 95730, + [SMALL_STATE(3383)] = 95747, + [SMALL_STATE(3384)] = 95762, + [SMALL_STATE(3385)] = 95779, + [SMALL_STATE(3386)] = 95796, + [SMALL_STATE(3387)] = 95813, + [SMALL_STATE(3388)] = 95830, + [SMALL_STATE(3389)] = 95847, + [SMALL_STATE(3390)] = 95864, + [SMALL_STATE(3391)] = 95879, + [SMALL_STATE(3392)] = 95896, + [SMALL_STATE(3393)] = 95913, + [SMALL_STATE(3394)] = 95930, + [SMALL_STATE(3395)] = 95945, + [SMALL_STATE(3396)] = 95962, + [SMALL_STATE(3397)] = 95977, + [SMALL_STATE(3398)] = 95994, + [SMALL_STATE(3399)] = 96011, + [SMALL_STATE(3400)] = 96028, + [SMALL_STATE(3401)] = 96045, + [SMALL_STATE(3402)] = 96062, + [SMALL_STATE(3403)] = 96079, + [SMALL_STATE(3404)] = 96096, + [SMALL_STATE(3405)] = 96113, + [SMALL_STATE(3406)] = 96130, + [SMALL_STATE(3407)] = 96147, + [SMALL_STATE(3408)] = 96164, + [SMALL_STATE(3409)] = 96181, + [SMALL_STATE(3410)] = 96198, + [SMALL_STATE(3411)] = 96215, + [SMALL_STATE(3412)] = 96232, + [SMALL_STATE(3413)] = 96247, + [SMALL_STATE(3414)] = 96264, + [SMALL_STATE(3415)] = 96279, + [SMALL_STATE(3416)] = 96296, + [SMALL_STATE(3417)] = 96313, + [SMALL_STATE(3418)] = 96328, + [SMALL_STATE(3419)] = 96345, + [SMALL_STATE(3420)] = 96362, + [SMALL_STATE(3421)] = 96379, + [SMALL_STATE(3422)] = 96396, + [SMALL_STATE(3423)] = 96413, + [SMALL_STATE(3424)] = 96430, + [SMALL_STATE(3425)] = 96447, + [SMALL_STATE(3426)] = 96464, + [SMALL_STATE(3427)] = 96481, + [SMALL_STATE(3428)] = 96498, + [SMALL_STATE(3429)] = 96515, + [SMALL_STATE(3430)] = 96532, + [SMALL_STATE(3431)] = 96549, + [SMALL_STATE(3432)] = 96566, + [SMALL_STATE(3433)] = 96581, + [SMALL_STATE(3434)] = 96598, + [SMALL_STATE(3435)] = 96615, + [SMALL_STATE(3436)] = 96630, + [SMALL_STATE(3437)] = 96647, + [SMALL_STATE(3438)] = 96664, + [SMALL_STATE(3439)] = 96681, + [SMALL_STATE(3440)] = 96696, + [SMALL_STATE(3441)] = 96713, + [SMALL_STATE(3442)] = 96730, + [SMALL_STATE(3443)] = 96745, + [SMALL_STATE(3444)] = 96762, + [SMALL_STATE(3445)] = 96777, + [SMALL_STATE(3446)] = 96794, + [SMALL_STATE(3447)] = 96811, + [SMALL_STATE(3448)] = 96828, + [SMALL_STATE(3449)] = 96843, + [SMALL_STATE(3450)] = 96860, + [SMALL_STATE(3451)] = 96877, + [SMALL_STATE(3452)] = 96894, + [SMALL_STATE(3453)] = 96909, + [SMALL_STATE(3454)] = 96926, + [SMALL_STATE(3455)] = 96943, + [SMALL_STATE(3456)] = 96958, + [SMALL_STATE(3457)] = 96975, + [SMALL_STATE(3458)] = 96990, + [SMALL_STATE(3459)] = 97007, + [SMALL_STATE(3460)] = 97024, + [SMALL_STATE(3461)] = 97041, + [SMALL_STATE(3462)] = 97058, + [SMALL_STATE(3463)] = 97073, + [SMALL_STATE(3464)] = 97090, + [SMALL_STATE(3465)] = 97107, + [SMALL_STATE(3466)] = 97122, + [SMALL_STATE(3467)] = 97139, + [SMALL_STATE(3468)] = 97154, + [SMALL_STATE(3469)] = 97169, + [SMALL_STATE(3470)] = 97186, + [SMALL_STATE(3471)] = 97203, + [SMALL_STATE(3472)] = 97220, + [SMALL_STATE(3473)] = 97237, + [SMALL_STATE(3474)] = 97254, + [SMALL_STATE(3475)] = 97271, + [SMALL_STATE(3476)] = 97288, + [SMALL_STATE(3477)] = 97303, + [SMALL_STATE(3478)] = 97320, + [SMALL_STATE(3479)] = 97337, + [SMALL_STATE(3480)] = 97354, + [SMALL_STATE(3481)] = 97371, + [SMALL_STATE(3482)] = 97388, + [SMALL_STATE(3483)] = 97405, + [SMALL_STATE(3484)] = 97422, + [SMALL_STATE(3485)] = 97439, + [SMALL_STATE(3486)] = 97456, + [SMALL_STATE(3487)] = 97473, + [SMALL_STATE(3488)] = 97488, + [SMALL_STATE(3489)] = 97505, + [SMALL_STATE(3490)] = 97522, + [SMALL_STATE(3491)] = 97539, + [SMALL_STATE(3492)] = 97553, + [SMALL_STATE(3493)] = 97567, + [SMALL_STATE(3494)] = 97581, + [SMALL_STATE(3495)] = 97595, + [SMALL_STATE(3496)] = 97609, + [SMALL_STATE(3497)] = 97623, + [SMALL_STATE(3498)] = 97637, + [SMALL_STATE(3499)] = 97651, + [SMALL_STATE(3500)] = 97665, + [SMALL_STATE(3501)] = 97679, + [SMALL_STATE(3502)] = 97693, + [SMALL_STATE(3503)] = 97707, + [SMALL_STATE(3504)] = 97721, + [SMALL_STATE(3505)] = 97735, + [SMALL_STATE(3506)] = 97749, + [SMALL_STATE(3507)] = 97763, + [SMALL_STATE(3508)] = 97777, + [SMALL_STATE(3509)] = 97791, + [SMALL_STATE(3510)] = 97805, + [SMALL_STATE(3511)] = 97819, + [SMALL_STATE(3512)] = 97833, + [SMALL_STATE(3513)] = 97847, + [SMALL_STATE(3514)] = 97861, + [SMALL_STATE(3515)] = 97875, + [SMALL_STATE(3516)] = 97889, + [SMALL_STATE(3517)] = 97903, + [SMALL_STATE(3518)] = 97917, + [SMALL_STATE(3519)] = 97931, + [SMALL_STATE(3520)] = 97945, + [SMALL_STATE(3521)] = 97959, + [SMALL_STATE(3522)] = 97973, + [SMALL_STATE(3523)] = 97987, + [SMALL_STATE(3524)] = 98001, + [SMALL_STATE(3525)] = 98015, + [SMALL_STATE(3526)] = 98029, + [SMALL_STATE(3527)] = 98043, + [SMALL_STATE(3528)] = 98057, + [SMALL_STATE(3529)] = 98071, + [SMALL_STATE(3530)] = 98085, + [SMALL_STATE(3531)] = 98099, + [SMALL_STATE(3532)] = 98113, + [SMALL_STATE(3533)] = 98127, + [SMALL_STATE(3534)] = 98141, + [SMALL_STATE(3535)] = 98155, + [SMALL_STATE(3536)] = 98169, + [SMALL_STATE(3537)] = 98183, + [SMALL_STATE(3538)] = 98197, + [SMALL_STATE(3539)] = 98211, + [SMALL_STATE(3540)] = 98225, + [SMALL_STATE(3541)] = 98239, + [SMALL_STATE(3542)] = 98253, + [SMALL_STATE(3543)] = 98267, + [SMALL_STATE(3544)] = 98281, + [SMALL_STATE(3545)] = 98295, + [SMALL_STATE(3546)] = 98309, + [SMALL_STATE(3547)] = 98323, + [SMALL_STATE(3548)] = 98337, + [SMALL_STATE(3549)] = 98351, + [SMALL_STATE(3550)] = 98365, + [SMALL_STATE(3551)] = 98379, + [SMALL_STATE(3552)] = 98393, + [SMALL_STATE(3553)] = 98407, + [SMALL_STATE(3554)] = 98421, + [SMALL_STATE(3555)] = 98435, + [SMALL_STATE(3556)] = 98449, + [SMALL_STATE(3557)] = 98463, + [SMALL_STATE(3558)] = 98477, + [SMALL_STATE(3559)] = 98491, + [SMALL_STATE(3560)] = 98505, + [SMALL_STATE(3561)] = 98519, + [SMALL_STATE(3562)] = 98533, + [SMALL_STATE(3563)] = 98547, + [SMALL_STATE(3564)] = 98561, + [SMALL_STATE(3565)] = 98575, + [SMALL_STATE(3566)] = 98589, + [SMALL_STATE(3567)] = 98603, + [SMALL_STATE(3568)] = 98617, + [SMALL_STATE(3569)] = 98631, + [SMALL_STATE(3570)] = 98645, + [SMALL_STATE(3571)] = 98659, + [SMALL_STATE(3572)] = 98673, + [SMALL_STATE(3573)] = 98687, + [SMALL_STATE(3574)] = 98701, + [SMALL_STATE(3575)] = 98715, + [SMALL_STATE(3576)] = 98729, + [SMALL_STATE(3577)] = 98743, + [SMALL_STATE(3578)] = 98757, + [SMALL_STATE(3579)] = 98771, + [SMALL_STATE(3580)] = 98785, + [SMALL_STATE(3581)] = 98799, + [SMALL_STATE(3582)] = 98813, + [SMALL_STATE(3583)] = 98827, + [SMALL_STATE(3584)] = 98841, + [SMALL_STATE(3585)] = 98855, + [SMALL_STATE(3586)] = 98869, + [SMALL_STATE(3587)] = 98883, + [SMALL_STATE(3588)] = 98897, + [SMALL_STATE(3589)] = 98911, + [SMALL_STATE(3590)] = 98925, + [SMALL_STATE(3591)] = 98939, + [SMALL_STATE(3592)] = 98953, + [SMALL_STATE(3593)] = 98967, + [SMALL_STATE(3594)] = 98981, + [SMALL_STATE(3595)] = 98995, + [SMALL_STATE(3596)] = 99009, + [SMALL_STATE(3597)] = 99023, + [SMALL_STATE(3598)] = 99037, + [SMALL_STATE(3599)] = 99051, + [SMALL_STATE(3600)] = 99065, + [SMALL_STATE(3601)] = 99079, + [SMALL_STATE(3602)] = 99093, + [SMALL_STATE(3603)] = 99107, + [SMALL_STATE(3604)] = 99121, + [SMALL_STATE(3605)] = 99135, + [SMALL_STATE(3606)] = 99149, + [SMALL_STATE(3607)] = 99163, + [SMALL_STATE(3608)] = 99177, + [SMALL_STATE(3609)] = 99191, + [SMALL_STATE(3610)] = 99205, + [SMALL_STATE(3611)] = 99219, + [SMALL_STATE(3612)] = 99233, + [SMALL_STATE(3613)] = 99247, + [SMALL_STATE(3614)] = 99261, + [SMALL_STATE(3615)] = 99275, + [SMALL_STATE(3616)] = 99289, + [SMALL_STATE(3617)] = 99303, + [SMALL_STATE(3618)] = 99317, + [SMALL_STATE(3619)] = 99331, + [SMALL_STATE(3620)] = 99345, + [SMALL_STATE(3621)] = 99359, + [SMALL_STATE(3622)] = 99373, + [SMALL_STATE(3623)] = 99387, + [SMALL_STATE(3624)] = 99401, + [SMALL_STATE(3625)] = 99415, + [SMALL_STATE(3626)] = 99429, + [SMALL_STATE(3627)] = 99443, + [SMALL_STATE(3628)] = 99457, + [SMALL_STATE(3629)] = 99471, + [SMALL_STATE(3630)] = 99485, + [SMALL_STATE(3631)] = 99499, + [SMALL_STATE(3632)] = 99513, + [SMALL_STATE(3633)] = 99527, + [SMALL_STATE(3634)] = 99541, + [SMALL_STATE(3635)] = 99555, + [SMALL_STATE(3636)] = 99569, + [SMALL_STATE(3637)] = 99583, + [SMALL_STATE(3638)] = 99597, + [SMALL_STATE(3639)] = 99611, + [SMALL_STATE(3640)] = 99625, + [SMALL_STATE(3641)] = 99639, + [SMALL_STATE(3642)] = 99653, + [SMALL_STATE(3643)] = 99667, + [SMALL_STATE(3644)] = 99681, + [SMALL_STATE(3645)] = 99695, + [SMALL_STATE(3646)] = 99709, + [SMALL_STATE(3647)] = 99723, + [SMALL_STATE(3648)] = 99737, + [SMALL_STATE(3649)] = 99751, + [SMALL_STATE(3650)] = 99765, + [SMALL_STATE(3651)] = 99779, + [SMALL_STATE(3652)] = 99793, + [SMALL_STATE(3653)] = 99807, + [SMALL_STATE(3654)] = 99821, + [SMALL_STATE(3655)] = 99835, + [SMALL_STATE(3656)] = 99849, + [SMALL_STATE(3657)] = 99863, + [SMALL_STATE(3658)] = 99877, + [SMALL_STATE(3659)] = 99891, + [SMALL_STATE(3660)] = 99905, + [SMALL_STATE(3661)] = 99919, + [SMALL_STATE(3662)] = 99933, + [SMALL_STATE(3663)] = 99947, + [SMALL_STATE(3664)] = 99961, + [SMALL_STATE(3665)] = 99975, + [SMALL_STATE(3666)] = 99989, + [SMALL_STATE(3667)] = 100003, + [SMALL_STATE(3668)] = 100017, + [SMALL_STATE(3669)] = 100031, + [SMALL_STATE(3670)] = 100045, + [SMALL_STATE(3671)] = 100059, + [SMALL_STATE(3672)] = 100073, + [SMALL_STATE(3673)] = 100087, + [SMALL_STATE(3674)] = 100101, + [SMALL_STATE(3675)] = 100115, + [SMALL_STATE(3676)] = 100129, + [SMALL_STATE(3677)] = 100143, + [SMALL_STATE(3678)] = 100157, + [SMALL_STATE(3679)] = 100171, + [SMALL_STATE(3680)] = 100185, + [SMALL_STATE(3681)] = 100199, + [SMALL_STATE(3682)] = 100213, + [SMALL_STATE(3683)] = 100227, + [SMALL_STATE(3684)] = 100241, + [SMALL_STATE(3685)] = 100255, + [SMALL_STATE(3686)] = 100269, + [SMALL_STATE(3687)] = 100283, + [SMALL_STATE(3688)] = 100297, + [SMALL_STATE(3689)] = 100311, + [SMALL_STATE(3690)] = 100325, + [SMALL_STATE(3691)] = 100339, + [SMALL_STATE(3692)] = 100353, + [SMALL_STATE(3693)] = 100367, + [SMALL_STATE(3694)] = 100381, + [SMALL_STATE(3695)] = 100395, + [SMALL_STATE(3696)] = 100409, + [SMALL_STATE(3697)] = 100423, + [SMALL_STATE(3698)] = 100437, + [SMALL_STATE(3699)] = 100451, + [SMALL_STATE(3700)] = 100465, + [SMALL_STATE(3701)] = 100479, + [SMALL_STATE(3702)] = 100493, + [SMALL_STATE(3703)] = 100507, + [SMALL_STATE(3704)] = 100521, + [SMALL_STATE(3705)] = 100535, + [SMALL_STATE(3706)] = 100549, + [SMALL_STATE(3707)] = 100563, + [SMALL_STATE(3708)] = 100577, + [SMALL_STATE(3709)] = 100591, + [SMALL_STATE(3710)] = 100605, + [SMALL_STATE(3711)] = 100619, + [SMALL_STATE(3712)] = 100633, + [SMALL_STATE(3713)] = 100647, + [SMALL_STATE(3714)] = 100661, + [SMALL_STATE(3715)] = 100675, + [SMALL_STATE(3716)] = 100689, + [SMALL_STATE(3717)] = 100703, + [SMALL_STATE(3718)] = 100717, + [SMALL_STATE(3719)] = 100731, + [SMALL_STATE(3720)] = 100745, + [SMALL_STATE(3721)] = 100759, + [SMALL_STATE(3722)] = 100773, + [SMALL_STATE(3723)] = 100787, + [SMALL_STATE(3724)] = 100801, + [SMALL_STATE(3725)] = 100815, + [SMALL_STATE(3726)] = 100829, + [SMALL_STATE(3727)] = 100843, + [SMALL_STATE(3728)] = 100857, + [SMALL_STATE(3729)] = 100871, + [SMALL_STATE(3730)] = 100885, + [SMALL_STATE(3731)] = 100899, + [SMALL_STATE(3732)] = 100913, + [SMALL_STATE(3733)] = 100927, + [SMALL_STATE(3734)] = 100941, + [SMALL_STATE(3735)] = 100955, + [SMALL_STATE(3736)] = 100969, + [SMALL_STATE(3737)] = 100983, + [SMALL_STATE(3738)] = 100997, + [SMALL_STATE(3739)] = 101011, + [SMALL_STATE(3740)] = 101025, + [SMALL_STATE(3741)] = 101039, + [SMALL_STATE(3742)] = 101053, + [SMALL_STATE(3743)] = 101067, + [SMALL_STATE(3744)] = 101081, + [SMALL_STATE(3745)] = 101095, + [SMALL_STATE(3746)] = 101109, + [SMALL_STATE(3747)] = 101123, + [SMALL_STATE(3748)] = 101137, + [SMALL_STATE(3749)] = 101151, + [SMALL_STATE(3750)] = 101165, + [SMALL_STATE(3751)] = 101179, + [SMALL_STATE(3752)] = 101193, + [SMALL_STATE(3753)] = 101207, + [SMALL_STATE(3754)] = 101221, + [SMALL_STATE(3755)] = 101235, + [SMALL_STATE(3756)] = 101249, + [SMALL_STATE(3757)] = 101263, + [SMALL_STATE(3758)] = 101277, + [SMALL_STATE(3759)] = 101291, + [SMALL_STATE(3760)] = 101305, + [SMALL_STATE(3761)] = 101319, + [SMALL_STATE(3762)] = 101333, + [SMALL_STATE(3763)] = 101347, + [SMALL_STATE(3764)] = 101361, + [SMALL_STATE(3765)] = 101375, + [SMALL_STATE(3766)] = 101389, + [SMALL_STATE(3767)] = 101403, + [SMALL_STATE(3768)] = 101417, + [SMALL_STATE(3769)] = 101431, + [SMALL_STATE(3770)] = 101445, + [SMALL_STATE(3771)] = 101459, + [SMALL_STATE(3772)] = 101473, + [SMALL_STATE(3773)] = 101487, + [SMALL_STATE(3774)] = 101501, + [SMALL_STATE(3775)] = 101515, + [SMALL_STATE(3776)] = 101529, + [SMALL_STATE(3777)] = 101543, + [SMALL_STATE(3778)] = 101557, + [SMALL_STATE(3779)] = 101571, + [SMALL_STATE(3780)] = 101585, + [SMALL_STATE(3781)] = 101599, + [SMALL_STATE(3782)] = 101613, + [SMALL_STATE(3783)] = 101627, + [SMALL_STATE(3784)] = 101641, + [SMALL_STATE(3785)] = 101655, + [SMALL_STATE(3786)] = 101669, + [SMALL_STATE(3787)] = 101683, + [SMALL_STATE(3788)] = 101697, + [SMALL_STATE(3789)] = 101711, + [SMALL_STATE(3790)] = 101725, + [SMALL_STATE(3791)] = 101739, + [SMALL_STATE(3792)] = 101753, + [SMALL_STATE(3793)] = 101767, + [SMALL_STATE(3794)] = 101781, + [SMALL_STATE(3795)] = 101795, + [SMALL_STATE(3796)] = 101809, + [SMALL_STATE(3797)] = 101823, + [SMALL_STATE(3798)] = 101837, + [SMALL_STATE(3799)] = 101851, + [SMALL_STATE(3800)] = 101865, + [SMALL_STATE(3801)] = 101879, + [SMALL_STATE(3802)] = 101893, + [SMALL_STATE(3803)] = 101907, + [SMALL_STATE(3804)] = 101921, + [SMALL_STATE(3805)] = 101935, + [SMALL_STATE(3806)] = 101949, + [SMALL_STATE(3807)] = 101963, + [SMALL_STATE(3808)] = 101977, + [SMALL_STATE(3809)] = 101991, + [SMALL_STATE(3810)] = 102005, + [SMALL_STATE(3811)] = 102009, + [SMALL_STATE(3812)] = 102013, + [SMALL_STATE(3813)] = 102017, + [SMALL_STATE(3814)] = 102021, + [SMALL_STATE(3815)] = 102025, + [SMALL_STATE(3816)] = 102029, }; 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(2399), - [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), + [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0, 0, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3677), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3729), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3673), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3738), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3807), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), [127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), [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(1589), - [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(535), - [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2544), - [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(142), - [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(140), + [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1578), + [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(526), + [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2552), + [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(138), + [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(134), [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2), - [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(302), + [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(298), [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1558), - [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(263), - [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(813), - [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(878), - [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(40), - [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3384), - [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3361), - [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3671), - [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2109), + [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(257), + [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(800), + [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(867), + [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(3235), + [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3282), + [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3722), + [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2114), [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(2176), - [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1400), - [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1376), - [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3586), - [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3287), - [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(834), - [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1414), - [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(165), - [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(879), - [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(843), - [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2637), - [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(359), - [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3677), - [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2039), + [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2137), + [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1395), + [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1368), + [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3664), + [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3226), + [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(828), + [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1389), + [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(161), + [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(871), + [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(834), + [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2732), + [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(354), + [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3545), + [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2046), [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(36), - [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2358), - [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3729), - [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3673), - [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3524), - [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1597), - [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2118), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1913), - [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(163), - [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2167), - [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1620), - [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(42), - [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3497), - [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2671), - [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1442), - [271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2739), - [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1474), - [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1557), - [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3596), - [283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2061), - [286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1557), - [289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3625), - [292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2348), + [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3738), + [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3807), + [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3638), + [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1593), + [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2110), + [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1909), + [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(159), + [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2153), + [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1613), + [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(40), + [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3209), + [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2755), + [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1522), + [271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2801), + [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1479), + [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1550), + [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3588), + [283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2072), + [286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1550), + [289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3629), + [292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), [320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), [346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2, 0, 0), [348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), + [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), [352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2, 0, 0), - [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), - [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), - [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), - [362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), - [370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), - [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), - [376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), + [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), + [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), + [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), + [362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), + [370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), + [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2614), + [376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), [380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1, 0, 0), [382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1, 0, 0), - [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), - [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), [392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2, 0, 0), [394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2, 0, 0), [396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1, 0, 0), [398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1, 0, 0), - [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), + [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3718), [402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1, 0, 0), [404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1, 0, 0), [406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), [408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), - [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), - [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), - [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), - [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), - [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), - [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), - [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), - [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), - [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), - [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), - [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), - [452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), - [454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), - [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), - [462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), - [464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), - [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), - [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), - [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), - [474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), - [478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), - [480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), - [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), - [486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), - [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), - [492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), - [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), - [496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3738), - [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), - [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), - [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), - [514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), - [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), - [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), - [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), - [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), - [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(184), - [539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(176), - [542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(68), + [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2851), + [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), + [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), + [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), + [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), + [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), + [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), + [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), + [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), + [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), + [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), + [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), + [452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), + [454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), + [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), + [464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), + [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), + [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), + [478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), + [480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), + [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), + [488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), + [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), + [500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), + [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), + [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3721), + [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), + [514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), + [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), + [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3392), + [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(191), + [539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(185), + [542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(64), [545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), - [547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(69), - [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(76), - [553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(176), - [556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3510), - [559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(188), - [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2721), - [565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(191), - [568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(185), - [571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3686), - [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), - [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), - [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), - [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(190), - [613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(176), - [616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(88), - [619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), - [621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(89), - [624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(90), - [627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(176), - [630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3789), - [633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(188), - [636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2721), - [639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(191), - [642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(190), - [645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3686), - [648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(246), - [651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(232), - [654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(105), - [657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), - [659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(106), - [662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(107), - [665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(232), - [668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(246), - [671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(226), - [674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2640), - [677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(227), - [680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3627), - [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), - [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), - [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), - [767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1385), - [770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(142), - [773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(140), - [776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), - [778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(10), - [781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(302), - [784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1558), - [787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(263), - [790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(813), - [793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(878), - [796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(40), - [799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3384), - [802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3612), - [805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3671), - [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2355), - [811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(38), - [814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2711), - [817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1400), - [820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1522), - [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(821), - [826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1072), - [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(166), - [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2714), - [835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(362), - [838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(36), - [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2712), - [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2794), - [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(167), - [850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(42), - [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3497), - [856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2621), - [859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1442), - [862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2739), - [865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1474), - [868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1557), - [871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3596), - [874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1557), - [877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3625), - [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), - [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), - [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), - [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), - [926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), - [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(68), + [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(71), + [553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(185), + [556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3618), + [559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(194), + [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2785), + [565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(196), + [568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(192), + [571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3676), + [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), + [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), + [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(241), + [609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(234), + [612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(100), + [615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), + [617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(101), + [620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(102), + [623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(234), + [626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(241), + [629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(221), + [632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2727), + [635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(249), + [638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3616), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(174), + [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(185), + [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(85), + [652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), + [654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(86), + [657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(87), + [660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(185), + [663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3798), + [666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(194), + [669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2785), + [672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(196), + [675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(174), + [678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3676), + [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), + [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3798), + [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1375), + [766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(138), + [769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(134), + [772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), + [774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(10), + [777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(298), + [780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1558), + [783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(257), + [786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(800), + [789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(867), + [792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(39), + [795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3235), + [798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3727), + [801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3722), + [804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2346), + [807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(38), + [810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2862), + [813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1395), + [816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1518), + [819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(841), + [822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1073), + [825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(162), + [828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2623), + [831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(357), + [834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(36), + [837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2867), + [840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2614), + [843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(163), + [846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(40), + [849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3209), + [852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2624), + [855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1522), + [858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2801), + [861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1479), + [864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1550), + [867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3588), + [870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1550), + [873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3629), + [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), + [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), + [930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), + [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), [942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), - [944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(176), + [944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(185), [947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), - [949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(176), - [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(185), + [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), [954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1, 0, 0), [956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1, 0, 0), - [958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), - [960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), - [962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_delim_token, 1, 0, 0), - [964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_delim_token, 1, 0, 0), - [966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), - [968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), - [970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), - [972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), - [974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1, 0, 0), - [976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1, 0, 0), - [978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), - [980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), - [982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2, 0, 0), - [984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2, 0, 0), - [986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3, 0, 0), - [988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3, 0, 0), - [990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), - [992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), - [994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, 0, 209), - [996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, 0, 209), - [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), - [1000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), - [1002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), - [1004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), - [1006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), - [1008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), - [1010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), - [1012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), - [1014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), - [1016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), - [1018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), - [1020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(232), - [1023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(232), - [1026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), - [1028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), - [1030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4, 0, 0), - [1032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4, 0, 0), - [1034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5, 0, 0), - [1036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5, 0, 0), - [1038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6, 0, 0), - [1040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6, 0, 0), - [1042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3, 0, 0), - [1044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3, 0, 0), - [1046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1, 0, 0), - [1048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1, 0, 0), - [1050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__delim_tokens, 1, 0, 0), - [1052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delim_tokens, 1, 0, 0), - [1054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3, 0, 0), - [1056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3, 0, 0), - [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), - [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), - [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [1070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), - [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [1080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), - [1082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), - [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), - [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), - [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3786), - [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), - [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), - [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), - [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3816), - [1106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), - [1108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), - [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3760), - [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), - [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), - [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [1122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), - [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), - [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), - [1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2, 0, 0), - [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2, 0, 0), - [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), - [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [1144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), - [1148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [1150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), - [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), - [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), - [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), - [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [1168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), - [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), - [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), - [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), - [1182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), - [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), - [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [1190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), - [1192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), - [1196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), - [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [1204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [1206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), - [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [1218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1385), - [1221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(142), - [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), - [1226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(140), - [1229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(10), - [1232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(302), - [1235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1558), - [1238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(263), - [1241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(813), - [1244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(878), - [1247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(40), - [1250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3384), - [1253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3671), - [1256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2355), - [1259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [1262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2711), - [1265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1400), - [1268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1522), - [1271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(821), - [1274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1072), - [1277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(166), - [1280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2714), - [1283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(362), - [1286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(36), - [1289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2712), - [1292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2794), - [1295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(167), - [1298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(42), - [1301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3497), - [1304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2621), - [1307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1442), - [1310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2739), - [1313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1474), - [1316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1557), - [1319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3596), - [1322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1557), - [1325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3625), - [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), - [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), - [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), - [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), - [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), - [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), - [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), - [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), - [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), - [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), - [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), - [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), - [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), - [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, 0, 35), - [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, 0, 35), - [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), - [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), - [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), - [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), - [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), - [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [1432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), - [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 5, 0, 0), - [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 5, 0, 0), - [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 6, 0, 0), - [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 6, 0, 0), - [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), - [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), - [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4, 0, 0), - [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4, 0, 0), - [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_block, 2, 0, 0), - [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_block, 2, 0, 0), + [958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), + [960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), + [962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3, 0, 0), + [964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3, 0, 0), + [966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1, 0, 0), + [968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1, 0, 0), + [970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, 0, 209), + [972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, 0, 209), + [974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(234), + [977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(234), + [980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), + [982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), + [984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), + [986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), + [988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), + [990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), + [992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), + [994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), + [996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4, 0, 0), + [998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4, 0, 0), + [1000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5, 0, 0), + [1002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5, 0, 0), + [1004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6, 0, 0), + [1006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6, 0, 0), + [1008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_delim_token, 1, 0, 0), + [1010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_delim_token, 1, 0, 0), + [1012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), + [1014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), + [1016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), + [1018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), + [1020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), + [1022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), + [1024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2, 0, 0), + [1026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2, 0, 0), + [1028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3, 0, 0), + [1030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3, 0, 0), + [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), + [1034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), + [1036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), + [1038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), + [1040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), + [1042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [1044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [1052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), + [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), + [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), + [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [1074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), + [1076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), + [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), + [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), + [1088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3804), + [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), + [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), + [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), + [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3477), + [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3774), + [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), + [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), + [1106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), + [1108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), + [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), + [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), + [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), + [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), + [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [1130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__delim_tokens, 1, 0, 0), + [1132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delim_tokens, 1, 0, 0), + [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1, 0, 0), + [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1, 0, 0), + [1138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [1146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), + [1150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), + [1156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), + [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [1164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), + [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), + [1168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), + [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), + [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), + [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), + [1180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1375), + [1183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(138), + [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), + [1188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(134), + [1191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(10), + [1194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(298), + [1197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1558), + [1200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(257), + [1203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(800), + [1206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(867), + [1209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(39), + [1212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3235), + [1215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3722), + [1218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2346), + [1221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [1224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2862), + [1227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1395), + [1230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1518), + [1233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(841), + [1236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1073), + [1239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(162), + [1242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2623), + [1245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(357), + [1248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(36), + [1251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2867), + [1254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2614), + [1257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(163), + [1260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(40), + [1263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3209), + [1266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2624), + [1269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1522), + [1272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2801), + [1275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1479), + [1278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1550), + [1281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3588), + [1284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1550), + [1287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3629), + [1290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2, 0, 0), + [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2, 0, 0), + [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), + [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), + [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), + [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), + [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), + [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3, 0, 0), + [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3, 0, 0), + [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), + [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), + [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), + [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), + [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), + [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), + [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), + [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), + [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, 0, 35), + [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, 0, 35), + [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), + [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), + [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), + [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), + [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), + [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), + [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), + [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4, 0, 0), + [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4, 0, 0), + [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 5, 0, 0), + [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 5, 0, 0), + [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 6, 0, 0), + [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 6, 0, 0), + [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), + [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), + [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_block, 2, 0, 0), + [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_block, 2, 0, 0), + [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, 0, 154), + [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, 0, 154), + [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, 0, 40), [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, 0, 40), - [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), - [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, 0, 45), - [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, 0, 45), - [1474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), - [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3, 0, 0), - [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3, 0, 0), - [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4, 0, 0), - [1482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4, 0, 0), - [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, 0, 84), - [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, 0, 84), - [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2, 0, 0), - [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2, 0, 0), - [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2, 0, 0), - [1494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2, 0, 0), - [1496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, 0, 105), - [1498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, 0, 105), - [1500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), - [1502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), - [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 0), - [1506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 0), - [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, 0, 8), - [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, 0, 8), - [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 46), - [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 46), - [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, 0, 8), - [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, 0, 8), - [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2, 0, 0), - [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2, 0, 0), - [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_block, 3, 0, 0), - [1526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_block, 3, 0, 0), - [1528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 33), - [1530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 33), - [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), - [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), - [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), - [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_block, 2, 0, 0), - [1540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_block, 2, 0, 0), - [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, 0, 256), - [1544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, 0, 256), - [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, 0, 154), - [1548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, 0, 154), - [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), - [1552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), - [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, 0, 126), - [1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, 0, 126), - [1558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3, 0, 0), - [1560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3, 0, 0), - [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), - [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), - [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), - [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), - [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), - [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), - [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), - [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), - [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), - [1604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 2, 0, 0), - [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 2, 0, 0), - [1608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2, 0, 0), - [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2, 0, 0), - [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3, 0, 0), - [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3, 0, 0), - [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), - [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [1628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), - [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), - [1638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), - [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), - [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), - [1644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), - [1646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), - [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), - [1650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), - [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), - [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), - [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), - [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), - [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), - [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), - [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), - [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), - [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), - [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), - [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), - [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), - [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), - [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), - [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), - [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), - [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), - [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), - [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), - [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), - [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), - [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), - [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), - [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), - [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 127), - [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 127), - [1760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2123), - [1763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(476), - [1766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(798), - [1769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2342), - [1772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3270), - [1775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(835), - [1778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(829), - [1781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(878), - [1784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2942), - [1787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1387), - [1790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1568), - [1793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3309), - [1796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3476), - [1799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2642), - [1802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2187), - [1805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(836), - [1808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(832), - [1811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2441), - [1814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2692), - [1817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2408), - [1820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2752), - [1823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2752), - [1826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3665), - [1829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 184), - [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 184), - [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 221), - [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 221), - [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 172), - [1849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 172), - [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 220), - [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 220), - [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 221), - [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 221), - [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 222), - [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 222), - [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 223), - [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 223), - [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 224), - [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 224), - [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 176), - [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 176), - [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 225), - [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 225), - [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 178), - [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 178), - [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 226), - [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 226), - [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 227), - [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 227), - [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 228), - [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 228), - [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 229), - [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 229), - [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 231), - [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 231), - [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4, 0, 0), - [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4, 0, 0), - [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 213), - [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 213), - [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5, 0, 0), - [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5, 0, 0), - [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 191), - [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 191), - [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 192), - [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 192), - [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 234), - [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 234), - [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 235), - [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 235), - [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 236), - [1933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 236), - [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 237), - [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 237), - [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 238), - [1941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 238), - [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 239), - [1945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 239), - [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 240), - [1949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 240), - [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 241), - [1953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 241), - [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 242), - [1957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 242), - [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 243), - [1961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 243), - [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 200), - [1965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 200), - [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 244), - [1969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 244), - [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), - [1973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), - [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 246), - [1977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 246), - [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, 0, 146), - [1981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, 0, 146), - [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 203), - [1985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 203), - [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 247), - [1989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 247), - [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 248), - [1993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 248), - [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 249), - [1997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 249), - [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 250), - [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 250), - [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 251), - [2005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 251), - [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, 0, 252), - [2009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, 0, 252), - [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 253), - [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 253), - [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 254), - [2017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 254), - [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 207), - [2021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 207), - [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 255), - [2025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 255), - [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6, 0, 0), - [2029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6, 0, 0), - [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 216), - [2033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 216), - [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 259), - [2037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 259), - [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 260), - [2041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 260), - [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 223), - [2045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 223), - [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 261), - [2049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 261), - [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 262), - [2053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 262), - [2055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 263), - [2057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 263), - [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 264), - [2061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 264), - [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 265), - [2065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 265), - [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6, 0, 0), - [2069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6, 0, 0), - [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 234), - [2073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 234), - [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 235), - [2077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 235), - [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 267), - [2081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 267), - [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 237), - [2085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 237), - [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 268), - [2089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 268), - [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 269), - [2093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 269), - [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 270), - [2097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 270), - [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 271), - [2101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 271), - [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 272), - [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 272), - [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 239), - [2109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 239), - [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 273), - [2113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 273), - [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 241), - [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 241), - [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 274), - [2121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 274), - [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 275), - [2125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 275), - [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 276), - [2129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 276), - [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 245), - [2133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 245), - [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 277), - [2137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 277), - [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, 0, 265), - [2141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, 0, 265), - [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 278), - [2145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 278), - [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 247), - [2149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 247), - [2151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 248), - [2153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 248), - [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 279), - [2157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 279), - [2159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, 0, 280), - [2161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, 0, 280), - [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 253), - [2165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 253), - [2167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 281), - [2169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 281), - [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 282), - [2173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 282), - [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 283), - [2177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 283), - [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 9, 0, 284), - [2181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 9, 0, 284), - [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, 0, 285), - [2185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, 0, 285), - [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 269), - [2189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 269), - [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 286), - [2193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 286), - [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 271), - [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 271), - [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 287), - [2201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 287), - [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 275), - [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 275), - [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 288), - [2209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 288), - [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 9, 0, 279), - [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 9, 0, 279), - [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 289), - [2217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 289), - [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 290), - [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 290), - [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 282), - [2225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 282), - [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 291), - [2229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 291), - [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 10, 0, 292), - [2233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 10, 0, 292), - [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, 0, 293), - [2237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, 0, 293), - [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, 0, 289), - [2241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, 0, 289), - [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, 0, 294), - [2245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, 0, 294), - [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2, 0, 0), - [2249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2, 0, 0), - [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 80), - [2253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 80), - [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 81), - [2257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 81), - [2259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, 0, 82), - [2261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, 0, 82), - [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, 0, 83), - [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, 0, 83), - [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 87), - [2269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 87), - [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 88), - [2273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 88), - [2275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 26), - [2277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 26), - [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 89), - [2281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 89), - [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, 0, 90), - [2285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, 0, 90), - [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), - [2289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), - [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), - [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), - [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), - [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3708), - [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), - [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), - [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3721), - [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2919), - [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3726), - [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), - [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3730), - [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), - [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), - [2333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), - [2335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3740), - [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), - [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [2345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 34), - [2349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 34), - [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 80), - [2353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 80), - [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 91), - [2357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 91), - [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 81), - [2361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 81), - [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 80), - [2365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 80), - [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 92), - [2369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 92), - [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 81), - [2373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 81), - [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 7), - [2377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 7), - [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 93), - [2381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 93), - [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 91), - [2385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 91), - [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 80), - [2389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 80), - [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 81), - [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 81), - [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 72), - [2397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 72), - [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 94), - [2401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 94), - [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 95), - [2405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 95), - [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, 0, 100), - [2409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, 0, 100), - [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), - [2413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), - [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), - [2417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), - [2419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3223), - [2422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1384), - [2425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2614), - [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), - [2430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3684), - [2433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(878), - [2436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3314), - [2439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3444), - [2442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2421), - [2445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2395), - [2448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2300), - [2451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3708), - [2454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3445), - [2457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3464), - [2460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(860), - [2463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(840), - [2466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3721), - [2469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2039), - [2472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2919), - [2475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3726), - [2478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3728), - [2481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3730), - [2484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2921), - [2487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2245), - [2490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1884), - [2493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2165), - [2496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3740), - [2499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2062), - [2502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3740), - [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 95), - [2507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 95), - [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 100), - [2511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 100), - [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 101), - [2515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 101), - [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 102), - [2519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 102), - [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 95), - [2523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 95), - [2525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 95), - [2527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 95), - [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, 0, 103), - [2531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, 0, 103), - [2533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, 0, 34), - [2539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, 0, 34), - [2541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 60), - [2543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 60), - [2545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 6), - [2547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 6), - [2549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 26), - [2551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 26), - [2553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 38), - [2555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 38), - [2557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, 0, 39), - [2559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, 0, 39), - [2561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), - [2563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), - [2565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, 0, 119), - [2567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, 0, 119), - [2569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 6), - [2571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 6), - [2573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 41), - [2575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 41), - [2577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 7), - [2579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 7), - [2581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3, 0, 0), - [2583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3, 0, 0), - [2585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 122), - [2587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 122), - [2589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 123), - [2591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 123), - [2593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 124), - [2595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 124), - [2597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 82), - [2599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 82), - [2601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 125), - [2603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 125), - [2605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 34), - [2607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 34), - [2609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 129), - [2611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 129), - [2613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 130), - [2615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 130), - [2617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 87), - [2619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 87), - [2621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 131), - [2623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 131), - [2625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 132), - [2627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 132), - [2629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 133), - [2631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 133), - [2633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 107), - [2635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 107), - [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, 0, 34), - [2639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, 0, 34), - [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 127), - [2643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 127), - [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 134), - [2647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 134), - [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, 0, 7), - [2651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, 0, 7), - [2653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, 0, 34), - [2655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, 0, 34), - [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, 0, 119), - [2659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, 0, 119), - [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), - [2663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), - [2665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [2667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [2669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 34), - [2671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 34), - [2673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 81), - [2675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 81), - [2677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 122), - [2679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 122), - [2681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 137), - [2683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 137), - [2685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 122), - [2687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 122), - [2689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 138), - [2691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 138), - [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, 0, 139), - [2695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, 0, 139), - [2697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 93), - [2699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 93), - [2701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 91), - [2703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 91), - [2705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 140), - [2707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 140), - [2709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 122), - [2711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 122), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [2715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 141), - [2717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 141), - [2719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 142), - [2721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 142), - [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 72), - [2725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 72), - [2727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 143), - [2729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 143), - [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 144), - [2733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 144), - [2735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 145), - [2737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 145), - [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [2741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 146), - [2743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 146), - [2745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 42), - [2747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 42), - [2749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, 0, 44), - [2751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, 0, 44), - [2753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 149), - [2755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 149), - [2757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 150), - [2759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 150), - [2761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 144), - [2763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 144), - [2765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 146), - [2767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 146), - [2769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 95), - [2771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 95), - [2773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 144), - [2775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 144), - [2777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 151), - [2779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 151), - [2781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 146), - [2783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 146), - [2785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 144), - [2787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 144), - [2789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 146), - [2791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 146), - [2793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 152), - [2795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 152), - [2797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, 0, 153), - [2799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, 0, 153), - [2801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), - [2803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), - [2805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), - [2807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), - [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 60), - [2813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 60), - [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 6), - [2817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 6), - [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 60), - [2821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 60), - [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 6), - [2825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 6), - [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4, 0, 0), - [2829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4, 0, 0), - [2831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 123), - [2833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 123), - [2835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 167), - [2837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 167), - [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 168), - [2841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 168), - [2843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 169), - [2845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 169), - [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 170), - [2849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 170), - [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 171), - [2853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 171), - [2855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 172), - [2857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 172), - [2859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 173), - [2861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 173), - [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 129), - [2865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 129), - [2867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 175), - [2869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 175), - [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 176), - [2873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 176), - [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 177), - [2877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 177), - [2879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 178), - [2881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 178), - [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 179), - [2885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 179), - [2887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 132), - [2889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 132), - [2891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 180), - [2893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 180), - [2895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 181), - [2897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 181), - [2899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 182), - [2901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 182), - [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 183), - [2905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 183), - [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, 0, 186), - [2909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, 0, 186), - [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4, 0, 0), - [2913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4, 0, 0), - [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 81), - [2917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 81), - [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 190), - [2921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 190), - [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 139), - [2925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 139), - [2927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 191), - [2929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 191), - [2931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 192), - [2933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 192), - [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 6, 0, 140), - [2937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 6, 0, 140), - [2939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 141), - [2941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 141), - [2943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 193), - [2945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 193), - [2947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 194), - [2949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 194), - [2951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 195), - [2953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 195), - [2955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 196), - [2957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 196), - [2959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, 0, 197), - [2961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, 0, 197), - [2963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 200), - [2965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 200), - [2967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 201), - [2969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 201), - [2971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 149), - [2973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 149), - [2975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 202), - [2977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 202), - [2979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, 0, 186), - [2981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, 0, 186), - [2983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, 0, 195), - [2985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, 0, 195), - [2987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 95), - [2989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 95), - [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 146), - [2993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 146), - [2995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 195), - [2997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 195), - [2999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 203), - [3001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 203), - [3003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, 0, 195), - [3005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, 0, 195), - [3007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 204), - [3009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 204), - [3011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 205), - [3013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 205), - [3015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 206), - [3017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 206), - [3019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 207), - [3021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 207), - [3023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 208), - [3025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 208), - [3027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 60), - [3029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 60), - [3031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 6), - [3033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 6), - [3035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, 0, 213), - [3037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, 0, 213), - [3039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5, 0, 0), - [3041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5, 0, 0), - [3043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 216), - [3045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 216), - [3047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 217), - [3049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 217), - [3051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 168), - [3053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 168), - [3055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 218), - [3057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 218), - [3059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 170), - [3061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 170), - [3063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 219), - [3065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 219), - [3067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 245), - [3069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 245), - [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), - [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), - [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), - [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), - [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), - [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), - [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), - [3165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [3175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), - [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, 0, 45), + [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, 0, 45), + [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 46), + [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 46), + [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, 0, 126), + [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, 0, 126), + [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4, 0, 0), + [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4, 0, 0), + [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2, 0, 0), + [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2, 0, 0), + [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, 0, 84), + [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, 0, 84), + [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2, 0, 0), + [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2, 0, 0), + [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, 0, 105), + [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, 0, 105), + [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), + [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), + [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 0), + [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 0), + [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, 0, 8), + [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, 0, 8), + [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3, 0, 0), + [1516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3, 0, 0), + [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_block, 2, 0, 0), + [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_block, 2, 0, 0), + [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, 0, 8), + [1524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, 0, 8), + [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), + [1528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3, 0, 0), + [1530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3, 0, 0), + [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2, 0, 0), + [1534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2, 0, 0), + [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, 0, 256), + [1538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, 0, 256), + [1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_block, 3, 0, 0), + [1542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_block, 3, 0, 0), + [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), + [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 33), + [1548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 33), + [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), + [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), + [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), + [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), + [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), + [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), + [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), + [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), + [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), + [1596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 2, 0, 0), + [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 2, 0, 0), + [1600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3, 0, 0), + [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3, 0, 0), + [1604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2, 0, 0), + [1606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2, 0, 0), + [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), + [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), + [1628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), + [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), + [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3188), + [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), + [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [1638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3736), + [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [1668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), + [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), + [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), + [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), + [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), + [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), + [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), + [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [1700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), + [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), + [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), + [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), + [1722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), + [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), + [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), + [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), + [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), + [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), + [1742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2861), + [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [1746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2107), + [1749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(477), + [1752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(790), + [1755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2339), + [1758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3227), + [1761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(833), + [1764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(824), + [1767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(867), + [1770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3125), + [1773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1379), + [1776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1557), + [1779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3305), + [1782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3471), + [1785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2613), + [1788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2208), + [1791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(837), + [1794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(825), + [1797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2502), + [1800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2766), + [1803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2467), + [1806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2630), + [1809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2630), + [1812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3656), + [1815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 127), + [1817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 127), + [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), + [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), + [1823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 184), + [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 184), + [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), + [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 254), + [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 254), + [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5, 0, 0), + [1841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5, 0, 0), + [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 216), + [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 216), + [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 217), + [1849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 217), + [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 168), + [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 168), + [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 218), + [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 218), + [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 170), + [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 170), + [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 219), + [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 219), + [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 172), + [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 172), + [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 220), + [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 220), + [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 221), + [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 221), + [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 222), + [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 222), + [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 223), + [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 223), + [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 224), + [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 224), + [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 176), + [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 176), + [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 225), + [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 225), + [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 178), + [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 178), + [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 226), + [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 226), + [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 227), + [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 227), + [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 228), + [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 228), + [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 229), + [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 229), + [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 231), + [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 231), + [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4, 0, 0), + [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4, 0, 0), + [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 213), + [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 213), + [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5, 0, 0), + [1933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5, 0, 0), + [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 191), + [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 191), + [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 192), + [1941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 192), + [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 234), + [1945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 234), + [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 235), + [1949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 235), + [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 236), + [1953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 236), + [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 237), + [1957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 237), + [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), + [1961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), + [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 239), + [1965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 239), + [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 240), + [1969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 240), + [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 241), + [1973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 241), + [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 242), + [1977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 242), + [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 243), + [1981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 243), + [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 200), + [1985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 200), + [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 244), + [1989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 244), + [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 245), + [1993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 245), + [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 246), + [1997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 246), + [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, 0, 146), + [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, 0, 146), + [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 203), + [2005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 203), + [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 247), + [2009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 247), + [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 248), + [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 248), + [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 249), + [2017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 249), + [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 250), + [2021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 250), + [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 251), + [2025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 251), + [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, 0, 252), + [2029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, 0, 252), + [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 253), + [2033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 253), + [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 207), + [2037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 207), + [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 255), + [2041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 255), + [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6, 0, 0), + [2045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6, 0, 0), + [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 216), + [2049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 216), + [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 259), + [2053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 259), + [2055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 221), + [2057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 221), + [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 260), + [2061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 260), + [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 223), + [2065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 223), + [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 261), + [2069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 261), + [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 262), + [2073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 262), + [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 263), + [2077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 263), + [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 264), + [2081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 264), + [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 265), + [2085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 265), + [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6, 0, 0), + [2089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6, 0, 0), + [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 234), + [2093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 234), + [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 235), + [2097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 235), + [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 267), + [2101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 267), + [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 237), + [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 237), + [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 268), + [2109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 268), + [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 269), + [2113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 269), + [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 270), + [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 270), + [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 271), + [2121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 271), + [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 272), + [2125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 272), + [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 239), + [2129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 239), + [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 273), + [2133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 273), + [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 241), + [2137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 241), + [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 274), + [2141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 274), + [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 275), + [2145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 275), + [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 276), + [2149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 276), + [2151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 245), + [2153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 245), + [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 277), + [2157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 277), + [2159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, 0, 265), + [2161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, 0, 265), + [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 278), + [2165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 278), + [2167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 247), + [2169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 247), + [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 248), + [2173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 248), + [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 279), + [2177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 279), + [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, 0, 280), + [2181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, 0, 280), + [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 253), + [2185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 253), + [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 281), + [2189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 281), + [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 282), + [2193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 282), + [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 283), + [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 283), + [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 9, 0, 284), + [2201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 9, 0, 284), + [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, 0, 285), + [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, 0, 285), + [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 269), + [2209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 269), + [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 286), + [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 286), + [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 271), + [2217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 271), + [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 287), + [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 287), + [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 275), + [2225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 275), + [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 288), + [2229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 288), + [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 9, 0, 279), + [2233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 9, 0, 279), + [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 289), + [2237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 289), + [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 290), + [2241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 290), + [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 282), + [2245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 282), + [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 291), + [2249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 291), + [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 10, 0, 292), + [2253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 10, 0, 292), + [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, 0, 293), + [2257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, 0, 293), + [2259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, 0, 289), + [2261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, 0, 289), + [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, 0, 294), + [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, 0, 294), + [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2, 0, 0), + [2269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2, 0, 0), + [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 80), + [2273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 80), + [2275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 81), + [2277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 81), + [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, 0, 82), + [2281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, 0, 82), + [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, 0, 83), + [2285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, 0, 83), + [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 87), + [2289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 87), + [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 88), + [2293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 88), + [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 26), + [2297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 26), + [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 89), + [2301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 89), + [2303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, 0, 90), + [2305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, 0, 90), + [2307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), + [2309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), + [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), + [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), + [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), + [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), + [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), + [2333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), + [2335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3700), + [2341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3110), + [2343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3703), + [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3704), + [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), + [2349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), + [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), + [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), + [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), + [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [2365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 34), + [2369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 34), + [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 80), + [2373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 80), + [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 91), + [2377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 91), + [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 81), + [2381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 81), + [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 80), + [2385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 80), + [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 92), + [2389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 92), + [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 81), + [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 81), + [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 7), + [2397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 7), + [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 93), + [2401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 93), + [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 91), + [2405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 91), + [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 80), + [2409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 80), + [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 81), + [2413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 81), + [2415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 72), + [2417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 72), + [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 94), + [2421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 94), + [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 95), + [2425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 95), + [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, 0, 100), + [2429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, 0, 100), + [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), + [2433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), + [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), + [2437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), + [2439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3374), + [2442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1377), + [2445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2599), + [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), + [2450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3494), + [2453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(867), + [2456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3245), + [2459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3434), + [2462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2431), + [2465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2336), + [2468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2292), + [2471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3681), + [2474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3435), + [2477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3361), + [2480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(852), + [2483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(845), + [2486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3700), + [2489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2046), + [2492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3110), + [2495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3703), + [2498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3704), + [2501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3707), + [2504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3118), + [2507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2273), + [2510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1879), + [2513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2156), + [2516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3723), + [2519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2088), + [2522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3723), + [2525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 95), + [2527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 95), + [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 100), + [2531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 100), + [2533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 101), + [2535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 101), + [2537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 102), + [2539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 102), + [2541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 95), + [2543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 95), + [2545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 95), + [2547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 95), + [2549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, 0, 103), + [2551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, 0, 103), + [2553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, 0, 34), + [2559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, 0, 34), + [2561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 60), + [2563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 60), + [2565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 6), + [2567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 6), + [2569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 26), + [2571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 26), + [2573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 38), + [2575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 38), + [2577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, 0, 39), + [2579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, 0, 39), + [2581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), + [2583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), + [2585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, 0, 119), + [2587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, 0, 119), + [2589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 6), + [2591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 6), + [2593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 41), + [2595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 41), + [2597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 7), + [2599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 7), + [2601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3, 0, 0), + [2603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3, 0, 0), + [2605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 122), + [2607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 122), + [2609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 123), + [2611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 123), + [2613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 124), + [2615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 124), + [2617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 82), + [2619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 82), + [2621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 125), + [2623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 125), + [2625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 34), + [2627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 34), + [2629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 129), + [2631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 129), + [2633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 130), + [2635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 130), + [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 87), + [2639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 87), + [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 131), + [2643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 131), + [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 132), + [2647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 132), + [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 133), + [2651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 133), + [2653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 107), + [2655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 107), + [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, 0, 34), + [2659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, 0, 34), + [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 127), + [2663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 127), + [2665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 134), + [2667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 134), + [2669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, 0, 7), + [2671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, 0, 7), + [2673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, 0, 34), + [2675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, 0, 34), + [2677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, 0, 119), + [2679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, 0, 119), + [2681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), + [2683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), + [2685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [2687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [2689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 34), + [2691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 34), + [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 81), + [2695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 81), + [2697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 122), + [2699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 122), + [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 137), + [2705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 137), + [2707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 122), + [2709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 122), + [2711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 138), + [2713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 138), + [2715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, 0, 139), + [2717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, 0, 139), + [2719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 93), + [2721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 93), + [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 91), + [2725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 91), + [2727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 140), + [2729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 140), + [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 122), + [2733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 122), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [2737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 141), + [2739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 141), + [2741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 142), + [2743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 142), + [2745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 72), + [2747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 72), + [2749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 143), + [2751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 143), + [2753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 144), + [2755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 144), + [2757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 145), + [2759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 145), + [2761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 146), + [2763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 146), + [2765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 42), + [2767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 42), + [2769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, 0, 44), + [2771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, 0, 44), + [2773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 149), + [2775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 149), + [2777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 150), + [2779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 150), + [2781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 144), + [2783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 144), + [2785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 146), + [2787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 146), + [2789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 95), + [2791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 95), + [2793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 144), + [2795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 144), + [2797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 151), + [2799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 151), + [2801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 146), + [2803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 146), + [2805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 144), + [2807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 144), + [2809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 146), + [2811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 146), + [2813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 152), + [2815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 152), + [2817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, 0, 153), + [2819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, 0, 153), + [2821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), + [2823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), + [2825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), + [2827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), + [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [2831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 60), + [2833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 60), + [2835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 6), + [2837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 6), + [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 60), + [2841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 60), + [2843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 6), + [2845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 6), + [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4, 0, 0), + [2849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4, 0, 0), + [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 123), + [2853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 123), + [2855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 167), + [2857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 167), + [2859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 168), + [2861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 168), + [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 169), + [2865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 169), + [2867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 170), + [2869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 170), + [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 171), + [2873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 171), + [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 172), + [2877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 172), + [2879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 173), + [2881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 173), + [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 129), + [2885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 129), + [2887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 175), + [2889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 175), + [2891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 176), + [2893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 176), + [2895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 177), + [2897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 177), + [2899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 178), + [2901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 178), + [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 179), + [2905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 179), + [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 132), + [2909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 132), + [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 180), + [2913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 180), + [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 181), + [2917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 181), + [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 182), + [2921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 182), + [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 183), + [2925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 183), + [2927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, 0, 186), + [2929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, 0, 186), + [2931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4, 0, 0), + [2933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4, 0, 0), + [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 81), + [2937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 81), + [2939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 190), + [2941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 190), + [2943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 139), + [2945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 139), + [2947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 191), + [2949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 191), + [2951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 192), + [2953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 192), + [2955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 6, 0, 140), + [2957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 6, 0, 140), + [2959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 141), + [2961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 141), + [2963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 193), + [2965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 193), + [2967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 194), + [2969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 194), + [2971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 195), + [2973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 195), + [2975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 196), + [2977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 196), + [2979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, 0, 197), + [2981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, 0, 197), + [2983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 200), + [2985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 200), + [2987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 201), + [2989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 201), + [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 149), + [2993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 149), + [2995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 202), + [2997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 202), + [2999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, 0, 186), + [3001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, 0, 186), + [3003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, 0, 195), + [3005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, 0, 195), + [3007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 95), + [3009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 95), + [3011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 146), + [3013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 146), + [3015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 195), + [3017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 195), + [3019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 203), + [3021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 203), + [3023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, 0, 195), + [3025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, 0, 195), + [3027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 204), + [3029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 204), + [3031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 205), + [3033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 205), + [3035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 206), + [3037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 206), + [3039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 207), + [3041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 207), + [3043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 208), + [3045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 208), + [3047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 60), + [3049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 60), + [3051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 6), + [3053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 6), + [3055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, 0, 213), + [3057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, 0, 213), + [3059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 238), + [3061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 238), + [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), + [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), + [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), + [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), + [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), + [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), + [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), + [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), + [3155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [3157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [3165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), + [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [3173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [3189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), - [3197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), - [3199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), - [3201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), - [3203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), - [3205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), - [3207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3704), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [3217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), - [3219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), - [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), - [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), - [3245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), - [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), - [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), - [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [3289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [3297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [3299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [3303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [3305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [3309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), - [3311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), - [3317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), - [3323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), - [3325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), - [3327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), - [3331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), - [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), - [3339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), - [3341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), - [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), - [3349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3360), - [3351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), - [3355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), - [3357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), - [3359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), - [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), - [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), - [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), - [3369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [3373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [3375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), - [3377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [3379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), - [3381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), - [3383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1, 0, 0), - [3385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1, 0, 0), - [3387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4, 0, 0), - [3389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4, 0, 0), - [3391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), - [3393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2, 0, 0), - [3395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2, 0, 0), - [3397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), - [3399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 19), - [3401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 19), - [3403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), - [3405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [3409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), - [3411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1, 0, 0), - [3413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1, 0, 0), - [3415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), - [3417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), - [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [3185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), + [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), + [3195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), + [3197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), + [3199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [3201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [3203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [3205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3677), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), + [3213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), + [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), + [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), + [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), + [3239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), + [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [3245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3694), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [3257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [3267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [3275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [3283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [3287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), + [3305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3751), + [3307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [3311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), + [3317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), + [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), + [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), + [3325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2981), + [3327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), + [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), + [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), + [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [3341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3345), + [3343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), + [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), + [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), + [3351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [3355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [3359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), + [3361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), + [3363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), + [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), + [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), + [3369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), + [3371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [3373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), + [3375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1, 0, 0), + [3377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1, 0, 0), + [3379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4, 0, 0), + [3381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4, 0, 0), + [3383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), + [3385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2, 0, 0), + [3387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2, 0, 0), + [3389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [3391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 19), + [3393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 19), + [3395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [3397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [3401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), + [3403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1, 0, 0), + [3405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remaining_field_pattern, 1, 0, 0), + [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), + [3409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [3413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), + [3415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 23), + [3417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 23), + [3419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), [3421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), - [3423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 23), - [3425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 23), - [3427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), - [3429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [3433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 111), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [3437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 111), - [3439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [3445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), - [3447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 5), - [3449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), - [3451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 1), - [3453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 1), - [3455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [3463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), - [3465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), - [3467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(3476), - [3470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 28), - [3472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 28), - [3474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), - [3476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4, 0, 0), - [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), - [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), - [3488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), - [3490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), - [3492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), - [3496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 1, 0, 0), - [3498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3712), - [3501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 28), - [3503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 28), - [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [3507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3, 0, 0), - [3509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), - [3511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), - [3513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 112), - [3515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 112), - [3517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 127), - [3519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 127), - [3521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, 0, 127), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [3425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 111), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [3429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 111), + [3431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [3437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), + [3439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), + [3441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(3471), + [3444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 28), + [3446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 28), + [3448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 1), + [3450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 1), + [3452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [3460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), + [3462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 5), + [3464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), + [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), + [3468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 1, 0, 0), + [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [3474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [3480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), + [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3393), + [3484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3626), + [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [3488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 28), + [3490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 28), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [3494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3, 0, 0), + [3496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3702), + [3499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4, 0, 0), + [3501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 6, 0, 0), + [3503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 0), + [3505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 112), + [3507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 112), + [3509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 52), + [3511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 52), + [3513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 51), + [3515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 51), + [3517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 184), + [3519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 184), + [3521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 184), [3523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 29), [3525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 29), - [3527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), - [3529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), + [3527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), + [3529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), [3531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 29), [3533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 29), - [3535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), - [3537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), - [3539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 6, 0, 0), - [3541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 0), - [3543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), - [3545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), - [3547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 16), - [3549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), - [3551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 48), - [3553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 48), - [3555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 47), - [3557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 47), - [3559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), - [3561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), - [3563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 52), - [3565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 52), - [3567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 51), - [3569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 51), - [3571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 184), - [3573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 184), - [3575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 184), - [3577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), - [3579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), - [3581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, 0, 6), - [3583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), - [3585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), - [3587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), - [3589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), - [3591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), - [3593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), - [3595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), - [3597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), - [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [3601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), - [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [3605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), - [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), - [3609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), - [3611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), - [3613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), - [3615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), - [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), - [3619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), - [3621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), - [3623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), - [3625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), - [3627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [3631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), - [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), - [3635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), - [3637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), - [3639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), - [3641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), - [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), - [3645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), - [3647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [3653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), - [3655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), - [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [3659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), - [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [3663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), - [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), - [3667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), - [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), - [3671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2805), - [3673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), - [3675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [3679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 31), - [3681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 31), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [3685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 73), - [3687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 73), - [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [3691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 75), - [3693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 75), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [3697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 76), - [3699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 76), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [3703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), - [3705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), - [3707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1, 0, 0), - [3709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1, 0, 0), - [3711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), - [3713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), - [3715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 48), - [3717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4, 0, 0), - [3719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4, 0, 0), - [3721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), - [3723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3, 0, 0), - [3725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 52), - [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [3731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 115), - [3733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 115), - [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [3737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 55), - [3739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 55), - [3741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 56), - [3743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 56), - [3745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [3749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [3753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 27), - [3755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 27), - [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [3759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), - [3761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), - [3763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5, 0, 0), - [3765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5, 0, 0), - [3767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, 0, 7), - [3769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 6, 0, 0), - [3771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 6, 0, 0), - [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), - [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [3779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 17), - [3781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6, 0, 0), - [3783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6, 0, 0), - [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [3787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 22), - [3789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 22), + [3535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 127), + [3537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 127), + [3539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, 0, 127), + [3541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), + [3543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), + [3545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), + [3547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), + [3549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, 0, 6), + [3551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), + [3553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), + [3555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), + [3557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 16), + [3559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), + [3561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 48), + [3563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 48), + [3565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 47), + [3567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 47), + [3569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), + [3571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), + [3573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), + [3575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), + [3577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [3579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3726), + [3581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), + [3583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), + [3585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), + [3587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), + [3589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), + [3591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [3595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3504), + [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [3599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), + [3601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), + [3603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3005), + [3605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), + [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), + [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [3611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), + [3613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), + [3615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), + [3617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), + [3619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [3623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3643), + [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), + [3627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), + [3629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), + [3631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3044), + [3633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), + [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), + [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [3641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), + [3643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), + [3645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2617), + [3647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), + [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), + [3651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), + [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [3655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), + [3657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), + [3659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [3663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), + [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), + [3667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), + [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [3671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 56), + [3673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 56), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [3681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 30), + [3683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 30), + [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [3687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), + [3689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2, 0, 0), + [3691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1, 0, 0), + [3693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1, 0, 0), + [3695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 6, 0, 0), + [3697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 6, 0, 0), + [3699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 48), + [3701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6, 0, 0), + [3703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6, 0, 0), + [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [3707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 73), + [3709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 73), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [3713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 75), + [3715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 75), + [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [3719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 52), + [3721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 76), + [3723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 76), + [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [3727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 55), + [3729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 55), + [3731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 25), + [3733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 25), + [3735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), + [3737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), + [3739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), + [3741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3, 0, 0), + [3743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 115), + [3745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 115), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [3749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), + [3751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), + [3753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5, 0, 0), + [3755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5, 0, 0), + [3757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 31), + [3759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 31), + [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), + [3767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), + [3769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), + [3771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, 0, 7), + [3773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 17), + [3775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4, 0, 0), + [3777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4, 0, 0), + [3779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 22), + [3781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 22), + [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [3785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 27), + [3787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 27), + [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), [3791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 24), [3793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 24), - [3795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 25), - [3797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 25), - [3799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), - [3801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2, 0, 0), - [3803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 30), - [3805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 30), - [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [3809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 5, 0, 113), - [3811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 5, 0, 113), - [3813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 5, 0, 0), - [3815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 5, 0, 0), - [3817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 162), - [3819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 162), - [3821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 163), - [3823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 163), - [3825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 164), - [3827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 164), - [3829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 116), - [3831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 116), - [3833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 155), - [3835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 155), - [3837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 0), - [3839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 0), - [3841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 6, 0, 165), - [3843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 6, 0, 165), - [3845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2, 0, 0), - [3847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2, 0, 0), - [3849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 87), - [3851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 87), - [3853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2, 0, 0), - [3855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2, 0, 0), - [3857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, 0, 32), - [3859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 3, 0, 32), - [3861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), - [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), - [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [3867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5, 0, 0), - [3869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5, 0, 0), - [3871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2, 0, 0), - [3873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2, 0, 0), - [3875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, 0, 0), - [3877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3, 0, 0), - [3879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5, 0, 0), - [3881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5, 0, 0), - [3883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 10), - [3885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 10), - [3887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7, 0, 0), - [3889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7, 0, 0), - [3891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 7, 0, 0), - [3893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 7, 0, 0), - [3895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), - [3897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), - [3899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 0), - [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [3903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 0), - [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [3907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), - [3909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 0), - [3911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 0), - [3913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 104), - [3915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 104), - [3917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 11), - [3919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 11), - [3921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, 0, 4), - [3923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, 0, 4), - [3925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 12), - [3927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 12), - [3929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5, 0, 0), - [3931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5, 0, 0), - [3933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2, 0, 0), - [3935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2, 0, 0), - [3937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 106), - [3939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 106), - [3941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 0), - [3943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 0), - [3945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 7, 0, 230), - [3947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 7, 0, 230), - [3949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), - [3951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), - [3953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 71), - [3955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 71), - [3957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2, 0, 0), - [3959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2, 0, 0), - [3961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, 0, 72), - [3963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, 0, 72), - [3965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, 0, 49), - [3967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 50), - [3969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, 0, 49), - [3971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6, 0, 0), - [3973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6, 0, 0), - [3975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, 0, 118), - [3977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, 0, 118), - [3979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, 0, 72), - [3981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, 0, 72), - [3983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), - [3985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), - [3987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 53), - [3989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 53), - [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [3993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3, 0, 0), - [3995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3, 0, 0), - [3997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3, 0, 0), - [3999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3, 0, 0), - [4001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, 0, 57), - [4003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, 0, 57), - [4005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 58), - [4007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, 0, 13), - [4009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 2, 0, 13), - [4011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [4013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [4015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, 0, 0), - [4017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4, 0, 0), - [4019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, 0, 136), - [4021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, 0, 136), - [4023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6, 0, 0), - [4025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6, 0, 0), - [4027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4, 0, 0), - [4029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4, 0, 0), - [4031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3, 0, 0), - [4033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3, 0, 0), - [4035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 4, 0, 61), - [4037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 4, 0, 61), - [4039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 79), - [4041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 79), - [4043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), - [4045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [4049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, 0, 109), - [4051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, 0, 109), - [4053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_never_type, 1, 0, 0), - [4055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_never_type, 1, 0, 0), - [4057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 110), - [4059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 110), - [4061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 6, 0, 113), - [4063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 6, 0, 113), - [4065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 6, 0, 0), - [4067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 6, 0, 0), - [4069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4, 0, 0), - [4071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4, 0, 0), - [4073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 212), - [4075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, 0, 212), - [4077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, 0, 18), - [4079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, 0, 18), - [4081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 4, 0, 0), - [4083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 4, 0, 0), - [4085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 4, 0, 113), - [4087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 4, 0, 113), - [4089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), - [4091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2, 0, 0), - [4093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), - [4095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), - [4097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, 0, 26), - [4099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, 0, 26), - [4101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 114), - [4103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 114), - [4105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), - [4107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), - [4109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 159), - [4111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 159), - [4113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), - [4115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), - [4117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 3, 0, 0), - [4119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 3, 0, 0), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), - [4123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 135), - [4125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 135), - [4127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4, 0, 0), - [4129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4, 0, 0), - [4131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 0), - [4133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 0), - [4135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1, 0, 0), - [4137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), - [4139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(3382), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), - [4144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(2760), - [4147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, 0, 0), - [4149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [4151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [4153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [4155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [4157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [4163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [4165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 0), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [4169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [4177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, 0, 53), - [4179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, 0, 53), - [4181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [4185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 54), - [4187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 54), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [4191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [4195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), - [4197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3, 0, 0), - [4199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3, 0, 0), - [4201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2, 0, 0), - [4203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2, 0, 0), - [4205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), - [4207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2, 0, 0), - [4209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), - [4211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), - [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), - [4225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), - [4227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), - [4229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), - [4231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [4235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), - [4237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), - [4239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), - [4241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), - [4243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [4245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [4247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [4249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [4251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [4257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [4261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [4265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), - [4267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [4273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [4295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [4303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), - [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [4309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), - [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [4323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), - [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [4357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), - [4365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3, 0, 0), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [4371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 198), - [4373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 199), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [4377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [4379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [4381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [4383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [4385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [4391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [4399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [4401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [4405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2, 0, 0), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [4409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [4411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [4415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [4417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [4425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [4429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [4431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), - [4433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [4443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [4445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 166), - [4447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 214), - [4449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 215), - [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [4457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [4467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_chain, 3, 0, 0), - [4469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 127), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), - [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), - [4489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, 0, 258), - [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), - [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [4501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, 0, 184), - [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [4505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, 0, 127), - [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [4531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 147), - [4533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 148), - [4535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 0), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [4545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2869), - [4547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [4551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), - [4553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3672), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [4563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 117), - [4565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 18), - [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [4585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [4599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [4607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2858), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [4613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [4621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), - [4623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), - [4625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), - [4627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), - [4629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5, 0, 0), - [4631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5, 0, 0), - [4633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6, 0, 0), - [4635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6, 0, 0), - [4637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4, 0, 0), - [4639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4, 0, 0), - [4641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), - [4643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), - [4645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [4649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3490), - [4651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3487), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [4655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), - [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [4659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), - [4661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), - [4663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), - [4667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), - [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [4673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 0), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [4679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), - [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [4691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), - [4695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 1), - [4697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 1), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [4701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), - [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [4761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), REDUCE(sym__pattern, 1, 0, 0), - [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), - [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), - [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), - [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [4784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), - [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [4808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2, 0, 0), - [4810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2, 0, 0), - [4812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 47), REDUCE(sym_scoped_type_identifier, 3, 0, 48), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [4817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [4821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 36), - [4823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), REDUCE(sym_scoped_type_identifier, 3, 0, 17), - [4826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1, 0, 0), - [4828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1, 0, 0), - [4830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), REDUCE(sym_scoped_type_identifier, 2, 0, 7), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [4835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), SHIFT(2881), - [4838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 51), REDUCE(sym_scoped_type_identifier, 3, 0, 52), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [4849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [4855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [4859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [4873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_pattern, 3, 0, 68), - [4875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_pattern, 3, 0, 68), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [4897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 21), - [4899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 21), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [4903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 67), - [4905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 67), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), - [4909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 54), - [4911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 54), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), - [4923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 20), - [4925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 20), + [3795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [3799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [3801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), + [3803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), + [3805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), + [3807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2, 0, 0), + [3809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 110), + [3811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 110), + [3813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 4, 0, 0), + [3815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 4, 0, 0), + [3817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), + [3819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), + [3821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 159), + [3823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 159), + [3825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 4, 0, 113), + [3827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 4, 0, 113), + [3829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 5, 0, 113), + [3831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 5, 0, 113), + [3833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 5, 0, 0), + [3835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 5, 0, 0), + [3837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 162), + [3839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 162), + [3841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 163), + [3843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 163), + [3845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 164), + [3847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 164), + [3849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, 0, 26), + [3851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, 0, 26), + [3853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 116), + [3855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 116), + [3857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 155), + [3859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 155), + [3861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 6, 0, 165), + [3863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 6, 0, 165), + [3865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2, 0, 0), + [3867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2, 0, 0), + [3869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 0), + [3871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 0), + [3873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 87), + [3875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 87), + [3877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2, 0, 0), + [3879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2, 0, 0), + [3881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, 0, 32), + [3883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 3, 0, 32), + [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), + [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [3891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5, 0, 0), + [3893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5, 0, 0), + [3895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2, 0, 0), + [3897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2, 0, 0), + [3899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, 0, 0), + [3901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3, 0, 0), + [3903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5, 0, 0), + [3905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5, 0, 0), + [3907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 10), + [3909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 10), + [3911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7, 0, 0), + [3913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7, 0, 0), + [3915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 7, 0, 0), + [3917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 7, 0, 0), + [3919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), + [3921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), + [3923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 0), + [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [3927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 0), + [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [3931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), + [3933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 0), + [3935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 0), + [3937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 104), + [3939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 104), + [3941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 11), + [3943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 11), + [3945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, 0, 4), + [3947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, 0, 4), + [3949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 12), + [3951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 12), + [3953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5, 0, 0), + [3955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5, 0, 0), + [3957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2, 0, 0), + [3959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2, 0, 0), + [3961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 106), + [3963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 106), + [3965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 0), + [3967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 0), + [3969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 7, 0, 230), + [3971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 7, 0, 230), + [3973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2, 0, 0), + [3975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2, 0, 0), + [3977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, 0, 49), + [3979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 50), + [3981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, 0, 49), + [3983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6, 0, 0), + [3985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6, 0, 0), + [3987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, 0, 118), + [3989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, 0, 118), + [3991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), + [3993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), + [3995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 53), + [3997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 53), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [4001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3, 0, 0), + [4003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3, 0, 0), + [4005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), + [4007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), + [4009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, 0, 57), + [4011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, 0, 57), + [4013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 58), + [4015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, 0, 13), + [4017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 2, 0, 13), + [4019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), + [4021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), + [4023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [4025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [4027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, 0, 0), + [4029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4, 0, 0), + [4031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, 0, 136), + [4033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, 0, 136), + [4035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 71), + [4037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 71), + [4039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4, 0, 0), + [4041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4, 0, 0), + [4043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3, 0, 0), + [4045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3, 0, 0), + [4047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 4, 0, 61), + [4049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 4, 0, 61), + [4051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, 0, 72), + [4053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, 0, 72), + [4055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, 0, 72), + [4057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, 0, 72), + [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [4061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 3, 0, 0), + [4063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 3, 0, 0), + [4065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 79), + [4067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 79), + [4069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_never_type, 1, 0, 0), + [4071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_never_type, 1, 0, 0), + [4073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3, 0, 0), + [4075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3, 0, 0), + [4077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4, 0, 0), + [4079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4, 0, 0), + [4081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6, 0, 0), + [4083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6, 0, 0), + [4085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, 0, 18), + [4087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, 0, 18), + [4089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), + [4091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), + [4093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 6, 0, 113), + [4095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 6, 0, 113), + [4097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_bounds, 6, 0, 0), + [4099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_bounds, 6, 0, 0), + [4101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 212), + [4103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, 0, 212), + [4105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, 0, 109), + [4107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, 0, 109), + [4109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 114), + [4111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 114), + [4113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4, 0, 0), + [4115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4, 0, 0), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), + [4121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1, 0, 0), + [4123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(2813), + [4126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), + [4128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(3249), + [4131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 135), + [4133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 135), + [4135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 0), + [4137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 0), + [4139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [4141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [4143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [4147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [4153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [4157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [4161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [4163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [4167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, 0, 53), + [4169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, 0, 53), + [4171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 54), + [4173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 54), + [4175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, 0, 0), + [4177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 0), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [4187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2852), + [4189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), + [4191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3, 0, 0), + [4193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3, 0, 0), + [4195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2, 0, 0), + [4197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2, 0, 0), + [4199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), + [4201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2, 0, 0), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [4213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [4217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), + [4219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [4223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), + [4225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3206), + [4227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), + [4229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), + [4231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), + [4233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [4237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [4239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [4241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [4243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [4245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [4251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [4255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [4259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [4261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [4269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), + [4283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [4291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [4297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), + [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [4307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), + [4327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3, 0, 0), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [4355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [4359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 198), + [4361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 199), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [4365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [4367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [4369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [4371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [4373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [4379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [4383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [4387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [4389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [4397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [4401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [4403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [4405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [4411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [4415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [4417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3014), + [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [4425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2, 0, 0), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [4429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [4433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 166), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [4439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 214), + [4441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 215), + [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [4445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [4453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 127), + [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [4457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_chain, 3, 0, 0), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [4479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, 0, 258), + [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), + [4487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, 0, 184), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [4491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, 0, 127), + [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [4515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 147), + [4517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 148), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [4521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 0), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [4537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), + [4539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), + [4543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), + [4545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [4553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 117), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [4563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 18), + [4565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [4587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [4597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [4601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), + [4603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), + [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2864), + [4607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), + [4609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [4613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6, 0, 0), + [4615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6, 0, 0), + [4617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4, 0, 0), + [4619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4, 0, 0), + [4621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5, 0, 0), + [4623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5, 0, 0), + [4625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), + [4627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), + [4629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [4633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), + [4635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3402), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), + [4639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3410), + [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [4643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), + [4645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3489), + [4647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [4651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [4657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 0), + [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [4663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), + [4675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [4679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 1), + [4681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 1), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [4685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), + [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [4747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), REDUCE(sym__pattern, 1, 0, 0), + [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [4764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [4780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2, 0, 0), + [4782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2, 0, 0), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [4796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1, 0, 0), + [4798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1, 0, 0), + [4800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 47), REDUCE(sym_scoped_type_identifier, 3, 0, 48), + [4803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 51), REDUCE(sym_scoped_type_identifier, 3, 0, 52), + [4806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [4810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 36), + [4812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), REDUCE(sym_scoped_type_identifier, 2, 0, 7), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [4823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [4829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), REDUCE(sym_scoped_type_identifier, 3, 0, 17), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [4834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), SHIFT(2633), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [4839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [4843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [4857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_pattern, 3, 0, 68), + [4859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_pattern, 3, 0, 68), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [4877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 21), + [4879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 21), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [4887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), + [4889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), + [4891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 20), + [4893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 20), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), + [4897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 67), + [4899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 67), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [4903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 54), + [4905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 54), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [4915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1, 0, 0), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), + [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), [4927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 62), [4929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 62), - [4931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1, 0, 0), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), - [4935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 63), - [4937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 63), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [4949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), - [4951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [4959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 70), - [4961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, 0, 0), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [4965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 64), - [4967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 64), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [4973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [4937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 63), + [4939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 63), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), + [4943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [4949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), + [4951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), + [4965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2, 0, 0), + [4967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 64), + [4969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 70), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [4973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, 0, 0), + [4975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2, 0, 0), + [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), [4979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 70), - [4981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 64), - [4983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3, 0, 0), - [4985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 64), - [4987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 65), - [4989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 65), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [4993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 70), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [4997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 64), - [4999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 64), + [4981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 2, 0, 0), + [4983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4, 0, 0), + [4985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3, 0, 0), + [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [4989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 64), + [4991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3, 0, 0), + [4993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2, 0, 0), + [4995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, 0, 0), + [4997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), + [4999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 64), [5001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 64), - [5003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2, 0, 0), - [5005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2, 0, 0), - [5007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [5011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3, 0, 0), - [5013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3, 0, 0), - [5015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3, 0, 0), - [5017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), - [5023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), - [5025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 65), - [5027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2, 0, 0), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), - [5031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, 0, 0), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [5035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5, 0, 0), - [5037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 70), - [5039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), + [5003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2, 0, 0), + [5005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 65), + [5007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5, 0, 0), + [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [5011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 65), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [5015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), + [5021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 64), + [5023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 65), + [5025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3, 0, 0), + [5027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 64), + [5029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3, 0, 0), + [5031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [5041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 70), + [5043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 64), [5045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 65), - [5047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4, 0, 0), - [5049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2, 0, 0), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), - [5055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), - [5057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 2, 0, 0), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), - [5065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 64), - [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), - [5079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(70), - [5082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), - [5084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(71), - [5087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(75), - [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [5144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 1), - [5147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3, 0, 0), - [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [5163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), - [5165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(876), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [5170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2, 0, 0), - [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), - [5178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2, 0, 0), - [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [5196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2421), - [5199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), - [5201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2297), - [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [5210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2968), - [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), - [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), - [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), - [5218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), - [5220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), - [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), - [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), - [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), - [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), - [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [5292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1, 0, 0), - [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [5316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), - [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), - [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), - [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [5336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 6), - [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [5342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), - [5344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), - [5346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), - [5348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), - [5350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), - [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), - [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [5364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1, 0, 0), - [5366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [5372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2, 0, 0), - [5374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), - [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), - [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [5390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 1), - [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [5396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 0), - [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), - [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), - [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [5406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, 0, 37), - [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [5410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), - [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), - [5424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3720), - [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), - [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [5434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3820), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [5438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3716), - [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [5444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3743), - [5446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), - [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [5502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3, 0, 0), - [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [5510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), - [5512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1397), - [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [5533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), REDUCE(sym_tuple_struct_pattern, 3, 0, 64), - [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [5556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2, 0, 0), - [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [5566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), REDUCE(sym_tuple_struct_pattern, 4, 0, 64), - [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), - [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), - [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [5615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime_parameter, 1, 0, 37), - [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [5621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 72), - [5623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 232), - [5625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(2054), - [5628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(256), - [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [5633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 0), - [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [5638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 232), - [5640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 109), - [5642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 266), - [5644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2, 0, 0), - [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [5648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), - [5650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), - [5652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 120), - [5654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 121), - [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [5670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 187), - [5672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 109), - [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [5680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), REDUCE(sym_tuple_pattern, 2, 0, 0), - [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [5693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), - [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [5709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), - [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), - [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), - [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [5729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, 0, 266), - [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [5737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 0), - [5739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 26), - [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [5743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 1), - [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), - [5749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [5763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 0), - [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), - [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), - [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), - [5781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 72), - [5783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 26), - [5785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 187), - [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), - [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [5799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), - [5801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), - [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [5831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), - [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [5835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), - [5837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), - [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), - [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), - [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [5871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, 0, 54), - [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [5875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), - [5877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), - [5879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), - [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), - [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [5905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, 0, 156), - [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [5915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), - [5917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [5927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), - [5929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [5943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), - [5945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), - [5947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), - [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), - [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [5959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3, 0, 0), - [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [5963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), - [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [5975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), - [5977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3158), - [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [5988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), - [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), - [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [6004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [6010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), - [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), - [6024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), - [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), - [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [6034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, 0, 119), - [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), - [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [6046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(195), - [6049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(823), - [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [6060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), - [6062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [6070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), - [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [6076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 107), - [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [6104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), - [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), - [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), - [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), - [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [6166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), - [6168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [6172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 69), - [6174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, 0, 210), - [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [6188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, 0, 108), - [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [6194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 1), - [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), - [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [6216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 96), - [6218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 97), - [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [6228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), - [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [6240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(912), - [6243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 0), - [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [6247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 98), - [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [6253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3725), - [6255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), - [6257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3792), - [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [6267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 99), - [6269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4, 0, 0), - [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [6275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), - [6277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1944), - [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [6292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), - [6294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2286), - [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), - [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [6337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, 0, 66), - [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [6359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2, 0, 0), - [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [6385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 11), - [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [6397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4, 0, 0), - [6399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), - [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [6421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 128), - [6423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(820), - [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [6430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), - [6432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(2173), - [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [6445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, 0, 257), - [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), - [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), - [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), - [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [6491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(456), - [6494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 157), - [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [6500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 158), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), - [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [6506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, 0, 109), - [6508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), - [6510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2498), - [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), - [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), - [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [6531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [6533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [6539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(320), - [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [6556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), - [6558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), SHIFT_REPEAT(3249), - [6561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2, 0, 0), - [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [6565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 0), - [6567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(3072), - [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), - [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), - [6580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1, 0, 0), - [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), - [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [6588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), - [6590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), SHIFT_REPEAT(2290), - [6593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 41), - [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), - [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [6617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, 0, 211), - [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [6623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 174), - [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [6629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), - [6631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), - [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [6647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 2, 0, 0), - [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [6657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, 0, 43), - [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [6663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 9), - [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), - [6673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 26), - [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [6681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 188), - [6683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 188), SHIFT_REPEAT(801), - [6686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 189), - [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [6692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), - [6694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2291), - [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [6701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, 0, 72), - [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [6721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), - [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [6725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5, 0, 0), - [6727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 0), - [6729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(723), - [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [6734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 85), - [6736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), - [6738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3359), - [6740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3788), - [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [6760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 233), - [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [6766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1, 0, 0), - [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [6770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3, 0, 0), - [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [6784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), - [6786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), - [6788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), - [6790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), - [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), - [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [6810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), - [6812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), - [6814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 3), - [6816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [6818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), - [6820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), - [6822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [6824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 2), - [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [6828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 6, 0, 213), - [6830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), - [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), - [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), - [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [6850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2887), - [6852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), - [6854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 2, 0, 0), - [6856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1, 0, 0), - [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [6860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), - [6862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [6864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), - [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), - [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [6872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), - [6874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), - [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), - [6880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), - [6882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), - [6884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [6892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), - [6894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), - [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [6900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), - [6902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), - [6904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), - [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [6908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), - [6910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), - [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), - [6916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, 0, 160), - [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [6920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), - [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [6924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), - [6926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), - [6928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 161), - [6930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), - [6932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), - [6934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), - [6936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [6938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, 0, 74), - [6940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), - [6942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), - [6944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), - [6946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [6948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), - [6950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), - [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), - [6956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, 0, 39), - [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), - [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), - [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [6970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 0), - [6972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), - [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [6976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), - [6978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3814), - [6980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), - [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), - [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), - [6990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), - [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [6994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), - [6996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3, 0, 0), - [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), - [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), - [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), - [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), - [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [7026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime_parameter, 2, 0, 86), - [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), - [7030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), - [7032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [7038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3, 0, 0), - [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), - [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), - [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [7058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), - [7060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), - [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), - [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), - [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [7086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3752), - [7088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3810), - [7090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 3, 0, 0), - [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), - [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), - [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), - [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), - [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), - [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), - [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), - [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [7174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, 0, 185), - [7176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 2), - [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), - [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), - [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), - [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), - [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), - [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), - [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), - [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), - [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), - [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [7266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inner_line_doc_comment_marker, 1, 0, 0), - [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), - [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), - [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), - [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), - [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), - [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), - [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), - [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), - [7322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), - [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), - [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), - [7330] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), - [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), - [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), - [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), - [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), - [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), - [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), - [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), - [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), - [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), - [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), - [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), - [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), - [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [7414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 3), - [7416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__outer_line_doc_comment_marker, 1, 0, 0), - [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), - [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), - [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [7476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 77), - [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), - [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), - [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), - [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), - [7512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 78), - [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), - [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), - [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), - [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), - [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), - [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), - [7538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3, 0, 0), - [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), - [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), - [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), - [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), - [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), - [7574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), - [7576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), - [7578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 15), - [7580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 14), - [7582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 2, 0, 0), - [7584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 0), - [7586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2, 0, 0), - [7588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 4, 0, 59), - [7590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 0), + [5047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 64), + [5049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 70), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), + [5055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2, 0, 0), + [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), + [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), + [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), + [5105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(77), + [5108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), + [5110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(65), + [5113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(69), + [5116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), + [5118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(855), + [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [5127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 1), + [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [5136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3, 0, 0), + [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [5162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2, 0, 0), + [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [5180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2431), + [5183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), + [5185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2289), + [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [5194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), + [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), + [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), + [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), + [5202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), + [5204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3747), + [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), + [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), + [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), + [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [5278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1, 0, 0), + [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [5290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, 0, 37), + [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [5298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3710), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), + [5302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2, 0, 0), + [5304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), + [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [5324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 6), + [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [5328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), + [5330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3007), + [5332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), + [5334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3590), + [5336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3219), + [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [5358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3733), + [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [5372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), + [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [5376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), + [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [5384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1, 0, 0), + [5386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), + [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), + [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), + [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [5406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 1), + [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), + [5414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 0), + [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [5418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [5428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3815), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), + [5432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), + [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [5472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), REDUCE(sym_tuple_struct_pattern, 4, 0, 64), + [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [5523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), REDUCE(sym_tuple_struct_pattern, 3, 0, 64), + [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [5530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3, 0, 0), + [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [5540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), + [5542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1392), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [5559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2, 0, 0), + [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [5589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 109), + [5591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 0), + [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [5600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), + [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [5604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), REDUCE(sym_tuple_pattern, 2, 0, 0), + [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [5623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 26), + [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), + [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), + [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [5645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime_parameter, 1, 0, 37), + [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [5659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 266), + [5661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(2031), + [5664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(251), + [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [5671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 1), + [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [5679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), + [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), + [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), + [5687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3017), + [5689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2983), + [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [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, 232), + [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [5707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 0), + [5709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 109), + [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [5715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 0), + [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), + [5721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2, 0, 0), + [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [5735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 72), + [5737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 26), + [5739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 187), + [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [5751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), + [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [5765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 120), + [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [5769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, 0, 266), + [5771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 121), + [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [5779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), + [5781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3091), + [5783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 232), + [5785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 187), + [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), + [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), + [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [5851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), + [5853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(199), + [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [5866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), + [5868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [5874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), + [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [5882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2985), + [5884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [5890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), + [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), + [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), + [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [5908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), + [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), + [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [5950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 69), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [5954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3050), + [5956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), + [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [5978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [5980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), + [5982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), + [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [5990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), + [5996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, 0, 54), + [5998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, 0, 156), + [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [6004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), + [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), + [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [6022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(817), + [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [6027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), + [6029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), + [6031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3071), + [6033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [6037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 107), + [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [6047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), + [6049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), + [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [6055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [6087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, 0, 119), + [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [6093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3, 0, 0), + [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [6127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, 0, 210), + [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [6151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), + [6153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [6155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), + [6157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3157), + [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), + [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [6186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), + [6188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), + [6190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), + [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [6206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 1), + [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), + [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [6228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 96), + [6230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 97), + [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [6236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4, 0, 0), + [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [6250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), + [6252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1715), + [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [6257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, 0, 109), + [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [6283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), + [6285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [6289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), + [6291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2272), + [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [6298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2, 0, 0), + [6300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, 0, 66), + [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [6334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 0), + [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [6342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 98), + [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [6360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 2, 0, 0), + [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [6370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, 0, 43), + [6372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 128), + [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [6378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4, 0, 0), + [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [6390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), + [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [6394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(803), + [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), + [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [6411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2, 0, 0), + [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [6447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [6449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), + [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), + [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [6469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), + [6471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(722), + [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [6486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 99), + [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [6490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), + [6492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(2133), + [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [6497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), + [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [6503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 157), + [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [6507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 158), + [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [6511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), + [6513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2413), + [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [6522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1, 0, 0), + [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [6530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3, 0, 0), + [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), + [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), + [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [6544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(315), + [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), + [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [6559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 233), + [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [6567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), + [6569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), SHIFT_REPEAT(3223), + [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [6574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 0), + [6576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(2984), + [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [6591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1, 0, 0), + [6593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, 0, 108), + [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [6597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), + [6599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), SHIFT_REPEAT(2282), + [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [6604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 41), + [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [6640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 9), + [6642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), + [6644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(907), + [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [6651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 174), + [6653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3715), + [6655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3479), + [6657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3782), + [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [6691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 26), + [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [6695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 188), + [6697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 188), SHIFT_REPEAT(792), + [6700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 189), + [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [6704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), + [6706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2283), + [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [6731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5, 0, 0), + [6733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 0), + [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [6737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 85), + [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [6741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, 0, 211), + [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [6745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, 0, 72), + [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [6769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 11), + [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [6783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3729), + [6785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), + [6787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3795), + [6789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, 0, 257), + [6791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(452), + [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [6796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [6798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [6800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [6802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), + [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [6806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), + [6808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [6820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [6822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), + [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [6828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 3), + [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [6834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [6836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), + [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [6840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), + [6842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [6844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), + [6846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1, 0, 0), + [6848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), + [6850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), + [6852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 2), + [6854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), + [6856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), + [6858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [6864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3086), + [6866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), + [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [6870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [6872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [6874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [6876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), + [6878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [6888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 6, 0, 213), + [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [6894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), + [6896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), + [6898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), + [6900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, 0, 160), + [6902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [6904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_bounds_repeat1, 2, 0, 161), + [6906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), + [6908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [6910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), + [6912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [6914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), + [6916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), + [6918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), + [6920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), + [6922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [6924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), + [6930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, 0, 74), + [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), + [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [6952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 3, 0, 0), + [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [6956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 0), + [6958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), + [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [6962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 2, 0, 0), + [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [6970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3, 0, 0), + [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), + [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), + [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [6980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), + [6982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3575), + [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), + [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), + [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), + [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), + [7002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [7004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), + [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), + [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), + [7016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime_parameter, 2, 0, 86), + [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), + [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [7028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, 0, 39), + [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [7032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [7034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), + [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [7042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3, 0, 0), + [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), + [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), + [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [7066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), + [7068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), + [7070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3801), + [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [7082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3, 0, 0), + [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), + [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [7114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 3), + [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), + [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [7154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__outer_line_doc_comment_marker, 1, 0, 0), + [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [7166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, 0, 185), + [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), + [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), + [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), + [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), + [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), + [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), + [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [7232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inner_line_doc_comment_marker, 1, 0, 0), + [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [7242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 2), + [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), + [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), + [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), + [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), + [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), + [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [7324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3816), + [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), + [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [7334] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), + [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), + [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), + [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), + [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), + [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), + [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), + [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), + [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), + [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), + [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), + [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), + [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), + [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), + [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), + [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), + [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), + [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), + [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), + [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [7548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 77), + [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [7552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 78), + [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), + [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [7562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 14), + [7564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 4, 0, 59), + [7566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 15), + [7568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 0), + [7570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2, 0, 0), + [7572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 2, 0, 0), + [7574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 0), }; enum ts_external_scanner_symbol_identifiers { @@ -205807,10 +204619,10 @@ static const bool ts_external_scanner_states[10][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_float_literal] = true, }, [7] = { - [ts_external_token__raw_string_literal_end] = true, + [ts_external_token__line_doc_content] = true, }, [8] = { - [ts_external_token__line_doc_content] = true, + [ts_external_token__raw_string_literal_end] = true, }, [9] = { [ts_external_token_raw_string_literal_content] = true, @@ -205836,7 +204648,7 @@ void tree_sitter_rust_external_scanner_deserialize(void *, const char *, unsigne TS_PUBLIC const TSLanguage *tree_sitter_rust(void) { static const TSLanguage language = { - .abi_version = LANGUAGE_VERSION, + .version = LANGUAGE_VERSION, .symbol_count = SYMBOL_COUNT, .alias_count = ALIAS_COUNT, .token_count = TOKEN_COUNT, @@ -205844,7 +204656,6 @@ TS_PUBLIC const TSLanguage *tree_sitter_rust(void) { .state_count = STATE_COUNT, .large_state_count = LARGE_STATE_COUNT, .production_id_count = PRODUCTION_ID_COUNT, - .supertype_count = SUPERTYPE_COUNT, .field_count = FIELD_COUNT, .max_alias_sequence_length = MAX_ALIAS_SEQUENCE_LENGTH, .parse_table = &ts_parse_table[0][0], @@ -205855,14 +204666,11 @@ TS_PUBLIC const TSLanguage *tree_sitter_rust(void) { .field_names = ts_field_names, .field_map_slices = ts_field_map_slices, .field_map_entries = ts_field_map_entries, - .supertype_map_slices = ts_supertype_map_slices, - .supertype_map_entries = ts_supertype_map_entries, - .supertype_symbols = ts_supertype_symbols, .symbol_metadata = ts_symbol_metadata, .public_symbol_map = ts_symbol_map, .alias_map = ts_non_terminal_alias_map, .alias_sequences = &ts_alias_sequences[0][0], - .lex_modes = (const void*)ts_lex_modes, + .lex_modes = ts_lex_modes, .lex_fn = ts_lex, .keyword_lex_fn = ts_lex_keywords, .keyword_capture_token = sym_identifier, @@ -205876,13 +204684,6 @@ TS_PUBLIC const TSLanguage *tree_sitter_rust(void) { tree_sitter_rust_external_scanner_deserialize, }, .primary_state_ids = ts_primary_state_ids, - .name = "rust", - .max_reserved_word_set_size = 0, - .metadata = { - .major_version = 0, - .minor_version = 24, - .patch_version = 0, - }, }; return &language; } diff --git a/src/tree_sitter/array.h b/src/tree_sitter/array.h index a17a574f..15a3b233 100644 --- a/src/tree_sitter/array.h +++ b/src/tree_sitter/array.h @@ -14,7 +14,6 @@ extern "C" { #include #ifdef _MSC_VER -#pragma warning(push) #pragma warning(disable : 4101) #elif defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic push @@ -279,7 +278,7 @@ static inline void _array__splice(Array *self, size_t element_size, #define _compare_int(a, b) ((int)*(a) - (int)(b)) #ifdef _MSC_VER -#pragma warning(pop) +#pragma warning(default : 4101) #elif defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic pop #endif diff --git a/src/tree_sitter/parser.h b/src/tree_sitter/parser.h index 858107de..799f599b 100644 --- a/src/tree_sitter/parser.h +++ b/src/tree_sitter/parser.h @@ -18,11 +18,6 @@ typedef uint16_t TSStateId; typedef uint16_t TSSymbol; typedef uint16_t TSFieldId; typedef struct TSLanguage TSLanguage; -typedef struct TSLanguageMetadata { - uint8_t major_version; - uint8_t minor_version; - uint8_t patch_version; -} TSLanguageMetadata; #endif typedef struct { @@ -31,11 +26,10 @@ typedef struct { bool inherited; } TSFieldMapEntry; -// Used to index the field and supertype maps. typedef struct { uint16_t index; uint16_t length; -} TSMapSlice; +} TSFieldMapSlice; typedef struct { bool visible; @@ -85,12 +79,6 @@ typedef struct { uint16_t external_lex_state; } TSLexMode; -typedef struct { - uint16_t lex_state; - uint16_t external_lex_state; - uint16_t reserved_word_set_id; -} TSLexerMode; - typedef union { TSParseAction action; struct { @@ -105,7 +93,7 @@ typedef struct { } TSCharacterRange; struct TSLanguage { - uint32_t abi_version; + uint32_t version; uint32_t symbol_count; uint32_t alias_count; uint32_t token_count; @@ -121,13 +109,13 @@ struct TSLanguage { const TSParseActionEntry *parse_actions; const char * const *symbol_names; const char * const *field_names; - const TSMapSlice *field_map_slices; + const TSFieldMapSlice *field_map_slices; const TSFieldMapEntry *field_map_entries; const TSSymbolMetadata *symbol_metadata; const TSSymbol *public_symbol_map; const uint16_t *alias_map; const TSSymbol *alias_sequences; - const TSLexerMode *lex_modes; + const TSLexMode *lex_modes; bool (*lex_fn)(TSLexer *, TSStateId); bool (*keyword_lex_fn)(TSLexer *, TSStateId); TSSymbol keyword_capture_token; @@ -141,23 +129,15 @@ struct TSLanguage { void (*deserialize)(void *, const char *, unsigned); } external_scanner; const TSStateId *primary_state_ids; - const char *name; - const TSSymbol *reserved_words; - uint16_t max_reserved_word_set_size; - uint32_t supertype_count; - const TSSymbol *supertype_symbols; - const TSMapSlice *supertype_map_slices; - const TSSymbol *supertype_map_entries; - TSLanguageMetadata metadata; }; -static inline bool set_contains(const TSCharacterRange *ranges, uint32_t len, int32_t lookahead) { +static inline bool set_contains(TSCharacterRange *ranges, uint32_t len, int32_t lookahead) { uint32_t index = 0; uint32_t size = len - index; while (size > 1) { uint32_t half_size = size / 2; uint32_t mid_index = index + half_size; - const TSCharacterRange *range = &ranges[mid_index]; + TSCharacterRange *range = &ranges[mid_index]; if (lookahead >= range->start && lookahead <= range->end) { return true; } else if (lookahead > range->end) { @@ -165,7 +145,7 @@ static inline bool set_contains(const TSCharacterRange *ranges, uint32_t len, in } size -= half_size; } - const TSCharacterRange *range = &ranges[index]; + TSCharacterRange *range = &ranges[index]; return (lookahead >= range->start && lookahead <= range->end); } diff --git a/test/corpus/expressions.txt b/test/corpus/expressions.txt index 998d590a..02b90fbd 100644 --- a/test/corpus/expressions.txt +++ b/test/corpus/expressions.txt @@ -262,6 +262,44 @@ for i in 1.. { (integer_literal)) (block)))) +================================================================================ +Range expressions with leading unary operators +================================================================================ + +foo(..*a); +foo(..!b); +foo(..-c); +let _ = ..*ptr; + +-------------------------------------------------------------------------------- + +(source_file + (expression_statement + (call_expression + (identifier) + (arguments + (range_expression + (unary_expression + (identifier)))))) + (expression_statement + (call_expression + (identifier) + (arguments + (range_expression + (unary_expression + (identifier)))))) + (expression_statement + (call_expression + (identifier) + (arguments + (range_expression + (unary_expression + (identifier)))))) + (let_declaration + (range_expression + (unary_expression + (identifier))))) + ================================================================================ Assignment expressions ================================================================================